

/* Start:/local/templates/volga/components/bitrix/menu/horizontal_volga/style.css?177020275610789*/
/* ========================================
   ГЛАВНОЕ МЕНЮ - ДЕСКТОП
   ======================================== */
.site-header .site-nav,
.site-header .nav-shell,
.site-header .main-menu:not(.mmenu__list),
.site-header .mobile-menu-toggle,
.site-header .menu-overlay {
  display: none !important;
}

.vmenu-bar {
  background: var(--volga-surface, #fff);
  border-top: 1px solid var(--volga-border, #d8dde8);
}

@media (max-width: 820px) {
  .vmenu-bar {
    padding: 8px 0;
  }

  .vmenu-bar .container {
    display: flex;
    justify-content: flex-end;
  }
}

.mmenu {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  font-family: "Sofia Sans", sans-serif;
}

.mmenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.mmenu__item {
  position: relative;
}

.mmenu__item--parent {
  position: static;
}

.mmenu__link {
  color: #233767;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.mmenu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #233767;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mmenu__link:hover::after,
.mmenu__link--active::after {
  opacity: 1;
  transform: scaleX(1);
}

.mmenu__arrow {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  margin-top: -3px;
  flex-shrink: 0;
}

/* Выпадающее меню - десктоп (мега-меню) */
.mmenu__dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #d9dce4;
  box-shadow: 0 18px 38px rgba(16, 20, 33, 0.18);
  border-radius: 14px;
  padding: 22px 24px;
  z-index: 100;
}

.mmenu__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.mmenu__dropdown-title {
  display: block;
  font-weight: 700;
  color: #233767;
  text-decoration: none;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d9dce4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.mmenu__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mmenu__dropdown-list a {
  color: #101421;
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  display: block;
  transition: color 0.2s ease;
}

.mmenu__dropdown-list a:hover {
  color: #233767;
}

.mmenu__item--parent:hover > .mmenu__dropdown,
.mmenu__item--parent.is-open > .mmenu__dropdown {
  display: block;
}

/* Бургер - скрыт на десктопе */
.mmenu__burger {
  display: none;
}

/* Оверлей - скрыт на десктопе */
.mmenu__overlay {
  display: none;
}

/* Кнопка закрытия - скрыта на десктопе */
.mmenu__close-wrap {
  display: none;
}

/* ========================================
   МОБИЛЬНОЕ МЕНЮ (до 820px)
   Простой вертикальный список
   ======================================== */
@media screen and (max-width: 820px) {

  /* Кнопка закрытия внутри меню */
  nav.mmenu .mmenu__close-wrap {
    display: block !important;
    width: 100% !important;
    padding: 15px 20px !important;
    text-align: right !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
  }

  nav.mmenu .mmenu__close {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  nav.mmenu .mmenu__close:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  /* Бургер кнопка */
  nav.mmenu .mmenu__burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #233767;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }

  nav.mmenu .mmenu__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Оверлей */
  nav.mmenu .mmenu__overlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998 !important;
  }

  nav.mmenu .mmenu__overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Мобильное меню - панель справа */
  nav.mmenu .mmenu__list {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 300px !important;
    max-width: 85vw !important;
    background: #233767 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 0 30px 0 !important;
    margin: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  nav.mmenu .mmenu__list.is-open {
    transform: translateX(0) !important;
  }

  /* Пункты меню - простой вертикальный список */
  nav.mmenu .mmenu__item:not(.mmenu__close-wrap) {
    display: block !important;
    position: static !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    float: none !important;
  }

  nav.mmenu .mmenu__item--parent {
    position: static !important;
    overflow: visible !important;
  }

  /* Ссылки меню */
  nav.mmenu .mmenu__link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 16px 20px !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    background: transparent !important;
    border: none !important;
  }

  nav.mmenu .mmenu__link::after {
    display: none !important;
  }

  nav.mmenu .mmenu__link--active {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  /* Стрелка */
  nav.mmenu .mmenu__arrow {
    width: 10px !important;
    height: 10px !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    border-width: 2px !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  nav.mmenu .mmenu__item--parent.is-open > .mmenu__link .mmenu__arrow {
    transform: rotate(-135deg) !important;
  }

  /* ===== ПОДМЕНЮ - РАСКРЫВАЕТСЯ ВНИЗ ===== */
  nav.mmenu .mmenu__dropdown {
    display: block !important;
    position: relative !important;
    float: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
  }

  nav.mmenu .mmenu__item--parent.is-open > .mmenu__dropdown {
    max-height: 1000px !important;
  }

  /* Сетка подменю -> простой вертикальный список */
  nav.mmenu .mmenu__dropdown-grid {
    display: block !important;
    grid-template-columns: none !important;
    width: 100% !important;
  }

  nav.mmenu .mmenu__dropdown-col {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  nav.mmenu .mmenu__dropdown-col:last-child {
    border-bottom: none !important;
  }

  /* Заголовки подразделов */
  nav.mmenu .mmenu__dropdown-title {
    display: block !important;
    width: 100% !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 14px 20px 14px 35px !important;
    margin: 0 !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }

  nav.mmenu .mmenu__dropdown-title:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  /* Вложенный список */
  nav.mmenu .mmenu__dropdown-list {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  nav.mmenu .mmenu__dropdown-list li {
    display: block !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
  }

  nav.mmenu .mmenu__dropdown-list a {
    display: block !important;
    width: 100% !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    padding: 12px 20px 12px 50px !important;
    text-decoration: none !important;
    background: transparent !important;
  }

  nav.mmenu .mmenu__dropdown-list a:hover,
  nav.mmenu .mmenu__dropdown-list a:active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }
}

/* Маленькие экраны */
@media (max-width: 480px) {
  .mmenu__list {
    width: 100%;
    max-width: 100%;
  }
}

/* End */


/* Start:/local/templates/volga/components/bitrix/breadcrumb/ulstd_bread/style.min.css?1770202756467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/templates/volga/css/bootstrap.css?1770202756280311*/
@charset "UTF-8";
/*!
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #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: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --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-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: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(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: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  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, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: 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;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}

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

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

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

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-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: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #a6b5cc;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #a6c3ca;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

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

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 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);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::-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, 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;
}
.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;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: var(--bs-secondary-bg);
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.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;
}
.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;
}

.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);
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 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);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

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

[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");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -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: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #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");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.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, 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) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -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) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  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);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%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 .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%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 .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%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 .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%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 .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-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);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 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);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.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: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (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: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-top,
  .card-group > .card:not(:last-child) > .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-bottom,
  .card-group > .card:not(:last-child) > .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-top,
  .card-group > .card:not(:first-child) > .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-bottom,
  .card-group > .card:not(:first-child) > .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' 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);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 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;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 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: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.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: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root,
[data-bs-theme=light] {
  --bs-btn-close-filter: ;
}

[data-bs-theme=dark] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.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;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.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);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  flex-shrink: 0;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -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%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  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;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap.css.map */
/* End */


/* Start:/local/templates/volga/css/bootstrap-grid.css?177020275670323*/
/*!
 * Bootstrap Grid v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap-grid.css.map */
/* End */


/* Start:/local/templates/volga/css/bootstrap-utilities.css?1770202756107938*/
/*!
 * Bootstrap Utilities v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #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: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --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-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: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(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: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  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;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*# sourceMappingURL=bootstrap-utilities.css.map */
/* End */


/* Start:/local/templates/volga/css/template_styles.css?1770202756305006*/
/* Start:/local/templates/2023/assets/styles/settings/variables.css?16856230812354*/
/*!
 * Settings/Variables
 */

:root {
	/* Fonts */

	--x-font-family-root: "Inter Tight", sans-serif;

	/* 1. РџСЂРµРґРїРѕР»Р°РіР°РµС‚СЃСЏ Р·РЅР°С‡РµРЅРёРµ Р±СЂР°СѓР·РµСЂР° РїРѕ СѓРјРѕР»С‡Р°РЅРёСЋ, РѕР±С‹С‡РЅРѕ СЂР°РІРЅРѕРµ `16px` */

	--x-font-size-root: 1rem; /* 1 */
	--x-font-weight-root: 400;
	--x-line-height-root: 1.5;
	--x-letter-spacing-root: 0.05rem;

	/* Border */
	--x-border-radius-full: 999;
	--x-border-color: var(--grey-lighten);
	--x-border-opacity: 1;

	/* Opacity */
	--x-opacity-btn: 0.5;
	--x-opacity-app-brand: 0.5;

	/* Title */

	--x-h1-font-size: 6rem;
	--x-h1-font-weight: 700;
	--x-h1-line-height: 6.5rem;
	--x-h1-text-transform: uppercase;

	--x-h2-font-size: 2rem;
	--x-h2-font-weight: 700;
	--x-h2-line-height: 2.5rem;
	--x-h2-text-transform: uppercase;

	--x-h3-font-size: 1.25rem;
	--x-h3-font-weight: 700;
	--x-h3-line-height: 1.75rem;
	--x-h3-text-transform: uppercase;

	/* Body */

	--x-body-x-big-font-size: 1.5rem;
	--x-body-x-big-font-weight: 400;
	--x-body-x-big-line-height: 2.25rem;
	--x-body-x-big-text-transform: none;

	--x-body-x-normal-font-size: 1rem;
	--x-body-x-normal-font-weight: 400;
	--x-body-x-normal-line-height: 1.5rem;
	--x-body-x-normal-text-transform: none;

	--x-body-x-small-font-size: 0.75rem;
	--x-body-x-small-font-weight: 400;
	--x-body-x-small-line-height: 1.5rem;
	--x-body-x-small-text-transform: none;
}

/* 600px */
@media (min-width: 37.5em) {
	:root {
		--x-h1-font-size: 6.5rem;
		--x-h1-line-height: 7rem;

		--x-h2-font-size: 2.5rem;
		--x-h2-line-height: 3rem;
	}
}

/* 960px */
@media (min-width: 60em) {
	:root {
		--x-h1-font-size: 6.5rem;
		--x-h1-line-height: 7rem;

		--x-h2-font-size: 3rem;
		--x-h2-line-height: 3.5rem;

		--x-h3-font-size: 1.5rem;
		--x-h3-line-height: 2rem;
	}
}

/* 1280px */
@media (min-width: 80em) {
	:root {
		--x-h1-font-size: 7rem;
		--x-h1-line-height: 7.5rem;

		--x-h2-font-size: 3.75rem;
		--x-h2-line-height: 3.75rem;

		--x-h3-font-size: 1.75rem;
		--x-h3-line-height: 1.75rem;

		--x-body-x-big-font-size:  1.75rem;
		--x-body-x-big-line-height: 2.5rem;

		--x-body-x-normal-font-size: 1.25rem;
		--x-body-x-normal-line-height: 1.75rem;

		--x-body-x-small-font-size: 1rem;
		--x-body-x-small-line-height: 1.25rem;
	}
}

/* 1600px */
@media (min-width: 100em) {
	:root {
		--x-h1-font-size: 7.75rem;
		--x-h1-line-height: 7.75rem;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/generic/fonts.css?16856230811932*/
/*!
 * Generic/Fonts
 */
/* inter-tight-regular - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-regular.woff2') format('woff2');
}
/* inter-tight-500 - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 500;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-500.woff2') format('woff2');
}
/* inter-tight-700 - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 700;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-700.woff2') format('woff2');
}
/* inter-tight-900 - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: normal;
	font-weight: 900;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-900.woff2') format('woff2');
}
/* inter-tight-italic - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: italic;
	font-weight: 400;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-italic.woff2') format('woff2');
}
/* inter-tight-500italic - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: italic;
	font-weight: 500;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-500italic.woff2') format('woff2');
}
/* inter-tight-700italic - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: italic;
	font-weight: 700;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-700italic.woff2') format('woff2');
}
/* inter-tight-900italic - latin_cyrillic */
@font-face {
	font-family: 'Inter Tight';
	font-style: italic;
	font-weight: 900;
	src: local(''),
		url('/local/templates/2023/assets/styles/generic/../../fonts/inter/inter-tight-v2-latin_cyrillic-900italic.woff2') format('woff2');
}
/* End */


/* Start:/local/templates/2023/assets/styles/generic/equate.css?168562308113387*/
/*!
* Equate v1.0.0 | MIT License
*
* Modern CSS Reset with some useful normalization features.
*/

/**
* Document
*
* 1. Set `background-repeat: no-repeat` to all elements and pseudo elements.
* 2. Change from `box-sizing: content-box` so that `width` is not affected
* by `padding` or `border`.
* 3. Inherit text-decoration and vertical align
* to ::before and ::after pseudo elements.
* See https://github.com/tailwindcss/tailwindcss/pull/116
* 4. Reset `padding` and `margin` of all elements.
*/

*,
::before,
::after {
	background-repeat: no-repeat; /* 1 */
	box-sizing: border-box; /* 2 */
}

::before,
::after {
	text-decoration: inherit; /* 3 */
	vertical-align: inherit; /* 3 */
}

* {
	margin: 0; /* 4 */
	padding: 0; /* 4 */
}

/**
* Root
*
* 1. Improve font rendering in Firefox on macOS.
* 2. Improve font rendering in Chrome and Safari on macOS.
* 3. Set more readable tab size
* 4. Change the default tap highlight to be completely transparent in iOS.
* 5. The text-rendering CSS property provides information to the rendering
* engine about what to optimize for when rendering text.
* 6. Prevent adjustments of font size after orientation changes in iOS.
*/

:root {
	-moz-osx-font-smoothing: grayscale; /* 1 */
	-webkit-font-smoothing: antialiased; /* 2 */
	-moz-tab-size: 4; /* 3 */
	tab-size: 4; /* 3 */
	-webkit-tap-highlight-color: rgb(0, 0, 0, 0); /* 4 */
	text-rendering: optimizeLegibility; /* 5 */
	-webkit-text-size-adjust: 100%; /* 6 */
}

/**
* Body
*
* 1. Improve consistency of default fonts in all browsers.
* 2. Set default typography styles in all browsers.
* 3. Correct the line height in all browsers.
*/

body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; /* 1 */
	font-size: 1rem; /* 2 */
	font-weight: 400; /* 2 */
	line-height: 1.5; /* 3 */
}

/**
* Content grouping
*
* 1. Correct the inheritance of border color in Firefox.
* (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
* 2. Add the correct height in Firefox.
*/

hr {
	color: inherit; /* 1 */
	height: 0; /* 2 */
}

/**
* Headings
*
* Set heading elements style same font-size and font-weight as normal text.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

/**
* Abbreviations
*
* 1. Add explicit cursor to indicate changed behavior.
* 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
* 3. Prevent the text-decoration to be skipped.
*/

abbr[title] {
	cursor: help; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
	text-decoration-skip-ink: none; /* 3 */
}

/**
* Address
*
* Improve consistency of `font-style` and `line-height` in all browsers.
*/

address {
	font-style: normal;
	line-height: inherit;
}

/**
* Lists
*
* 1. Ordered and unordered lists are unstyled by default
* Accessibility considerations: unstyled lists are not announced as lists
* by VoiceOver. If your content is truly a list but you would like to keep
* it unstyled, add a вЂњlistвЂќ role to the element.
* 2. Add the correct font weight in Chrome, Edge, and Safari.
*/

ol,
ul {
	list-style: none; /* 1 */
}

dt {
	font-weight: 700; /* 2 */
}

/**
* Strong
*
* Add the correct font weight in Chrome, Edge, and Safari.
*/

b,
strong {
	font-weight: 700;
}

/**
* Small
*
* Add the correct font size in all browsers.
*/

small {
	font-size: 0.875em;
}

/**
 * Sub and Sup
 *
 * Prevent `sub` and `sup` elements from affecting the line height
 * in all browsers.
 */

sub,
sup {
	font-size: 0.75em;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/**
 * Links
 * Remove the outline when hovering in all browsers
 */

a:active,
a:hover {
	outline-width: 0;
}

/**
 * And undo these styles for placeholder links/named anchors (without href).
 * It would be more straightforward to just use a[href] in previous block,
 * but that causes specificity issues in many other styles
 * that are too complex to fix.
 * See https://github.com/twbs/bootstrap/issues/19402
 */

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

/**
 * Code
 *
 * 1. Improve consistency of default fonts in all browsers.
 * (https://github.com/sindresorhus/modern-normalize/issues/3)
 * 2. Correct the odd 'em' font sizing in all browsers.
 * 3. Correct direction support.
 */

code,
kbd,
pre,
samp {
	direction: ltr;
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
	font-size: 1em; /* 2 */
	unicode-bidi: bidi-override; /* 3 */
}

/* Don't allow content to break outside */

pre {
	display: block;
	overflow: auto;
}

/* Account for some code outputs that place code tags in pre tags */

pre code {
	color: inherit;
	font-size: inherit;
	word-break: normal;
}

code {
	word-wrap: break-word;
}

/* Streamline the style when inside anchors to avoid broken underline and more */

a > code {
	color: inherit;
}

/**
 * Images and content
 *
 * 1. Make replaced elements `display: block` by default as that's the behavior
 * you want almost all of the time. Inspired by CSS Remedy, with `svg`
 * added as well.
 * (https://github.com/mozdevs/cssremedy/issues/14)
 * 2. Add `vertical-align: middle` to align replaced elements more sensibly
 * by default when overriding `display` by adding a utility like `inline`.
 * This can trigger a poorly considered linting error in some tools but
 * is included by design.
 * (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block; /* 1 */
	vertical-align: middle; /* 2 */
}

/* Remove border from iframe */

iframe {
	border: 0;
}

/**
 * Constrain images and videos to the parent width and preserve their
 * intrinsic aspect ratio.
 *
 * (https://github.com/mozdevs/cssremedy/issues/14)
 */

img,
video {
	height: auto;
	max-width: 100%;
}

/**
 * Tables
 *
 * 1. Prevent double borders.
 * 2. Correct border color in all Chrome, Edge, and Safari.
 * 3. Remove text indentation in Chrome, Edge, and Safari.
 */

table {
	border-collapse: collapse; /* 1 */
	border-color: inherit; /* 2 */
	caption-side: bottom; /* 1 */
	text-indent: 0; /* 3 */
}

/**
 * 1. Matches default `<td>` alignment by inheriting `text-align`.
 * 2. Fix alignment for Safari.
 */

th {
	text-align: inherit; /* 1 */
	text-align: -webkit-match-parent; /* 2 */
}

/**
 * Forms
 *
 * 1. Remove `background-color` from form elements.
 * 2. Remove `border-style` from form elements.
 * 3. Change the font styles in all browsers.
 */

button,
input,
optgroup,
select,
textarea {
	background-color: transparent; /* 1 */
	border-style: none; /* 2 */
	font-family: inherit; /* 3 */
	font-size: inherit; /* 3 */
	line-height: inherit; /* 3 */
}

/* Remove the inheritance of text transform in Firefox. */

button,
select {
	text-transform: none;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * See https://github.com/twbs/bootstrap/issues/24093
 */

button {
	border-radius: 0;
}

/**
 * Explicitly remove focus outline in Chromium when it shouldn't be
 * visible (e.g. as result of mouse click or touch tap). It already
 * should be doing this automatically, but seems to currently be
 * confused and applies its very visible two-tone outline anyway.
 */

button:focus:not(:focus-visible) {
	outline-width: 0;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 * controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 * 3. Add "hand" cursor to non-disabled button elements.
 */

button,
[type='button'], /* 1 */
[type='reset'],
[type='submit'] {
	-webkit-appearance: button; /* 2 */
	color: inherit;
}

button:not(:disabled),
[type=button]:not(:disabled), /* 1 */
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
	cursor: pointer; /* 3 */
}

/**
 * Set the cursor for non-`<button>` buttons
 * Details at https://github.com/twbs/bootstrap/pull/30562
 */

[role="button"] {
	color: inherit;
	cursor: pointer;
}

/**
 * 1. Style select like a standard input.
 * 2. Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 * 3. Undo the opacity change from Chrome
 */

select {
	-moz-appearance: none; /* 1 */
	-webkit-appearance: none; /* 1 */
	word-wrap: normal; /* 2 */
}

select:disabled {
	opacity: 1; /* 3 */
}

/* Reset `border-radius` */

input {
	border-radius: 0;
}

/* Textareas should really only resize vertically so they don't break their (horizontal) containers. */

textarea {
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
}

/* Allow labels to use `margin` for spacing. */

label {
	display: inline-block;
}

/**
 * 1. Reset the default outline behavior of fieldsets so they don't affect
 * page layout.
 * 2. Browsers set a default `min-width: min-content;` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0;` by default.
 * So we reset that to ensure fieldsets behave more like
 * a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */

fieldset {
	border: 0; /* 1 */
	min-width: 0; /* 2 */
}

/**
 * 1. By using `float: left`, the legend will behave like a block element.
 * This way the border of a fieldset wraps around the legend if present.
 * 1. Fix wrapping bug.
 * See https://github.com/twbs/bootstrap/issues/29712
 */

legend {
	float: left; /* 1 */
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	padding: 0;
	width: 100%;
}

legend + * {
	clear: left; /* 2 */
}

/* Replace pointer cursor in disabled elements */

[disabled] {
	cursor: default;
}

/**
 * Remove the dropdown arrow in Chrome from inputs built with datalists.
 * See https://stackoverflow.com/a/54997118
 */

[list]::-webkit-calendar-picker-indicator {
	display: none;
}

/**
 * Remove the additional ':invalid' styles in Firefox.
 * See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
 */

:-moz-ui-invalid {
	box-shadow: none;
}

/**
 * Fix height of inputs with a type of datetime-local, date, month, week, or time.
 * See https://github.com/twbs/bootstrap/issues/18842
 */

::-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,
::-webkit-outer-spin-button {
	height: auto;
}

/* Remove the inner padding in Chrome and Safari on macOS. */

::-webkit-search-cancel-button,
::-webkit-search-decoration {
	-webkit-appearance: none;
}

/* Remove padding around color pickers in webkit browsers. */

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

/* Inherit font family and line height for file input buttons. */

::file-selector-button {
	font: inherit;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change `color` to 'inherit' in Safari.
 * 3. Change `font` properties to 'inherit' in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	color: inherit; /* 2 */
	font: inherit; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -0.125rem; /* 2 */
}

/* Correct element displays. */

output {
	display: inline-block;
}

/**
 * Summary
 *
 * 1. Add the correct display in all browsers.
 */

summary {
	cursor: pointer;
	display: list-item; /* 1 */
}

/**
 * Progress
 *
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Hidden attribute
 * Always hide an element with the `hidden` HTML attribute.
 */

[hidden] {
	display: none !important;
}

/**
 * Accessibility
 *
 * Hide content from screens but not screenreaders.
 */

@media screen {
	[hidden~="screen"] {
		display: inherit;
	}

	[hidden~="screen"]:not(:active):not(:focus):not(:target) {
		clip: rect(0 0 0 0) !important;
		position: absolute !important;
	}
}

/* Specify the progress cursor of updating elements */

[aria-busy="true"] {
	cursor: progress;
}

/* Specify the pointer cursor of trigger elements */

[aria-controls] {
	cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements. */

[aria-disabled] {
	cursor: default;
}

/* End */


/* Start:/local/templates/2023/assets/styles/generic/alpinejs.css?168562308170*/
/*!
 * Generic/AlpineJS
 */

[x-cloak] {
	display: none !important;
}

/* End */


/* Start:/local/templates/2023/assets/styles/generic/bitrix.css?1685623081431*/
/*!
 * Generic/Bitrix
 */

#bx-panel,
#bx-panel.bx-panel-fixed {
	z-index: 1015 !important;
}

/* #bx-panel ~ * > .x-app-bar.x-toolbar.x-toolbar--absolute,
#bx-panel ~ * > .x-app-bar.x-toolbar.x-toolbar--fixed {
	top: 147px !important;
}

#bx-panel.bx-panel-folded ~ * > .x-app-bar.x-toolbar.x-toolbar--absolute,
#bx-panel.bx-panel-folded ~ * > .x-app-bar.x-toolbar.x-toolbar--fixed {
	top: 39px !important;
} */

/* End */


/* Start:/local/templates/2023/assets/styles/generic/animations.css?1685623081186*/
/*!
 * Generic/Animations
 */

@keyframes x-shake {
	59% {
		margin-left: 0;
	}

	60%,
	80% {
		margin-left: 0.125rem;
	}

	70%,
	90% {
		margin-left: -0.125rem;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/generic/selection.css?1685623081199*/
/**
 * Generic/Selection
 *
 * Consistent selection style in all browsers
 */
/*
::selection {
	background-color: rgb(var(--x-theme-on-surface));
	color: rgb(var(--x-theme-surface));
}
*/

/* End */


/* Start:/local/templates/2023/assets/styles/generic/stretched-link.css?1685623081166*/
/*!
 * Generic/Stretched link
 */

.stretched-link::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

/* End */


/* Start:/local/templates/2023/assets/styles/elements/global.css?16856230811755*/
/*!
 * Elements/Global
 */

/**
 * Root
 *
 * 1. Base app styles
 *
 * 2. The scroll-behavior property in CSS allows us to define whether the scroll
 * location of the browser jumps to a new location or smoothly animates
 * the transition when a user clicks a link that targets an anchored position
 * within a scrolling box.
 */

:root {
	--x-theme-background: #fff; /* 1 */
	--x-theme-text-color: #000; /* 1 */
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth; /* 2 */
	}
}

/**
 * Body
 *
 * 1. Improve consistency of default fonts in all browsers.
 * 2. Set default typography styles in all browsers.
 * 3. Correct the line height in all browsers.
 */

body {
	font-family: var(--x-font-family-root); /* 1 */
	font-size: var(--x-font-size-root); /* 2 */
	font-weight: var(--x-font-weight-root); /* 2 */
	line-height: var(--x-line-height-root); /* 3 */
	letter-spacing: var(--x-letter-spacing-root);
}

/**
 * Links
 */

a {
	text-decoration: none;
	color: var(--black);
}

/**
 * Paragraph
 */

p {
	margin-bottom: var(--x-body-x-normal-line-height);
}

/**
 * Headings
 */

h1 {
	font-size: var(--x-h1-font-size);
	line-height: var(--x-h1-line-height);
	font-weight: var(--x-h1-font-weight);
	text-transform: var(--x-h1-text-transform);
	text-align: left;
}

h2 {
	font-size: var(--x-h2-font-size);
	line-height: var(--x-h2-line-height);
	font-weight: var(--x-h2-font-weight);
	text-transform: var(--x-h2-text-transform);
	text-align: left;
}

h3 {
	font-size: var(--x-h3-font-size);
	line-height: var(--x-h3-line-height);
	font-weight: var(--x-h3-font-weight);
	text-transform: var(--x-h3-text-transform);
	text-align: left;
}
/* End */


/* Start:/local/templates/2023/assets/styles/elements/typefonts.css?16856230816112*/
.type-h1 {
	font-size: var(--x-h1-font-size);
	line-height: var(--x-h1-line-height);
	font-weight: var(--x-h1-font-weight);
	text-transform: var(--x-h1-text-transform);
}
.type-h2 {
	font-size: var(--x-h2-font-size);
	line-height: var(--x-h2-line-height);
	font-weight: var(--x-h2-font-weight);
	text-transform: var(--x-h2-text-transform);
}
.type-h3 {
	font-size: var(--x-h3-font-size);
	line-height: var(--x-h3-line-height);
	font-weight: var(--x-h3-font-weight);
	text-transform: var(--x-h3-text-transform);
}
.type-big {
	font-size: var(--x-body-x-big-font-size);
	line-height: var(--x-body-x-big-line-height);
	font-weight: var(--x-body-x-big-font-weight);
	text-transform: var(--x-body-x-big-text-transform);
}
.type-normal {
	font-size: var(--x-body-x-normal-font-size);
	line-height: var(--x-body-x-normal-line-height);
	font-weight: var(--x-body-x-normal-font-weight);
	text-transform: var(--x-body-x-normal-text-transform);
}
.type-small {
	font-size: var(--x-body-x-small-font-size);
	line-height: var(--x-body-x-small-line-height);
	font-weight: var(--x-body-x-small-font-weight);
	text-transform: var(--x-body-x-small-text-transform);
}

@media (min-width: 37.5em) {
	.sm\@type-h1 {
		font-size: var(--x-h1-font-size);
		line-height: var(--x-h1-line-height);
		font-weight: var(--x-h1-font-weight);
		text-transform: var(--x-h1-text-transform);
	}
	.sm\@type-h2 {
		font-size: var(--x-h2-font-size);
		line-height: var(--x-h2-line-height);
		font-weight: var(--x-h2-font-weight);
		text-transform: var(--x-h2-text-transform);
	}
	.sm\@type-h3 {
		font-size: var(--x-h3-font-size);
		line-height: var(--x-h3-line-height);
		font-weight: var(--x-h3-font-weight);
		text-transform: var(--x-h3-text-transform);
	}
	.sm\@type-big {
		font-size: var(--x-body-x-big-font-size);
		line-height: var(--x-body-x-big-line-height);
		font-weight: var(--x-body-x-big-font-weight);
		text-transform: var(--x-body-x-big-text-transform);
	}
	.sm\@type-normal {
		font-size: var(--x-body-x-normal-font-size);
		line-height: var(--x-body-x-normal-line-height);
		font-weight: var(--x-body-x-normal-font-weight);
		text-transform: var(--x-body-x-normal-text-transform);
	}
	.sm\@type-small {
		font-size: var(--x-body-x-small-font-size);
		line-height: var(--x-body-x-small-line-height);
		font-weight: var(--x-body-x-small-font-weight);
		text-transform: var(--x-body-x-small-text-transform);
	}
}

@media (min-width: 60em) {
	.md\@type-h1 {
		font-size: var(--x-h1-font-size);
		line-height: var(--x-h1-line-height);
		font-weight: var(--x-h1-font-weight);
		text-transform: var(--x-h1-text-transform);
	}
	.md\@type-h2 {
		font-size: var(--x-h2-font-size);
		line-height: var(--x-h2-line-height);
		font-weight: var(--x-h2-font-weight);
		text-transform: var(--x-h2-text-transform);
	}
	.md\@type-h3 {
		font-size: var(--x-h3-font-size);
		line-height: var(--x-h3-line-height);
		font-weight: var(--x-h3-font-weight);
		text-transform: var(--x-h3-text-transform);
	}
	.md\@type-big {
		font-size: var(--x-body-x-big-font-size);
		line-height: var(--x-body-x-big-line-height);
		font-weight: var(--x-body-x-big-font-weight);
		text-transform: var(--x-body-x-big-text-transform);
	}
	.md\@type-normal {
		font-size: var(--x-body-x-normal-font-size);
		line-height: var(--x-body-x-normal-line-height);
		font-weight: var(--x-body-x-normal-font-weight);
		text-transform: var(--x-body-x-normal-text-transform);
	}
	.md\@type-small {
		font-size: var(--x-body-x-small-font-size);
		line-height: var(--x-body-x-small-line-height);
		font-weight: var(--x-body-x-small-font-weight);
		text-transform: var(--x-body-x-small-text-transform);
	}
}

@media (min-width: 80em) {
	.lg\@type-h1 {
		font-size: var(--x-h1-font-size);
		line-height: var(--x-h1-line-height);
		font-weight: var(--x-h1-font-weight);
		text-transform: var(--x-h1-text-transform);
	}
	.lg\@type-h2 {
		font-size: var(--x-h2-font-size);
		line-height: var(--x-h2-line-height);
		font-weight: var(--x-h2-font-weight);
		text-transform: var(--x-h2-text-transform);
	}
	.lg\@type-h3 {
		font-size: var(--x-h3-font-size);
		line-height: var(--x-h3-line-height);
		font-weight: var(--x-h3-font-weight);
		text-transform: var(--x-h3-text-transform);
	}
	.lg\@type-big {
		font-size: var(--x-body-x-big-font-size);
		line-height: var(--x-body-x-big-line-height);
		font-weight: var(--x-body-x-big-font-weight);
		text-transform: var(--x-body-x-big-text-transform);
	}
	.lg\@type-normal {
		font-size: var(--x-body-x-normal-font-size);
		line-height: var(--x-body-x-normal-line-height);
		font-weight: var(--x-body-x-normal-font-weight);
		text-transform: var(--x-body-x-normal-text-transform);
	}
	.lg\@type-small {
		font-size: var(--x-body-x-small-font-size);
		line-height: var(--x-body-x-small-line-height);
		font-weight: var(--x-body-x-small-font-weight);
		text-transform: var(--x-body-x-small-text-transform);
	}
}

@media (min-width: 100em) {
	.xl\@type-h1 {
		font-size: var(--x-h1-font-size);
		line-height: var(--x-h1-line-height);
		font-weight: var(--x-h1-font-weight);
		text-transform: var(--x-h1-text-transform);
	}
	.xl\@type-h2 {
		font-size: var(--x-h2-font-size);
		line-height: var(--x-h2-line-height);
		font-weight: var(--x-h2-font-weight);
		text-transform: var(--x-h2-text-transform);
	}
	.xl\@type-h3 {
		font-size: var(--x-h3-font-size);
		line-height: var(--x-h3-line-height);
		font-weight: var(--x-h3-font-weight);
		text-transform: var(--x-h3-text-transform);
	}
	.xl\@type-big {
		font-size: var(--x-body-x-big-font-size);
		line-height: var(--x-body-x-big-line-height);
		font-weight: var(--x-body-x-big-font-weight);
		text-transform: var(--x-body-x-big-text-transform);
	}
	.xl\@type-normal {
		font-size: var(--x-body-x-normal-font-size);
		line-height: var(--x-body-x-normal-line-height);
		font-weight: var(--x-body-x-normal-font-weight);
		text-transform: var(--x-body-x-normal-text-transform);
	}
	.xl\@type-small {
		font-size: var(--x-body-x-small-font-size);
		line-height: var(--x-body-x-small-line-height);
		font-weight: var(--x-body-x-small-font-weight);
		text-transform: var(--x-body-x-small-text-transform);
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/section-btn.css?1685623081103*/
.section-btn a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/nav-bar.css?1685623081199*/
.nav-bar--btn path {
	fill: rgb(var(--x-theme-on-background-color));
}
.nav-bar--btn__open {
	width: 2.5rem;
	height: auto;
}

@media (min-width: 80em) {
	.nav-bar--btn__open {
		width: 3.75rem;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/app-bar.css?16856230811215*/
.app-bar {
	padding: 1.5rem;
    -webkit-box-shadow: 0px 2px 10px -7px rgba(34, 60, 80, 0.2);
-moz-box-shadow: 0px 2px 10px -7px rgba(34, 60, 80, 0.2);
box-shadow: 0px 2px 10px -7px rgba(34, 60, 80, 0.2);

}
.app-bar__element {
	padding: 1.5rem;
}
.app-bar__section {
	position: relative;
}
.app-bar__section-image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	object-fit: cover;
	background-position: center center;
	z-index: 0;
}
.app-bar__prepend {
	margin-inline-end: auto;
}
.app-bar__append {
	margin-inline-start: auto;
}
.app-bar-burger {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 100;
	background-color: rgb(var(--x-theme-turquoise-dark-background-color));

	display: flex;
	flex-direction: column;
	gap: 2rem;

	padding: 2.5rem;
}

.app-bar-burger__close {
	width: 1.5rem;
	height: auto;
}
.app-bar-burger__close path {
	fill: rgb(var(--x-theme-on-background-color));
}

@media (min-width: 37.5em) {
	.app-bar {
		padding: 2rem;
	}
}
@media (min-width: 60em) {
	.app-bar {
		padding: 3rem;
	}
	.app-bar-burger__close {
		width: 2.75rem;
	}
}
@media (min-width: 80em) {
	.app-bar {
		padding: 3.75rem;
	}
	.app-bar-burger {
		padding: 2.5rem 5rem 5rem 5rem;
		gap: 3.75rem;
	}
}
@media (min-width: 100em) {
	.app-bar {
		padding: 3.75rem 5rem 5rem 5rem;
	}
	.app-bar__element {
		padding: 2.5rem 5rem;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/app-brand.css?1685623081437*/
.app-brand {
	width: 10rem;
	height: auto;
}
.app-brand__root {
	margin-inline-end: 6.25rem;
}
.app-brand__root a:hover {
	opacity: var(--x-opacity-app-brand);
}
.app-brand path {
	fill: var(--x-theme-on-background-color);
}

@media (min-width: 60em) {
	.app-brand {
		width: 14rem;
	}
	.app-brand__section {
		width: 11rem;
	}
}

@media (min-width: 80em) {
	.app-brand {
		width: 17.25rem;
	}
	.app-brand__section {
		width: 12rem;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/swiper-carousel.css?1685623081412*/
/*!
* Components/SwiperCarousel
*/

.swiper-carousel .swiper-pagination {
	position: relative;
	bottom: 0;
}
.swiper-carousel .swiper-pagination-bullet {
	background-color: rgb(var(--x-theme-grey-lighten-background-color));
	opacity: 1;
	width: 0.75rem;
	height: 0.75rem;
}
.swiper-carousel .swiper-pagination-bullet-active {
	background-color: rgb(var(--x-theme-grey-darken-background-color));
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/x-app.css?1685623081898*/
/*!
* Components/XApp
*/

/**
 * 1. Apply a default `background-color` and `color`.
 * 2. Improve cursor pointer behavior for links.
 * 3. Firefox overrides.
 */

.x-app {
	background-color: rgb(var(--x-theme-background)); /* 1 */
	color: rgb(var(--x-theme-on-background-color)); /* 1 */

	font-size: var(--x-body-x-normal-font-size);
	line-height: var(--x-body-x-normal-line-height);
	font-weight: var(--x-body-x-normal-font-weight);
	text-transform: var(--x-body-x-normal-text-transform);
}

.x-app__wrap {
	backface-visibility: hidden;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	max-width: 100%;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

.x-app a {
	cursor: pointer; /* 2 */
}

@-moz-document url-prefix() {
	@media print {
		.x-app {
			display: block; /* 3 */
		}
		.x-app__wrap {
			display: block; /* 3 */
		}
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/x-btn.css?16856230811387*/
.x-btn {
	align-items: center;
	border-radius: 0.25rem;
	display: inline-flex;
	flex-shrink: 0;
	font-family: inherit;
	font-weight: 400;
	line-height: 1;
	justify-content: center;
	max-width: 100%;
	outline: none;
	position: relative;
	text-decoration: none;
	text-indent: 0.00625rem;
	text-transform: none;
	user-select: none;
	vertical-align: middle;
	border: none;
	color: rgb(var(--x-theme-on-background-color));
	cursor: pointer;
}
.x-btn:hover {
	/*opacity: var(--x-opacity-btn);*/
}
.x-btn:disabled,
.x-btn[disabled] {
	opacity: var(--x-opacity-btn);
	cursor: default;
}
.x-btn--border-radius-none {
	border-radius: 0;
}
.x-btn--border {
	border-width: 0.0625rem;
	border-color: rgb(var(--x-theme-on-background-color));
	border-style: solid;
}
.x-btn--border-light {
	border-color: rgb(var(--x-theme-grey-darken-background-color));
	color: rgb(var(--x-theme-grey-darken-background-color));
}
.x-btn--size-x-small {
	padding: 0.5rem 1.5rem;
	font-size: var(--x-body-x-small-font-size);
}
.x-btn--size-x-default {
	padding: 1rem 1.5rem;
	font-size: var(--x-body-x-normal-font-size);
}
.x-btn--size-x-big {
	padding: 1rem 1.5rem;
	font-size: var(--x-body-x-normal-font-size);
}
.x-btn-surface {
	background-color: rgb( var(--x-theme-on-background-color) );
	color: rgb( var(--x-theme-background) );;
}

@media (min-width: 37.5em) {
	.x-btn--size-x-big {
		padding: 1.5rem 2rem;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/x-card.css?168562308128*/
.x-card {
	display: block;
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/x-container.css?1685623081492*/
/*!
* Components/XContainer
*/

.x-container {
	width: 100%;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 37.5em) {
	.x-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
@media (min-width: 60em) {
	.x-container {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}
@media (min-width: 80em) {
	.x-container {
		padding-left: 3.75rem;
		padding-right: 3.75rem;
	}
}
@media (min-width: 100em) {
	.x-container {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/x-img.css?1685623081556*/
/*!
* Components/XImg
*/

.x-img {
	--x-theme-overlay-multiplier: 3;

	z-index: 0;
}

.x-img--booting > .x-responsive__sizer {
	transition: none;
}

.x-img__img,
.x-img__picture,
.x-img__gradient,
.x-img__placeholder,
.x-img__error {
	z-index: -1;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.x-img__img--preload {
	filter: blur(0.25rem);
}

.x-img__img--contain {
	object-fit: contain;
}

.x-img__img--cover {
	object-fit: cover;
}

.x-img__gradient {
	background-repeat: no-repeat;
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/x-input.css?1685623081191*/
.x-input {
	display: block;
	border: none;
	outline: none;
	border-radius: 0;
}

.x-input-border {
	border-radius: 0.25rem;
	border: 0.0625rem solid rgb(var(--x-theme-on-background-color));
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/x-main.css?1685623081180*/
/*!
* Components/XMain
*/

.x-main {
	display: flex;
	flex: 1 0 auto;
	max-width: 100%;
}

.x-main__wrap {
	flex: 1 1 auto;
	max-width: 100%;
	position: relative;
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/x-responsive.css?16856230812442*/
/*!
* Components/XResponsive
*/

.x-responsive {
	display: flex;
	/*flex: 1 0 auto;*/
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
}

.x-responsive__content {
	flex: 1 0 0;
	max-width: 100%;
}

.x-responsive__sizer {
	flex: 1 0 0;
	padding-top: var(--x-aspect-ratio, 0);
	pointer-events: none;
	transition: padding-top 0.2s var(--x-responsive-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
}

.x-responsive__sizer ~ .x-responsive__content {
	margin-inline-start: -100%;
}

.x-responsive--ratio-1\/1 {
	--x-aspect-ratio: 100%;
}

.x-responsive--ratio-3\/2 {
	--x-aspect-ratio: 66%;
}

.x-responsive--ratio-4\/3 {
	--x-aspect-ratio: 75%;
}

.x-responsive--ratio-16\/9 {
	--x-aspect-ratio: 56.25%;
}

.x-responsive--ratio-16\/10 {
	--x-aspect-ratio: 62.5%;
}

.x-responsive--ratio-21\/9 {
	--x-aspect-ratio: 42.8571428571%;
}

@media (min-width: 37.5em) {
	.sm\@x-responsive--ratio-1\/1 {
		--x-aspect-ratio: 100%;
	}

	.sm\@x-responsive--ratio-4\/3 {
		--x-aspect-ratio: 75%;
	}

	.sm\@x-responsive--ratio-16\/9 {
		--x-aspect-ratio: 56.25%;
	}

	.sm\@x-responsive--ratio-16\/10 {
		--x-aspect-ratio: 62.5%;
	}

	.sm\@x-responsive--ratio-21\/9 {
		--x-aspect-ratio: 42.8571428571%;
	}
}
@media (min-width: 60em) {
	.md\@x-responsive--ratio-1\/1 {
		--x-aspect-ratio: 100%;
	}

	.md\@x-responsive--ratio-4\/3 {
		--x-aspect-ratio: 75%;
	}

	.md\@x-responsive--ratio-16\/9 {
		--x-aspect-ratio: 56.25%;
	}

	.md\@x-responsive--ratio-16\/10 {
		--x-aspect-ratio: 62.5%;
	}

	.md\@x-responsive--ratio-21\/9 {
		--x-aspect-ratio: 42.8571428571%;
	}
}
@media (min-width: 80em) {
	.lg\@x-responsive--ratio-1\/1 {
		--x-aspect-ratio: 100%;
	}

	.lg\@x-responsive--ratio-4\/3 {
		--x-aspect-ratio: 75%;
	}

	.lg\@x-responsive--ratio-16\/9 {
		--x-aspect-ratio: 56.25%;
	}

	.lg\@x-responsive--ratio-16\/10 {
		--x-aspect-ratio: 62.5%;
	}

	.lg\@x-responsive--ratio-21\/9 {
		--x-aspect-ratio: 42.8571428571%;
	}
}
@media (min-width: 100em) {
	.xl\@x-responsive--ratio-1\/1 {
		--x-aspect-ratio: 100%;
	}

	.xl\@x-responsive--ratio-4\/3 {
		--x-aspect-ratio: 75%;
	}

	.xl\@x-responsive--ratio-16\/9 {
		--x-aspect-ratio: 56.25%;
	}

	.xl\@x-responsive--ratio-16\/10 {
		--x-aspect-ratio: 62.5%;
	}

	.xl\@x-responsive--ratio-21\/9 {
		--x-aspect-ratio: 42.8571428571%;
	}
}
/* End */


/* Start:/local/templates/2023/assets/styles/components/x-layout.css?1685623081354*/
/*!
* Components/XLayout
*/

.x-layout {
	display: flex;
	flex: 1 1 auto;
	position: relative;
}

.x-layout--full-height {
	height: 100%;
}

.x-layout--horizontal {
	overflow-y: hidden;
}

.x-layout--vertical {
	overflow-x: hidden;
}

.x-layout__item {
	position: fixed;
}

.x-layout__item--absolute {
	position: absolute;
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/x-toolbar.css?16856230812947*/
/*!
* Components/XToolbar
*/

.x-toolbar {
	align-items: flex-start;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: auto;
	justify-content: space-between;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	transition-property: height, transform, max-width;
	transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 0;
	border: 0;
}

.x-toolbar__content,
.x-toolbar__extension {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	position: relative;
	transition: inherit;
	width: 100%;
}

.x-toolbar--density-prominent .x-toolbar__content {
	align-items: flex-start;
}

.x-toolbar__image {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	display: flex;
}

.x-toolbar__prepend,
.x-toolbar__append {
	display: flex;
}

.x-toolbar__prepend {
	margin-inline-end: auto;
}

.x-toolbar__prepend > .v-btn:first-child {
	margin-inline-start: -0.75rem;
}

.x-toolbar__prepend + .x-toolbar-title {
	padding-inline-start: 1.25rem;
}

.x-toolbar__append {
	margin-inline-start: auto;
}

.x-toolbar__append > .v-btn:last-child {
	margin-inline-end: -0.75rem;
}

.x-toolbar--absolute {
	position: absolute;
}

.x-toolbar--border {
	border-width: thin;
	box-shadow: none;
}

.x-toolbar--collapse {
	max-width: 7rem;
	overflow: hidden;
}

.x-toolbar--collapse .x-toolbar-title {
	display: none;
}

.x-toolbar--collapse.x-locale--ltr,
.x-locale--ltr .x-toolbar--collapse {
	border-bottom-right-radius: 1.5rem;
}

.x-toolbar--collapse.x-locale--rtl,
.x-locale--rtl .x-toolbar--collapse {
	border-bottom-left-radius: 1.5rem;
}

.x-toolbar--density-default .x-toolbar__content {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.x-toolbar--density-comfortable .x-toolbar__content {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.x-toolbar--density-compact .x-toolbar__content {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.x-toolbar--density-prominent .x-toolbar__content {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.x-toolbar--flat {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.x-toolbar--floating {
	display: inline-flex;
}

.x-toolbar--rounded {
	border-radius: 0.25rem;
}

.x-toolbar-title {
	flex: 1 1;
	font-size: 1.25rem;
	min-width: 0;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.75rem;
	text-transform: none;
}

.x-toolbar--density-prominent .x-toolbar-title {
	align-self: flex-end;
	padding-bottom: 0.375rem;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 2.25rem;
	text-transform: none;
}

.x-toolbar-title__placeholder {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.x-toolbar-items {
	display: flex;
	height: inherit;
}

.x-toolbar-items > .v-btn {
	border-radius: 0;
}

/* End */


/* Start:/local/templates/2023/assets/styles/components/app-search.css?1685623081438*/
.app-search__input {
	width: 100%;
	padding: 1rem;
	border-radius: 0.25rem 0 0 0.25rem;
	border: 0.0625rem solid rgb(var(--x-theme-on-background-color));
	line-height: 1;
}
.app-search__btn {
	padding: 1rem 2rem;
	border-radius: 0 0.25rem 0.25rem 0;
	background-color: rgb(var(--x-theme-on-background-color));
	line-height: 1;
}
.app-search__btn svg {
	width: var(--x-body-x-normal-font-size);
	height: var(--x-body-x-normal-font-size);
}
/* End */


/* Start:/local/templates/2023/assets/styles/utilities/align.css?16856230815623*/
/*!
 * Utilities/Align
 */

.content-center {
	align-content: center !important;
}

.content-start {
	align-content: flex-start !important;
}

.content-end {
	align-content: flex-end !important;
}

.content-between {
	align-content: space-between !important;
}

.content-around {
	align-content: space-around !important;
}

.content-evenly {
	align-content: space-evenly !important;
}

.items-start {
	align-items: flex-start !important;
}

.items-end {
	align-items: flex-end !important;
}

.items-center {
	align-items: center !important;
}

.items-baseline {
	align-items: baseline !important;
}

.items-stretch {
	align-items: stretch !important;
}

.self-auto {
	align-self: auto !important;
}

.self-start {
	align-self: flex-start !important;
}

.self-end {
	align-self: flex-end !important;
}

.self-center {
	align-self: center !important;
}

.self-stretch {
	align-self: stretch !important;
}

.self-baseline {
	align-self: baseline !important;
}

@media (min-width: 37.5em) {
	.sm\@content-center {
		align-content: center !important;
	}

	.sm\@content-start {
		align-content: flex-start !important;
	}

	.sm\@content-end {
		align-content: flex-end !important;
	}

	.sm\@content-between {
		align-content: space-between !important;
	}

	.sm\@content-around {
		align-content: space-around !important;
	}

	.sm\@content-evenly {
		align-content: space-evenly !important;
	}

	.sm\@items-start {
		align-items: flex-start !important;
	}

	.sm\@items-end {
		align-items: flex-end !important;
	}

	.sm\@items-center {
		align-items: center !important;
	}

	.sm\@items-baseline {
		align-items: baseline !important;
	}

	.sm\@items-stretch {
		align-items: stretch !important;
	}

	.sm\@self-auto {
		align-self: auto !important;
	}

	.sm\@self-start {
		align-self: flex-start !important;
	}

	.sm\@self-end {
		align-self: flex-end !important;
	}

	.sm\@self-center {
		align-self: center !important;
	}

	.sm\@self-stretch {
		align-self: stretch !important;
	}

	.sm\@self-baseline {
		align-self: baseline !important;
	}
}

@media (min-width: 60em) {
	.md\@content-center {
		align-content: center !important;
	}

	.md\@content-start {
		align-content: flex-start !important;
	}

	.md\@content-end {
		align-content: flex-end !important;
	}

	.md\@content-between {
		align-content: space-between !important;
	}

	.md\@content-around {
		align-content: space-around !important;
	}

	.md\@content-evenly {
		align-content: space-evenly !important;
	}

	.md\@items-start {
		align-items: flex-start !important;
	}

	.md\@items-end {
		align-items: flex-end !important;
	}

	.md\@items-center {
		align-items: center !important;
	}

	.md\@items-baseline {
		align-items: baseline !important;
	}

	.md\@items-stretch {
		align-items: stretch !important;
	}

	.md\@self-auto {
		align-self: auto !important;
	}

	.md\@self-start {
		align-self: flex-start !important;
	}

	.md\@self-end {
		align-self: flex-end !important;
	}

	.md\@self-center {
		align-self: center !important;
	}

	.md\@self-stretch {
		align-self: stretch !important;
	}

	.md\@self-baseline {
		align-self: baseline !important;
	}
}

@media (min-width: 80em) {
	.lg\@content-center {
		align-content: center !important;
	}

	.lg\@content-start {
		align-content: flex-start !important;
	}

	.lg\@content-end {
		align-content: flex-end !important;
	}

	.lg\@content-between {
		align-content: space-between !important;
	}

	.lg\@content-around {
		align-content: space-around !important;
	}

	.lg\@content-evenly {
		align-content: space-evenly !important;
	}

	.lg\@items-start {
		align-items: flex-start !important;
	}

	.lg\@items-end {
		align-items: flex-end !important;
	}

	.lg\@items-center {
		align-items: center !important;
	}

	.lg\@items-baseline {
		align-items: baseline !important;
	}

	.lg\@items-stretch {
		align-items: stretch !important;
	}

	.lg\@self-auto {
		align-self: auto !important;
	}

	.lg\@self-start {
		align-self: flex-start !important;
	}

	.lg\@self-end {
		align-self: flex-end !important;
	}

	.lg\@self-center {
		align-self: center !important;
	}

	.lg\@self-stretch {
		align-self: stretch !important;
	}

	.lg\@self-baseline {
		align-self: baseline !important;
	}
}

@media (min-width: 100em) {
	.xl\@content-center {
		align-content: center !important;
	}

	.xl\@content-start {
		align-content: flex-start !important;
	}

	.xl\@content-end {
		align-content: flex-end !important;
	}

	.xl\@content-between {
		align-content: space-between !important;
	}

	.xl\@content-around {
		align-content: space-around !important;
	}

	.xl\@content-evenly {
		align-content: space-evenly !important;
	}

	.xl\@items-start {
		align-items: flex-start !important;
	}

	.xl\@items-end {
		align-items: flex-end !important;
	}

	.xl\@items-center {
		align-items: center !important;
	}

	.xl\@items-baseline {
		align-items: baseline !important;
	}

	.xl\@items-stretch {
		align-items: stretch !important;
	}

	.xl\@self-auto {
		align-self: auto !important;
	}

	.xl\@self-start {
		align-self: flex-start !important;
	}

	.xl\@self-end {
		align-self: flex-end !important;
	}

	.xl\@self-center {
		align-self: center !important;
	}

	.xl\@self-stretch {
		align-self: stretch !important;
	}

	.xl\@self-baseline {
		align-self: baseline !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/border.css?16856230815657*/
/*!
 * Utilities/Border
 */

.border-0 {
	border: 0 solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border {
	border: thin solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-sm {
	border: 0.0625rem solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-md {
	border: 0.125rem solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-lg {
	border: 0.25rem solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-xl {
	border: 0.5rem solid rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t-0 {
	border-top-width: 0 !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t {
	border-top-width: thin !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t-sm {
	border-top-width: 0.0625rem !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t-md {
	border-top-width: 0.125rem !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t-lg {
	border-top-width: 0.25rem !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-t-xl {
	border-top-width: 0.5rem !important;
	border-top-style: solid !important;
	border-top-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r-0 {
	border-right-width: 0 !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r {
	border-right-width: thin !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r-sm {
	border-right-width: 0.0625rem !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r-md {
	border-right-width: 0.125rem !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r-lg {
	border-right-width: 0.25rem !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-r-xl {
	border-right-width: 0.5rem !important;
	border-right-style: solid !important;
	border-right-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b-0 {
	border-bottom-width: 0 !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b {
	border-bottom-width: thin !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b-sm {
	border-bottom-width: 0.0625rem !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b-md {
	border-bottom-width: 0.125rem !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b-lg {
	border-bottom-width: 0.25rem !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-b-xl {
	border-bottom-width: 0.5rem !important;
	border-bottom-style: solid !important;
	border-bottom-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l-0 {
	border-left-width: 0 !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l {
	border-left-width: thin !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l-sm {
	border-left-width: 0.0625rem !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l-md {
	border-left-width: 0.125rem !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l-lg {
	border-left-width: 0.25rem !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-l-xl {
	border-left-width: 0.5rem !important;
	border-left-style: solid !important;
	border-left-color: rgb(var(--x-border-color), var(--x-border-opacity)) !important;
}

.border-dashed {
	border-style: dashed !important;
}

.border-dotted {
	border-style: dotted !important;
}

.border-double {
	border-style: double !important;
}

.border-none {
	border-style: none !important;
}

.border-solid {
	border-style: solid !important;
}

.border-opacity-0 {
	--x-border-opacity: 0 !important;
}

.border-opacity {
	--x-border-opacity: 0.12 !important;
}

.border-opacity-32 {
	--x-border-opacity: 0.32 !important;
}

.border-opacity-100 {
	--x-border-opacity: 1 !important;
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/columns.css?1685623081114*/
/*!
 * Utilities/Columns
 */

@media (min-width: 60em) {
	.md\@columns-2 {
		columns: 2 !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/display.css?16856230816139*/
/*!
 * Utilities/Display
 */

.block {
	display: block !important;
}

.inline-block {
	display: inline-block !important;
}

.inline {
	display: inline !important;
}

.flex {
	display: flex !important;
}

.inline-flex {
	display: inline-flex !important;
}

.table {
	display: table !important;
}

.table-caption {
	display: table-caption !important;
}

.table-cell {
	display: table-cell !important;
}

.table-column {
	display: table-column !important;
}

.table-column-group {
	display: table-column-group !important;
}

.table-footer-group {
	display: table-footer-group !important;
}

.table-header-group {
	display: table-header-group !important;
}

.table-row-group {
	display: table-row-group !important;
}

.table-row {
	display: table-row !important;
}

.flow-root {
	display: flow-root !important;
}

.grid {
	display: grid !important;
}

.inline-grid {
	display: inline-grid !important;
}

.contents {
	display: contents !important;
}

.list-item {
	display: list-item !important;
}

.hidden {
	display: none !important;
}

@media (min-width: 37.5em) {
	.sm\@block {
		display: block !important;
	}

	.sm\@inline-block {
		display: inline-block !important;
	}

	.sm\@inline {
		display: inline !important;
	}

	.sm\@flex {
		display: flex !important;
	}

	.sm\@inline-flex {
		display: inline-flex !important;
	}

	.sm\@table {
		display: table !important;
	}

	.sm\@table-caption {
		display: table-caption !important;
	}

	.sm\@table-cell {
		display: table-cell !important;
	}

	.sm\@table-column {
		display: table-column !important;
	}

	.sm\@table-column-group {
		display: table-column-group !important;
	}

	.sm\@table-footer-group {
		display: table-footer-group !important;
	}

	.sm\@table-header-group {
		display: table-header-group !important;
	}

	.sm\@table-row-group {
		display: table-row-group !important;
	}

	.sm\@table-row {
		display: table-row !important;
	}

	.sm\@flow-root {
		display: flow-root !important;
	}

	.sm\@grid {
		display: grid !important;
	}

	.sm\@inline-grid {
		display: inline-grid !important;
	}

	.sm\@contents {
		display: contents !important;
	}

	.sm\@list-item {
		display: list-item !important;
	}

	.sm\@hidden {
		display: none !important;
	}
}

@media (min-width: 60em) {
	.md\@block {
		display: block !important;
	}

	.md\@inline-block {
		display: inline-block !important;
	}

	.md\@inline {
		display: inline !important;
	}

	.md\@flex {
		display: flex !important;
	}

	.md\@inline-flex {
		display: inline-flex !important;
	}

	.md\@table {
		display: table !important;
	}

	.md\@table-caption {
		display: table-caption !important;
	}

	.md\@table-cell {
		display: table-cell !important;
	}

	.md\@table-column {
		display: table-column !important;
	}

	.md\@table-column-group {
		display: table-column-group !important;
	}

	.md\@table-footer-group {
		display: table-footer-group !important;
	}

	.md\@table-header-group {
		display: table-header-group !important;
	}

	.md\@table-row-group {
		display: table-row-group !important;
	}

	.md\@table-row {
		display: table-row !important;
	}

	.md\@flow-root {
		display: flow-root !important;
	}

	.md\@grid {
		display: grid !important;
	}

	.md\@inline-grid {
		display: inline-grid !important;
	}

	.md\@contents {
		display: contents !important;
	}

	.md\@list-item {
		display: list-item !important;
	}

	.md\@hidden {
		display: none !important;
	}
}

@media (min-width: 80em) {
	.lg\@block {
		display: block !important;
	}

	.lg\@inline-block {
		display: inline-block !important;
	}

	.lg\@inline {
		display: inline !important;
	}

	.lg\@flex {
		display: flex !important;
	}

	.lg\@inline-flex {
		display: inline-flex !important;
	}

	.lg\@table {
		display: table !important;
	}

	.lg\@table-caption {
		display: table-caption !important;
	}

	.lg\@table-cell {
		display: table-cell !important;
	}

	.lg\@table-column {
		display: table-column !important;
	}

	.lg\@table-column-group {
		display: table-column-group !important;
	}

	.lg\@table-footer-group {
		display: table-footer-group !important;
	}

	.lg\@table-header-group {
		display: table-header-group !important;
	}

	.lg\@table-row-group {
		display: table-row-group !important;
	}

	.lg\@table-row {
		display: table-row !important;
	}

	.lg\@flow-root {
		display: flow-root !important;
	}

	.lg\@grid {
		display: grid !important;
	}

	.lg\@inline-grid {
		display: inline-grid !important;
	}

	.lg\@contents {
		display: contents !important;
	}

	.lg\@list-item {
		display: list-item !important;
	}

	.lg\@hidden {
		display: none !important;
	}
}

@media (min-width: 100em) {
	.xl\@block {
		display: block !important;
	}

	.xl\@inline-block {
		display: inline-block !important;
	}

	.xl\@inline {
		display: inline !important;
	}

	.xl\@flex {
		display: flex !important;
	}

	.xl\@inline-flex {
		display: inline-flex !important;
	}

	.xl\@table {
		display: table !important;
	}

	.xl\@table-caption {
		display: table-caption !important;
	}

	.xl\@table-cell {
		display: table-cell !important;
	}

	.xl\@table-column {
		display: table-column !important;
	}

	.xl\@table-column-group {
		display: table-column-group !important;
	}

	.xl\@table-footer-group {
		display: table-footer-group !important;
	}

	.xl\@table-header-group {
		display: table-header-group !important;
	}

	.xl\@table-row-group {
		display: table-row-group !important;
	}

	.xl\@table-row {
		display: table-row !important;
	}

	.xl\@flow-root {
		display: flow-root !important;
	}

	.xl\@grid {
		display: grid !important;
	}

	.xl\@inline-grid {
		display: inline-grid !important;
	}

	.xl\@contents {
		display: contents !important;
	}

	.xl\@list-item {
		display: list-item !important;
	}

	.xl\@hidden {
		display: none !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/flex.css?16856230814451*/
/*!
 * Utilities/Flex
 */

.flex-row {
	flex-direction: row !important;
}

.flex-col {
	flex-direction: column !important;
}

.flex-row-reverse {
	flex-direction: row-reverse !important;
}

.flex-col-reverse {
	flex-direction: column-reverse !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-1 {
	flex: 1 1 0% !important;
}

.flex-auto {
	flex: 1 1 auto !important;
}

.flex-initial {
	flex: 0 1 auto !important;
}

.flex-none {
	flex: none !important;
}

.grow {
	flex-grow: 1 !important;
}

.grow-0 {
	flex-grow: 0 !important;
}

.shrink {
	flex-shrink: 1 !important;
}

.shrink-0 {
	flex-shrink: 0 !important;
}

@media (min-width: 37.5em) {
	.sm\@flex-row {
		flex-direction: row !important;
	}

	.sm\@flex-col {
		flex-direction: column !important;
	}

	.sm\@flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.sm\@flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.sm\@flex-wrap {
		flex-wrap: wrap !important;
	}

	.sm\@flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.sm\@flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.sm\@flex-1 {
		flex: 1 1 0% !important;
	}

	.sm\@flex-auto {
		flex: 1 1 auto !important;
	}

	.sm\@flex-initial {
		flex: 0 1 auto !important;
	}

	.sm\@flex-none {
		flex: none !important;
	}

	.sm\@grow {
		flex-grow: 1 !important;
	}

	.sm\@grow-0 {
		flex-grow: 0 !important;
	}

	.sm\@shrink {
		flex-shrink: 1 !important;
	}

	.sm\@shrink-0 {
		flex-shrink: 0 !important;
	}
}

@media (min-width: 60em) {
	.md\@flex-row {
		flex-direction: row !important;
	}

	.md\@flex-col {
		flex-direction: column !important;
	}

	.md\@flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.md\@flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.md\@flex-wrap {
		flex-wrap: wrap !important;
	}

	.md\@flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.md\@flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.md\@flex-1 {
		flex: 1 1 0% !important;
	}

	.md\@flex-auto {
		flex: 1 1 auto !important;
	}

	.md\@flex-initial {
		flex: 0 1 auto !important;
	}

	.md\@flex-none {
		flex: none !important;
	}

	.md\@grow {
		flex-grow: 1 !important;
	}

	.md\@grow-0 {
		flex-grow: 0 !important;
	}

	.md\@shrink {
		flex-shrink: 1 !important;
	}

	.md\@shrink-0 {
		flex-shrink: 0 !important;
	}
}

@media (min-width: 80em) {
	.lg\@flex-row {
		flex-direction: row !important;
	}

	.lg\@flex-col {
		flex-direction: column !important;
	}

	.lg\@flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.lg\@flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.lg\@flex-wrap {
		flex-wrap: wrap !important;
	}

	.lg\@flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.lg\@flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.lg\@flex-1 {
		flex: 1 1 0% !important;
	}

	.lg\@flex-auto {
		flex: 1 1 auto !important;
	}

	.lg\@flex-initial {
		flex: 0 1 auto !important;
	}

	.lg\@flex-none {
		flex: none !important;
	}

	.lg\@grow {
		flex-grow: 1 !important;
	}

	.lg\@grow-0 {
		flex-grow: 0 !important;
	}

	.lg\@shrink {
		flex-shrink: 1 !important;
	}

	.lg\@shrink-0 {
		flex-shrink: 0 !important;
	}
}

@media (min-width: 100em) {
	.xl\@flex-row {
		flex-direction: row !important;
	}

	.xl\@flex-col {
		flex-direction: column !important;
	}

	.xl\@flex-row-reverse {
		flex-direction: row-reverse !important;
	}

	.xl\@flex-col-reverse {
		flex-direction: column-reverse !important;
	}

	.xl\@flex-wrap {
		flex-wrap: wrap !important;
	}

	.xl\@flex-wrap-reverse {
		flex-wrap: wrap-reverse !important;
	}

	.xl\@flex-nowrap {
		flex-wrap: nowrap !important;
	}

	.xl\@flex-1 {
		flex: 1 1 0% !important;
	}

	.xl\@flex-auto {
		flex: 1 1 auto !important;
	}

	.xl\@flex-initial {
		flex: 0 1 auto !important;
	}

	.xl\@flex-none {
		flex: none !important;
	}

	.xl\@grow {
		flex-grow: 1 !important;
	}

	.xl\@grow-0 {
		flex-grow: 0 !important;
	}

	.xl\@shrink {
		flex-shrink: 1 !important;
	}

	.xl\@shrink-0 {
		flex-shrink: 0 !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/gap.css?168562308116499*/
/*!
 * Utilities/Gap
 */

.gap-0 {
	gap: 0 !important;
}

.gap-x-0 {
	column-gap: 0 !important;
}

.gap-y-0 {
	row-gap: 0 !important;
}

.gap-1 {
	gap: 0.25rem !important;
}

.gap-x-1 {
	column-gap: 0.25rem !important;
}

.gap-y-1 {
	row-gap: 0.25rem !important;
}

.gap-2 {
	gap: 0.5rem !important;
}

.gap-x-2 {
	column-gap: 0.5rem !important;
}

.gap-y-2 {
	row-gap: 0.5rem !important;
}

.gap-3 {
	gap: 0.75rem !important;
}

.gap-x-3 {
	column-gap: 0.75rem !important;
}

.gap-y-3 {
	row-gap: 0.75rem !important;
}

.gap-4 {
	gap: 1rem !important;
}

.gap-x-4 {
	column-gap: 1rem !important;
}

.gap-y-4 {
	row-gap: 1rem !important;
}

.gap-5 {
	gap: 1.25rem !important;
}

.gap-x-5 {
	column-gap: 1.25rem !important;
}

.gap-y-5 {
	row-gap: 1.25rem !important;
}

.gap-6 {
	gap: 1.5rem !important;
}

.gap-x-6 {
	column-gap: 1.5rem !important;
}

.gap-y-6 {
	row-gap: 1.5rem !important;
}

.gap-7 {
	gap: 1.75rem !important;
}

.gap-x-7 {
	column-gap: 1.75rem !important;
}

.gap-y-7 {
	row-gap: 1.75rem !important;
}

.gap-8 {
	gap: 2rem !important;
}

.gap-x-8 {
	column-gap: 2rem !important;
}

.gap-y-8 {
	row-gap: 2rem !important;
}

.gap-9 {
	gap: 2.25rem !important;
}

.gap-x-9 {
	column-gap: 2.25rem !important;
}

.gap-y-9 {
	row-gap: 2.25rem !important;
}

.gap-10 {
	gap: 2.5rem !important;
}

.gap-x-10 {
	column-gap: 2.5rem !important;
}

.gap-y-10 {
	row-gap: 2.5rem !important;
}

.gap-11 {
	gap: 2.75rem !important;
}

.gap-x-11 {
	column-gap: 2.75rem !important;
}

.gap-y-11 {
	row-gap: 2.75rem !important;
}

.gap-12 {
	gap: 3rem !important;
}

.gap-x-12 {
	column-gap: 3rem !important;
}

.gap-y-12 {
	row-gap: 3rem !important;
}

.gap-13 {
	gap: 3.25rem !important;
}

.gap-x-13 {
	column-gap: 3.25rem !important;
}

.gap-y-13 {
	row-gap: 3.25rem !important;
}

.gap-14 {
	gap: 3.5rem !important;
}

.gap-x-14 {
	column-gap: 3.5rem !important;
}

.gap-y-14 {
	row-gap: 3.5rem !important;
}

.gap-15 {
	gap: 3.75rem !important;
}

.gap-x-15 {
	column-gap: 3.75rem !important;
}

.gap-y-15 {
	row-gap: 3.75rem !important;
}

.gap-16 {
	gap: 4rem !important;
}

.gap-x-16 {
	column-gap: 4rem !important;
}

.gap-y-16 {
	row-gap: 4rem !important;
}

.gap-17 {
	gap: 4.25rem !important;
}

.gap-x-17 {
	column-gap: 4.25rem !important;
}

.gap-y-17 {
	row-gap: 4.25rem !important;
}

.gap-18 {
	gap: 4.5rem !important;
}

.gap-x-18 {
	column-gap: 4.5rem !important;
}

.gap-y-18 {
	row-gap: 4.5rem !important;
}

.gap-19 {
	gap: 4.75rem !important;
}

.gap-x-19 {
	column-gap: 4.75rem !important;
}

.gap-y-19 {
	row-gap: 4.75rem !important;
}

.gap-20 {
	gap: 5rem !important;
}

.gap-x-20 {
	column-gap: 5rem !important;
}

.gap-y-20 {
	row-gap: 5rem !important;
}

@media (min-width: 37.5em) {
	.sm\@gap-0 {
		gap: 0 !important;
	}

	.sm\@gap-x-0 {
		column-gap: 0 !important;
	}

	.sm\@gap-y-0 {
		row-gap: 0 !important;
	}

	.sm\@gap-1 {
		gap: 0.25rem !important;
	}

	.sm\@gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.sm\@gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.sm\@gap-2 {
		gap: 0.5rem !important;
	}

	.sm\@gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.sm\@gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.sm\@gap-3 {
		gap: 0.75rem !important;
	}

	.sm\@gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.sm\@gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.sm\@gap-4 {
		gap: 1rem !important;
	}

	.sm\@gap-x-4 {
		column-gap: 1rem !important;
	}

	.sm\@gap-y-4 {
		row-gap: 1rem !important;
	}

	.sm\@gap-5 {
		gap: 1.25rem !important;
	}

	.sm\@gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.sm\@gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.sm\@gap-6 {
		gap: 1.5rem !important;
	}

	.sm\@gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.sm\@gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.sm\@gap-7 {
		gap: 1.75rem !important;
	}

	.sm\@gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.sm\@gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.sm\@gap-8 {
		gap: 2rem !important;
	}

	.sm\@gap-x-8 {
		column-gap: 2rem !important;
	}

	.sm\@gap-y-8 {
		row-gap: 2rem !important;
	}

	.sm\@gap-9 {
		gap: 2.25rem !important;
	}

	.sm\@gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.sm\@gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.sm\@gap-10 {
		gap: 2.5rem !important;
	}

	.sm\@gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.sm\@gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.sm\@gap-11 {
		gap: 2.75rem !important;
	}

	.sm\@gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.sm\@gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.sm\@gap-12 {
		gap: 3rem !important;
	}

	.sm\@gap-x-12 {
		column-gap: 3rem !important;
	}

	.sm\@gap-y-12 {
		row-gap: 3rem !important;
	}

	.sm\@gap-13 {
		gap: 3.25rem !important;
	}

	.sm\@gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.sm\@gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.sm\@gap-14 {
		gap: 3.5rem !important;
	}

	.sm\@gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.sm\@gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.sm\@gap-15 {
		gap: 3.75rem !important;
	}

	.sm\@gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.sm\@gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.sm\@gap-16 {
		gap: 4rem !important;
	}

	.sm\@gap-x-16 {
		column-gap: 4rem !important;
	}

	.sm\@gap-y-16 {
		row-gap: 4rem !important;
	}

	.sm\@gap-17 {
		gap: 4.25rem !important;
	}

	.sm\@gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.sm\@gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.sm\@gap-18 {
		gap: 4.5rem !important;
	}

	.sm\@gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.sm\@gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.sm\@gap-19 {
		gap: 4.75rem !important;
	}

	.sm\@gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.sm\@gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.sm\@gap-20 {
		gap: 5rem !important;
	}

	.sm\@gap-x-20 {
		column-gap: 5rem !important;
	}

	.sm\@gap-y-20 {
		row-gap: 5rem !important;
	}
}

@media (min-width: 60em) {
	.md\@gap-0 {
		gap: 0 !important;
	}

	.md\@gap-x-0 {
		column-gap: 0 !important;
	}

	.md\@gap-y-0 {
		row-gap: 0 !important;
	}

	.md\@gap-1 {
		gap: 0.25rem !important;
	}

	.md\@gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.md\@gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.md\@gap-2 {
		gap: 0.5rem !important;
	}

	.md\@gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.md\@gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.md\@gap-3 {
		gap: 0.75rem !important;
	}

	.md\@gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.md\@gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.md\@gap-4 {
		gap: 1rem !important;
	}

	.md\@gap-x-4 {
		column-gap: 1rem !important;
	}

	.md\@gap-y-4 {
		row-gap: 1rem !important;
	}

	.md\@gap-5 {
		gap: 1.25rem !important;
	}

	.md\@gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.md\@gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.md\@gap-6 {
		gap: 1.5rem !important;
	}

	.md\@gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.md\@gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.md\@gap-7 {
		gap: 1.75rem !important;
	}

	.md\@gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.md\@gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.md\@gap-8 {
		gap: 2rem !important;
	}

	.md\@gap-x-8 {
		column-gap: 2rem !important;
	}

	.md\@gap-y-8 {
		row-gap: 2rem !important;
	}

	.md\@gap-9 {
		gap: 2.25rem !important;
	}

	.md\@gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.md\@gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.md\@gap-10 {
		gap: 2.5rem !important;
	}

	.md\@gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.md\@gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.md\@gap-11 {
		gap: 2.75rem !important;
	}

	.md\@gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.md\@gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.md\@gap-12 {
		gap: 3rem !important;
	}

	.md\@gap-x-12 {
		column-gap: 3rem !important;
	}

	.md\@gap-y-12 {
		row-gap: 3rem !important;
	}

	.md\@gap-13 {
		gap: 3.25rem !important;
	}

	.md\@gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.md\@gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.md\@gap-14 {
		gap: 3.5rem !important;
	}

	.md\@gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.md\@gap-y-14 {
		row-gap: 3.5rem !important;
	}
	.md\@gap-15 {
		gap: 3.75rem !important;
	}

	.md\@gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.md\@gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.md\@gap-16 {
		gap: 4rem !important;
	}

	.md\@gap-x-16 {
		column-gap: 4rem !important;
	}

	.md\@gap-y-16 {
		row-gap: 4rem !important;
	}

	.md\@gap-17 {
		gap: 4.25rem !important;
	}

	.md\@gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.md\@gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.md\@gap-18 {
		gap: 4.5rem !important;
	}

	.md\@gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.md\@gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.md\@gap-19 {
		gap: 4.75rem !important;
	}

	.md\@gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.md\@gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.md\@gap-20 {
		gap: 5rem !important;
	}

	.md\@gap-x-20 {
		column-gap: 5rem !important;
	}

	.md\@gap-y-20 {
		row-gap: 5rem !important;
	}
}

@media (min-width: 80em) {
	.lg\@gap-0 {
		gap: 0 !important;
	}

	.lg\@gap-x-0 {
		column-gap: 0 !important;
	}

	.lg\@gap-y-0 {
		row-gap: 0 !important;
	}

	.lg\@gap-1 {
		gap: 0.25rem !important;
	}

	.lg\@gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.lg\@gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.lg\@gap-2 {
		gap: 0.5rem !important;
	}

	.lg\@gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.lg\@gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.lg\@gap-3 {
		gap: 0.75rem !important;
	}

	.lg\@gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.lg\@gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.lg\@gap-4 {
		gap: 1rem !important;
	}

	.lg\@gap-x-4 {
		column-gap: 1rem !important;
	}

	.lg\@gap-y-4 {
		row-gap: 1rem !important;
	}

	.lg\@gap-5 {
		gap: 1.25rem !important;
	}

	.lg\@gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.lg\@gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.lg\@gap-6 {
		gap: 1.5rem !important;
	}

	.lg\@gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.lg\@gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.lg\@gap-7 {
		gap: 1.75rem !important;
	}

	.lg\@gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.lg\@gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.lg\@gap-8 {
		gap: 2rem !important;
	}

	.lg\@gap-x-8 {
		column-gap: 2rem !important;
	}

	.lg\@gap-y-8 {
		row-gap: 2rem !important;
	}

	.lg\@gap-9 {
		gap: 2.25rem !important;
	}

	.lg\@gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.lg\@gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.lg\@gap-10 {
		gap: 2.5rem !important;
	}

	.lg\@gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.lg\@gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.lg\@gap-11 {
		gap: 2.75rem !important;
	}

	.lg\@gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.lg\@gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.lg\@gap-12 {
		gap: 3rem !important;
	}

	.lg\@gap-x-12 {
		column-gap: 3rem !important;
	}

	.lg\@gap-y-12 {
		row-gap: 3rem !important;
	}

	.lg\@gap-13 {
		gap: 3.25rem !important;
	}

	.lg\@gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.lg\@gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.lg\@gap-14 {
		gap: 3.5rem !important;
	}

	.lg\@gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.lg\@gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.lg\@gap-15 {
		gap: 3.75rem !important;
	}

	.lg\@gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.lg\@gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.lg\@gap-16 {
		gap: 4rem !important;
	}

	.lg\@gap-x-16 {
		column-gap: 4rem !important;
	}

	.lg\@gap-y-16 {
		row-gap: 4rem !important;
	}

	.lg\@gap-17 {
		gap: 4.25rem !important;
	}

	.lg\@gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.lg\@gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.lg\@gap-18 {
		gap: 4.5rem !important;
	}

	.lg\@gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.lg\@gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.lg\@gap-19 {
		gap: 4.75rem !important;
	}

	.lg\@gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.lg\@gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.lg\@gap-20 {
		gap: 5rem !important;
	}

	.lg\@gap-x-20 {
		column-gap: 5rem !important;
	}

	.lg\@gap-y-20 {
		row-gap: 5rem !important;
	}
}

@media (min-width: 100em) {
	.xl\@gap-0 {
		gap: 0 !important;
	}

	.xl\@gap-x-0 {
		column-gap: 0 !important;
	}

	.xl\@gap-y-0 {
		row-gap: 0 !important;
	}

	.xl\@gap-1 {
		gap: 0.25rem !important;
	}

	.xl\@gap-x-1 {
		column-gap: 0.25rem !important;
	}

	.xl\@gap-y-1 {
		row-gap: 0.25rem !important;
	}

	.xl\@gap-2 {
		gap: 0.5rem !important;
	}

	.xl\@gap-x-2 {
		column-gap: 0.5rem !important;
	}

	.xl\@gap-y-2 {
		row-gap: 0.5rem !important;
	}

	.xl\@gap-3 {
		gap: 0.75rem !important;
	}

	.xl\@gap-x-3 {
		column-gap: 0.75rem !important;
	}

	.xl\@gap-y-3 {
		row-gap: 0.75rem !important;
	}

	.xl\@gap-4 {
		gap: 1rem !important;
	}

	.xl\@gap-x-4 {
		column-gap: 1rem !important;
	}

	.xl\@gap-y-4 {
		row-gap: 1rem !important;
	}

	.xl\@gap-5 {
		gap: 1.25rem !important;
	}

	.xl\@gap-x-5 {
		column-gap: 1.25rem !important;
	}

	.xl\@gap-y-5 {
		row-gap: 1.25rem !important;
	}

	.xl\@gap-6 {
		gap: 1.5rem !important;
	}

	.xl\@gap-x-6 {
		column-gap: 1.5rem !important;
	}

	.xl\@gap-y-6 {
		row-gap: 1.5rem !important;
	}

	.xl\@gap-7 {
		gap: 1.75rem !important;
	}

	.xl\@gap-x-7 {
		column-gap: 1.75rem !important;
	}

	.xl\@gap-y-7 {
		row-gap: 1.75rem !important;
	}

	.xl\@gap-8 {
		gap: 2rem !important;
	}

	.xl\@gap-x-8 {
		column-gap: 2rem !important;
	}

	.xl\@gap-y-8 {
		row-gap: 2rem !important;
	}

	.xl\@gap-9 {
		gap: 2.25rem !important;
	}

	.xl\@gap-x-9 {
		column-gap: 2.25rem !important;
	}

	.xl\@gap-y-9 {
		row-gap: 2.25rem !important;
	}

	.xl\@gap-10 {
		gap: 2.5rem !important;
	}

	.xl\@gap-x-10 {
		column-gap: 2.5rem !important;
	}

	.xl\@gap-y-10 {
		row-gap: 2.5rem !important;
	}

	.xl\@gap-11 {
		gap: 2.75rem !important;
	}

	.xl\@gap-x-11 {
		column-gap: 2.75rem !important;
	}

	.xl\@gap-y-11 {
		row-gap: 2.75rem !important;
	}

	.xl\@gap-12 {
		gap: 3rem !important;
	}

	.xl\@gap-x-12 {
		column-gap: 3rem !important;
	}

	.xl\@gap-y-12 {
		row-gap: 3rem !important;
	}

	.xl\@gap-13 {
		gap: 3.25rem !important;
	}

	.xl\@gap-x-13 {
		column-gap: 3.25rem !important;
	}

	.xl\@gap-y-13 {
		row-gap: 3.25rem !important;
	}

	.xl\@gap-14 {
		gap: 3.5rem !important;
	}

	.xl\@gap-x-14 {
		column-gap: 3.5rem !important;
	}

	.xl\@gap-y-14 {
		row-gap: 3.5rem !important;
	}

	.xl\@gap-15 {
		gap: 3.75rem !important;
	}

	.xl\@gap-x-15 {
		column-gap: 3.75rem !important;
	}

	.xl\@gap-y-15 {
		row-gap: 3.75rem !important;
	}

	.xl\@gap-16 {
		gap: 4rem !important;
	}

	.xl\@gap-x-16 {
		column-gap: 4rem !important;
	}

	.xl\@gap-y-16 {
		row-gap: 4rem !important;
	}

	.xl\@gap-17 {
		gap: 4.25rem !important;
	}

	.xl\@gap-x-17 {
		column-gap: 4.25rem !important;
	}

	.xl\@gap-y-17 {
		row-gap: 4.25rem !important;
	}

	.xl\@gap-18 {
		gap: 4.5rem !important;
	}

	.xl\@gap-x-18 {
		column-gap: 4.5rem !important;
	}

	.xl\@gap-y-18 {
		row-gap: 4.5rem !important;
	}

	.xl\@gap-19 {
		gap: 4.75rem !important;
	}

	.xl\@gap-x-19 {
		column-gap: 4.75rem !important;
	}

	.xl\@gap-y-19 {
		row-gap: 4.75rem !important;
	}

	.xl\@gap-20 {
		gap: 5rem !important;
	}

	.xl\@gap-x-20 {
		column-gap: 5rem !important;
	}

	.xl\@gap-y-20 {
		row-gap: 5rem !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/grid.css?168562308133459*/
/*!
* Components/Grid
*/

.grid-flow-row {
	grid-auto-flow: row !important;
}

.grid-flow-col {
	grid-auto-flow: column !important;
}

.grid-flow-row-dense {
	grid-auto-flow: row dense !important;
}

.grid-flow-col-dense {
	grid-auto-flow: column dense !important;
}

.auto-cols-max {
	grid-auto-columns: max-content !important;
}

.auto-cols-min {
	grid-auto-columns: min-content !important;
}

.auto-cols-auto {
	grid-auto-columns: auto !important;
}

.auto-cols-fr {
	grid-auto-columns: minmax(0, 1fr) !important;
}

.auto-rows-max {
	grid-auto-rows: max-content !important;
}

.auto-rows-min {
	grid-auto-rows: min-content !important;
}

.auto-rows-auto {
	grid-auto-rows: auto !important;
}

.auto-rows-fr {
	grid-auto-rows: minmax(0, 1fr) !important;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grid-cols-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.grid-cols-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.grid-cols-8 {
	grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.grid-cols-9 {
	grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.grid-cols-10 {
	grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.grid-cols-11 {
	grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.grid-cols-12 {
	grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.grid-cols-none {
	grid-template-columns: none !important;
}

.grid-rows-1 {
	grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.grid-rows-2 {
	grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.grid-rows-3 {
	grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.grid-rows-4 {
	grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.grid-rows-5 {
	grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.grid-rows-6 {
	grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.grid-rows-none {
	grid-template-rows: none !important;
}

.col-auto {
	grid-column: auto !important;
}

.col-span-1 {
	grid-column: span 1 / span 1 !important;
}

.col-span-2 {
	grid-column: span 2 / span 2 !important;
}

.col-span-3 {
	grid-column: span 3 / span 3 !important;
}

.col-span-4 {
	grid-column: span 4 / span 4 !important;
}

.col-span-5 {
	grid-column: span 5 / span 5 !important;
}

.col-span-6 {
	grid-column: span 6 / span 6 !important;
}

.col-span-7 {
	grid-column: span 7 / span 7 !important;
}

.col-span-8 {
	grid-column: span 8 / span 8 !important;
}

.col-span-9 {
	grid-column: span 9 / span 9 !important;
}

.col-span-10 {
	grid-column: span 10 / span 10 !important;
}

.col-span-11 {
	grid-column: span 11 / span 11 !important;
}

.col-span-12 {
	grid-column: span 12 / span 12 !important;
}

.col-span-full {
	grid-column: 1 / -1 !important;
}

.col-start-1 {
	grid-column-start: 1 !important;
}

.col-start-2 {
	grid-column-start: 2 !important;
}

.col-start-3 {
	grid-column-start: 3 !important;
}

.col-start-4 {
	grid-column-start: 4 !important;
}

.col-start-5 {
	grid-column-start: 5 !important;
}

.col-start-6 {
	grid-column-start: 6 !important;
}

.col-start-7 {
	grid-column-start: 7 !important;
}

.col-start-8 {
	grid-column-start: 8 !important;
}

.col-start-9 {
	grid-column-start: 9 !important;
}

.col-start-10 {
	grid-column-start: 10 !important;
}

.col-start-11 {
	grid-column-start: 11 !important;
}

.col-start-12 {
	grid-column-start: 12 !important;
}

.col-start-13 {
	grid-column-start: 13 !important;
}

.col-start-auto {
	grid-column-start: auto !important;
}

.col-end-1 {
	grid-column-end: 1 !important;
}

.col-end-2 {
	grid-column-end: 2 !important;
}

.col-end-3 {
	grid-column-end: 3 !important;
}

.col-end-4 {
	grid-column-end: 4 !important;
}

.col-end-5 {
	grid-column-end: 5 !important;
}

.col-end-6 {
	grid-column-end: 6 !important;
}

.col-end-7 {
	grid-column-end: 7 !important;
}

.col-end-8 {
	grid-column-end: 8 !important;
}

.col-end-9 {
	grid-column-end: 9 !important;
}

.col-end-10 {
	grid-column-end: 10 !important;
}

.col-end-11 {
	grid-column-end: 11 !important;
}

.col-end-12 {
	grid-column-end: 12 !important;
}

.col-end-13 {
	grid-column-end: 13 !important;
}

.col-end-auto {
	grid-column-end: auto !important;
}

.row-auto {
	grid-row: auto !important;
}

.row-span-1 {
	grid-row: span 1 / span 1 !important;
}

.row-span-2 {
	grid-row: span 2 / span 2 !important;
}

.row-span-3 {
	grid-row: span 3 / span 3 !important;
}

.row-span-4 {
	grid-row: span 4 / span 4 !important;
}

.row-span-5 {
	grid-row: span 5 / span 5 !important;
}

.row-span-6 {
	grid-row: span 6 / span 6 !important;
}

.row-span-full {
	grid-row: 1 / -1 !important;
}

.row-start-1 {
	grid-row-start: 1 !important;
}

.row-start-2 {
	grid-row-start: 2 !important;
}

.row-start-3 {
	grid-row-start: 3 !important;
}

.row-start-4 {
	grid-row-start: 4 !important;
}

.row-start-5 {
	grid-row-start: 5 !important;
}

.row-start-6 {
	grid-row-start: 6 !important;
}

.row-start-7 {
	grid-row-start: 7 !important;
}

.row-start-auto {
	grid-row-start: auto !important;
}

.row-end-1 {
	grid-row-end: 1 !important;
}

.row-end-2 {
	grid-row-end: 2 !important;
}

.row-end-3 {
	grid-row-end: 3 !important;
}

.row-end-4 {
	grid-row-end: 4 !important;
}

.row-end-5 {
	grid-row-end: 5 !important;
}

.row-end-6 {
	grid-row-end: 6 !important;
}

.row-end-7 {
	grid-row-end: 7 !important;
}

.row-end-auto {
	grid-row-end: auto !important;
}

@media (min-width: 37.5em) {
	.sm\@grid-flow-row {
		grid-auto-flow: row !important;
	}

	.sm\@grid-flow-col {
		grid-auto-flow: column !important;
	}

	.sm\@grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.sm\@grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.sm\@auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.sm\@auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.sm\@auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.sm\@auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.sm\@auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.sm\@auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.sm\@auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.sm\@auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.sm\@grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.sm\@grid-cols-none {
		grid-template-columns: none !important;
	}

	.sm\@grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.sm\@grid-rows-none {
		grid-template-rows: none !important;
	}

	.sm\@col-auto {
		grid-column: auto !important;
	}

	.sm\@col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.sm\@col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.sm\@col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.sm\@col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.sm\@col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.sm\@col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.sm\@col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.sm\@col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.sm\@col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.sm\@col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.sm\@col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.sm\@col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.sm\@col-span-full {
		grid-column: 1 / -1 !important;
	}

	.sm\@col-start-1 {
		grid-column-start: 1 !important;
	}

	.sm\@col-start-2 {
		grid-column-start: 2 !important;
	}

	.sm\@col-start-3 {
		grid-column-start: 3 !important;
	}

	.sm\@col-start-4 {
		grid-column-start: 4 !important;
	}

	.sm\@col-start-5 {
		grid-column-start: 5 !important;
	}

	.sm\@col-start-6 {
		grid-column-start: 6 !important;
	}

	.sm\@col-start-7 {
		grid-column-start: 7 !important;
	}

	.sm\@col-start-8 {
		grid-column-start: 8 !important;
	}

	.sm\@col-start-9 {
		grid-column-start: 9 !important;
	}

	.sm\@col-start-10 {
		grid-column-start: 10 !important;
	}

	.sm\@col-start-11 {
		grid-column-start: 11 !important;
	}

	.sm\@col-start-12 {
		grid-column-start: 12 !important;
	}

	.sm\@col-start-13 {
		grid-column-start: 13 !important;
	}

	.sm\@col-start-auto {
		grid-column-start: auto !important;
	}

	.sm\@col-end-1 {
		grid-column-end: 1 !important;
	}

	.sm\@col-end-2 {
		grid-column-end: 2 !important;
	}

	.sm\@col-end-3 {
		grid-column-end: 3 !important;
	}

	.sm\@col-end-4 {
		grid-column-end: 4 !important;
	}

	.sm\@col-end-5 {
		grid-column-end: 5 !important;
	}

	.sm\@col-end-6 {
		grid-column-end: 6 !important;
	}

	.sm\@col-end-7 {
		grid-column-end: 7 !important;
	}

	.sm\@col-end-8 {
		grid-column-end: 8 !important;
	}

	.sm\@col-end-9 {
		grid-column-end: 9 !important;
	}

	.sm\@col-end-10 {
		grid-column-end: 10 !important;
	}

	.sm\@col-end-11 {
		grid-column-end: 11 !important;
	}

	.sm\@col-end-12 {
		grid-column-end: 12 !important;
	}

	.sm\@col-end-13 {
		grid-column-end: 13 !important;
	}

	.sm\@col-end-auto {
		grid-column-end: auto !important;
	}

	.sm\@row-auto {
		grid-row: auto !important;
	}

	.sm\@row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.sm\@row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.sm\@row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.sm\@row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.sm\@row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.sm\@row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.sm\@row-span-full {
		grid-row: 1 / -1 !important;
	}

	.sm\@row-start-1 {
		grid-row-start: 1 !important;
	}

	.sm\@row-start-2 {
		grid-row-start: 2 !important;
	}

	.sm\@row-start-3 {
		grid-row-start: 3 !important;
	}

	.sm\@row-start-4 {
		grid-row-start: 4 !important;
	}

	.sm\@row-start-5 {
		grid-row-start: 5 !important;
	}

	.sm\@row-start-6 {
		grid-row-start: 6 !important;
	}

	.sm\@row-start-7 {
		grid-row-start: 7 !important;
	}

	.sm\@row-start-auto {
		grid-row-start: auto !important;
	}

	.sm\@row-end-1 {
		grid-row-end: 1 !important;
	}

	.sm\@row-end-2 {
		grid-row-end: 2 !important;
	}

	.sm\@row-end-3 {
		grid-row-end: 3 !important;
	}

	.sm\@row-end-4 {
		grid-row-end: 4 !important;
	}

	.sm\@row-end-5 {
		grid-row-end: 5 !important;
	}

	.sm\@row-end-6 {
		grid-row-end: 6 !important;
	}

	.sm\@row-end-7 {
		grid-row-end: 7 !important;
	}

	.sm\@row-end-auto {
		grid-row-end: auto !important;
	}
}

@media (min-width: 60em) {
	.md\@grid-flow-row {
		grid-auto-flow: row !important;
	}

	.md\@grid-flow-col {
		grid-auto-flow: column !important;
	}

	.md\@grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.md\@grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.md\@auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.md\@auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.md\@auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.md\@auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.md\@auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.md\@auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.md\@auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.md\@auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.md\@grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.md\@grid-cols-none {
		grid-template-columns: none !important;
	}

	.md\@grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.md\@grid-rows-none {
		grid-template-rows: none !important;
	}

	.md\@col-auto {
		grid-column: auto !important;
	}

	.md\@col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.md\@col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.md\@col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.md\@col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.md\@col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.md\@col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.md\@col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.md\@col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.md\@col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.md\@col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.md\@col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.md\@col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.md\@col-span-full {
		grid-column: 1 / -1 !important;
	}

	.md\@col-start-1 {
		grid-column-start: 1 !important;
	}

	.md\@col-start-2 {
		grid-column-start: 2 !important;
	}

	.md\@col-start-3 {
		grid-column-start: 3 !important;
	}

	.md\@col-start-4 {
		grid-column-start: 4 !important;
	}

	.md\@col-start-5 {
		grid-column-start: 5 !important;
	}

	.md\@col-start-6 {
		grid-column-start: 6 !important;
	}

	.md\@col-start-7 {
		grid-column-start: 7 !important;
	}

	.md\@col-start-8 {
		grid-column-start: 8 !important;
	}

	.md\@col-start-9 {
		grid-column-start: 9 !important;
	}

	.md\@col-start-10 {
		grid-column-start: 10 !important;
	}

	.md\@col-start-11 {
		grid-column-start: 11 !important;
	}

	.md\@col-start-12 {
		grid-column-start: 12 !important;
	}

	.md\@col-start-13 {
		grid-column-start: 13 !important;
	}

	.md\@col-start-auto {
		grid-column-start: auto !important;
	}

	.md\@col-end-1 {
		grid-column-end: 1 !important;
	}

	.md\@col-end-2 {
		grid-column-end: 2 !important;
	}

	.md\@col-end-3 {
		grid-column-end: 3 !important;
	}

	.md\@col-end-4 {
		grid-column-end: 4 !important;
	}

	.md\@col-end-5 {
		grid-column-end: 5 !important;
	}

	.md\@col-end-6 {
		grid-column-end: 6 !important;
	}

	.md\@col-end-7 {
		grid-column-end: 7 !important;
	}

	.md\@col-end-8 {
		grid-column-end: 8 !important;
	}

	.md\@col-end-9 {
		grid-column-end: 9 !important;
	}

	.md\@col-end-10 {
		grid-column-end: 10 !important;
	}

	.md\@col-end-11 {
		grid-column-end: 11 !important;
	}

	.md\@col-end-12 {
		grid-column-end: 12 !important;
	}

	.md\@col-end-13 {
		grid-column-end: 13 !important;
	}

	.md\@col-end-auto {
		grid-column-end: auto !important;
	}

	.md\@row-auto {
		grid-row: auto !important;
	}

	.md\@row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.md\@row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.md\@row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.md\@row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.md\@row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.md\@row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.md\@row-span-full {
		grid-row: 1 / -1 !important;
	}

	.md\@row-start-1 {
		grid-row-start: 1 !important;
	}

	.md\@row-start-2 {
		grid-row-start: 2 !important;
	}

	.md\@row-start-3 {
		grid-row-start: 3 !important;
	}

	.md\@row-start-4 {
		grid-row-start: 4 !important;
	}

	.md\@row-start-5 {
		grid-row-start: 5 !important;
	}

	.md\@row-start-6 {
		grid-row-start: 6 !important;
	}

	.md\@row-start-7 {
		grid-row-start: 7 !important;
	}

	.md\@row-start-auto {
		grid-row-start: auto !important;
	}

	.md\@row-end-1 {
		grid-row-end: 1 !important;
	}

	.md\@row-end-2 {
		grid-row-end: 2 !important;
	}

	.md\@row-end-3 {
		grid-row-end: 3 !important;
	}

	.md\@row-end-4 {
		grid-row-end: 4 !important;
	}

	.md\@row-end-5 {
		grid-row-end: 5 !important;
	}

	.md\@row-end-6 {
		grid-row-end: 6 !important;
	}

	.md\@row-end-7 {
		grid-row-end: 7 !important;
	}

	.md\@row-end-auto {
		grid-row-end: auto !important;
	}
}

@media (min-width: 80em) {
	.lg\@grid-flow-row {
		grid-auto-flow: row !important;
	}

	.lg\@grid-flow-col {
		grid-auto-flow: column !important;
	}

	.lg\@grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.lg\@grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.lg\@auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.lg\@auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.lg\@auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.lg\@auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.lg\@auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.lg\@auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.lg\@auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.lg\@auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.lg\@grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.lg\@grid-cols-none {
		grid-template-columns: none !important;
	}

	.lg\@grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.lg\@grid-rows-none {
		grid-template-rows: none !important;
	}

	.lg\@col-auto {
		grid-column: auto !important;
	}

	.lg\@col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.lg\@col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.lg\@col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.lg\@col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.lg\@col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.lg\@col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.lg\@col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.lg\@col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.lg\@col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.lg\@col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.lg\@col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.lg\@col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.lg\@col-span-full {
		grid-column: 1 / -1 !important;
	}

	.lg\@col-start-1 {
		grid-column-start: 1 !important;
	}

	.lg\@col-start-2 {
		grid-column-start: 2 !important;
	}

	.lg\@col-start-3 {
		grid-column-start: 3 !important;
	}

	.lg\@col-start-4 {
		grid-column-start: 4 !important;
	}

	.lg\@col-start-5 {
		grid-column-start: 5 !important;
	}

	.lg\@col-start-6 {
		grid-column-start: 6 !important;
	}

	.lg\@col-start-7 {
		grid-column-start: 7 !important;
	}

	.lg\@col-start-8 {
		grid-column-start: 8 !important;
	}

	.lg\@col-start-9 {
		grid-column-start: 9 !important;
	}

	.lg\@col-start-10 {
		grid-column-start: 10 !important;
	}

	.lg\@col-start-11 {
		grid-column-start: 11 !important;
	}

	.lg\@col-start-12 {
		grid-column-start: 12 !important;
	}

	.lg\@col-start-13 {
		grid-column-start: 13 !important;
	}

	.lg\@col-start-auto {
		grid-column-start: auto !important;
	}

	.lg\@col-end-1 {
		grid-column-end: 1 !important;
	}

	.lg\@col-end-2 {
		grid-column-end: 2 !important;
	}

	.lg\@col-end-3 {
		grid-column-end: 3 !important;
	}

	.lg\@col-end-4 {
		grid-column-end: 4 !important;
	}

	.lg\@col-end-5 {
		grid-column-end: 5 !important;
	}

	.lg\@col-end-6 {
		grid-column-end: 6 !important;
	}

	.lg\@col-end-7 {
		grid-column-end: 7 !important;
	}

	.lg\@col-end-8 {
		grid-column-end: 8 !important;
	}

	.lg\@col-end-9 {
		grid-column-end: 9 !important;
	}

	.lg\@col-end-10 {
		grid-column-end: 10 !important;
	}

	.lg\@col-end-11 {
		grid-column-end: 11 !important;
	}

	.lg\@col-end-12 {
		grid-column-end: 12 !important;
	}

	.lg\@col-end-13 {
		grid-column-end: 13 !important;
	}

	.lg\@col-end-auto {
		grid-column-end: auto !important;
	}

	.lg\@row-auto {
		grid-row: auto !important;
	}

	.lg\@row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.lg\@row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.lg\@row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.lg\@row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.lg\@row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.lg\@row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.lg\@row-span-full {
		grid-row: 1 / -1 !important;
	}

	.lg\@row-start-1 {
		grid-row-start: 1 !important;
	}

	.lg\@row-start-2 {
		grid-row-start: 2 !important;
	}

	.lg\@row-start-3 {
		grid-row-start: 3 !important;
	}

	.lg\@row-start-4 {
		grid-row-start: 4 !important;
	}

	.lg\@row-start-5 {
		grid-row-start: 5 !important;
	}

	.lg\@row-start-6 {
		grid-row-start: 6 !important;
	}

	.lg\@row-start-7 {
		grid-row-start: 7 !important;
	}

	.lg\@row-start-auto {
		grid-row-start: auto !important;
	}

	.lg\@row-end-1 {
		grid-row-end: 1 !important;
	}

	.lg\@row-end-2 {
		grid-row-end: 2 !important;
	}

	.lg\@row-end-3 {
		grid-row-end: 3 !important;
	}

	.lg\@row-end-4 {
		grid-row-end: 4 !important;
	}

	.lg\@row-end-5 {
		grid-row-end: 5 !important;
	}

	.lg\@row-end-6 {
		grid-row-end: 6 !important;
	}

	.lg\@row-end-7 {
		grid-row-end: 7 !important;
	}

	.lg\@row-end-auto {
		grid-row-end: auto !important;
	}
}

@media (min-width: 100em) {
	.xl\@grid-flow-row {
		grid-auto-flow: row !important;
	}

	.xl\@grid-flow-col {
		grid-auto-flow: column !important;
	}

	.xl\@grid-flow-row-dense {
		grid-auto-flow: row dense !important;
	}

	.xl\@grid-flow-col-dense {
		grid-auto-flow: column dense !important;
	}

	.xl\@auto-cols-max {
		grid-auto-columns: max-content !important;
	}

	.xl\@auto-cols-min {
		grid-auto-columns: min-content !important;
	}

	.xl\@auto-cols-auto {
		grid-auto-columns: auto !important;
	}

	.xl\@auto-cols-fr {
		grid-auto-columns: minmax(0, 1fr) !important;
	}

	.xl\@auto-rows-max {
		grid-auto-rows: max-content !important;
	}

	.xl\@auto-rows-min {
		grid-auto-rows: min-content !important;
	}

	.xl\@auto-rows-auto {
		grid-auto-rows: auto !important;
	}

	.xl\@auto-rows-fr {
		grid-auto-rows: minmax(0, 1fr) !important;
	}

	.xl\@grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-6 {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-7 {
		grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-8 {
		grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-9 {
		grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-10 {
		grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-11 {
		grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	}

	.xl\@grid-cols-none {
		grid-template-columns: none !important;
	}

	.xl\@grid-rows-1 {
		grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-2 {
		grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-3 {
		grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-4 {
		grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-5 {
		grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-6 {
		grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
	}

	.xl\@grid-rows-none {
		grid-template-rows: none !important;
	}

	.xl\@col-auto {
		grid-column: auto !important;
	}

	.xl\@col-span-1 {
		grid-column: span 1 / span 1 !important;
	}

	.xl\@col-span-2 {
		grid-column: span 2 / span 2 !important;
	}

	.xl\@col-span-3 {
		grid-column: span 3 / span 3 !important;
	}

	.xl\@col-span-4 {
		grid-column: span 4 / span 4 !important;
	}

	.xl\@col-span-5 {
		grid-column: span 5 / span 5 !important;
	}

	.xl\@col-span-6 {
		grid-column: span 6 / span 6 !important;
	}

	.xl\@col-span-7 {
		grid-column: span 7 / span 7 !important;
	}

	.xl\@col-span-8 {
		grid-column: span 8 / span 8 !important;
	}

	.xl\@col-span-9 {
		grid-column: span 9 / span 9 !important;
	}

	.xl\@col-span-10 {
		grid-column: span 10 / span 10 !important;
	}

	.xl\@col-span-11 {
		grid-column: span 11 / span 11 !important;
	}

	.xl\@col-span-12 {
		grid-column: span 12 / span 12 !important;
	}

	.xl\@col-span-full {
		grid-column: 1 / -1 !important;
	}

	.xl\@col-start-1 {
		grid-column-start: 1 !important;
	}

	.xl\@col-start-2 {
		grid-column-start: 2 !important;
	}

	.xl\@col-start-3 {
		grid-column-start: 3 !important;
	}

	.xl\@col-start-4 {
		grid-column-start: 4 !important;
	}

	.xl\@col-start-5 {
		grid-column-start: 5 !important;
	}

	.xl\@col-start-6 {
		grid-column-start: 6 !important;
	}

	.xl\@col-start-7 {
		grid-column-start: 7 !important;
	}

	.xl\@col-start-8 {
		grid-column-start: 8 !important;
	}

	.xl\@col-start-9 {
		grid-column-start: 9 !important;
	}

	.xl\@col-start-10 {
		grid-column-start: 10 !important;
	}

	.xl\@col-start-11 {
		grid-column-start: 11 !important;
	}

	.xl\@col-start-12 {
		grid-column-start: 12 !important;
	}

	.xl\@col-start-13 {
		grid-column-start: 13 !important;
	}

	.xl\@col-start-auto {
		grid-column-start: auto !important;
	}

	.xl\@col-end-1 {
		grid-column-end: 1 !important;
	}

	.xl\@col-end-2 {
		grid-column-end: 2 !important;
	}

	.xl\@col-end-3 {
		grid-column-end: 3 !important;
	}

	.xl\@col-end-4 {
		grid-column-end: 4 !important;
	}

	.xl\@col-end-5 {
		grid-column-end: 5 !important;
	}

	.xl\@col-end-6 {
		grid-column-end: 6 !important;
	}

	.xl\@col-end-7 {
		grid-column-end: 7 !important;
	}

	.xl\@col-end-8 {
		grid-column-end: 8 !important;
	}

	.xl\@col-end-9 {
		grid-column-end: 9 !important;
	}

	.xl\@col-end-10 {
		grid-column-end: 10 !important;
	}

	.xl\@col-end-11 {
		grid-column-end: 11 !important;
	}

	.xl\@col-end-12 {
		grid-column-end: 12 !important;
	}

	.xl\@col-end-13 {
		grid-column-end: 13 !important;
	}

	.xl\@col-end-auto {
		grid-column-end: auto !important;
	}

	.xl\@row-auto {
		grid-row: auto !important;
	}

	.xl\@row-span-1 {
		grid-row: span 1 / span 1 !important;
	}

	.xl\@row-span-2 {
		grid-row: span 2 / span 2 !important;
	}

	.xl\@row-span-3 {
		grid-row: span 3 / span 3 !important;
	}

	.xl\@row-span-4 {
		grid-row: span 4 / span 4 !important;
	}

	.xl\@row-span-5 {
		grid-row: span 5 / span 5 !important;
	}

	.xl\@row-span-6 {
		grid-row: span 6 / span 6 !important;
	}

	.xl\@row-span-full {
		grid-row: 1 / -1 !important;
	}

	.xl\@row-start-1 {
		grid-row-start: 1 !important;
	}

	.xl\@row-start-2 {
		grid-row-start: 2 !important;
	}

	.xl\@row-start-3 {
		grid-row-start: 3 !important;
	}

	.xl\@row-start-4 {
		grid-row-start: 4 !important;
	}

	.xl\@row-start-5 {
		grid-row-start: 5 !important;
	}

	.xl\@row-start-6 {
		grid-row-start: 6 !important;
	}

	.xl\@row-start-7 {
		grid-row-start: 7 !important;
	}

	.xl\@row-start-auto {
		grid-row-start: auto !important;
	}

	.xl\@row-end-1 {
		grid-row-end: 1 !important;
	}

	.xl\@row-end-2 {
		grid-row-end: 2 !important;
	}

	.xl\@row-end-3 {
		grid-row-end: 3 !important;
	}

	.xl\@row-end-4 {
		grid-row-end: 4 !important;
	}

	.xl\@row-end-5 {
		grid-row-end: 5 !important;
	}

	.xl\@row-end-6 {
		grid-row-end: 6 !important;
	}

	.xl\@row-end-7 {
		grid-row-end: 7 !important;
	}

	.xl\@row-end-auto {
		grid-row-end: auto !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/justify.css?16856230815388*/
/*!
* Components/Justify
*/

.justify-start {
	justify-content: flex-start !important;
}

.justify-end {
	justify-content: flex-end !important;
}

.justify-center {
	justify-content: center !important;
}

.justify-between {
	justify-content: space-between !important;
}

.justify-around {
	justify-content: space-around !important;
}

.justify-evenly {
	justify-content: space-evenly !important;
}

.justify-items-start {
	justify-items: start !important;
}

.justify-items-end {
	justify-items: end !important;
}

.justify-items-center {
	justify-items: center !important;
}

.justify-items-stretch {
	justify-items: stretch !important;
}

.justify-self-auto {
	justify-self: auto !important;
}

.justify-self-start {
	justify-self: start !important;
}

.justify-self-end {
	justify-self: end !important;
}

.justify-self-center {
	justify-self: center !important;
}

.justify-self-stretch {
	justify-self: stretch !important;
}

@media (min-width: 37.5em) {
	.sm\@justify-start {
		justify-content: flex-start !important;
	}

	.sm\@justify-end {
		justify-content: flex-end !important;
	}

	.sm\@justify-center {
		justify-content: center !important;
	}

	.sm\@justify-between {
		justify-content: space-between !important;
	}

	.sm\@justify-around {
		justify-content: space-around !important;
	}

	.sm\@justify-evenly {
		justify-content: space-evenly !important;
	}

	.sm\@justify-items-start {
		justify-items: start !important;
	}

	.sm\@justify-items-end {
		justify-items: end !important;
	}

	.sm\@justify-items-center {
		justify-items: center !important;
	}

	.sm\@justify-items-stretch {
		justify-items: stretch !important;
	}

	.sm\@justify-self-auto {
		justify-self: auto !important;
	}

	.sm\@justify-self-start {
		justify-self: start !important;
	}

	.sm\@justify-self-end {
		justify-self: end !important;
	}

	.sm\@justify-self-center {
		justify-self: center !important;
	}

	.sm\@justify-self-stretch {
		justify-self: stretch !important;
	}
}

@media (min-width: 60em) {
	.md\@justify-start {
		justify-content: flex-start !important;
	}

	.md\@justify-end {
		justify-content: flex-end !important;
	}

	.md\@justify-center {
		justify-content: center !important;
	}

	.md\@justify-between {
		justify-content: space-between !important;
	}

	.md\@justify-around {
		justify-content: space-around !important;
	}

	.md\@justify-evenly {
		justify-content: space-evenly !important;
	}

	.md\@justify-items-start {
		justify-items: start !important;
	}

	.md\@justify-items-end {
		justify-items: end !important;
	}

	.md\@justify-items-center {
		justify-items: center !important;
	}

	.md\@justify-items-stretch {
		justify-items: stretch !important;
	}

	.md\@justify-self-auto {
		justify-self: auto !important;
	}

	.md\@justify-self-start {
		justify-self: start !important;
	}

	.md\@justify-self-end {
		justify-self: end !important;
	}

	.md\@justify-self-center {
		justify-self: center !important;
	}

	.md\@justify-self-stretch {
		justify-self: stretch !important;
	}
}

@media (min-width: 80em) {
	.lg\@justify-start {
		justify-content: flex-start !important;
	}

	.lg\@justify-end {
		justify-content: flex-end !important;
	}

	.lg\@justify-center {
		justify-content: center !important;
	}

	.lg\@justify-between {
		justify-content: space-between !important;
	}

	.lg\@justify-around {
		justify-content: space-around !important;
	}

	.lg\@justify-evenly {
		justify-content: space-evenly !important;
	}

	.lg\@justify-items-start {
		justify-items: start !important;
	}

	.lg\@justify-items-end {
		justify-items: end !important;
	}

	.lg\@justify-items-center {
		justify-items: center !important;
	}

	.lg\@justify-items-stretch {
		justify-items: stretch !important;
	}

	.lg\@justify-self-auto {
		justify-self: auto !important;
	}

	.lg\@justify-self-start {
		justify-self: start !important;
	}

	.lg\@justify-self-end {
		justify-self: end !important;
	}

	.lg\@justify-self-center {
		justify-self: center !important;
	}

	.lg\@justify-self-stretch {
		justify-self: stretch !important;
	}
}

@media (min-width: 100em) {
	.xl\@justify-start {
		justify-content: flex-start !important;
	}

	.xl\@justify-end {
		justify-content: flex-end !important;
	}

	.xl\@justify-center {
		justify-content: center !important;
	}

	.xl\@justify-between {
		justify-content: space-between !important;
	}

	.xl\@justify-around {
		justify-content: space-around !important;
	}

	.xl\@justify-evenly {
		justify-content: space-evenly !important;
	}

	.xl\@justify-items-start {
		justify-items: start !important;
	}

	.xl\@justify-items-end {
		justify-items: end !important;
	}

	.xl\@justify-items-center {
		justify-items: center !important;
	}

	.xl\@justify-items-stretch {
		justify-items: stretch !important;
	}

	.xl\@justify-self-auto {
		justify-self: auto !important;
	}

	.xl\@justify-self-start {
		justify-self: start !important;
	}

	.xl\@justify-self-end {
		justify-self: end !important;
	}

	.xl\@justify-self-center {
		justify-self: center !important;
	}

	.xl\@justify-self-stretch {
		justify-self: stretch !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/opacity.css?1685623081463*/
/*!
 * Utilities/Opacity
 */

.opacity-0 {
	opacity: 0 !important;
}

.opacity-20 {
	opacity: 0.2 !important;
}

.opacity-25 {
	opacity: 0.25 !important;
}

.opacity-50 {
	opacity: 0.5 !important;
}
.opacity-50-hover:hover {
	opacity: 0.5 !important;
}

.opacity-75 {
	opacity: 0.75 !important;
}

.opacity-80 {
	opacity: 0.8 !important;
}

.opacity-90 {
	opacity: 0.9 !important;
}

.opacity-100 {
	opacity: 1 !important;
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/order.css?16856230813692*/
/*!
 * Utilities/Order
 */

.order-1 {
	order: 1 !important;
}

.order-2 {
	order: 2 !important;
}

.order-3 {
	order: 3 !important;
}

.order-4 {
	order: 4 !important;
}

.order-5 {
	order: 5 !important;
}

.order-6 {
	order: 6 !important;
}

.order-7 {
	order: 7 !important;
}

.order-8 {
	order: 8 !important;
}

.order-9 {
	order: 9 !important;
}

.order-10 {
	order: 10 !important;
}

.order-11 {
	order: 11 !important;
}

.order-12 {
	order: 12 !important;
}

.order-last {
	order: 9999 !important;
}

.order-first {
	order: -9999 !important;
}

.order-none {
	order: 0 !important;
}

@media (min-width: 37.5em) {
	.sm\@order-1 {
		order: 1 !important;
	}

	.sm\@order-2 {
		order: 2 !important;
	}

	.sm\@order-3 {
		order: 3 !important;
	}

	.sm\@order-4 {
		order: 4 !important;
	}

	.sm\@order-5 {
		order: 5 !important;
	}

	.sm\@order-6 {
		order: 6 !important;
	}

	.sm\@order-7 {
		order: 7 !important;
	}

	.sm\@order-8 {
		order: 8 !important;
	}

	.sm\@order-9 {
		order: 9 !important;
	}

	.sm\@order-10 {
		order: 10 !important;
	}

	.sm\@order-11 {
		order: 11 !important;
	}

	.sm\@order-12 {
		order: 12 !important;
	}

	.sm\@order-last {
		order: 9999 !important;
	}

	.sm\@order-first {
		order: -9999 !important;
	}

	.sm\@order-none {
		order: 0 !important;
	}
}

@media (min-width: 60em) {
	.md\@order-1 {
		order: 1 !important;
	}

	.md\@order-2 {
		order: 2 !important;
	}

	.md\@order-3 {
		order: 3 !important;
	}

	.md\@order-4 {
		order: 4 !important;
	}

	.md\@order-5 {
		order: 5 !important;
	}

	.md\@order-6 {
		order: 6 !important;
	}

	.md\@order-7 {
		order: 7 !important;
	}

	.md\@order-8 {
		order: 8 !important;
	}

	.md\@order-9 {
		order: 9 !important;
	}

	.md\@order-10 {
		order: 10 !important;
	}

	.md\@order-11 {
		order: 11 !important;
	}

	.md\@order-12 {
		order: 12 !important;
	}

	.md\@order-last {
		order: 9999 !important;
	}

	.md\@order-first {
		order: -9999 !important;
	}

	.md\@order-none {
		order: 0 !important;
	}
}

@media (min-width: 80em) {
	.lg\@order-1 {
		order: 1 !important;
	}

	.lg\@order-2 {
		order: 2 !important;
	}

	.lg\@order-3 {
		order: 3 !important;
	}

	.lg\@order-4 {
		order: 4 !important;
	}

	.lg\@order-5 {
		order: 5 !important;
	}

	.lg\@order-6 {
		order: 6 !important;
	}

	.lg\@order-7 {
		order: 7 !important;
	}

	.lg\@order-8 {
		order: 8 !important;
	}

	.lg\@order-9 {
		order: 9 !important;
	}

	.lg\@order-10 {
		order: 10 !important;
	}

	.lg\@order-11 {
		order: 11 !important;
	}

	.lg\@order-12 {
		order: 12 !important;
	}

	.lg\@order-last {
		order: 9999 !important;
	}

	.lg\@order-first {
		order: -9999 !important;
	}

	.lg\@order-none {
		order: 0 !important;
	}
}

@media (min-width: 100em) {
	.xl\@order-1 {
		order: 1 !important;
	}

	.xl\@order-2 {
		order: 2 !important;
	}

	.xl\@order-3 {
		order: 3 !important;
	}

	.xl\@order-4 {
		order: 4 !important;
	}

	.xl\@order-5 {
		order: 5 !important;
	}

	.xl\@order-6 {
		order: 6 !important;
	}

	.xl\@order-7 {
		order: 7 !important;
	}

	.xl\@order-8 {
		order: 8 !important;
	}

	.xl\@order-9 {
		order: 9 !important;
	}

	.xl\@order-10 {
		order: 10 !important;
	}

	.xl\@order-11 {
		order: 11 !important;
	}

	.xl\@order-12 {
		order: 12 !important;
	}

	.xl\@order-last {
		order: 9999 !important;
	}

	.xl\@order-first {
		order: -9999 !important;
	}

	.xl\@order-none {
		order: 0 !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/overflow.css?16856230814888*/
/*!
* Utilities/Overflow
*/

.overflow-auto {
	overflow: auto !important;
}

.overflow-hidden {
	overflow: hidden !important;
}

.overflow-clip {
	overflow: clip !important;
}

.overflow-visible {
	overflow: visible !important;
}

.overflow-scroll {
	overflow: scroll !important;
}

.overflow-x-auto {
	overflow-x: auto !important;
}

.overflow-y-auto {
	overflow-y: auto !important;
}

.overflow-x-hidden {
	overflow-x: hidden !important;
}

.overflow-y-hidden {
	overflow-y: hidden !important;
}

.overflow-x-clip {
	overflow-x: clip !important;
}

.overflow-y-clip {
	overflow-y: clip !important;
}

.overflow-x-visible {
	overflow-x: visible !important;
}

.overflow-y-visible {
	overflow-y: visible !important;
}

.overflow-x-scroll {
	overflow-x: scroll !important;
}

.overflow-y-scroll {
	overflow-y: scroll !important;
}

@media (min-width: 37.5em) {
	.sm\@overflow-auto {
		overflow: auto !important;
	}

	.sm\@overflow-hidden {
		overflow: hidden !important;
	}

	.sm\@overflow-clip {
		overflow: clip !important;
	}

	.sm\@overflow-visible {
		overflow: visible !important;
	}

	.sm\@overflow-scroll {
		overflow: scroll !important;
	}

	.sm\@overflow-x-auto {
		overflow-x: auto !important;
	}

	.sm\@overflow-y-auto {
		overflow-y: auto !important;
	}

	.sm\@overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.sm\@overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.sm\@overflow-x-clip {
		overflow-x: clip !important;
	}

	.sm\@overflow-y-clip {
		overflow-y: clip !important;
	}

	.sm\@overflow-x-visible {
		overflow-x: visible !important;
	}

	.sm\@overflow-y-visible {
		overflow-y: visible !important;
	}

	.sm\@overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.sm\@overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

@media (min-width: 60em) {
	.md\@overflow-auto {
		overflow: auto !important;
	}

	.md\@overflow-hidden {
		overflow: hidden !important;
	}

	.md\@overflow-clip {
		overflow: clip !important;
	}

	.md\@overflow-visible {
		overflow: visible !important;
	}

	.md\@overflow-scroll {
		overflow: scroll !important;
	}

	.md\@overflow-x-auto {
		overflow-x: auto !important;
	}

	.md\@overflow-y-auto {
		overflow-y: auto !important;
	}

	.md\@overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.md\@overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.md\@overflow-x-clip {
		overflow-x: clip !important;
	}

	.md\@overflow-y-clip {
		overflow-y: clip !important;
	}

	.md\@overflow-x-visible {
		overflow-x: visible !important;
	}

	.md\@overflow-y-visible {
		overflow-y: visible !important;
	}

	.md\@overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.md\@overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

@media (min-width: 80em) {
	.lg\@overflow-auto {
		overflow: auto !important;
	}

	.lg\@overflow-hidden {
		overflow: hidden !important;
	}

	.lg\@overflow-clip {
		overflow: clip !important;
	}

	.lg\@overflow-visible {
		overflow: visible !important;
	}

	.lg\@overflow-scroll {
		overflow: scroll !important;
	}

	.lg\@overflow-x-auto {
		overflow-x: auto !important;
	}

	.lg\@overflow-y-auto {
		overflow-y: auto !important;
	}

	.lg\@overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.lg\@overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.lg\@overflow-x-clip {
		overflow-x: clip !important;
	}

	.lg\@overflow-y-clip {
		overflow-y: clip !important;
	}

	.lg\@overflow-x-visible {
		overflow-x: visible !important;
	}

	.lg\@overflow-y-visible {
		overflow-y: visible !important;
	}

	.lg\@overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.lg\@overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

@media (min-width: 100em) {
	.xl\@overflow-auto {
		overflow: auto !important;
	}

	.xl\@overflow-hidden {
		overflow: hidden !important;
	}

	.xl\@overflow-clip {
		overflow: clip !important;
	}

	.xl\@overflow-visible {
		overflow: visible !important;
	}

	.xl\@overflow-scroll {
		overflow: scroll !important;
	}

	.xl\@overflow-x-auto {
		overflow-x: auto !important;
	}

	.xl\@overflow-y-auto {
		overflow-y: auto !important;
	}

	.xl\@overflow-x-hidden {
		overflow-x: hidden !important;
	}

	.xl\@overflow-y-hidden {
		overflow-y: hidden !important;
	}

	.xl\@overflow-x-clip {
		overflow-x: clip !important;
	}

	.xl\@overflow-y-clip {
		overflow-y: clip !important;
	}

	.xl\@overflow-x-visible {
		overflow-x: visible !important;
	}

	.xl\@overflow-y-visible {
		overflow-y: visible !important;
	}

	.xl\@overflow-x-scroll {
		overflow-x: scroll !important;
	}

	.xl\@overflow-y-scroll {
		overflow-y: scroll !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/place.css?16856230815644*/
/*!
* Components/Place
*/

.place-content-center {
	place-content: center !important;
}

.place-content-start {
	place-content: start !important;
}

.place-content-end {
	place-content: end !important;
}

.place-content-between {
	place-content: space-between !important;
}

.place-content-around {
	place-content: space-around !important;
}

.place-content-evenly {
	place-content: space-evenly !important;
}

.place-content-stretch {
	place-content: stretch !important;
}

.place-items-start {
	place-items: start !important;
}

.place-items-end {
	place-items: end !important;
}

.place-items-center {
	place-items: center !important;
}

.place-items-stretch {
	place-items: stretch !important;
}

.place-self-auto {
	place-self: auto !important;
}

.place-self-start {
	place-self: start !important;
}

.place-self-end {
	place-self: end !important;
}

.place-self-center {
	place-self: center !important;
}

.place-self-stretch {
	place-self: stretch !important;
}

@media (min-width: 37.5em) {
	.sm\@place-content-center {
		place-content: center !important;
	}

	.sm\@place-content-start {
		place-content: start !important;
	}

	.sm\@place-content-end {
		place-content: end !important;
	}

	.sm\@place-content-between {
		place-content: space-between !important;
	}

	.sm\@place-content-around {
		place-content: space-around !important;
	}

	.sm\@place-content-evenly {
		place-content: space-evenly !important;
	}

	.sm\@place-content-stretch {
		place-content: stretch !important;
	}

	.sm\@place-items-start {
		place-items: start !important;
	}

	.sm\@place-items-end {
		place-items: end !important;
	}

	.sm\@place-items-center {
		place-items: center !important;
	}

	.sm\@place-items-stretch {
		place-items: stretch !important;
	}

	.sm\@place-self-auto {
		place-self: auto !important;
	}

	.sm\@place-self-start {
		place-self: start !important;
	}

	.sm\@place-self-end {
		place-self: end !important;
	}

	.sm\@place-self-center {
		place-self: center !important;
	}

	.sm\@place-self-stretch {
		place-self: stretch !important;
	}
}

@media (min-width: 60em) {
	.md\@place-content-center {
		place-content: center !important;
	}

	.md\@place-content-start {
		place-content: start !important;
	}

	.md\@place-content-end {
		place-content: end !important;
	}

	.md\@place-content-between {
		place-content: space-between !important;
	}

	.md\@place-content-around {
		place-content: space-around !important;
	}

	.md\@place-content-evenly {
		place-content: space-evenly !important;
	}

	.md\@place-content-stretch {
		place-content: stretch !important;
	}

	.md\@place-items-start {
		place-items: start !important;
	}

	.md\@place-items-end {
		place-items: end !important;
	}

	.md\@place-items-center {
		place-items: center !important;
	}

	.md\@place-items-stretch {
		place-items: stretch !important;
	}

	.md\@place-self-auto {
		place-self: auto !important;
	}

	.md\@place-self-start {
		place-self: start !important;
	}

	.md\@place-self-end {
		place-self: end !important;
	}

	.md\@place-self-center {
		place-self: center !important;
	}

	.md\@place-self-stretch {
		place-self: stretch !important;
	}
}

@media (min-width: 80em) {
	.lg\@place-content-center {
		place-content: center !important;
	}

	.lg\@place-content-start {
		place-content: start !important;
	}

	.lg\@place-content-end {
		place-content: end !important;
	}

	.lg\@place-content-between {
		place-content: space-between !important;
	}

	.lg\@place-content-around {
		place-content: space-around !important;
	}

	.lg\@place-content-evenly {
		place-content: space-evenly !important;
	}

	.lg\@place-content-stretch {
		place-content: stretch !important;
	}

	.lg\@place-items-start {
		place-items: start !important;
	}

	.lg\@place-items-end {
		place-items: end !important;
	}

	.lg\@place-items-center {
		place-items: center !important;
	}

	.lg\@place-items-stretch {
		place-items: stretch !important;
	}

	.lg\@place-self-auto {
		place-self: auto !important;
	}

	.lg\@place-self-start {
		place-self: start !important;
	}

	.lg\@place-self-end {
		place-self: end !important;
	}

	.lg\@place-self-center {
		place-self: center !important;
	}

	.lg\@place-self-stretch {
		place-self: stretch !important;
	}
}

@media (min-width: 100em) {
	.xl\@place-content-center {
		place-content: center !important;
	}

	.xl\@place-content-start {
		place-content: start !important;
	}

	.xl\@place-content-end {
		place-content: end !important;
	}

	.xl\@place-content-between {
		place-content: space-between !important;
	}

	.xl\@place-content-around {
		place-content: space-around !important;
	}

	.xl\@place-content-evenly {
		place-content: space-evenly !important;
	}

	.xl\@place-content-stretch {
		place-content: stretch !important;
	}

	.xl\@place-items-start {
		place-items: start !important;
	}

	.xl\@place-items-end {
		place-items: end !important;
	}

	.xl\@place-items-center {
		place-items: center !important;
	}

	.xl\@place-items-stretch {
		place-items: stretch !important;
	}

	.xl\@place-self-auto {
		place-self: auto !important;
	}

	.xl\@place-self-start {
		place-self: start !important;
	}

	.xl\@place-self-end {
		place-self: end !important;
	}

	.xl\@place-self-center {
		place-self: center !important;
	}

	.xl\@place-self-stretch {
		place-self: stretch !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/placement.css?16856230817724*/
/*!
* Utilities/Placement
*/

.inset-0 {
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
}

.inset-x-0 {
	left: 0 !important;
	right: 0 !important;
}

.inset-y-0 {
	bottom: 0 !important;
	top: 0 !important;
}

.bottom-0 {
	bottom: 0 !important;
}

.left-0 {
	left: 0 !important;
}

.right-0 {
	right: 0 !important;
}

.top-0 {
	top: 0 !important;
}

.inset-auto {
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
}

.inset-x-auto {
	left: auto !important;
	right: auto !important;
}

.inset-y-auto {
	bottom: auto !important;
	top: auto !important;
}

.bottom-auto {
	bottom: auto !important;
}

.left-auto {
	left: auto !important;
}

.right-auto {
	right: auto !important;
}

.top-auto {
	top: auto !important;
}

.inset-full {
	bottom: 100% !important;
	left: 100% !important;
	right: 100% !important;
	top: 100% !important;
}

.inset-x-full {
	left: 100% !important;
	right: 100% !important;
}

.inset-y-full {
	bottom: 100% !important;
	top: 100% !important;
}

.bottom-full {
	bottom: 100% !important;
}

.left-full {
	left: 100% !important;
}

.right-full {
	right: 100% !important;
}

.top-full {
	top: 100% !important;
}

/* START: Custom, xs breakpoint */
.bottom-\[-5rem\] {
	bottom: -5rem;
}
/* END: Custom, xs breakpoint */

@media (min-width: 37.5em) {
	.sm\@inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.sm\@inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.sm\@inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.sm\@bottom-0 {
		bottom: 0 !important;
	}

	.sm\@left-0 {
		left: 0 !important;
	}

	.sm\@right-0 {
		right: 0 !important;
	}

	.sm\@top-0 {
		top: 0 !important;
	}

	.sm\@inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.sm\@inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.sm\@inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.sm\@bottom-auto {
		bottom: auto !important;
	}

	.sm\@left-auto {
		left: auto !important;
	}

	.sm\@right-auto {
		right: auto !important;
	}

	.sm\@top-auto {
		top: auto !important;
	}

	.sm\@inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.sm\@inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.sm\@inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.sm\@bottom-full {
		bottom: 100% !important;
	}

	.sm\@left-full {
		left: 100% !important;
	}

	.sm\@right-full {
		right: 100% !important;
	}

	.sm\@top-full {
		top: 100% !important;
	}
}

/* START: Custom, sm breakpoint */
/* END: Custom, sm breakpoint */

@media (min-width: 60em) {
	.md\@inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.md\@inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.md\@inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.md\@bottom-0 {
		bottom: 0 !important;
	}

	.md\@left-0 {
		left: 0 !important;
	}

	.md\@right-0 {
		right: 0 !important;
	}

	.md\@top-0 {
		top: 0 !important;
	}

	.md\@inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.md\@inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.md\@inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.md\@bottom-auto {
		bottom: auto !important;
	}

	.md\@left-auto {
		left: auto !important;
	}

	.md\@right-auto {
		right: auto !important;
	}

	.md\@top-auto {
		top: auto !important;
	}

	.md\@inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.md\@inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.md\@inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.md\@bottom-full {
		bottom: 100% !important;
	}

	.md\@left-full {
		left: 100% !important;
	}

	.md\@right-full {
		right: 100% !important;
	}

	.md\@top-full {
		top: 100% !important;
	}
}

/* START: Custom, md breakpoint */
/* END: Custom, md breakpoint */

@media (min-width: 80em) {
	.lg\@inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.lg\@inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.lg\@inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.lg\@bottom-0 {
		bottom: 0 !important;
	}

	.lg\@left-0 {
		left: 0 !important;
	}

	.lg\@right-0 {
		right: 0 !important;
	}

	.lg\@top-0 {
		top: 0 !important;
	}

	.lg\@inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.lg\@inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.lg\@inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.lg\@bottom-auto {
		bottom: auto !important;
	}

	.lg\@left-auto {
		left: auto !important;
	}

	.lg\@right-auto {
		right: auto !important;
	}

	.lg\@top-auto {
		top: auto !important;
	}

	.lg\@inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.lg\@inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.lg\@inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.lg\@bottom-full {
		bottom: 100% !important;
	}

	.lg\@left-full {
		left: 100% !important;
	}

	.lg\@right-full {
		right: 100% !important;
	}

	.lg\@top-full {
		top: 100% !important;
	}
}

/* START: Custom, lg breakpoint */
@media (min-width: 80em) {
	.lg\@bottom-\[-10rem\] {
		bottom: -10rem;
	}
}
/* END: Custom, lg breakpoint */

@media (min-width: 100em) {
	.xl\@inset-0 {
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
	}

	.xl\@inset-x-0 {
		left: 0 !important;
		right: 0 !important;
	}

	.xl\@inset-y-0 {
		bottom: 0 !important;
		top: 0 !important;
	}

	.xl\@bottom-0 {
		bottom: 0 !important;
	}

	.xl\@left-0 {
		left: 0 !important;
	}

	.xl\@right-0 {
		right: 0 !important;
	}

	.xl\@top-0 {
		top: 0 !important;
	}

	.xl\@inset-auto {
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
	}

	.xl\@inset-x-auto {
		left: auto !important;
		right: auto !important;
	}

	.xl\@inset-y-auto {
		bottom: auto !important;
		top: auto !important;
	}

	.xl\@bottom-auto {
		bottom: auto !important;
	}

	.xl\@left-auto {
		left: auto !important;
	}

	.xl\@right-auto {
		right: auto !important;
	}

	.xl\@top-auto {
		top: auto !important;
	}

	.xl\@inset-full {
		bottom: 100% !important;
		left: 100% !important;
		right: 100% !important;
		top: 100% !important;
	}

	.xl\@inset-x-full {
		left: 100% !important;
		right: 100% !important;
	}

	.xl\@inset-y-full {
		bottom: 100% !important;
		top: 100% !important;
	}

	.xl\@bottom-full {
		bottom: 100% !important;
	}

	.xl\@left-full {
		left: 100% !important;
	}

	.xl\@right-full {
		right: 100% !important;
	}

	.xl\@top-full {
		top: 100% !important;
	}
}

/* START: Custom, xl breakpoint */
/* END: Custom, xl breakpoint */

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/position.css?16856230811505*/
/*!
 * Utilities/Position
 */

.static {
	position: static !important;
}

.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

.fixed {
	position: fixed !important;
}

.sticky {
	position: sticky !important;
}

@media (min-width: 37.5em) {
	.sm\@static {
		position: static !important;
	}

	.sm\@relative {
		position: relative !important;
	}

	.sm\@absolute {
		position: absolute !important;
	}

	.sm\@fixed {
		position: fixed !important;
	}

	.sm\@sticky {
		position: sticky !important;
	}
}

@media (min-width: 60em) {
	.md\@static {
		position: static !important;
	}

	.md\@relative {
		position: relative !important;
	}

	.md\@absolute {
		position: absolute !important;
	}

	.md\@fixed {
		position: fixed !important;
	}

	.md\@sticky {
		position: sticky !important;
	}
}

@media (min-width: 80em) {
	.lg\@static {
		position: static !important;
	}

	.lg\@relative {
		position: relative !important;
	}

	.lg\@absolute {
		position: absolute !important;
	}

	.lg\@fixed {
		position: fixed !important;
	}

	.lg\@sticky {
		position: sticky !important;
	}
}

@media (min-width: 100em) {
	.xl\@static {
		position: static !important;
	}

	.xl\@relative {
		position: relative !important;
	}

	.xl\@absolute {
		position: absolute !important;
	}

	.xl\@fixed {
		position: fixed !important;
	}

	.xl\@sticky {
		position: sticky !important;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/rounded.css?168562308112942*/
/*!
 * Utilities/Rounded
 */

.rounded-none {
	border-radius: 0 !important;
}

.rounded-full {
	border-radius: var(--x-border-radius-full, 999rem) !important;
}

.rounded-\[100\%\] {
	border-radius: 100% !important;
}

.rounded-shaped {
	border-radius: var(--x-border-radius-shaped, 1.5rem 0) !important;
}

.rounded-x-small {
	border-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.rounded-small {
	border-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.rounded-medium {
	border-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.rounded-large {
	border-radius: var(--x-border-radius-large, 1rem) !important;
}

.rounded-x-large {
	border-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.rounded-t-none {
	border-top-right-radius: 0 !important;
	border-top-left-radius: 0 !important;
}

.rounded-t-x-small {
	border-top-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-top-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.rounded-t-small {
	border-top-right-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-top-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.rounded-t-medium {
	border-top-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-top-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.rounded-t-large {
	border-top-right-radius: var(--x-border-radius-large, 1rem) !important;
	border-top-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.rounded-t-x-large {
	border-top-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-top-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-e-none {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.x-locale--is-rtl .rounded-e-none {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.x-locale--is-ltr .rounded-e-x-small {
	border-top-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-bottom-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-e-x-small {
	border-top-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-e-small {
	border-top-right-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-bottom-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-e-small {
	border-top-left-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-bottom-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-e-medium {
	border-top-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-bottom-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-e-medium {
	border-top-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-e-large {
	border-top-right-radius: var(--x-border-radius-large, 1rem) !important;
	border-bottom-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-e-large {
	border-top-left-radius: var(--x-border-radius-large, 1rem) !important;
	border-bottom-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-e-x-large {
	border-top-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-bottom-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-e-x-large {
	border-top-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.rounded-b-none {
	border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.rounded-b-x-small {
	border-bottom-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.rounded-b-small {
	border-bottom-right-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-bottom-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.rounded-b-medium {
	border-bottom-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.rounded-b-large {
	border-bottom-right-radius: var(--x-border-radius-large, 1rem) !important;
	border-bottom-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.rounded-b-x-large {
	border-bottom-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-s-none {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.x-locale--is-rtl .rounded-s-none {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.x-locale--is-ltr .rounded-s-x-small {
	border-top-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-s-x-small {
	border-top-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
	border-bottom-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-s-small {
	border-top-left-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-bottom-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-s-small {
	border-top-right-radius: var(--x-border-radius-small, 0.5rem) !important;
	border-bottom-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-s-medium {
	border-top-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-s-medium {
	border-top-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
	border-bottom-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-s-large {
	border-top-left-radius: var(--x-border-radius-large, 1rem) !important;
	border-bottom-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-s-large {
	border-top-right-radius: var(--x-border-radius-large, 1rem) !important;
	border-bottom-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-s-x-large {
	border-top-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-bottom-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-s-x-large {
	border-top-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
	border-bottom-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-ts-none {
	border-top-left-radius: 0 !important;
}

.x-locale--is-rtl .rounded-ts-none {
	border-top-right-radius: 0 !important;
}

.x-locale--is-ltr .rounded-ts-x-small {
	border-top-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-ts-x-small {
	border-top-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-ts-small {
	border-top-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-ts-small {
	border-top-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-ts-medium {
	border-top-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-ts-medium {
	border-top-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-ts-large {
	border-top-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-ts-large {
	border-top-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-ts-x-large {
	border-top-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-ts-x-large {
	border-top-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-te-none {
	border-top-right-radius: 0 !important;
}

.x-locale--is-rtl .rounded-te-none {
	border-top-left-radius: 0 !important;
}

.x-locale--is-ltr .rounded-te-x-small {
	border-top-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-te-x-small {
	border-top-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-te-small {
	border-top-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-te-small {
	border-top-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-te-medium {
	border-top-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-te-medium {
	border-top-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-te-large {
	border-top-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-te-large {
	border-top-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-te-x-large {
	border-top-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-te-x-large {
	border-top-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-bs-none {
	border-bottom-left-radius: 0 !important;
}

.x-locale--is-rtl .rounded-bs-none {
	border-bottom-right-radius: 0 !important;
}

.x-locale--is-ltr .rounded-bs-x-small {
	border-bottom-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-bs-x-small {
	border-bottom-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-bs-small {
	border-bottom-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-bs-small {
	border-bottom-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-bs-medium {
	border-bottom-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-bs-medium {
	border-bottom-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-bs-large {
	border-bottom-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-bs-large {
	border-bottom-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-bs-x-large {
	border-bottom-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-bs-x-large {
	border-bottom-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-ltr .rounded-be-none {
	border-bottom-right-radius: 0 !important;
}

.x-locale--is-rtl .rounded-be-none {
	border-bottom-left-radius: 0 !important;
}

.x-locale--is-ltr .rounded-be-x-small {
	border-bottom-right-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-rtl .rounded-be-x-small {
	border-bottom-left-radius: var(--x-border-radius-x-small, 0.25rem) !important;
}

.x-locale--is-ltr .rounded-be-small {
	border-bottom-right-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-rtl .rounded-be-small {
	border-bottom-left-radius: var(--x-border-radius-small, 0.5rem) !important;
}

.x-locale--is-ltr .rounded-be-medium {
	border-bottom-right-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-rtl .rounded-be-medium {
	border-bottom-left-radius: var(--x-border-radius-medium, 0.75rem) !important;
}

.x-locale--is-ltr .rounded-be-large {
	border-bottom-right-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-rtl .rounded-be-large {
	border-bottom-left-radius: var(--x-border-radius-large, 1rem) !important;
}

.x-locale--is-ltr .rounded-be-x-large {
	border-bottom-right-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

.x-locale--is-rtl .rounded-be-x-large {
	border-bottom-left-radius: var(--x-border-radius-x-large, 1.75rem) !important;
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/screen-readers.css?1685623081546*/
.sr-only {
	position: absolute !important;
	width: 0.0625rem !important;
	height: 0.0625rem !important;
	padding: 0 !important;
	margin: -0.0625rem !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border-width: 0 !important;
}

.not-sr-only {
	position: static !important;
	width: auto !important;
	height: auto !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/sizing.css?17322269763706*/
/*!
 * Utilities/Sizing
 */

.h-0 {
	height: 0 !important;
}

.h-1 {
	height: 0.25rem !important;
}

.h-1\.5 {
	height: 0.375rem !important;
}

.h-20 {
	height: 5rem !important;
}

.h-auto {
	height: auto !important;
}

.h-full {
	height: 100% !important;
}

.h-screen {
	height: 100vh !important;
}

.h-min {
	height: min-content !important;
}

.h-max {
	height: max-content !important;
}

.h-fit {
	height: fit-content !important;
}

.min-h-0 {
	min-height: 0 !important;
}

.min-h-full {
	min-height: 100% !important;
}

.min-h-screen {
	min-height: 100vh !important;
}

.min-h-min {
	min-height: min-content !important;
}

.min-h-max {
	min-height: max-content !important;
}

.min-h-fit {
	min-height: fit-content !important;
}

.max-h-0 {
	max-height: 0 !important;
}

.max-h-full {
	max-height: 100% !important;
}

.max-h-screen {
	max-height: 100vh !important;
}

.max-h-min {
	max-height: min-content !important;
}

.max-h-max {
	max-height: max-content !important;
}

.max-h-fit {
	max-height: fit-content !important;
}

.w-0 {
	width: 0 !important;
}

.w-10 {
	width: 2.5rem !important;
}

.w-15 {
	width: 3.75rem !important;
}

.w-20 {
	width: 5rem !important;
}

.w-26 {
	width: 6.5rem !important;
}

.w-auto {
	width: auto !important;
}

.w-full {
	width: 100% !important;
}

.w-screen {
	width: 100vw !important;
}

.w-min {
	width: min-content !important;
}

.w-max {
	width: max-content !important;
}

.w-fit {
	width: fit-content !important;
}

.min-w-0 {
	min-width: 0 !important;
}

.min-w-full {
	min-width: 100% !important;
}

.min-w-screen {
	min-width: 100vw !important;
}

.min-w-min {
	min-width: min-content !important;
}

.min-w-max {
	min-width: max-content !important;
}

.min-w-fit {
	min-width: fit-content !important;
}

.max-w-0 {
	max-width: 0 !important;
}

.max-w-full {
	max-width: 100% !important;
}

.max-w-screen {
	max-width: 100vw !important;
}

.max-w-min {
	max-width: min-content !important;
}

.max-w-max {
	max-width: max-content !important;
}

.max-w-fit {
	max-width: fit-content !important;
}

.max-h\[2rem\] {
	max-height: 2rem;
}

@media (min-width: 37.5em) {
	.sm\@w-full {
		width: 100% !important;
	}
	.sm\@w-fit {
		width: fit-content !important;
	}
}
@media (min-width: 60em) {
	.md\@w-full {
		width: 100% !important;
	}
	.md\@h-screen {
		height: 100vh !important;
	}
}
@media (min-width: 80em) {
	.lg\@w-full {
		width: 100% !important;
	}
	.lg\@w-15 {
		width: 3.75rem !important;
	}
	.lg\@w-20 {
		width: 5rem !important;
	}
	.lg\@w-21 {
		width: 5.25rem !important;
	}
	.lg\@w-22 {
		width: 5.5rem !important;
	}
	.lg\@w-23 {
		width: 5.75rem !important;
	}
	.lg\@w-24 {
		width: 6rem !important;
	}
	.lg\@w-26 {
		width: 6.5rem !important;
	}
	.lg\@h-screen {
		height: 100vh !important;
	}
}
@media (min-width: 100em) {
	.xl\@w-full {
		width: 100% !important;
	}
}

/* START: Custom breakpoint */

.w-\[25\%\] {
	width: 25% !important;
}

.w-\[30\%\] {
	width: 30% !important;
}

.w-\[70\%\] {
	width: 70% !important;
}

@media (min-width: 37.5em) {
	.sm\@w-\[30\%\] {
		width: 30% !important;
	}
}
@media (min-width: 60em) {
	.md\@h-1\.5 {
		height: 0.375rem !important;;
	}

	.md\@w-\[30\%\] {
		width: 30% !important;
	}

	.md\@w-\[70\%\] {
		width: 70% !important;
	}
}
@media (min-width: 80em) {
	.lg\@w-\[30\%\] {
		width: 30% !important;
	}

	.lg\@w-\[70\%\] {
		width: 70% !important;
	}
}
@media (min-width: 100em) {}

/* END: Custom breakpoint */

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/spacing.css?1685623081151342*/
/*!
 * Utilities/Spacing
 */

.ma-0 {
	margin: 0 !important;
}

.ma-1 {
	margin: 0.25rem !important;
}

.ma-2 {
	margin: 0.5rem !important;
}

.ma-3 {
	margin: 0.75rem !important;
}

.ma-4 {
	margin: 1rem !important;
}

.ma-5 {
	margin: 1.25rem !important;
}

.ma-6 {
	margin: 1.5rem !important;
}

.ma-7 {
	margin: 1.75rem !important;
}

.ma-8 {
	margin: 2rem !important;
}

.ma-9 {
	margin: 2.25rem !important;
}

.ma-10 {
	margin: 2.5rem !important;
}

.ma-11 {
	margin: 2.75rem !important;
}

.ma-12 {
	margin: 3rem !important;
}

.ma-13 {
	margin: 3.25rem !important;
}

.ma-14 {
	margin: 3.5rem !important;
}

.ma-15 {
	margin: 3.75rem !important;
}

.ma-16 {
	margin: 4rem !important;
}

.ma-17 {
	margin: 4.25rem !important;
}

.ma-18 {
	margin: 4.5rem !important;
}

.ma-19 {
	margin: 4.75rem !important;
}

.ma-20 {
	margin: 5rem !important;
}

.ma-auto {
	margin: auto !important;
}

.mx-0 {
	margin-inline-end: 0 !important;
	margin-inline-start: 0 !important;
}

.mx-1 {
	margin-inline-end: 0.25rem !important;
	margin-inline-start: 0.25rem !important;
}

.mx-2 {
	margin-inline-end: 0.5rem !important;
	margin-inline-start: 0.5rem !important;
}

.mx-3 {
	margin-inline-end: 0.75rem !important;
	margin-inline-start: 0.75rem !important;
}

.mx-4 {
	margin-inline-end: 1rem !important;
	margin-inline-start: 1rem !important;
}

.mx-5 {
	margin-inline-end: 1.25rem !important;
	margin-inline-start: 1.25rem !important;
}

.mx-6 {
	margin-inline-end: 1.5rem !important;
	margin-inline-start: 1.5rem !important;
}

.mx-7 {
	margin-inline-end: 1.75rem !important;
	margin-inline-start: 1.75rem !important;
}

.mx-8 {
	margin-inline-end: 2rem !important;
	margin-inline-start: 2rem !important;
}

.mx-9 {
	margin-inline-end: 2.25rem !important;
	margin-inline-start: 2.25rem !important;
}

.mx-10 {
	margin-inline-end: 2.5rem !important;
	margin-inline-start: 2.5rem !important;
}

.mx-11 {
	margin-inline-end: 2.75rem !important;
	margin-inline-start: 2.75rem !important;
}

.mx-12 {
	margin-inline-end: 3rem !important;
	margin-inline-start: 3rem !important;
}

.mx-13 {
	margin-inline-end: 3.25rem !important;
	margin-inline-start: 3.25rem !important;
}

.mx-14 {
	margin-inline-end: 3.5rem !important;
	margin-inline-start: 3.5rem !important;
}

.mx-15 {
	margin-inline-end: 3.75rem !important;
	margin-inline-start: 3.75rem !important;
}

.mx-16 {
	margin-inline-end: 4rem !important;
	margin-inline-start: 4rem !important;
}

.mx-17 {
	margin-inline-end: 4.25rem !important;
	margin-inline-start: 4.25rem !important;
}

.mx-18 {
	margin-inline-end: 4.5rem !important;
	margin-inline-start: 4.5rem !important;
}

.mx-19 {
	margin-inline-end: 4.75rem !important;
	margin-inline-start: 4.75rem !important;
}

.mx-20 {
	margin-inline-end: 5rem !important;
	margin-inline-start: 5rem !important;
}

.mx-auto {
	margin-inline-end: auto !important;
	margin-inline-start: auto !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}

.my-3 {
	margin-top: 0.75rem !important;
	margin-bottom: 0.75rem !important;
}

.my-4 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-5 {
	margin-top: 1.25rem !important;
	margin-bottom: 1.25rem !important;
}

.my-6 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.my-7 {
	margin-top: 1.75rem !important;
	margin-bottom: 1.75rem !important;
}

.my-8 {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important;
}

.my-9 {
	margin-top: 2.25rem !important;
	margin-bottom: 2.25rem !important;
}

.my-10 {
	margin-top: 2.5rem !important;
	margin-bottom: 2.5rem !important;
}

.my-11 {
	margin-top: 2.75rem !important;
	margin-bottom: 2.75rem !important;
}

.my-12 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

.my-13 {
	margin-top: 3.25rem !important;
	margin-bottom: 3.25rem !important;
}

.my-14 {
	margin-top: 3.5rem !important;
	margin-bottom: 3.5rem !important;
}

.my-15 {
	margin-top: 3.75rem !important;
	margin-bottom: 3.75rem !important;
}

.my-16 {
	margin-top: 4rem !important;
	margin-bottom: 4rem !important;
}

.my-17 {
	margin-top: 4.25rem !important;
	margin-bottom: 4.25rem !important;
}

.my-18 {
	margin-top: 4.5rem !important;
	margin-bottom: 4.5rem !important;
}

.my-19 {
	margin-top: 4.75rem !important;
	margin-bottom: 4.75rem !important;
}

.my-20 {
	margin-top: 5rem !important;
	margin-bottom: 5rem !important;
}

.my-auto {
	margin-top: auto !important;
	margin-bottom: auto !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 0.75rem !important;
}

.mt-4 {
	margin-top: 1rem !important;
}

.mt-5 {
	margin-top: 1.25rem !important;
}

.mt-6 {
	margin-top: 1.5rem !important;
}

.mt-7 {
	margin-top: 1.75rem !important;
}

.mt-8 {
	margin-top: 2rem !important;
}

.mt-9 {
	margin-top: 2.25rem !important;
}

.mt-10 {
	margin-top: 2.5rem !important;
}

.mt-11 {
	margin-top: 2.75rem !important;
}

.mt-12 {
	margin-top: 3rem !important;
}

.mt-13 {
	margin-top: 3.25rem !important;
}

.mt-14 {
	margin-top: 3.5rem !important;
}

.mt-15 {
	margin-top: 3.75rem !important;
}

.mt-16 {
	margin-top: 4rem !important;
}

.mt-17 {
	margin-top: 4.25rem !important;
}

.mt-18 {
	margin-top: 4.5rem !important;
}

.mt-19 {
	margin-top: 4.75rem !important;
}

.mt-20 {
	margin-top: 5rem !important;
}

.mt-auto {
	margin-top: auto !important;
}

.me-0 {
	margin-inline-end: 0 !important;
}

.me-1 {
	margin-inline-end: 0.25rem !important;
}

.me-2 {
	margin-inline-end: 0.5rem !important;
}

.me-3 {
	margin-inline-end: 0.75rem !important;
}

.me-4 {
	margin-inline-end: 1rem !important;
}

.me-5 {
	margin-inline-end: 1.25rem !important;
}

.me-6 {
	margin-inline-end: 1.5rem !important;
}

.me-7 {
	margin-inline-end: 1.75rem !important;
}

.me-8 {
	margin-inline-end: 2rem !important;
}

.me-9 {
	margin-inline-end: 2.25rem !important;
}

.me-10 {
	margin-inline-end: 2.5rem !important;
}

.me-11 {
	margin-inline-end: 2.75rem !important;
}

.me-12 {
	margin-inline-end: 3rem !important;
}

.me-13 {
	margin-inline-end: 3.25rem !important;
}

.me-14 {
	margin-inline-end: 3.5rem !important;
}

.me-15 {
	margin-inline-end: 3.75rem !important;
}

.me-16 {
	margin-inline-end: 4rem !important;
}

.me-17 {
	margin-inline-end: 4.25rem !important;
}

.me-18 {
	margin-inline-end: 4.5rem !important;
}

.me-19 {
	margin-inline-end: 4.75rem !important;
}

.me-20 {
	margin-inline-end: 5rem !important;
}

.me-auto {
	margin-inline-end: auto !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 0.75rem !important;
}

.mb-4 {
	margin-bottom: 1rem !important;
}

.mb-5 {
	margin-bottom: 1.25rem !important;
}

.mb-6 {
	margin-bottom: 1.5rem !important;
}

.mb-7 {
	margin-bottom: 1.75rem !important;
}

.mb-8 {
	margin-bottom: 2rem !important;
}

.mb-9 {
	margin-bottom: 2.25rem !important;
}

.mb-10 {
	margin-bottom: 2.5rem !important;
}

.mb-11 {
	margin-bottom: 2.75rem !important;
}

.mb-12 {
	margin-bottom: 3rem !important;
}

.mb-13 {
	margin-bottom: 3.25rem !important;
}

.mb-14 {
	margin-bottom: 3.5rem !important;
}

.mb-15 {
	margin-bottom: 3.75rem !important;
}

.mb-16 {
	margin-bottom: 4rem !important;
}

.mb-17 {
	margin-bottom: 4.25rem !important;
}

.mb-18 {
	margin-bottom: 4.5rem !important;
}

.mb-19 {
	margin-bottom: 4.75rem !important;
}

.mb-20 {
	margin-bottom: 5rem !important;
}

.mb-auto {
	margin-bottom: auto !important;
}

.ms-0 {
	margin-inline-start: 0 !important;
}

.ms-1 {
	margin-inline-start: 0.25rem !important;
}

.ms-2 {
	margin-inline-start: 0.5rem !important;
}

.ms-3 {
	margin-inline-start: 0.75rem !important;
}

.ms-4 {
	margin-inline-start: 1rem !important;
}

.ms-5 {
	margin-inline-start: 1.25rem !important;
}

.ms-6 {
	margin-inline-start: 1.5rem !important;
}

.ms-7 {
	margin-inline-start: 1.75rem !important;
}

.ms-8 {
	margin-inline-start: 2rem !important;
}

.ms-9 {
	margin-inline-start: 2.25rem !important;
}

.ms-10 {
	margin-inline-start: 2.5rem !important;
}

.ms-11 {
	margin-inline-start: 2.75rem !important;
}

.ms-12 {
	margin-inline-start: 3rem !important;
}

.ms-13 {
	margin-inline-start: 3.25rem !important;
}

.ms-14 {
	margin-inline-start: 3.5rem !important;
}

.ms-15 {
	margin-inline-start: 3.75rem !important;
}

.ms-16 {
	margin-inline-start: 4rem !important;
}

.ms-17 {
	margin-inline-start: 4.25rem !important;
}

.ms-18 {
	margin-inline-start: 4.5rem !important;
}

.ms-19 {
	margin-inline-start: 4.75rem !important;
}

.ms-20 {
	margin-inline-start: 5rem !important;
}

.ms-auto {
	margin-inline-start: auto !important;
}

.ma-n1 {
	margin: -0.25rem !important;
}

.ma-n2 {
	margin: -0.5rem !important;
}

.ma-n3 {
	margin: -0.75rem !important;
}

.ma-n4 {
	margin: -1rem !important;
}

.ma-n5 {
	margin: -1.25rem !important;
}

.ma-n6 {
	margin: -1.5rem !important;
}

.ma-n7 {
	margin: -1.75rem !important;
}

.ma-n8 {
	margin: -2rem !important;
}

.ma-n9 {
	margin: -2.25rem !important;
}

.ma-n10 {
	margin: -2.5rem !important;
}

.ma-n11 {
	margin: -2.75rem !important;
}

.ma-n12 {
	margin: -3rem !important;
}

.ma-n13 {
	margin: -3.25rem !important;
}

.ma-n14 {
	margin: -3.5rem !important;
}

.ma-n15 {
	margin: -3.75rem !important;
}

.ma-n16 {
	margin: -4rem !important;
}

.ma-n17 {
	margin: -4.25rem !important;
}

.ma-n18 {
	margin: -4.5rem !important;
}

.ma-n19 {
	margin: -4.75rem !important;
}

.ma-n20 {
	margin: -5rem !important;
}

.mx-n1 {
	margin-inline-end: -0.25rem !important;
	margin-inline-start: -0.25rem !important;
}

.mx-n2 {
	margin-inline-end: -0.5rem !important;
	margin-inline-start: -0.5rem !important;
}

.mx-n3 {
	margin-inline-end: -0.75rem !important;
	margin-inline-start: -0.75rem !important;
}

.mx-n4 {
	margin-inline-end: -1rem !important;
	margin-inline-start: -1rem !important;
}

.mx-n5 {
	margin-inline-end: -1.25rem !important;
	margin-inline-start: -1.25rem !important;
}

.mx-n6 {
	margin-inline-end: -1.5rem !important;
	margin-inline-start: -1.5rem !important;
}

.mx-n7 {
	margin-inline-end: -1.75rem !important;
	margin-inline-start: -1.75rem !important;
}

.mx-n8 {
	margin-inline-end: -2rem !important;
	margin-inline-start: -2rem !important;
}

.mx-n9 {
	margin-inline-end: -2.25rem !important;
	margin-inline-start: -2.25rem !important;
}

.mx-n10 {
	margin-inline-end: -2.5rem !important;
	margin-inline-start: -2.5rem !important;
}

.mx-n11 {
	margin-inline-end: -2.75rem !important;
	margin-inline-start: -2.75rem !important;
}

.mx-n12 {
	margin-inline-end: -3rem !important;
	margin-inline-start: -3rem !important;
}

.mx-n13 {
	margin-inline-end: -3.25rem !important;
	margin-inline-start: -3.25rem !important;
}

.mx-n14 {
	margin-inline-end: -3.5rem !important;
	margin-inline-start: -3.5rem !important;
}

.mx-n15 {
	margin-inline-end: -3.75rem !important;
	margin-inline-start: -3.75rem !important;
}

.mx-n16 {
	margin-inline-end: -4rem !important;
	margin-inline-start: -4rem !important;
}

.mx-n17 {
	margin-inline-end: -4.25rem !important;
	margin-inline-start: -4.25rem !important;
}

.mx-n18 {
	margin-inline-end: -4.5rem !important;
	margin-inline-start: -4.5rem !important;
}

.mx-n19 {
	margin-inline-end: -4.75rem !important;
	margin-inline-start: -4.75rem !important;
}

.mx-n20 {
	margin-inline-end: -5rem !important;
	margin-inline-start: -5rem !important;
}

.my-n1 {
	margin-top: -0.25rem !important;
	margin-bottom: -0.25rem !important;
}

.my-n2 {
	margin-top: -0.5rem !important;
	margin-bottom: -0.5rem !important;
}

.my-n3 {
	margin-top: -0.75rem !important;
	margin-bottom: -0.75rem !important;
}

.my-n4 {
	margin-top: -1rem !important;
	margin-bottom: -1rem !important;
}

.my-n5 {
	margin-top: -1.25rem !important;
	margin-bottom: -1.25rem !important;
}

.my-n6 {
	margin-top: -1.5rem !important;
	margin-bottom: -1.5rem !important;
}

.my-n7 {
	margin-top: -1.75rem !important;
	margin-bottom: -1.75rem !important;
}

.my-n8 {
	margin-top: -2rem !important;
	margin-bottom: -2rem !important;
}

.my-n9 {
	margin-top: -2.25rem !important;
	margin-bottom: -2.25rem !important;
}

.my-n10 {
	margin-top: -2.5rem !important;
	margin-bottom: -2.5rem !important;
}

.my-n11 {
	margin-top: -2.75rem !important;
	margin-bottom: -2.75rem !important;
}

.my-n12 {
	margin-top: -3rem !important;
	margin-bottom: -3rem !important;
}

.my-n13 {
	margin-top: -3.25rem !important;
	margin-bottom: -3.25rem !important;
}

.my-n14 {
	margin-top: -3.5rem !important;
	margin-bottom: -3.5rem !important;
}

.my-n15 {
	margin-top: -3.75rem !important;
	margin-bottom: -3.75rem !important;
}

.my-n16 {
	margin-top: -4rem !important;
	margin-bottom: -4rem !important;
}

.my-n17 {
	margin-top: -4.25rem !important;
	margin-bottom: -4.25rem !important;
}

.my-n18 {
	margin-top: -4.5rem !important;
	margin-bottom: -4.5rem !important;
}

.my-n19 {
	margin-top: -4.75rem !important;
	margin-bottom: -4.75rem !important;
}

.my-n20 {
	margin-top: -5rem !important;
	margin-bottom: -5rem !important;
}

.mt-n1 {
	margin-top: -0.25rem !important;
}

.mt-n2 {
	margin-top: -0.5rem !important;
}

.mt-n3 {
	margin-top: -0.75rem !important;
}

.mt-n4 {
	margin-top: -1rem !important;
}

.mt-n5 {
	margin-top: -1.25rem !important;
}

.mt-n6 {
	margin-top: -1.5rem !important;
}

.mt-n7 {
	margin-top: -1.75rem !important;
}

.mt-n8 {
	margin-top: -2rem !important;
}

.mt-n9 {
	margin-top: -2.25rem !important;
}

.mt-n10 {
	margin-top: -2.5rem !important;
}

.mt-n11 {
	margin-top: -2.75rem !important;
}

.mt-n12 {
	margin-top: -3rem !important;
}

.mt-n13 {
	margin-top: -3.25rem !important;
}

.mt-n14 {
	margin-top: -3.5rem !important;
}

.mt-n15 {
	margin-top: -3.75rem !important;
}

.mt-n16 {
	margin-top: -4rem !important;
}

.mt-n17 {
	margin-top: -4.25rem !important;
}

.mt-n18 {
	margin-top: -4.5rem !important;
}

.mt-n19 {
	margin-top: -4.75rem !important;
}

.mt-n20 {
	margin-top: -5rem !important;
}

.me-n1 {
	margin-inline-end: -0.25rem !important;
}

.me-n2 {
	margin-inline-end: -0.5rem !important;
}

.me-n3 {
	margin-inline-end: -0.75rem !important;
}

.me-n4 {
	margin-inline-end: -1rem !important;
}

.me-n5 {
	margin-inline-end: -1.25rem !important;
}

.me-n6 {
	margin-inline-end: -1.5rem !important;
}

.me-n7 {
	margin-inline-end: -1.75rem !important;
}

.me-n8 {
	margin-inline-end: -2rem !important;
}

.me-n9 {
	margin-inline-end: -2.25rem !important;
}

.me-n10 {
	margin-inline-end: -2.5rem !important;
}

.me-n11 {
	margin-inline-end: -2.75rem !important;
}

.me-n12 {
	margin-inline-end: -3rem !important;
}

.me-n13 {
	margin-inline-end: -3.25rem !important;
}

.me-n14 {
	margin-inline-end: -3.5rem !important;
}

.me-n15 {
	margin-inline-end: -3.75rem !important;
}

.me-n16 {
	margin-inline-end: -4rem !important;
}

.me-n17 {
	margin-inline-end: -4.25rem !important;
}

.me-n18 {
	margin-inline-end: -4.5rem !important;
}

.me-n19 {
	margin-inline-end: -4.75rem !important;
}

.me-n20 {
	margin-inline-end: -5rem !important;
}

.mb-n1 {
	margin-bottom: -0.25rem !important;
}

.mb-n2 {
	margin-bottom: -0.5rem !important;
}

.mb-n3 {
	margin-bottom: -0.75rem !important;
}

.mb-n4 {
	margin-bottom: -1rem !important;
}

.mb-n5 {
	margin-bottom: -1.25rem !important;
}

.mb-n6 {
	margin-bottom: -1.5rem !important;
}

.mb-n7 {
	margin-bottom: -1.75rem !important;
}

.mb-n8 {
	margin-bottom: -2rem !important;
}

.mb-n9 {
	margin-bottom: -2.25rem !important;
}

.mb-n10 {
	margin-bottom: -2.5rem !important;
}

.mb-n11 {
	margin-bottom: -2.75rem !important;
}

.mb-n12 {
	margin-bottom: -3rem !important;
}

.mb-n13 {
	margin-bottom: -3.25rem !important;
}

.mb-n14 {
	margin-bottom: -3.5rem !important;
}

.mb-n15 {
	margin-bottom: -3.75rem !important;
}

.mb-n16 {
	margin-bottom: -4rem !important;
}

.mb-n17 {
	margin-bottom: -4.25rem !important;
}

.mb-n18 {
	margin-bottom: -4.5rem !important;
}

.mb-n19 {
	margin-bottom: -4.75rem !important;
}

.mb-n20 {
	margin-bottom: -5rem !important;
}

.ms-n1 {
	margin-inline-start: -0.25rem !important;
}

.ms-n2 {
	margin-inline-start: -0.5rem !important;
}

.ms-n3 {
	margin-inline-start: -0.75rem !important;
}

.ms-n4 {
	margin-inline-start: -1rem !important;
}

.ms-n5 {
	margin-inline-start: -1.25rem !important;
}

.ms-n6 {
	margin-inline-start: -1.5rem !important;
}

.ms-n7 {
	margin-inline-start: -1.75rem !important;
}

.ms-n8 {
	margin-inline-start: -2rem !important;
}

.ms-n9 {
	margin-inline-start: -2.25rem !important;
}

.ms-n10 {
	margin-inline-start: -2.5rem !important;
}

.ms-n11 {
	margin-inline-start: -2.75rem !important;
}

.ms-n12 {
	margin-inline-start: -3rem !important;
}

.ms-n13 {
	margin-inline-start: -3.25rem !important;
}

.ms-n14 {
	margin-inline-start: -3.5rem !important;
}

.ms-n15 {
	margin-inline-start: -3.75rem !important;
}

.ms-n16 {
	margin-inline-start: -4rem !important;
}

.ms-n17 {
	margin-inline-start: -4.25rem !important;
}

.ms-n18 {
	margin-inline-start: -4.5rem !important;
}

.ms-n19 {
	margin-inline-start: -4.75rem !important;
}

.ms-n20 {
	margin-inline-start: -5rem !important;
}

.pa-0 {
	padding: 0 !important;
}

.pa-1 {
	padding: 0.25rem !important;
}

.pa-2 {
	padding: 0.5rem !important;
}

.pa-3 {
	padding: 0.75rem !important;
}

.pa-4 {
	padding: 1rem !important;
}

.pa-5 {
	padding: 1.25rem !important;
}

.pa-6 {
	padding: 1.5rem !important;
}

.pa-7 {
	padding: 1.75rem !important;
}

.pa-8 {
	padding: 2rem !important;
}

.pa-9 {
	padding: 2.25rem !important;
}

.pa-10 {
	padding: 2.5rem !important;
}

.pa-11 {
	padding: 2.75rem !important;
}

.pa-12 {
	padding: 3rem !important;
}

.pa-13 {
	padding: 3.25rem !important;
}

.pa-14 {
	padding: 3.5rem !important;
}

.pa-15 {
	padding: 3.75rem !important;
}

.pa-16 {
	padding: 4rem !important;
}

.pa-17 {
	padding: 4.25rem !important;
}

.pa-18 {
	padding: 4.5rem !important;
}

.pa-19 {
	padding: 4.75rem !important;
}

.pa-20 {
	padding: 5rem !important;
}

.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.px-1 {
	padding-right: 0.25rem !important;
	padding-left: 0.25rem !important;
}

.px-2 {
	padding-right: 0.5rem !important;
	padding-left: 0.5rem !important;
}

.px-3 {
	padding-right: 0.75rem !important;
	padding-left: 0.75rem !important;
}

.px-4 {
	padding-right: 1rem !important;
	padding-left: 1rem !important;
}

.px-5 {
	padding-right: 1.25rem !important;
	padding-left: 1.25rem !important;
}

.px-6 {
	padding-right: 1.5rem !important;
	padding-left: 1.5rem !important;
}

.px-7 {
	padding-right: 1.75rem !important;
	padding-left: 1.75rem !important;
}

.px-8 {
	padding-right: 2rem !important;
	padding-left: 2rem !important;
}

.px-9 {
	padding-right: 2.25rem !important;
	padding-left: 2.25rem !important;
}

.px-10 {
	padding-right: 2.5rem !important;
	padding-left: 2.5rem !important;
}

.px-11 {
	padding-right: 2.75rem !important;
	padding-left: 2.75rem !important;
}

.px-12 {
	padding-right: 3rem !important;
	padding-left: 3rem !important;
}

.px-13 {
	padding-right: 3.25rem !important;
	padding-left: 3.25rem !important;
}

.px-14 {
	padding-right: 3.5rem !important;
	padding-left: 3.5rem !important;
}

.px-15 {
	padding-right: 3.75rem !important;
	padding-left: 3.75rem !important;
}

.px-16 {
	padding-right: 4rem !important;
	padding-left: 4rem !important;
}

.px-17 {
	padding-right: 4.25rem !important;
	padding-left: 4.25rem !important;
}

.px-18 {
	padding-right: 4.5rem !important;
	padding-left: 4.5rem !important;
}

.px-19 {
	padding-right: 4.75rem !important;
	padding-left: 4.75rem !important;
}

.px-20 {
	padding-right: 5rem !important;
	padding-left: 5rem !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-3 {
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
}

.py-4 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-5 {
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
}

.py-6 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.py-7 {
	padding-top: 1.75rem !important;
	padding-bottom: 1.75rem !important;
}

.py-8 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}

.py-9 {
	padding-top: 2.25rem !important;
	padding-bottom: 2.25rem !important;
}

.py-10 {
	padding-top: 2.5rem !important;
	padding-bottom: 2.5rem !important;
}

.py-11 {
	padding-top: 2.75rem !important;
	padding-bottom: 2.75rem !important;
}

.py-12 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.py-13 {
	padding-top: 3.25rem !important;
	padding-bottom: 3.25rem !important;
}

.py-14 {
	padding-top: 3.5rem !important;
	padding-bottom: 3.5rem !important;
}

.py-15 {
	padding-top: 3.75rem !important;
	padding-bottom: 3.75rem !important;
}

.py-16 {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.py-17 {
	padding-top: 4.25rem !important;
	padding-bottom: 4.25rem !important;
}

.py-18 {
	padding-top: 4.5rem !important;
	padding-bottom: 4.5rem !important;
}

.py-19 {
	padding-top: 4.75rem !important;
	padding-bottom: 4.75rem !important;
}

.py-20 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-3 {
	padding-top: 0.75rem !important;
}

.pt-4 {
	padding-top: 1rem !important;
}

.pt-5 {
	padding-top: 1.25rem !important;
}

.pt-6 {
	padding-top: 1.5rem !important;
}

.pt-7 {
	padding-top: 1.75rem !important;
}

.pt-8 {
	padding-top: 2rem !important;
}

.pt-9 {
	padding-top: 2.25rem !important;
}

.pt-10 {
	padding-top: 2.5rem !important;
}

.pt-11 {
	padding-top: 2.75rem !important;
}

.pt-12 {
	padding-top: 3rem !important;
}

.pt-13 {
	padding-top: 3.25rem !important;
}

.pt-14 {
	padding-top: 3.5rem !important;
}

.pt-15 {
	padding-top: 3.75rem !important;
}

.pt-16 {
	padding-top: 4rem !important;
}

.pt-17 {
	padding-top: 4.25rem !important;
}

.pt-18 {
	padding-top: 4.5rem !important;
}

.pt-19 {
	padding-top: 4.75rem !important;
}

.pt-20 {
	padding-top: 5rem !important;
}

.pe-0 {
	padding-right: 0 !important;
}

.pe-1 {
	padding-right: 0.25rem !important;
}

.pe-2 {
	padding-right: 0.5rem !important;
}

.pe-3 {
	padding-right: 0.75rem !important;
}

.pe-4 {
	padding-right: 1rem !important;
}

.pe-5 {
	padding-right: 1.25rem !important;
}

.pe-6 {
	padding-right: 1.5rem !important;
}

.pe-7 {
	padding-right: 1.75rem !important;
}

.pe-8 {
	padding-right: 2rem !important;
}

.pe-9 {
	padding-right: 2.25rem !important;
}

.pe-10 {
	padding-right: 2.5rem !important;
}

.pe-11 {
	padding-right: 2.75rem !important;
}

.pe-12 {
	padding-right: 3rem !important;
}

.pe-13 {
	padding-right: 3.25rem !important;
}

.pe-14 {
	padding-right: 3.5rem !important;
}

.pe-15 {
	padding-right: 3.75rem !important;
}

.pe-16 {
	padding-right: 4rem !important;
}

.pe-17 {
	padding-right: 4.25rem !important;
}

.pe-18 {
	padding-right: 4.5rem !important;
}

.pe-19 {
	padding-right: 4.75rem !important;
}

.pe-20 {
	padding-right: 5rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 0.75rem !important;
}

.pb-4 {
	padding-bottom: 1rem !important;
}

.pb-5 {
	padding-bottom: 1.25rem !important;
}

.pb-6 {
	padding-bottom: 1.5rem !important;
}

.pb-7 {
	padding-bottom: 1.75rem !important;
}

.pb-8 {
	padding-bottom: 2rem !important;
}

.pb-9 {
	padding-bottom: 2.25rem !important;
}

.pb-10 {
	padding-bottom: 2.5rem !important;
}

.pb-11 {
	padding-bottom: 2.75rem !important;
}

.pb-12 {
	padding-bottom: 3rem !important;
}

.pb-13 {
	padding-bottom: 3.25rem !important;
}

.pb-14 {
	padding-bottom: 3.5rem !important;
}

.pb-15 {
	padding-bottom: 3.75rem !important;
}

.pb-16 {
	padding-bottom: 4rem !important;
}

.pb-17 {
	padding-bottom: 4.25rem !important;
}

.pb-18 {
	padding-bottom: 4.5rem !important;
}

.pb-19 {
	padding-bottom: 4.75rem !important;
}

.pb-20 {
	padding-bottom: 5rem !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.ps-1 {
	padding-left: 0.25rem !important;
}

.ps-2 {
	padding-left: 0.5rem !important;
}

.ps-3 {
	padding-left: 0.75rem !important;
}

.ps-4 {
	padding-left: 1rem !important;
}

.ps-5 {
	padding-left: 1.25rem !important;
}

.ps-6 {
	padding-left: 1.5rem !important;
}

.ps-7 {
	padding-left: 1.75rem !important;
}

.ps-8 {
	padding-left: 2rem !important;
}

.ps-9 {
	padding-left: 2.25rem !important;
}

.ps-10 {
	padding-left: 2.5rem !important;
}

.ps-11 {
	padding-left: 2.75rem !important;
}

.ps-12 {
	padding-left: 3rem !important;
}

.ps-13 {
	padding-left: 3.25rem !important;
}

.ps-14 {
	padding-left: 3.5rem !important;
}

.ps-15 {
	padding-left: 3.75rem !important;
}

.ps-16 {
	padding-left: 4rem !important;
}

.ps-17 {
	padding-left: 4.25rem !important;
}

.ps-18 {
	padding-left: 4.5rem !important;
}

.ps-19 {
	padding-left: 4.75rem !important;
}

.ps-20 {
	padding-left: 5rem !important;
}

/* START: Custom, xs breakpoint */

.me-n\[5\%\] {
	margin-inline-end: -5% !important;
}

.mt-\[-3\.5rem\] {
	margin-top: -3.5rem !important;
}

.mt-\[-7\.5rem\] {
	margin-top: -7.5rem !important;
}

.mt-\[-12\.5rem\] {
	margin-top: -12.5rem !important;
}

.mt-\[var\(--app-bar-height\)\] {
	margin-top: var(--app-bar-height);
}

.me-n\[12\.5\%\] {
	margin-inline-end: -12.5% !important;
}

.py-\[0\.625rem\] {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
}

.pt-\[25\%\] {
	padding-top: 25%;
}

.pt-\[var\(--app-bar-height\)\] {
	padding-top: var(--app-bar-height);
}

.first-of-type\:pt-0:first-of-type{
	padding-top: 0 !important;
}

.pe-container {
	padding-right: 1rem !important;
}

.ps-container {
	padding-left: 1rem !important;
}

.\[\&\:not\(\:last-of-type\)\]\:me-2:not(:last-of-type) {
	margin-inline-end: 0.5rem !important;
}

/* END: Custom, xs breakpoint */

@media (min-width: 37.5em) {
	.sm\@ma-0 {
		margin: 0 !important;
	}

	.sm\@ma-1 {
		margin: 0.25rem !important;
	}

	.sm\@ma-2 {
		margin: 0.5rem !important;
	}

	.sm\@ma-3 {
		margin: 0.75rem !important;
	}

	.sm\@ma-4 {
		margin: 1rem !important;
	}

	.sm\@ma-5 {
		margin: 1.25rem !important;
	}

	.sm\@ma-6 {
		margin: 1.5rem !important;
	}

	.sm\@ma-7 {
		margin: 1.75rem !important;
	}

	.sm\@ma-8 {
		margin: 2rem !important;
	}

	.sm\@ma-9 {
		margin: 2.25rem !important;
	}

	.sm\@ma-10 {
		margin: 2.5rem !important;
	}

	.sm\@ma-11 {
		margin: 2.75rem !important;
	}

	.sm\@ma-12 {
		margin: 3rem !important;
	}

	.sm\@ma-13 {
		margin: 3.25rem !important;
	}

	.sm\@ma-14 {
		margin: 3.5rem !important;
	}

	.sm\@ma-15 {
		margin: 3.75rem !important;
	}

	.sm\@ma-16 {
		margin: 4rem !important;
	}

	.sm\@ma-17 {
		margin: 4.25rem !important;
	}

	.sm\@ma-18 {
		margin: 4.5rem !important;
	}

	.sm\@ma-19 {
		margin: 4.75rem !important;
	}

	.sm\@ma-20 {
		margin: 5rem !important;
	}

	.sm\@ma-auto {
		margin: auto !important;
	}

	.sm\@mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.sm\@mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.sm\@mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.sm\@mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.sm\@mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.sm\@mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.sm\@mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.sm\@mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.sm\@mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.sm\@mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.sm\@mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.sm\@mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.sm\@mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.sm\@mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.sm\@mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.sm\@mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.sm\@mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.sm\@mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.sm\@mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.sm\@mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.sm\@mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.sm\@mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.sm\@my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.sm\@my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.sm\@my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.sm\@my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.sm\@my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.sm\@my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.sm\@my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.sm\@my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.sm\@my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.sm\@my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.sm\@my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.sm\@my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.sm\@my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.sm\@my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.sm\@my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.sm\@my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.sm\@my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.sm\@my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.sm\@my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.sm\@my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.sm\@my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.sm\@my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.sm\@mt-0 {
		margin-top: 0 !important;
	}

	.sm\@mt-1 {
		margin-top: 0.25rem !important;
	}

	.sm\@mt-2 {
		margin-top: 0.5rem !important;
	}

	.sm\@mt-3 {
		margin-top: 0.75rem !important;
	}

	.sm\@mt-4 {
		margin-top: 1rem !important;
	}

	.sm\@mt-5 {
		margin-top: 1.25rem !important;
	}

	.sm\@mt-6 {
		margin-top: 1.5rem !important;
	}

	.sm\@mt-7 {
		margin-top: 1.75rem !important;
	}

	.sm\@mt-8 {
		margin-top: 2rem !important;
	}

	.sm\@mt-9 {
		margin-top: 2.25rem !important;
	}

	.sm\@mt-10 {
		margin-top: 2.5rem !important;
	}

	.sm\@mt-11 {
		margin-top: 2.75rem !important;
	}

	.sm\@mt-12 {
		margin-top: 3rem !important;
	}

	.sm\@mt-13 {
		margin-top: 3.25rem !important;
	}

	.sm\@mt-14 {
		margin-top: 3.5rem !important;
	}

	.sm\@mt-15 {
		margin-top: 3.75rem !important;
	}

	.sm\@mt-16 {
		margin-top: 4rem !important;
	}

	.sm\@mt-17 {
		margin-top: 4.25rem !important;
	}

	.sm\@mt-18 {
		margin-top: 4.5rem !important;
	}

	.sm\@mt-19 {
		margin-top: 4.75rem !important;
	}

	.sm\@mt-20 {
		margin-top: 5rem !important;
	}

	.sm\@mt-auto {
		margin-top: auto !important;
	}

	.sm\@me-0 {
		margin-inline-end: 0 !important;
	}

	.sm\@me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.sm\@me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.sm\@me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.sm\@me-4 {
		margin-inline-end: 1rem !important;
	}

	.sm\@me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.sm\@me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.sm\@me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.sm\@me-8 {
		margin-inline-end: 2rem !important;
	}

	.sm\@me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.sm\@me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.sm\@me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.sm\@me-12 {
		margin-inline-end: 3rem !important;
	}

	.sm\@me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.sm\@me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.sm\@me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.sm\@me-16 {
		margin-inline-end: 4rem !important;
	}

	.sm\@me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.sm\@me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.sm\@me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.sm\@me-20 {
		margin-inline-end: 5rem !important;
	}

	.sm\@me-auto {
		margin-inline-end: auto !important;
	}

	.sm\@mb-0 {
		margin-bottom: 0 !important;
	}

	.sm\@mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.sm\@mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.sm\@mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.sm\@mb-4 {
		margin-bottom: 1rem !important;
	}

	.sm\@mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.sm\@mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.sm\@mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.sm\@mb-8 {
		margin-bottom: 2rem !important;
	}

	.sm\@mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.sm\@mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.sm\@mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.sm\@mb-12 {
		margin-bottom: 3rem !important;
	}

	.sm\@mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.sm\@mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.sm\@mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.sm\@mb-16 {
		margin-bottom: 4rem !important;
	}

	.sm\@mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.sm\@mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.sm\@mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.sm\@mb-20 {
		margin-bottom: 5rem !important;
	}

	.sm\@mb-auto {
		margin-bottom: auto !important;
	}

	.sm\@ms-0 {
		margin-inline-start: 0 !important;
	}

	.sm\@ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.sm\@ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.sm\@ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.sm\@ms-4 {
		margin-inline-start: 1rem !important;
	}

	.sm\@ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.sm\@ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.sm\@ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.sm\@ms-8 {
		margin-inline-start: 2rem !important;
	}

	.sm\@ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.sm\@ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.sm\@ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.sm\@ms-12 {
		margin-inline-start: 3rem !important;
	}

	.sm\@ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.sm\@ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.sm\@ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.sm\@ms-16 {
		margin-inline-start: 4rem !important;
	}

	.sm\@ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.sm\@ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.sm\@ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.sm\@ms-20 {
		margin-inline-start: 5rem !important;
	}

	.sm\@ms-auto {
		margin-inline-start: auto !important;
	}

	.sm\@ma-n1 {
		margin: -0.25rem !important;
	}

	.sm\@ma-n2 {
		margin: -0.5rem !important;
	}

	.sm\@ma-n3 {
		margin: -0.75rem !important;
	}

	.sm\@ma-n4 {
		margin: -1rem !important;
	}

	.sm\@ma-n5 {
		margin: -1.25rem !important;
	}

	.sm\@ma-n6 {
		margin: -1.5rem !important;
	}

	.sm\@ma-n7 {
		margin: -1.75rem !important;
	}

	.sm\@ma-n8 {
		margin: -2rem !important;
	}

	.sm\@ma-n9 {
		margin: -2.25rem !important;
	}

	.sm\@ma-n10 {
		margin: -2.5rem !important;
	}

	.sm\@ma-n11 {
		margin: -2.75rem !important;
	}

	.sm\@ma-n12 {
		margin: -3rem !important;
	}

	.sm\@ma-n13 {
		margin: -3.25rem !important;
	}

	.sm\@ma-n14 {
		margin: -3.5rem !important;
	}

	.sm\@ma-n15 {
		margin: -3.75rem !important;
	}

	.sm\@ma-n16 {
		margin: -4rem !important;
	}

	.sm\@ma-n17 {
		margin: -4.25rem !important;
	}

	.sm\@ma-n18 {
		margin: -4.5rem !important;
	}

	.sm\@ma-n19 {
		margin: -4.75rem !important;
	}

	.sm\@ma-n20 {
		margin: -5rem !important;
	}

	.sm\@mx-n1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.sm\@mx-n2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.sm\@mx-n3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.sm\@mx-n4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.sm\@mx-n5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.sm\@mx-n6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.sm\@mx-n7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.sm\@mx-n8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.sm\@mx-n9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.sm\@mx-n10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.sm\@mx-n11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.sm\@mx-n12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.sm\@mx-n13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.sm\@mx-n14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.sm\@mx-n15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.sm\@mx-n16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.sm\@mx-n17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.sm\@mx-n18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.sm\@mx-n19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.sm\@mx-n20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.sm\@my-n1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.sm\@my-n2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.sm\@my-n3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.sm\@my-n4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.sm\@my-n5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.sm\@my-n6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.sm\@my-n7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.sm\@my-n8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.sm\@my-n9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.sm\@my-n10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.sm\@my-n11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.sm\@my-n12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.sm\@my-n13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.sm\@my-n14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.sm\@my-n15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.sm\@my-n16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.sm\@my-n17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.sm\@my-n18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.sm\@my-n19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.sm\@my-n20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.sm\@mt-n1 {
		margin-top: -0.25rem !important;
	}

	.sm\@mt-n2 {
		margin-top: -0.5rem !important;
	}

	.sm\@mt-n3 {
		margin-top: -0.75rem !important;
	}

	.sm\@mt-n4 {
		margin-top: -1rem !important;
	}

	.sm\@mt-n5 {
		margin-top: -1.25rem !important;
	}

	.sm\@mt-n6 {
		margin-top: -1.5rem !important;
	}

	.sm\@mt-n7 {
		margin-top: -1.75rem !important;
	}

	.sm\@mt-n8 {
		margin-top: -2rem !important;
	}

	.sm\@mt-n9 {
		margin-top: -2.25rem !important;
	}

	.sm\@mt-n10 {
		margin-top: -2.5rem !important;
	}

	.sm\@mt-n11 {
		margin-top: -2.75rem !important;
	}

	.sm\@mt-n12 {
		margin-top: -3rem !important;
	}

	.sm\@mt-n13 {
		margin-top: -3.25rem !important;
	}

	.sm\@mt-n14 {
		margin-top: -3.5rem !important;
	}

	.sm\@mt-n15 {
		margin-top: -3.75rem !important;
	}

	.sm\@mt-n16 {
		margin-top: -4rem !important;
	}

	.sm\@mt-n17 {
		margin-top: -4.25rem !important;
	}

	.sm\@mt-n18 {
		margin-top: -4.5rem !important;
	}

	.sm\@mt-n19 {
		margin-top: -4.75rem !important;
	}

	.sm\@mt-n20 {
		margin-top: -5rem !important;
	}

	.sm\@me-n1 {
		margin-inline-end: -0.25rem !important;
	}

	.sm\@me-n2 {
		margin-inline-end: -0.5rem !important;
	}

	.sm\@me-n3 {
		margin-inline-end: -0.75rem !important;
	}

	.sm\@me-n4 {
		margin-inline-end: -1rem !important;
	}

	.sm\@me-n5 {
		margin-inline-end: -1.25rem !important;
	}

	.sm\@me-n6 {
		margin-inline-end: -1.5rem !important;
	}

	.sm\@me-n7 {
		margin-inline-end: -1.75rem !important;
	}

	.sm\@me-n8 {
		margin-inline-end: -2rem !important;
	}

	.sm\@me-n9 {
		margin-inline-end: -2.25rem !important;
	}

	.sm\@me-n10 {
		margin-inline-end: -2.5rem !important;
	}

	.sm\@me-n11 {
		margin-inline-end: -2.75rem !important;
	}

	.sm\@me-n12 {
		margin-inline-end: -3rem !important;
	}

	.sm\@me-n13 {
		margin-inline-end: -3.25rem !important;
	}

	.sm\@me-n14 {
		margin-inline-end: -3.5rem !important;
	}

	.sm\@me-n15 {
		margin-inline-end: -3.75rem !important;
	}

	.sm\@me-n16 {
		margin-inline-end: -4rem !important;
	}

	.sm\@me-n17 {
		margin-inline-end: -4.25rem !important;
	}

	.sm\@me-n18 {
		margin-inline-end: -4.5rem !important;
	}

	.sm\@me-n19 {
		margin-inline-end: -4.75rem !important;
	}

	.sm\@me-n20 {
		margin-inline-end: -5rem !important;
	}

	.sm\@mb-n1 {
		margin-bottom: -0.25rem !important;
	}

	.sm\@mb-n2 {
		margin-bottom: -0.5rem !important;
	}

	.sm\@mb-n3 {
		margin-bottom: -0.75rem !important;
	}

	.sm\@mb-n4 {
		margin-bottom: -1rem !important;
	}

	.sm\@mb-n5 {
		margin-bottom: -1.25rem !important;
	}

	.sm\@mb-n6 {
		margin-bottom: -1.5rem !important;
	}

	.sm\@mb-n7 {
		margin-bottom: -1.75rem !important;
	}

	.sm\@mb-n8 {
		margin-bottom: -2rem !important;
	}

	.sm\@mb-n9 {
		margin-bottom: -2.25rem !important;
	}

	.sm\@mb-n10 {
		margin-bottom: -2.5rem !important;
	}

	.sm\@mb-n11 {
		margin-bottom: -2.75rem !important;
	}

	.sm\@mb-n12 {
		margin-bottom: -3rem !important;
	}

	.sm\@mb-n13 {
		margin-bottom: -3.25rem !important;
	}

	.sm\@mb-n14 {
		margin-bottom: -3.5rem !important;
	}

	.sm\@mb-n15 {
		margin-bottom: -3.75rem !important;
	}

	.sm\@mb-n16 {
		margin-bottom: -4rem !important;
	}

	.sm\@mb-n17 {
		margin-bottom: -4.25rem !important;
	}

	.sm\@mb-n18 {
		margin-bottom: -4.5rem !important;
	}

	.sm\@mb-n19 {
		margin-bottom: -4.75rem !important;
	}

	.sm\@mb-n20 {
		margin-bottom: -5rem !important;
	}

	.sm\@ms-n1 {
		margin-inline-start: -0.25rem !important;
	}

	.sm\@ms-n2 {
		margin-inline-start: -0.5rem !important;
	}

	.sm\@ms-n3 {
		margin-inline-start: -0.75rem !important;
	}

	.sm\@ms-n4 {
		margin-inline-start: -1rem !important;
	}

	.sm\@ms-n5 {
		margin-inline-start: -1.25rem !important;
	}

	.sm\@ms-n6 {
		margin-inline-start: -1.5rem !important;
	}

	.sm\@ms-n7 {
		margin-inline-start: -1.75rem !important;
	}

	.sm\@ms-n8 {
		margin-inline-start: -2rem !important;
	}

	.sm\@ms-n9 {
		margin-inline-start: -2.25rem !important;
	}

	.sm\@ms-n10 {
		margin-inline-start: -2.5rem !important;
	}

	.sm\@ms-n11 {
		margin-inline-start: -2.75rem !important;
	}

	.sm\@ms-n12 {
		margin-inline-start: -3rem !important;
	}

	.sm\@ms-n13 {
		margin-inline-start: -3.25rem !important;
	}

	.sm\@ms-n14 {
		margin-inline-start: -3.5rem !important;
	}

	.sm\@ms-n15 {
		margin-inline-start: -3.75rem !important;
	}

	.sm\@ms-n16 {
		margin-inline-start: -4rem !important;
	}

	.sm\@ms-n17 {
		margin-inline-start: -4.25rem !important;
	}

	.sm\@ms-n18 {
		margin-inline-start: -4.5rem !important;
	}

	.sm\@ms-n19 {
		margin-inline-start: -4.75rem !important;
	}

	.sm\@ms-n20 {
		margin-inline-start: -5rem !important;
	}

	.sm\@pa-0 {
		padding: 0 !important;
	}

	.sm\@pa-1 {
		padding: 0.25rem !important;
	}

	.sm\@pa-2 {
		padding: 0.5rem !important;
	}

	.sm\@pa-3 {
		padding: 0.75rem !important;
	}

	.sm\@pa-4 {
		padding: 1rem !important;
	}

	.sm\@pa-5 {
		padding: 1.25rem !important;
	}

	.sm\@pa-6 {
		padding: 1.5rem !important;
	}

	.sm\@pa-7 {
		padding: 1.75rem !important;
	}

	.sm\@pa-8 {
		padding: 2rem !important;
	}

	.sm\@pa-9 {
		padding: 2.25rem !important;
	}

	.sm\@pa-10 {
		padding: 2.5rem !important;
	}

	.sm\@pa-11 {
		padding: 2.75rem !important;
	}

	.sm\@pa-12 {
		padding: 3rem !important;
	}

	.sm\@pa-13 {
		padding: 3.25rem !important;
	}

	.sm\@pa-14 {
		padding: 3.5rem !important;
	}

	.sm\@pa-15 {
		padding: 3.75rem !important;
	}

	.sm\@pa-16 {
		padding: 4rem !important;
	}

	.sm\@pa-17 {
		padding: 4.25rem !important;
	}

	.sm\@pa-18 {
		padding: 4.5rem !important;
	}

	.sm\@pa-19 {
		padding: 4.75rem !important;
	}

	.sm\@pa-20 {
		padding: 5rem !important;
	}

	.sm\@px-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.sm\@px-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.sm\@px-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.sm\@px-3 {
		padding-right: 0.75rem !important;
		padding-left: 0.75rem !important;
	}

	.sm\@px-4 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.sm\@px-5 {
		padding-right: 1.25rem !important;
		padding-left: 1.25rem !important;
	}

	.sm\@px-6 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.sm\@px-7 {
		padding-right: 1.75rem !important;
		padding-left: 1.75rem !important;
	}

	.sm\@px-8 {
		padding-right: 2rem !important;
		padding-left: 2rem !important;
	}

	.sm\@px-9 {
		padding-right: 2.25rem !important;
		padding-left: 2.25rem !important;
	}

	.sm\@px-10 {
		padding-right: 2.5rem !important;
		padding-left: 2.5rem !important;
	}

	.sm\@px-11 {
		padding-right: 2.75rem !important;
		padding-left: 2.75rem !important;
	}

	.sm\@px-12 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.sm\@px-13 {
		padding-right: 3.25rem !important;
		padding-left: 3.25rem !important;
	}

	.sm\@px-14 {
		padding-right: 3.5rem !important;
		padding-left: 3.5rem !important;
	}

	.sm\@px-15 {
		padding-right: 3.75rem !important;
		padding-left: 3.75rem !important;
	}

	.sm\@px-16 {
		padding-right: 4rem !important;
		padding-left: 4rem !important;
	}

	.sm\@px-17 {
		padding-right: 4.25rem !important;
		padding-left: 4.25rem !important;
	}

	.sm\@px-18 {
		padding-right: 4.5rem !important;
		padding-left: 4.5rem !important;
	}

	.sm\@px-19 {
		padding-right: 4.75rem !important;
		padding-left: 4.75rem !important;
	}

	.sm\@px-20 {
		padding-right: 5rem !important;
		padding-left: 5rem !important;
	}

	.sm\@py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.sm\@py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.sm\@py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.sm\@py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.sm\@py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.sm\@py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.sm\@py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.sm\@py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.sm\@py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.sm\@py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.sm\@py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.sm\@py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.sm\@py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.sm\@py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.sm\@py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.sm\@py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.sm\@py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.sm\@py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.sm\@py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.sm\@py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.sm\@py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.sm\@pt-0 {
		padding-top: 0 !important;
	}

	.sm\@pt-1 {
		padding-top: 0.25rem !important;
	}

	.sm\@pt-2 {
		padding-top: 0.5rem !important;
	}

	.sm\@pt-3 {
		padding-top: 0.75rem !important;
	}

	.sm\@pt-4 {
		padding-top: 1rem !important;
	}

	.sm\@pt-5 {
		padding-top: 1.25rem !important;
	}

	.sm\@pt-6 {
		padding-top: 1.5rem !important;
	}

	.sm\@pt-7 {
		padding-top: 1.75rem !important;
	}

	.sm\@pt-8 {
		padding-top: 2rem !important;
	}

	.sm\@pt-9 {
		padding-top: 2.25rem !important;
	}

	.sm\@pt-10 {
		padding-top: 2.5rem !important;
	}

	.sm\@pt-11 {
		padding-top: 2.75rem !important;
	}

	.sm\@pt-12 {
		padding-top: 3rem !important;
	}

	.sm\@pt-13 {
		padding-top: 3.25rem !important;
	}

	.sm\@pt-14 {
		padding-top: 3.5rem !important;
	}

	.sm\@pt-15 {
		padding-top: 3.75rem !important;
	}

	.sm\@pt-16 {
		padding-top: 4rem !important;
	}

	.sm\@pt-17 {
		padding-top: 4.25rem !important;
	}

	.sm\@pt-18 {
		padding-top: 4.5rem !important;
	}

	.sm\@pt-19 {
		padding-top: 4.75rem !important;
	}

	.sm\@pt-20 {
		padding-top: 5rem !important;
	}

	.sm\@pe-0 {
		padding-right: 0 !important;
	}

	.sm\@pe-1 {
		padding-right: 0.25rem !important;
	}

	.sm\@pe-2 {
		padding-right: 0.5rem !important;
	}

	.sm\@pe-3 {
		padding-right: 0.75rem !important;
	}

	.sm\@pe-4 {
		padding-right: 1rem !important;
	}

	.sm\@pe-5 {
		padding-right: 1.25rem !important;
	}

	.sm\@pe-6 {
		padding-right: 1.5rem !important;
	}

	.sm\@pe-7 {
		padding-right: 1.75rem !important;
	}

	.sm\@pe-8 {
		padding-right: 2rem !important;
	}

	.sm\@pe-9 {
		padding-right: 2.25rem !important;
	}

	.sm\@pe-10 {
		padding-right: 2.5rem !important;
	}

	.sm\@pe-11 {
		padding-right: 2.75rem !important;
	}

	.sm\@pe-12 {
		padding-right: 3rem !important;
	}

	.sm\@pe-13 {
		padding-right: 3.25rem !important;
	}

	.sm\@pe-14 {
		padding-right: 3.5rem !important;
	}

	.sm\@pe-15 {
		padding-right: 3.75rem !important;
	}

	.sm\@pe-16 {
		padding-right: 4rem !important;
	}

	.sm\@pe-17 {
		padding-right: 4.25rem !important;
	}

	.sm\@pe-18 {
		padding-right: 4.5rem !important;
	}

	.sm\@pe-19 {
		padding-right: 4.75rem !important;
	}

	.sm\@pe-20 {
		padding-right: 5rem !important;
	}

	.sm\@pb-0 {
		padding-bottom: 0 !important;
	}

	.sm\@pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.sm\@pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.sm\@pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.sm\@pb-4 {
		padding-bottom: 1rem !important;
	}

	.sm\@pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.sm\@pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.sm\@pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.sm\@pb-8 {
		padding-bottom: 2rem !important;
	}

	.sm\@pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.sm\@pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.sm\@pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.sm\@pb-12 {
		padding-bottom: 3rem !important;
	}

	.sm\@pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.sm\@pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.sm\@pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.sm\@pb-16 {
		padding-bottom: 4rem !important;
	}

	.sm\@pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.sm\@pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.sm\@pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.sm\@pb-20 {
		padding-bottom: 5rem !important;
	}

	.sm\@ps-0 {
		padding-left: 0 !important;
	}

	.sm\@ps-1 {
		padding-left: 0.25rem !important;
	}

	.sm\@ps-2 {
		padding-left: 0.5rem !important;
	}

	.sm\@ps-3 {
		padding-left: 0.75rem !important;
	}

	.sm\@ps-4 {
		padding-left: 1rem !important;
	}

	.sm\@ps-5 {
		padding-left: 1.25rem !important;
	}

	.sm\@ps-6 {
		padding-left: 1.5rem !important;
	}

	.sm\@ps-7 {
		padding-left: 1.75rem !important;
	}

	.sm\@ps-8 {
		padding-left: 2rem !important;
	}

	.sm\@ps-9 {
		padding-left: 2.25rem !important;
	}

	.sm\@ps-10 {
		padding-left: 2.5rem !important;
	}

	.sm\@ps-11 {
		padding-left: 2.75rem !important;
	}

	.sm\@ps-12 {
		padding-left: 3rem !important;
	}

	.sm\@ps-13 {
		padding-left: 3.25rem !important;
	}

	.sm\@ps-14 {
		padding-left: 3.5rem !important;
	}

	.sm\@ps-15 {
		padding-left: 3.75rem !important;
	}

	.sm\@ps-16 {
		padding-left: 4rem !important;
	}

	.sm\@ps-17 {
		padding-left: 4.25rem !important;
	}

	.sm\@ps-18 {
		padding-left: 4.5rem !important;
	}

	.sm\@ps-19 {
		padding-left: 4.75rem !important;
	}

	.sm\@ps-20 {
		padding-left: 5rem !important;
	}
}

/* START: Custom, sm breakpoint */

@media (min-width: 37.5em) {
	.sm\@mb-\[12\%\] {
		margin-bottom: 12% !important;
	}
}

/* END: Custom, sm breakpoint */

@media (min-width: 60em) {
	.md\@ma-0 {
		margin: 0 !important;
	}

	.md\@ma-1 {
		margin: 0.25rem !important;
	}

	.md\@ma-2 {
		margin: 0.5rem !important;
	}

	.md\@ma-3 {
		margin: 0.75rem !important;
	}

	.md\@ma-4 {
		margin: 1rem !important;
	}

	.md\@ma-5 {
		margin: 1.25rem !important;
	}

	.md\@ma-6 {
		margin: 1.5rem !important;
	}

	.md\@ma-7 {
		margin: 1.75rem !important;
	}

	.md\@ma-8 {
		margin: 2rem !important;
	}

	.md\@ma-9 {
		margin: 2.25rem !important;
	}

	.md\@ma-10 {
		margin: 2.5rem !important;
	}

	.md\@ma-11 {
		margin: 2.75rem !important;
	}

	.md\@ma-12 {
		margin: 3rem !important;
	}

	.md\@ma-13 {
		margin: 3.25rem !important;
	}

	.md\@ma-14 {
		margin: 3.5rem !important;
	}

	.md\@ma-15 {
		margin: 3.75rem !important;
	}

	.md\@ma-16 {
		margin: 4rem !important;
	}

	.md\@ma-17 {
		margin: 4.25rem !important;
	}

	.md\@ma-18 {
		margin: 4.5rem !important;
	}

	.md\@ma-19 {
		margin: 4.75rem !important;
	}

	.md\@ma-20 {
		margin: 5rem !important;
	}

	.md\@ma-auto {
		margin: auto !important;
	}

	.md\@mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.md\@mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.md\@mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.md\@mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.md\@mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.md\@mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.md\@mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.md\@mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.md\@mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.md\@mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.md\@mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.md\@mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.md\@mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.md\@mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.md\@mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.md\@mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.md\@mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.md\@mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.md\@mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.md\@mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.md\@mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.md\@mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.md\@my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.md\@my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.md\@my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.md\@my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.md\@my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.md\@my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.md\@my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.md\@my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.md\@my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.md\@my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.md\@my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.md\@my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.md\@my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.md\@my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.md\@my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.md\@my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.md\@my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.md\@my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.md\@my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.md\@my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.md\@my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.md\@my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.md\@mt-0 {
		margin-top: 0 !important;
	}

	.md\@mt-1 {
		margin-top: 0.25rem !important;
	}

	.md\@mt-2 {
		margin-top: 0.5rem !important;
	}

	.md\@mt-3 {
		margin-top: 0.75rem !important;
	}

	.md\@mt-4 {
		margin-top: 1rem !important;
	}

	.md\@mt-5 {
		margin-top: 1.25rem !important;
	}

	.md\@mt-6 {
		margin-top: 1.5rem !important;
	}

	.md\@mt-7 {
		margin-top: 1.75rem !important;
	}

	.md\@mt-8 {
		margin-top: 2rem !important;
	}

	.md\@mt-9 {
		margin-top: 2.25rem !important;
	}

	.md\@mt-10 {
		margin-top: 2.5rem !important;
	}

	.md\@mt-11 {
		margin-top: 2.75rem !important;
	}

	.md\@mt-12 {
		margin-top: 3rem !important;
	}

	.md\@mt-13 {
		margin-top: 3.25rem !important;
	}

	.md\@mt-14 {
		margin-top: 3.5rem !important;
	}

	.md\@mt-15 {
		margin-top: 3.75rem !important;
	}

	.md\@mt-16 {
		margin-top: 4rem !important;
	}

	.md\@mt-17 {
		margin-top: 4.25rem !important;
	}

	.md\@mt-18 {
		margin-top: 4.5rem !important;
	}

	.md\@mt-19 {
		margin-top: 4.75rem !important;
	}

	.md\@mt-20 {
		margin-top: 5rem !important;
	}

	.md\@mt-auto {
		margin-top: auto !important;
	}

	.md\@me-0 {
		margin-inline-end: 0 !important;
	}

	.md\@me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.md\@me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.md\@me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.md\@me-4 {
		margin-inline-end: 1rem !important;
	}

	.md\@me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.md\@me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.md\@me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.md\@me-8 {
		margin-inline-end: 2rem !important;
	}

	.md\@me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.md\@me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.md\@me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.md\@me-12 {
		margin-inline-end: 3rem !important;
	}

	.md\@me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.md\@me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.md\@me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.md\@me-16 {
		margin-inline-end: 4rem !important;
	}

	.md\@me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.md\@me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.md\@me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.md\@me-20 {
		margin-inline-end: 5rem !important;
	}

	.md\@me-auto {
		margin-inline-end: auto !important;
	}

	.md\@mb-0 {
		margin-bottom: 0 !important;
	}

	.md\@mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.md\@mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.md\@mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.md\@mb-4 {
		margin-bottom: 1rem !important;
	}

	.md\@mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.md\@mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.md\@mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.md\@mb-8 {
		margin-bottom: 2rem !important;
	}

	.md\@mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.md\@mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.md\@mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.md\@mb-12 {
		margin-bottom: 3rem !important;
	}

	.md\@mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.md\@mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.md\@mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.md\@mb-16 {
		margin-bottom: 4rem !important;
	}

	.md\@mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.md\@mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.md\@mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.md\@mb-20 {
		margin-bottom: 5rem !important;
	}

	.md\@mb-auto {
		margin-bottom: auto !important;
	}

	.md\@ms-0 {
		margin-inline-start: 0 !important;
	}

	.md\@ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.md\@ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.md\@ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.md\@ms-4 {
		margin-inline-start: 1rem !important;
	}

	.md\@ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.md\@ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.md\@ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.md\@ms-8 {
		margin-inline-start: 2rem !important;
	}

	.md\@ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.md\@ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.md\@ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.md\@ms-12 {
		margin-inline-start: 3rem !important;
	}

	.md\@ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.md\@ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.md\@ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.md\@ms-16 {
		margin-inline-start: 4rem !important;
	}

	.md\@ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.md\@ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.md\@ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.md\@ms-20 {
		margin-inline-start: 5rem !important;
	}

	.md\@ms-auto {
		margin-inline-start: auto !important;
	}

	.md\@ma-n1 {
		margin: -0.25rem !important;
	}

	.md\@ma-n2 {
		margin: -0.5rem !important;
	}

	.md\@ma-n3 {
		margin: -0.75rem !important;
	}

	.md\@ma-n4 {
		margin: -1rem !important;
	}

	.md\@ma-n5 {
		margin: -1.25rem !important;
	}

	.md\@ma-n6 {
		margin: -1.5rem !important;
	}

	.md\@ma-n7 {
		margin: -1.75rem !important;
	}

	.md\@ma-n8 {
		margin: -2rem !important;
	}

	.md\@ma-n9 {
		margin: -2.25rem !important;
	}

	.md\@ma-n10 {
		margin: -2.5rem !important;
	}

	.md\@ma-n11 {
		margin: -2.75rem !important;
	}

	.md\@ma-n12 {
		margin: -3rem !important;
	}

	.md\@ma-n13 {
		margin: -3.25rem !important;
	}

	.md\@ma-n14 {
		margin: -3.5rem !important;
	}

	.md\@ma-n15 {
		margin: -3.75rem !important;
	}

	.md\@ma-n16 {
		margin: -4rem !important;
	}

	.md\@ma-n17 {
		margin: -4.25rem !important;
	}

	.md\@ma-n18 {
		margin: -4.5rem !important;
	}

	.md\@ma-n19 {
		margin: -4.75rem !important;
	}

	.md\@ma-n20 {
		margin: -5rem !important;
	}

	.md\@mx-n1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.md\@mx-n2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.md\@mx-n3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.md\@mx-n4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.md\@mx-n5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.md\@mx-n6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.md\@mx-n7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.md\@mx-n8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.md\@mx-n9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.md\@mx-n10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.md\@mx-n11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.md\@mx-n12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.md\@mx-n13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.md\@mx-n14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.md\@mx-n15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.md\@mx-n16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.md\@mx-n17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.md\@mx-n18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.md\@mx-n19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.md\@mx-n20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.md\@my-n1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.md\@my-n2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.md\@my-n3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.md\@my-n4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.md\@my-n5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.md\@my-n6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.md\@my-n7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.md\@my-n8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.md\@my-n9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.md\@my-n10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.md\@my-n11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.md\@my-n12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.md\@my-n13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.md\@my-n14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.md\@my-n15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.md\@my-n16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.md\@my-n17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.md\@my-n18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.md\@my-n19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.md\@my-n20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.md\@mt-n1 {
		margin-top: -0.25rem !important;
	}

	.md\@mt-n2 {
		margin-top: -0.5rem !important;
	}

	.md\@mt-n3 {
		margin-top: -0.75rem !important;
	}

	.md\@mt-n4 {
		margin-top: -1rem !important;
	}

	.md\@mt-n5 {
		margin-top: -1.25rem !important;
	}

	.md\@mt-n6 {
		margin-top: -1.5rem !important;
	}

	.md\@mt-n7 {
		margin-top: -1.75rem !important;
	}

	.md\@mt-n8 {
		margin-top: -2rem !important;
	}

	.md\@mt-n9 {
		margin-top: -2.25rem !important;
	}

	.md\@mt-n10 {
		margin-top: -2.5rem !important;
	}

	.md\@mt-n11 {
		margin-top: -2.75rem !important;
	}

	.md\@mt-n12 {
		margin-top: -3rem !important;
	}

	.md\@mt-n13 {
		margin-top: -3.25rem !important;
	}

	.md\@mt-n14 {
		margin-top: -3.5rem !important;
	}

	.md\@mt-n15 {
		margin-top: -3.75rem !important;
	}

	.md\@mt-n16 {
		margin-top: -4rem !important;
	}

	.md\@mt-n17 {
		margin-top: -4.25rem !important;
	}

	.md\@mt-n18 {
		margin-top: -4.5rem !important;
	}

	.md\@mt-n19 {
		margin-top: -4.75rem !important;
	}

	.md\@mt-n20 {
		margin-top: -5rem !important;
	}

	.md\@me-n1 {
		margin-inline-end: -0.25rem !important;
	}

	.md\@me-n2 {
		margin-inline-end: -0.5rem !important;
	}

	.md\@me-n3 {
		margin-inline-end: -0.75rem !important;
	}

	.md\@me-n4 {
		margin-inline-end: -1rem !important;
	}

	.md\@me-n5 {
		margin-inline-end: -1.25rem !important;
	}

	.md\@me-n6 {
		margin-inline-end: -1.5rem !important;
	}

	.md\@me-n7 {
		margin-inline-end: -1.75rem !important;
	}

	.md\@me-n8 {
		margin-inline-end: -2rem !important;
	}

	.md\@me-n9 {
		margin-inline-end: -2.25rem !important;
	}

	.md\@me-n10 {
		margin-inline-end: -2.5rem !important;
	}

	.md\@me-n11 {
		margin-inline-end: -2.75rem !important;
	}

	.md\@me-n12 {
		margin-inline-end: -3rem !important;
	}

	.md\@me-n13 {
		margin-inline-end: -3.25rem !important;
	}

	.md\@me-n14 {
		margin-inline-end: -3.5rem !important;
	}

	.md\@me-n15 {
		margin-inline-end: -3.75rem !important;
	}

	.md\@me-n16 {
		margin-inline-end: -4rem !important;
	}

	.md\@me-n17 {
		margin-inline-end: -4.25rem !important;
	}

	.md\@me-n18 {
		margin-inline-end: -4.5rem !important;
	}

	.md\@me-n19 {
		margin-inline-end: -4.75rem !important;
	}

	.md\@me-n20 {
		margin-inline-end: -5rem !important;
	}

	.md\@mb-n1 {
		margin-bottom: -0.25rem !important;
	}

	.md\@mb-n2 {
		margin-bottom: -0.5rem !important;
	}

	.md\@mb-n3 {
		margin-bottom: -0.75rem !important;
	}

	.md\@mb-n4 {
		margin-bottom: -1rem !important;
	}

	.md\@mb-n5 {
		margin-bottom: -1.25rem !important;
	}

	.md\@mb-n6 {
		margin-bottom: -1.5rem !important;
	}

	.md\@mb-n7 {
		margin-bottom: -1.75rem !important;
	}

	.md\@mb-n8 {
		margin-bottom: -2rem !important;
	}

	.md\@mb-n9 {
		margin-bottom: -2.25rem !important;
	}

	.md\@mb-n10 {
		margin-bottom: -2.5rem !important;
	}

	.md\@mb-n11 {
		margin-bottom: -2.75rem !important;
	}

	.md\@mb-n12 {
		margin-bottom: -3rem !important;
	}

	.md\@mb-n13 {
		margin-bottom: -3.25rem !important;
	}

	.md\@mb-n14 {
		margin-bottom: -3.5rem !important;
	}

	.md\@mb-n15 {
		margin-bottom: -3.75rem !important;
	}

	.md\@mb-n16 {
		margin-bottom: -4rem !important;
	}

	.md\@mb-n17 {
		margin-bottom: -4.25rem !important;
	}

	.md\@mb-n18 {
		margin-bottom: -4.5rem !important;
	}

	.md\@mb-n19 {
		margin-bottom: -4.75rem !important;
	}

	.md\@mb-n20 {
		margin-bottom: -5rem !important;
	}

	.md\@ms-n1 {
		margin-inline-start: -0.25rem !important;
	}

	.md\@ms-n2 {
		margin-inline-start: -0.5rem !important;
	}

	.md\@ms-n3 {
		margin-inline-start: -0.75rem !important;
	}

	.md\@ms-n4 {
		margin-inline-start: -1rem !important;
	}

	.md\@ms-n5 {
		margin-inline-start: -1.25rem !important;
	}

	.md\@ms-n6 {
		margin-inline-start: -1.5rem !important;
	}

	.md\@ms-n7 {
		margin-inline-start: -1.75rem !important;
	}

	.md\@ms-n8 {
		margin-inline-start: -2rem !important;
	}

	.md\@ms-n9 {
		margin-inline-start: -2.25rem !important;
	}

	.md\@ms-n10 {
		margin-inline-start: -2.5rem !important;
	}

	.md\@ms-n11 {
		margin-inline-start: -2.75rem !important;
	}

	.md\@ms-n12 {
		margin-inline-start: -3rem !important;
	}

	.md\@ms-n13 {
		margin-inline-start: -3.25rem !important;
	}

	.md\@ms-n14 {
		margin-inline-start: -3.5rem !important;
	}

	.md\@ms-n15 {
		margin-inline-start: -3.75rem !important;
	}

	.md\@ms-n16 {
		margin-inline-start: -4rem !important;
	}

	.md\@ms-n17 {
		margin-inline-start: -4.25rem !important;
	}

	.md\@ms-n18 {
		margin-inline-start: -4.5rem !important;
	}

	.md\@ms-n19 {
		margin-inline-start: -4.75rem !important;
	}

	.md\@ms-n20 {
		margin-inline-start: -5rem !important;
	}

	.md\@pa-0 {
		padding: 0 !important;
	}

	.md\@pa-1 {
		padding: 0.25rem !important;
	}

	.md\@pa-2 {
		padding: 0.5rem !important;
	}

	.md\@pa-3 {
		padding: 0.75rem !important;
	}

	.md\@pa-4 {
		padding: 1rem !important;
	}

	.md\@pa-5 {
		padding: 1.25rem !important;
	}

	.md\@pa-6 {
		padding: 1.5rem !important;
	}

	.md\@pa-7 {
		padding: 1.75rem !important;
	}

	.md\@pa-8 {
		padding: 2rem !important;
	}

	.md\@pa-9 {
		padding: 2.25rem !important;
	}

	.md\@pa-10 {
		padding: 2.5rem !important;
	}

	.md\@pa-11 {
		padding: 2.75rem !important;
	}

	.md\@pa-12 {
		padding: 3rem !important;
	}

	.md\@pa-13 {
		padding: 3.25rem !important;
	}

	.md\@pa-14 {
		padding: 3.5rem !important;
	}

	.md\@pa-15 {
		padding: 3.75rem !important;
	}

	.md\@pa-16 {
		padding: 4rem !important;
	}

	.md\@pa-17 {
		padding: 4.25rem !important;
	}

	.md\@pa-18 {
		padding: 4.5rem !important;
	}

	.md\@pa-19 {
		padding: 4.75rem !important;
	}

	.md\@pa-20 {
		padding: 5rem !important;
	}

	.md\@px-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.md\@px-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.md\@px-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.md\@px-3 {
		padding-right: 0.75rem !important;
		padding-left: 0.75rem !important;
	}

	.md\@px-4 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.md\@px-5 {
		padding-right: 1.25rem !important;
		padding-left: 1.25rem !important;
	}

	.md\@px-6 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.md\@px-7 {
		padding-right: 1.75rem !important;
		padding-left: 1.75rem !important;
	}

	.md\@px-8 {
		padding-right: 2rem !important;
		padding-left: 2rem !important;
	}

	.md\@px-9 {
		padding-right: 2.25rem !important;
		padding-left: 2.25rem !important;
	}

	.md\@px-10 {
		padding-right: 2.5rem !important;
		padding-left: 2.5rem !important;
	}

	.md\@px-11 {
		padding-right: 2.75rem !important;
		padding-left: 2.75rem !important;
	}

	.md\@px-12 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.md\@px-13 {
		padding-right: 3.25rem !important;
		padding-left: 3.25rem !important;
	}

	.md\@px-14 {
		padding-right: 3.5rem !important;
		padding-left: 3.5rem !important;
	}

	.md\@px-15 {
		padding-right: 3.75rem !important;
		padding-left: 3.75rem !important;
	}

	.md\@px-16 {
		padding-right: 4rem !important;
		padding-left: 4rem !important;
	}

	.md\@px-17 {
		padding-right: 4.25rem !important;
		padding-left: 4.25rem !important;
	}

	.md\@px-18 {
		padding-right: 4.5rem !important;
		padding-left: 4.5rem !important;
	}

	.md\@px-19 {
		padding-right: 4.75rem !important;
		padding-left: 4.75rem !important;
	}

	.md\@px-20 {
		padding-right: 5rem !important;
		padding-left: 5rem !important;
	}

	.md\@py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.md\@py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.md\@py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.md\@py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.md\@py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.md\@py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.md\@py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.md\@py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.md\@py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.md\@py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.md\@py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.md\@py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.md\@py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.md\@py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.md\@py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.md\@py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.md\@py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.md\@py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.md\@py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.md\@py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.md\@py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.md\@py-60 {
		padding-top: 15rem !important;
		padding-bottom: 15rem !important;
	}

	.md\@pt-0 {
		padding-top: 0 !important;
	}

	.md\@pt-1 {
		padding-top: 0.25rem !important;
	}

	.md\@pt-2 {
		padding-top: 0.5rem !important;
	}

	.md\@pt-3 {
		padding-top: 0.75rem !important;
	}

	.md\@pt-4 {
		padding-top: 1rem !important;
	}

	.md\@pt-5 {
		padding-top: 1.25rem !important;
	}

	.md\@pt-6 {
		padding-top: 1.5rem !important;
	}

	.md\@pt-7 {
		padding-top: 1.75rem !important;
	}

	.md\@pt-8 {
		padding-top: 2rem !important;
	}

	.md\@pt-9 {
		padding-top: 2.25rem !important;
	}

	.md\@pt-10 {
		padding-top: 2.5rem !important;
	}

	.md\@pt-11 {
		padding-top: 2.75rem !important;
	}

	.md\@pt-12 {
		padding-top: 3rem !important;
	}

	.md\@pt-13 {
		padding-top: 3.25rem !important;
	}

	.md\@pt-14 {
		padding-top: 3.5rem !important;
	}

	.md\@pt-15 {
		padding-top: 3.75rem !important;
	}

	.md\@pt-16 {
		padding-top: 4rem !important;
	}

	.md\@pt-17 {
		padding-top: 4.25rem !important;
	}

	.md\@pt-18 {
		padding-top: 4.5rem !important;
	}

	.md\@pt-19 {
		padding-top: 4.75rem !important;
	}

	.md\@pt-20 {
		padding-top: 5rem !important;
	}

	.md\@pe-0 {
		padding-right: 0 !important;
	}

	.md\@pe-1 {
		padding-right: 0.25rem !important;
	}

	.md\@pe-2 {
		padding-right: 0.5rem !important;
	}

	.md\@pe-3 {
		padding-right: 0.75rem !important;
	}

	.md\@pe-4 {
		padding-right: 1rem !important;
	}

	.md\@pe-5 {
		padding-right: 1.25rem !important;
	}

	.md\@pe-6 {
		padding-right: 1.5rem !important;
	}

	.md\@pe-7 {
		padding-right: 1.75rem !important;
	}

	.md\@pe-8 {
		padding-right: 2rem !important;
	}

	.md\@pe-9 {
		padding-right: 2.25rem !important;
	}

	.md\@pe-10 {
		padding-right: 2.5rem !important;
	}

	.md\@pe-11 {
		padding-right: 2.75rem !important;
	}

	.md\@pe-12 {
		padding-right: 3rem !important;
	}

	.md\@pe-13 {
		padding-right: 3.25rem !important;
	}

	.md\@pe-14 {
		padding-right: 3.5rem !important;
	}

	.md\@pe-15 {
		padding-right: 3.75rem !important;
	}

	.md\@pe-16 {
		padding-right: 4rem !important;
	}

	.md\@pe-17 {
		padding-right: 4.25rem !important;
	}

	.md\@pe-18 {
		padding-right: 4.5rem !important;
	}

	.md\@pe-19 {
		padding-right: 4.75rem !important;
	}

	.md\@pe-20 {
		padding-right: 5rem !important;
	}

	.md\@pb-0 {
		padding-bottom: 0 !important;
	}

	.md\@pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.md\@pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.md\@pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.md\@pb-4 {
		padding-bottom: 1rem !important;
	}

	.md\@pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.md\@pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.md\@pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.md\@pb-8 {
		padding-bottom: 2rem !important;
	}

	.md\@pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.md\@pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.md\@pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.md\@pb-12 {
		padding-bottom: 3rem !important;
	}

	.md\@pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.md\@pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.md\@pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.md\@pb-16 {
		padding-bottom: 4rem !important;
	}

	.md\@pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.md\@pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.md\@pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.md\@pb-20 {
		padding-bottom: 5rem !important;
	}

	.md\@ps-0 {
		padding-left: 0 !important;
	}

	.md\@ps-1 {
		padding-left: 0.25rem !important;
	}

	.md\@ps-2 {
		padding-left: 0.5rem !important;
	}

	.md\@ps-3 {
		padding-left: 0.75rem !important;
	}

	.md\@ps-4 {
		padding-left: 1rem !important;
	}

	.md\@ps-5 {
		padding-left: 1.25rem !important;
	}

	.md\@ps-6 {
		padding-left: 1.5rem !important;
	}

	.md\@ps-7 {
		padding-left: 1.75rem !important;
	}

	.md\@ps-8 {
		padding-left: 2rem !important;
	}

	.md\@ps-9 {
		padding-left: 2.25rem !important;
	}

	.md\@ps-10 {
		padding-left: 2.5rem !important;
	}

	.md\@ps-11 {
		padding-left: 2.75rem !important;
	}

	.md\@ps-12 {
		padding-left: 3rem !important;
	}

	.md\@ps-13 {
		padding-left: 3.25rem !important;
	}

	.md\@ps-14 {
		padding-left: 3.5rem !important;
	}

	.md\@ps-15 {
		padding-left: 3.75rem !important;
	}

	.md\@ps-16 {
		padding-left: 4rem !important;
	}

	.md\@ps-17 {
		padding-left: 4.25rem !important;
	}

	.md\@ps-18 {
		padding-left: 4.5rem !important;
	}

	.md\@ps-19 {
		padding-left: 4.75rem !important;
	}

	.md\@ps-20 {
		padding-left: 5rem !important;
	}
}

/* START: Custom, md breakpoint */

@media (min-width: 60em) {
	.md\@mb-\[8\%\] {
		margin-bottom: 8% !important;
	}

	.md\@mx-n\[6rem\] {
		margin-inline-end: -6rem !important;
		margin-inline-start: -6rem !important;
	}

	.pe-container {
		padding-right: calc((100% - 56.25rem) / 2 + 1rem) !important;
	}

	.ps-container {
		padding-left: calc((100% - 56.25rem) / 2 + 1rem) !important;
	}
}

/* END: Custom, md breakpoint */

@media (min-width: 80em) {
	.lg\@ma-0 {
		margin: 0 !important;
	}

	.lg\@ma-1 {
		margin: 0.25rem !important;
	}

	.lg\@ma-2 {
		margin: 0.5rem !important;
	}

	.lg\@ma-3 {
		margin: 0.75rem !important;
	}

	.lg\@ma-4 {
		margin: 1rem !important;
	}

	.lg\@ma-5 {
		margin: 1.25rem !important;
	}

	.lg\@ma-6 {
		margin: 1.5rem !important;
	}

	.lg\@ma-7 {
		margin: 1.75rem !important;
	}

	.lg\@ma-8 {
		margin: 2rem !important;
	}

	.lg\@ma-9 {
		margin: 2.25rem !important;
	}

	.lg\@ma-10 {
		margin: 2.5rem !important;
	}

	.lg\@ma-11 {
		margin: 2.75rem !important;
	}

	.lg\@ma-12 {
		margin: 3rem !important;
	}

	.lg\@ma-13 {
		margin: 3.25rem !important;
	}

	.lg\@ma-14 {
		margin: 3.5rem !important;
	}

	.lg\@ma-15 {
		margin: 3.75rem !important;
	}

	.lg\@ma-16 {
		margin: 4rem !important;
	}

	.lg\@ma-17 {
		margin: 4.25rem !important;
	}

	.lg\@ma-18 {
		margin: 4.5rem !important;
	}

	.lg\@ma-19 {
		margin: 4.75rem !important;
	}

	.lg\@ma-20 {
		margin: 5rem !important;
	}

	.lg\@ma-auto {
		margin: auto !important;
	}

	.lg\@mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.lg\@mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.lg\@mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.lg\@mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.lg\@mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.lg\@mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.lg\@mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.lg\@mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.lg\@mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.lg\@mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.lg\@mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.lg\@mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.lg\@mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.lg\@mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.lg\@mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.lg\@mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.lg\@mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.lg\@mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.lg\@mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.lg\@mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.lg\@mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.lg\@mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.lg\@my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.lg\@my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.lg\@my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.lg\@my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.lg\@my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.lg\@my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.lg\@my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.lg\@my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.lg\@my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.lg\@my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.lg\@my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.lg\@my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.lg\@my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.lg\@my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.lg\@my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.lg\@my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.lg\@my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.lg\@my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.lg\@my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.lg\@my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.lg\@my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.lg\@my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.lg\@mt-0 {
		margin-top: 0 !important;
	}

	.lg\@mt-1 {
		margin-top: 0.25rem !important;
	}

	.lg\@mt-2 {
		margin-top: 0.5rem !important;
	}

	.lg\@mt-3 {
		margin-top: 0.75rem !important;
	}

	.lg\@mt-4 {
		margin-top: 1rem !important;
	}

	.lg\@mt-5 {
		margin-top: 1.25rem !important;
	}

	.lg\@mt-6 {
		margin-top: 1.5rem !important;
	}

	.lg\@mt-7 {
		margin-top: 1.75rem !important;
	}

	.lg\@mt-8 {
		margin-top: 2rem !important;
	}

	.lg\@mt-9 {
		margin-top: 2.25rem !important;
	}

	.lg\@mt-10 {
		margin-top: 2.5rem !important;
	}

	.lg\@mt-11 {
		margin-top: 2.75rem !important;
	}

	.lg\@mt-12 {
		margin-top: 3rem !important;
	}

	.lg\@mt-13 {
		margin-top: 3.25rem !important;
	}

	.lg\@mt-14 {
		margin-top: 3.5rem !important;
	}

	.lg\@mt-15 {
		margin-top: 3.75rem !important;
	}

	.lg\@mt-16 {
		margin-top: 4rem !important;
	}

	.lg\@mt-17 {
		margin-top: 4.25rem !important;
	}

	.lg\@mt-18 {
		margin-top: 4.5rem !important;
	}

	.lg\@mt-19 {
		margin-top: 4.75rem !important;
	}

	.lg\@mt-20 {
		margin-top: 5rem !important;
	}

	.lg\@mt-auto {
		margin-top: auto !important;
	}

	.lg\@me-0 {
		margin-inline-end: 0 !important;
	}

	.lg\@me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.lg\@me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.lg\@me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.lg\@me-4 {
		margin-inline-end: 1rem !important;
	}

	.lg\@me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.lg\@me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.lg\@me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.lg\@me-8 {
		margin-inline-end: 2rem !important;
	}

	.lg\@me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.lg\@me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.lg\@me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.lg\@me-12 {
		margin-inline-end: 3rem !important;
	}

	.lg\@me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.lg\@me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.lg\@me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.lg\@me-16 {
		margin-inline-end: 4rem !important;
	}

	.lg\@me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.lg\@me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.lg\@me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.lg\@me-20 {
		margin-inline-end: 5rem !important;
	}

	.lg\@me-auto {
		margin-inline-end: auto !important;
	}

	.lg\@mb-0 {
		margin-bottom: 0 !important;
	}

	.lg\@mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.lg\@mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.lg\@mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.lg\@mb-4 {
		margin-bottom: 1rem !important;
	}

	.lg\@mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.lg\@mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.lg\@mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.lg\@mb-8 {
		margin-bottom: 2rem !important;
	}

	.lg\@mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.lg\@mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.lg\@mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.lg\@mb-12 {
		margin-bottom: 3rem !important;
	}

	.lg\@mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.lg\@mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.lg\@mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.lg\@mb-16 {
		margin-bottom: 4rem !important;
	}

	.lg\@mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.lg\@mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.lg\@mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.lg\@mb-20 {
		margin-bottom: 5rem !important;
	}

	.lg\@mb-auto {
		margin-bottom: auto !important;
	}

	.lg\@ms-0 {
		margin-inline-start: 0 !important;
	}

	.lg\@ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.lg\@ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.lg\@ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.lg\@ms-4 {
		margin-inline-start: 1rem !important;
	}

	.lg\@ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.lg\@ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.lg\@ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.lg\@ms-8 {
		margin-inline-start: 2rem !important;
	}

	.lg\@ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.lg\@ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.lg\@ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.lg\@ms-12 {
		margin-inline-start: 3rem !important;
	}

	.lg\@ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.lg\@ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.lg\@ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.lg\@ms-16 {
		margin-inline-start: 4rem !important;
	}

	.lg\@ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.lg\@ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.lg\@ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.lg\@ms-20 {
		margin-inline-start: 5rem !important;
	}

	.lg\@ms-auto {
		margin-inline-start: auto !important;
	}

	.lg\@ma-n1 {
		margin: -0.25rem !important;
	}

	.lg\@ma-n2 {
		margin: -0.5rem !important;
	}

	.lg\@ma-n3 {
		margin: -0.75rem !important;
	}

	.lg\@ma-n4 {
		margin: -1rem !important;
	}

	.lg\@ma-n5 {
		margin: -1.25rem !important;
	}

	.lg\@ma-n6 {
		margin: -1.5rem !important;
	}

	.lg\@ma-n7 {
		margin: -1.75rem !important;
	}

	.lg\@ma-n8 {
		margin: -2rem !important;
	}

	.lg\@ma-n9 {
		margin: -2.25rem !important;
	}

	.lg\@ma-n10 {
		margin: -2.5rem !important;
	}

	.lg\@ma-n11 {
		margin: -2.75rem !important;
	}

	.lg\@ma-n12 {
		margin: -3rem !important;
	}

	.lg\@ma-n13 {
		margin: -3.25rem !important;
	}

	.lg\@ma-n14 {
		margin: -3.5rem !important;
	}

	.lg\@ma-n15 {
		margin: -3.75rem !important;
	}

	.lg\@ma-n16 {
		margin: -4rem !important;
	}

	.lg\@ma-n17 {
		margin: -4.25rem !important;
	}

	.lg\@ma-n18 {
		margin: -4.5rem !important;
	}

	.lg\@ma-n19 {
		margin: -4.75rem !important;
	}

	.lg\@ma-n20 {
		margin: -5rem !important;
	}

	.lg\@mx-n1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.lg\@mx-n2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.lg\@mx-n3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.lg\@mx-n4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.lg\@mx-n5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.lg\@mx-n6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.lg\@mx-n7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.lg\@mx-n8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.lg\@mx-n9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.lg\@mx-n10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.lg\@mx-n11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.lg\@mx-n12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.lg\@mx-n13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.lg\@mx-n14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.lg\@mx-n15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.lg\@mx-n16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.lg\@mx-n17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.lg\@mx-n18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.lg\@mx-n19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.lg\@mx-n20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.lg\@my-n1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.lg\@my-n2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.lg\@my-n3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.lg\@my-n4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.lg\@my-n5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.lg\@my-n6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.lg\@my-n7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.lg\@my-n8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.lg\@my-n9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.lg\@my-n10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.lg\@my-n11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.lg\@my-n12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.lg\@my-n13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.lg\@my-n14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.lg\@my-n15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.lg\@my-n16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.lg\@my-n17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.lg\@my-n18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.lg\@my-n19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.lg\@my-n20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.lg\@mt-n1 {
		margin-top: -0.25rem !important;
	}

	.lg\@mt-n2 {
		margin-top: -0.5rem !important;
	}

	.lg\@mt-n3 {
		margin-top: -0.75rem !important;
	}

	.lg\@mt-n4 {
		margin-top: -1rem !important;
	}

	.lg\@mt-n5 {
		margin-top: -1.25rem !important;
	}

	.lg\@mt-n6 {
		margin-top: -1.5rem !important;
	}

	.lg\@mt-n7 {
		margin-top: -1.75rem !important;
	}

	.lg\@mt-n8 {
		margin-top: -2rem !important;
	}

	.lg\@mt-n9 {
		margin-top: -2.25rem !important;
	}

	.lg\@mt-n10 {
		margin-top: -2.5rem !important;
	}

	.lg\@mt-n11 {
		margin-top: -2.75rem !important;
	}

	.lg\@mt-n12 {
		margin-top: -3rem !important;
	}

	.lg\@mt-n13 {
		margin-top: -3.25rem !important;
	}

	.lg\@mt-n14 {
		margin-top: -3.5rem !important;
	}

	.lg\@mt-n15 {
		margin-top: -3.75rem !important;
	}

	.lg\@mt-n16 {
		margin-top: -4rem !important;
	}

	.lg\@mt-n17 {
		margin-top: -4.25rem !important;
	}

	.lg\@mt-n18 {
		margin-top: -4.5rem !important;
	}

	.lg\@mt-n19 {
		margin-top: -4.75rem !important;
	}

	.lg\@mt-n20 {
		margin-top: -5rem !important;
	}

	.lg\@me-n1 {
		margin-inline-end: -0.25rem !important;
	}

	.lg\@me-n2 {
		margin-inline-end: -0.5rem !important;
	}

	.lg\@me-n3 {
		margin-inline-end: -0.75rem !important;
	}

	.lg\@me-n4 {
		margin-inline-end: -1rem !important;
	}

	.lg\@me-n5 {
		margin-inline-end: -1.25rem !important;
	}

	.lg\@me-n6 {
		margin-inline-end: -1.5rem !important;
	}

	.lg\@me-n7 {
		margin-inline-end: -1.75rem !important;
	}

	.lg\@me-n8 {
		margin-inline-end: -2rem !important;
	}

	.lg\@me-n9 {
		margin-inline-end: -2.25rem !important;
	}

	.lg\@me-n10 {
		margin-inline-end: -2.5rem !important;
	}

	.lg\@me-n11 {
		margin-inline-end: -2.75rem !important;
	}

	.lg\@me-n12 {
		margin-inline-end: -3rem !important;
	}

	.lg\@me-n13 {
		margin-inline-end: -3.25rem !important;
	}

	.lg\@me-n14 {
		margin-inline-end: -3.5rem !important;
	}

	.lg\@me-n15 {
		margin-inline-end: -3.75rem !important;
	}

	.lg\@me-n16 {
		margin-inline-end: -4rem !important;
	}

	.lg\@me-n17 {
		margin-inline-end: -4.25rem !important;
	}

	.lg\@me-n18 {
		margin-inline-end: -4.5rem !important;
	}

	.lg\@me-n19 {
		margin-inline-end: -4.75rem !important;
	}

	.lg\@me-n20 {
		margin-inline-end: -5rem !important;
	}

	.lg\@mb-n1 {
		margin-bottom: -0.25rem !important;
	}

	.lg\@mb-n2 {
		margin-bottom: -0.5rem !important;
	}

	.lg\@mb-n3 {
		margin-bottom: -0.75rem !important;
	}

	.lg\@mb-n4 {
		margin-bottom: -1rem !important;
	}

	.lg\@mb-n5 {
		margin-bottom: -1.25rem !important;
	}

	.lg\@mb-n6 {
		margin-bottom: -1.5rem !important;
	}

	.lg\@mb-n7 {
		margin-bottom: -1.75rem !important;
	}

	.lg\@mb-n8 {
		margin-bottom: -2rem !important;
	}

	.lg\@mb-n9 {
		margin-bottom: -2.25rem !important;
	}

	.lg\@mb-n10 {
		margin-bottom: -2.5rem !important;
	}

	.lg\@mb-n11 {
		margin-bottom: -2.75rem !important;
	}

	.lg\@mb-n12 {
		margin-bottom: -3rem !important;
	}

	.lg\@mb-n13 {
		margin-bottom: -3.25rem !important;
	}

	.lg\@mb-n14 {
		margin-bottom: -3.5rem !important;
	}

	.lg\@mb-n15 {
		margin-bottom: -3.75rem !important;
	}

	.lg\@mb-n16 {
		margin-bottom: -4rem !important;
	}

	.lg\@mb-n17 {
		margin-bottom: -4.25rem !important;
	}

	.lg\@mb-n18 {
		margin-bottom: -4.5rem !important;
	}

	.lg\@mb-n19 {
		margin-bottom: -4.75rem !important;
	}

	.lg\@mb-n20 {
		margin-bottom: -5rem !important;
	}

	.lg\@ms-n1 {
		margin-inline-start: -0.25rem !important;
	}

	.lg\@ms-n2 {
		margin-inline-start: -0.5rem !important;
	}

	.lg\@ms-n3 {
		margin-inline-start: -0.75rem !important;
	}

	.lg\@ms-n4 {
		margin-inline-start: -1rem !important;
	}

	.lg\@ms-n5 {
		margin-inline-start: -1.25rem !important;
	}

	.lg\@ms-n6 {
		margin-inline-start: -1.5rem !important;
	}

	.lg\@ms-n7 {
		margin-inline-start: -1.75rem !important;
	}

	.lg\@ms-n8 {
		margin-inline-start: -2rem !important;
	}

	.lg\@ms-n9 {
		margin-inline-start: -2.25rem !important;
	}

	.lg\@ms-n10 {
		margin-inline-start: -2.5rem !important;
	}

	.lg\@ms-n11 {
		margin-inline-start: -2.75rem !important;
	}

	.lg\@ms-n12 {
		margin-inline-start: -3rem !important;
	}

	.lg\@ms-n13 {
		margin-inline-start: -3.25rem !important;
	}

	.lg\@ms-n14 {
		margin-inline-start: -3.5rem !important;
	}

	.lg\@ms-n15 {
		margin-inline-start: -3.75rem !important;
	}

	.lg\@ms-n16 {
		margin-inline-start: -4rem !important;
	}

	.lg\@ms-n17 {
		margin-inline-start: -4.25rem !important;
	}

	.lg\@ms-n18 {
		margin-inline-start: -4.5rem !important;
	}

	.lg\@ms-n19 {
		margin-inline-start: -4.75rem !important;
	}

	.lg\@ms-n20 {
		margin-inline-start: -5rem !important;
	}

	.lg\@pa-0 {
		padding: 0 !important;
	}

	.lg\@pa-1 {
		padding: 0.25rem !important;
	}

	.lg\@pa-2 {
		padding: 0.5rem !important;
	}

	.lg\@pa-3 {
		padding: 0.75rem !important;
	}

	.lg\@pa-4 {
		padding: 1rem !important;
	}

	.lg\@pa-5 {
		padding: 1.25rem !important;
	}

	.lg\@pa-6 {
		padding: 1.5rem !important;
	}

	.lg\@pa-7 {
		padding: 1.75rem !important;
	}

	.lg\@pa-8 {
		padding: 2rem !important;
	}

	.lg\@pa-9 {
		padding: 2.25rem !important;
	}

	.lg\@pa-10 {
		padding: 2.5rem !important;
	}

	.lg\@pa-11 {
		padding: 2.75rem !important;
	}

	.lg\@pa-12 {
		padding: 3rem !important;
	}

	.lg\@pa-13 {
		padding: 3.25rem !important;
	}

	.lg\@pa-14 {
		padding: 3.5rem !important;
	}

	.lg\@pa-15 {
		padding: 3.75rem !important;
	}

	.lg\@pa-16 {
		padding: 4rem !important;
	}

	.lg\@pa-17 {
		padding: 4.25rem !important;
	}

	.lg\@pa-18 {
		padding: 4.5rem !important;
	}

	.lg\@pa-19 {
		padding: 4.75rem !important;
	}

	.lg\@pa-20 {
		padding: 5rem !important;
	}

	.lg\@px-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.lg\@px-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.lg\@px-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.lg\@px-3 {
		padding-right: 0.75rem !important;
		padding-left: 0.75rem !important;
	}

	.lg\@px-4 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.lg\@px-5 {
		padding-right: 1.25rem !important;
		padding-left: 1.25rem !important;
	}

	.lg\@px-6 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.lg\@px-7 {
		padding-right: 1.75rem !important;
		padding-left: 1.75rem !important;
	}

	.lg\@px-8 {
		padding-right: 2rem !important;
		padding-left: 2rem !important;
	}

	.lg\@px-9 {
		padding-right: 2.25rem !important;
		padding-left: 2.25rem !important;
	}

	.lg\@px-10 {
		padding-right: 2.5rem !important;
		padding-left: 2.5rem !important;
	}

	.lg\@px-11 {
		padding-right: 2.75rem !important;
		padding-left: 2.75rem !important;
	}

	.lg\@px-12 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.lg\@px-13 {
		padding-right: 3.25rem !important;
		padding-left: 3.25rem !important;
	}

	.lg\@px-14 {
		padding-right: 3.5rem !important;
		padding-left: 3.5rem !important;
	}

	.lg\@px-15 {
		padding-right: 3.75rem !important;
		padding-left: 3.75rem !important;
	}

	.lg\@px-16 {
		padding-right: 4rem !important;
		padding-left: 4rem !important;
	}

	.lg\@px-17 {
		padding-right: 4.25rem !important;
		padding-left: 4.25rem !important;
	}

	.lg\@px-18 {
		padding-right: 4.5rem !important;
		padding-left: 4.5rem !important;
	}

	.lg\@px-19 {
		padding-right: 4.75rem !important;
		padding-left: 4.75rem !important;
	}

	.lg\@px-20 {
		padding-right: 5rem !important;
		padding-left: 5rem !important;
	}

	.lg\@py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.lg\@py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.lg\@py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.lg\@py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.lg\@py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.lg\@py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.lg\@py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.lg\@py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.lg\@py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.lg\@py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.lg\@py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.lg\@py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.lg\@py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.lg\@py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.lg\@py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.lg\@py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.lg\@py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.lg\@py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.lg\@py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.lg\@py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.lg\@py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.lg\@py-80 {
		padding-top: 20rem !important;
		padding-bottom: 20rem !important;
	}

	.lg\@pt-0 {
		padding-top: 0 !important;
	}

	.lg\@pt-1 {
		padding-top: 0.25rem !important;
	}

	.lg\@pt-2 {
		padding-top: 0.5rem !important;
	}

	.lg\@pt-3 {
		padding-top: 0.75rem !important;
	}

	.lg\@pt-4 {
		padding-top: 1rem !important;
	}

	.lg\@pt-5 {
		padding-top: 1.25rem !important;
	}

	.lg\@pt-6 {
		padding-top: 1.5rem !important;
	}

	.lg\@pt-7 {
		padding-top: 1.75rem !important;
	}

	.lg\@pt-8 {
		padding-top: 2rem !important;
	}

	.lg\@pt-9 {
		padding-top: 2.25rem !important;
	}

	.lg\@pt-10 {
		padding-top: 2.5rem !important;
	}

	.lg\@pt-11 {
		padding-top: 2.75rem !important;
	}

	.lg\@pt-12 {
		padding-top: 3rem !important;
	}

	.lg\@pt-13 {
		padding-top: 3.25rem !important;
	}

	.lg\@pt-14 {
		padding-top: 3.5rem !important;
	}

	.lg\@pt-15 {
		padding-top: 3.75rem !important;
	}

	.lg\@pt-16 {
		padding-top: 4rem !important;
	}

	.lg\@pt-17 {
		padding-top: 4.25rem !important;
	}

	.lg\@pt-18 {
		padding-top: 4.5rem !important;
	}

	.lg\@pt-19 {
		padding-top: 4.75rem !important;
	}

	.lg\@pt-20 {
		padding-top: 5rem !important;
	}

	.lg\@pe-0 {
		padding-right: 0 !important;
	}

	.lg\@pe-1 {
		padding-right: 0.25rem !important;
	}

	.lg\@pe-2 {
		padding-right: 0.5rem !important;
	}

	.lg\@pe-3 {
		padding-right: 0.75rem !important;
	}

	.lg\@pe-4 {
		padding-right: 1rem !important;
	}

	.lg\@pe-5 {
		padding-right: 1.25rem !important;
	}

	.lg\@pe-6 {
		padding-right: 1.5rem !important;
	}

	.lg\@pe-7 {
		padding-right: 1.75rem !important;
	}

	.lg\@pe-8 {
		padding-right: 2rem !important;
	}

	.lg\@pe-9 {
		padding-right: 2.25rem !important;
	}

	.lg\@pe-10 {
		padding-right: 2.5rem !important;
	}

	.lg\@pe-11 {
		padding-right: 2.75rem !important;
	}

	.lg\@pe-12 {
		padding-right: 3rem !important;
	}

	.lg\@pe-13 {
		padding-right: 3.25rem !important;
	}

	.lg\@pe-14 {
		padding-right: 3.5rem !important;
	}

	.lg\@pe-15 {
		padding-right: 3.75rem !important;
	}

	.lg\@pe-16 {
		padding-right: 4rem !important;
	}

	.lg\@pe-17 {
		padding-right: 4.25rem !important;
	}

	.lg\@pe-18 {
		padding-right: 4.5rem !important;
	}

	.lg\@pe-19 {
		padding-right: 4.75rem !important;
	}

	.lg\@pe-20 {
		padding-right: 5rem !important;
	}

	.lg\@pb-0 {
		padding-bottom: 0 !important;
	}

	.lg\@pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.lg\@pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.lg\@pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.lg\@pb-4 {
		padding-bottom: 1rem !important;
	}

	.lg\@pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.lg\@pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.lg\@pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.lg\@pb-8 {
		padding-bottom: 2rem !important;
	}

	.lg\@pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.lg\@pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.lg\@pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.lg\@pb-12 {
		padding-bottom: 3rem !important;
	}

	.lg\@pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.lg\@pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.lg\@pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.lg\@pb-16 {
		padding-bottom: 4rem !important;
	}

	.lg\@pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.lg\@pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.lg\@pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.lg\@pb-20 {
		padding-bottom: 5rem !important;
	}

	.lg\@ps-0 {
		padding-left: 0 !important;
	}

	.lg\@ps-1 {
		padding-left: 0.25rem !important;
	}

	.lg\@ps-2 {
		padding-left: 0.5rem !important;
	}

	.lg\@ps-3 {
		padding-left: 0.75rem !important;
	}

	.lg\@ps-4 {
		padding-left: 1rem !important;
	}

	.lg\@ps-5 {
		padding-left: 1.25rem !important;
	}

	.lg\@ps-6 {
		padding-left: 1.5rem !important;
	}

	.lg\@ps-7 {
		padding-left: 1.75rem !important;
	}

	.lg\@ps-8 {
		padding-left: 2rem !important;
	}

	.lg\@ps-9 {
		padding-left: 2.25rem !important;
	}

	.lg\@ps-10 {
		padding-left: 2.5rem !important;
	}

	.lg\@ps-11 {
		padding-left: 2.75rem !important;
	}

	.lg\@ps-12 {
		padding-left: 3rem !important;
	}

	.lg\@ps-13 {
		padding-left: 3.25rem !important;
	}

	.lg\@ps-14 {
		padding-left: 3.5rem !important;
	}

	.lg\@ps-15 {
		padding-left: 3.75rem !important;
	}

	.lg\@ps-16 {
		padding-left: 4rem !important;
	}

	.lg\@ps-17 {
		padding-left: 4.25rem !important;
	}

	.lg\@ps-18 {
		padding-left: 4.5rem !important;
	}

	.lg\@ps-19 {
		padding-left: 4.75rem !important;
	}

	.lg\@ps-20 {
		padding-left: 5rem !important;
	}
}

/* START: Custom, lg breakpoint */

@media (min-width: 80em) {
	.lg\@mx-n\[7\.5rem\] {
		margin-inline-end: -7.5rem !important;
		margin-inline-start: -7.5rem !important;
	}

	.lg\@\[\&\:not\(\:last-of-type\)\]\:me-8:not(:last-of-type) {
		margin-inline-end: 2rem !important;
	}

	.lg\@first-of-type\:pt-0:first-of-type{
		padding-top: 0 !important;
	}

	.pe-container {
		padding-right: calc((100% - 75rem) / 2 + 1rem) !important;
	}

	.ps-container {
		padding-left: calc((100% - 75rem) / 2 + 1rem) !important;
	}
}

/* END: Custom, lg breakpoint */

@media (min-width: 100em) {
	.xl\@ma-0 {
		margin: 0 !important;
	}

	.xl\@ma-1 {
		margin: 0.25rem !important;
	}

	.xl\@ma-2 {
		margin: 0.5rem !important;
	}

	.xl\@ma-3 {
		margin: 0.75rem !important;
	}

	.xl\@ma-4 {
		margin: 1rem !important;
	}

	.xl\@ma-5 {
		margin: 1.25rem !important;
	}

	.xl\@ma-6 {
		margin: 1.5rem !important;
	}

	.xl\@ma-7 {
		margin: 1.75rem !important;
	}

	.xl\@ma-8 {
		margin: 2rem !important;
	}

	.xl\@ma-9 {
		margin: 2.25rem !important;
	}

	.xl\@ma-10 {
		margin: 2.5rem !important;
	}

	.xl\@ma-11 {
		margin: 2.75rem !important;
	}

	.xl\@ma-12 {
		margin: 3rem !important;
	}

	.xl\@ma-13 {
		margin: 3.25rem !important;
	}

	.xl\@ma-14 {
		margin: 3.5rem !important;
	}

	.xl\@ma-15 {
		margin: 3.75rem !important;
	}

	.xl\@ma-16 {
		margin: 4rem !important;
	}

	.xl\@ma-17 {
		margin: 4.25rem !important;
	}

	.xl\@ma-18 {
		margin: 4.5rem !important;
	}

	.xl\@ma-19 {
		margin: 4.75rem !important;
	}

	.xl\@ma-20 {
		margin: 5rem !important;
	}

	.xl\@ma-auto {
		margin: auto !important;
	}

	.xl\@mx-0 {
		margin-inline-end: 0 !important;
		margin-inline-start: 0 !important;
	}

	.xl\@mx-1 {
		margin-inline-end: 0.25rem !important;
		margin-inline-start: 0.25rem !important;
	}

	.xl\@mx-2 {
		margin-inline-end: 0.5rem !important;
		margin-inline-start: 0.5rem !important;
	}

	.xl\@mx-3 {
		margin-inline-end: 0.75rem !important;
		margin-inline-start: 0.75rem !important;
	}

	.xl\@mx-4 {
		margin-inline-end: 1rem !important;
		margin-inline-start: 1rem !important;
	}

	.xl\@mx-5 {
		margin-inline-end: 1.25rem !important;
		margin-inline-start: 1.25rem !important;
	}

	.xl\@mx-6 {
		margin-inline-end: 1.5rem !important;
		margin-inline-start: 1.5rem !important;
	}

	.xl\@mx-7 {
		margin-inline-end: 1.75rem !important;
		margin-inline-start: 1.75rem !important;
	}

	.xl\@mx-8 {
		margin-inline-end: 2rem !important;
		margin-inline-start: 2rem !important;
	}

	.xl\@mx-9 {
		margin-inline-end: 2.25rem !important;
		margin-inline-start: 2.25rem !important;
	}

	.xl\@mx-10 {
		margin-inline-end: 2.5rem !important;
		margin-inline-start: 2.5rem !important;
	}

	.xl\@mx-11 {
		margin-inline-end: 2.75rem !important;
		margin-inline-start: 2.75rem !important;
	}

	.xl\@mx-12 {
		margin-inline-end: 3rem !important;
		margin-inline-start: 3rem !important;
	}

	.xl\@mx-13 {
		margin-inline-end: 3.25rem !important;
		margin-inline-start: 3.25rem !important;
	}

	.xl\@mx-14 {
		margin-inline-end: 3.5rem !important;
		margin-inline-start: 3.5rem !important;
	}

	.xl\@mx-15 {
		margin-inline-end: 3.75rem !important;
		margin-inline-start: 3.75rem !important;
	}

	.xl\@mx-16 {
		margin-inline-end: 4rem !important;
		margin-inline-start: 4rem !important;
	}

	.xl\@mx-17 {
		margin-inline-end: 4.25rem !important;
		margin-inline-start: 4.25rem !important;
	}

	.xl\@mx-18 {
		margin-inline-end: 4.5rem !important;
		margin-inline-start: 4.5rem !important;
	}

	.xl\@mx-19 {
		margin-inline-end: 4.75rem !important;
		margin-inline-start: 4.75rem !important;
	}

	.xl\@mx-20 {
		margin-inline-end: 5rem !important;
		margin-inline-start: 5rem !important;
	}

	.xl\@mx-auto {
		margin-inline-end: auto !important;
		margin-inline-start: auto !important;
	}

	.xl\@my-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.xl\@my-1 {
		margin-top: 0.25rem !important;
		margin-bottom: 0.25rem !important;
	}

	.xl\@my-2 {
		margin-top: 0.5rem !important;
		margin-bottom: 0.5rem !important;
	}

	.xl\@my-3 {
		margin-top: 0.75rem !important;
		margin-bottom: 0.75rem !important;
	}

	.xl\@my-4 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}

	.xl\@my-5 {
		margin-top: 1.25rem !important;
		margin-bottom: 1.25rem !important;
	}

	.xl\@my-6 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.xl\@my-7 {
		margin-top: 1.75rem !important;
		margin-bottom: 1.75rem !important;
	}

	.xl\@my-8 {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important;
	}

	.xl\@my-9 {
		margin-top: 2.25rem !important;
		margin-bottom: 2.25rem !important;
	}

	.xl\@my-10 {
		margin-top: 2.5rem !important;
		margin-bottom: 2.5rem !important;
	}

	.xl\@my-11 {
		margin-top: 2.75rem !important;
		margin-bottom: 2.75rem !important;
	}

	.xl\@my-12 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.xl\@my-13 {
		margin-top: 3.25rem !important;
		margin-bottom: 3.25rem !important;
	}

	.xl\@my-14 {
		margin-top: 3.5rem !important;
		margin-bottom: 3.5rem !important;
	}

	.xl\@my-15 {
		margin-top: 3.75rem !important;
		margin-bottom: 3.75rem !important;
	}

	.xl\@my-16 {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important;
	}

	.xl\@my-17 {
		margin-top: 4.25rem !important;
		margin-bottom: 4.25rem !important;
	}

	.xl\@my-18 {
		margin-top: 4.5rem !important;
		margin-bottom: 4.5rem !important;
	}

	.xl\@my-19 {
		margin-top: 4.75rem !important;
		margin-bottom: 4.75rem !important;
	}

	.xl\@my-20 {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important;
	}

	.xl\@my-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.xl\@mt-0 {
		margin-top: 0 !important;
	}

	.xl\@mt-1 {
		margin-top: 0.25rem !important;
	}

	.xl\@mt-2 {
		margin-top: 0.5rem !important;
	}

	.xl\@mt-3 {
		margin-top: 0.75rem !important;
	}

	.xl\@mt-4 {
		margin-top: 1rem !important;
	}

	.xl\@mt-5 {
		margin-top: 1.25rem !important;
	}

	.xl\@mt-6 {
		margin-top: 1.5rem !important;
	}

	.xl\@mt-7 {
		margin-top: 1.75rem !important;
	}

	.xl\@mt-8 {
		margin-top: 2rem !important;
	}

	.xl\@mt-9 {
		margin-top: 2.25rem !important;
	}

	.xl\@mt-10 {
		margin-top: 2.5rem !important;
	}

	.xl\@mt-11 {
		margin-top: 2.75rem !important;
	}

	.xl\@mt-12 {
		margin-top: 3rem !important;
	}

	.xl\@mt-13 {
		margin-top: 3.25rem !important;
	}

	.xl\@mt-14 {
		margin-top: 3.5rem !important;
	}

	.xl\@mt-15 {
		margin-top: 3.75rem !important;
	}

	.xl\@mt-16 {
		margin-top: 4rem !important;
	}

	.xl\@mt-17 {
		margin-top: 4.25rem !important;
	}

	.xl\@mt-18 {
		margin-top: 4.5rem !important;
	}

	.xl\@mt-19 {
		margin-top: 4.75rem !important;
	}

	.xl\@mt-20 {
		margin-top: 5rem !important;
	}

	.xl\@mt-auto {
		margin-top: auto !important;
	}

	.xl\@me-0 {
		margin-inline-end: 0 !important;
	}

	.xl\@me-1 {
		margin-inline-end: 0.25rem !important;
	}

	.xl\@me-2 {
		margin-inline-end: 0.5rem !important;
	}

	.xl\@me-3 {
		margin-inline-end: 0.75rem !important;
	}

	.xl\@me-4 {
		margin-inline-end: 1rem !important;
	}

	.xl\@me-5 {
		margin-inline-end: 1.25rem !important;
	}

	.xl\@me-6 {
		margin-inline-end: 1.5rem !important;
	}

	.xl\@me-7 {
		margin-inline-end: 1.75rem !important;
	}

	.xl\@me-8 {
		margin-inline-end: 2rem !important;
	}

	.xl\@me-9 {
		margin-inline-end: 2.25rem !important;
	}

	.xl\@me-10 {
		margin-inline-end: 2.5rem !important;
	}

	.xl\@me-11 {
		margin-inline-end: 2.75rem !important;
	}

	.xl\@me-12 {
		margin-inline-end: 3rem !important;
	}

	.xl\@me-13 {
		margin-inline-end: 3.25rem !important;
	}

	.xl\@me-14 {
		margin-inline-end: 3.5rem !important;
	}

	.xl\@me-15 {
		margin-inline-end: 3.75rem !important;
	}

	.xl\@me-16 {
		margin-inline-end: 4rem !important;
	}

	.xl\@me-17 {
		margin-inline-end: 4.25rem !important;
	}

	.xl\@me-18 {
		margin-inline-end: 4.5rem !important;
	}

	.xl\@me-19 {
		margin-inline-end: 4.75rem !important;
	}

	.xl\@me-20 {
		margin-inline-end: 5rem !important;
	}

	.xl\@me-auto {
		margin-inline-end: auto !important;
	}

	.xl\@mb-0 {
		margin-bottom: 0 !important;
	}

	.xl\@mb-1 {
		margin-bottom: 0.25rem !important;
	}

	.xl\@mb-2 {
		margin-bottom: 0.5rem !important;
	}

	.xl\@mb-3 {
		margin-bottom: 0.75rem !important;
	}

	.xl\@mb-4 {
		margin-bottom: 1rem !important;
	}

	.xl\@mb-5 {
		margin-bottom: 1.25rem !important;
	}

	.xl\@mb-6 {
		margin-bottom: 1.5rem !important;
	}

	.xl\@mb-7 {
		margin-bottom: 1.75rem !important;
	}

	.xl\@mb-8 {
		margin-bottom: 2rem !important;
	}

	.xl\@mb-9 {
		margin-bottom: 2.25rem !important;
	}

	.xl\@mb-10 {
		margin-bottom: 2.5rem !important;
	}

	.xl\@mb-11 {
		margin-bottom: 2.75rem !important;
	}

	.xl\@mb-12 {
		margin-bottom: 3rem !important;
	}

	.xl\@mb-13 {
		margin-bottom: 3.25rem !important;
	}

	.xl\@mb-14 {
		margin-bottom: 3.5rem !important;
	}

	.xl\@mb-15 {
		margin-bottom: 3.75rem !important;
	}

	.xl\@mb-16 {
		margin-bottom: 4rem !important;
	}

	.xl\@mb-17 {
		margin-bottom: 4.25rem !important;
	}

	.xl\@mb-18 {
		margin-bottom: 4.5rem !important;
	}

	.xl\@mb-19 {
		margin-bottom: 4.75rem !important;
	}

	.xl\@mb-20 {
		margin-bottom: 5rem !important;
	}

	.xl\@mb-auto {
		margin-bottom: auto !important;
	}

	.xl\@ms-0 {
		margin-inline-start: 0 !important;
	}

	.xl\@ms-1 {
		margin-inline-start: 0.25rem !important;
	}

	.xl\@ms-2 {
		margin-inline-start: 0.5rem !important;
	}

	.xl\@ms-3 {
		margin-inline-start: 0.75rem !important;
	}

	.xl\@ms-4 {
		margin-inline-start: 1rem !important;
	}

	.xl\@ms-5 {
		margin-inline-start: 1.25rem !important;
	}

	.xl\@ms-6 {
		margin-inline-start: 1.5rem !important;
	}

	.xl\@ms-7 {
		margin-inline-start: 1.75rem !important;
	}

	.xl\@ms-8 {
		margin-inline-start: 2rem !important;
	}

	.xl\@ms-9 {
		margin-inline-start: 2.25rem !important;
	}

	.xl\@ms-10 {
		margin-inline-start: 2.5rem !important;
	}

	.xl\@ms-11 {
		margin-inline-start: 2.75rem !important;
	}

	.xl\@ms-12 {
		margin-inline-start: 3rem !important;
	}

	.xl\@ms-13 {
		margin-inline-start: 3.25rem !important;
	}

	.xl\@ms-14 {
		margin-inline-start: 3.5rem !important;
	}

	.xl\@ms-15 {
		margin-inline-start: 3.75rem !important;
	}

	.xl\@ms-16 {
		margin-inline-start: 4rem !important;
	}

	.xl\@ms-17 {
		margin-inline-start: 4.25rem !important;
	}

	.xl\@ms-18 {
		margin-inline-start: 4.5rem !important;
	}

	.xl\@ms-19 {
		margin-inline-start: 4.75rem !important;
	}

	.xl\@ms-20 {
		margin-inline-start: 5rem !important;
	}

	.xl\@ms-auto {
		margin-inline-start: auto !important;
	}

	.xl\@ma-n1 {
		margin: -0.25rem !important;
	}

	.xl\@ma-n2 {
		margin: -0.5rem !important;
	}

	.xl\@ma-n3 {
		margin: -0.75rem !important;
	}

	.xl\@ma-n4 {
		margin: -1rem !important;
	}

	.xl\@ma-n5 {
		margin: -1.25rem !important;
	}

	.xl\@ma-n6 {
		margin: -1.5rem !important;
	}

	.xl\@ma-n7 {
		margin: -1.75rem !important;
	}

	.xl\@ma-n8 {
		margin: -2rem !important;
	}

	.xl\@ma-n9 {
		margin: -2.25rem !important;
	}

	.xl\@ma-n10 {
		margin: -2.5rem !important;
	}

	.xl\@ma-n11 {
		margin: -2.75rem !important;
	}

	.xl\@ma-n12 {
		margin: -3rem !important;
	}

	.xl\@ma-n13 {
		margin: -3.25rem !important;
	}

	.xl\@ma-n14 {
		margin: -3.5rem !important;
	}

	.xl\@ma-n15 {
		margin: -3.75rem !important;
	}

	.xl\@ma-n16 {
		margin: -4rem !important;
	}

	.xl\@ma-n17 {
		margin: -4.25rem !important;
	}

	.xl\@ma-n18 {
		margin: -4.5rem !important;
	}

	.xl\@ma-n19 {
		margin: -4.75rem !important;
	}

	.xl\@ma-n20 {
		margin: -5rem !important;
	}

	.xl\@mx-n1 {
		margin-inline-end: -0.25rem !important;
		margin-inline-start: -0.25rem !important;
	}

	.xl\@mx-n2 {
		margin-inline-end: -0.5rem !important;
		margin-inline-start: -0.5rem !important;
	}

	.xl\@mx-n3 {
		margin-inline-end: -0.75rem !important;
		margin-inline-start: -0.75rem !important;
	}

	.xl\@mx-n4 {
		margin-inline-end: -1rem !important;
		margin-inline-start: -1rem !important;
	}

	.xl\@mx-n5 {
		margin-inline-end: -1.25rem !important;
		margin-inline-start: -1.25rem !important;
	}

	.xl\@mx-n6 {
		margin-inline-end: -1.5rem !important;
		margin-inline-start: -1.5rem !important;
	}

	.xl\@mx-n7 {
		margin-inline-end: -1.75rem !important;
		margin-inline-start: -1.75rem !important;
	}

	.xl\@mx-n8 {
		margin-inline-end: -2rem !important;
		margin-inline-start: -2rem !important;
	}

	.xl\@mx-n9 {
		margin-inline-end: -2.25rem !important;
		margin-inline-start: -2.25rem !important;
	}

	.xl\@mx-n10 {
		margin-inline-end: -2.5rem !important;
		margin-inline-start: -2.5rem !important;
	}

	.xl\@mx-n11 {
		margin-inline-end: -2.75rem !important;
		margin-inline-start: -2.75rem !important;
	}

	.xl\@mx-n12 {
		margin-inline-end: -3rem !important;
		margin-inline-start: -3rem !important;
	}

	.xl\@mx-n13 {
		margin-inline-end: -3.25rem !important;
		margin-inline-start: -3.25rem !important;
	}

	.xl\@mx-n14 {
		margin-inline-end: -3.5rem !important;
		margin-inline-start: -3.5rem !important;
	}

	.xl\@mx-n15 {
		margin-inline-end: -3.75rem !important;
		margin-inline-start: -3.75rem !important;
	}

	.xl\@mx-n16 {
		margin-inline-end: -4rem !important;
		margin-inline-start: -4rem !important;
	}

	.xl\@mx-n17 {
		margin-inline-end: -4.25rem !important;
		margin-inline-start: -4.25rem !important;
	}

	.xl\@mx-n18 {
		margin-inline-end: -4.5rem !important;
		margin-inline-start: -4.5rem !important;
	}

	.xl\@mx-n19 {
		margin-inline-end: -4.75rem !important;
		margin-inline-start: -4.75rem !important;
	}

	.xl\@mx-n20 {
		margin-inline-end: -5rem !important;
		margin-inline-start: -5rem !important;
	}

	.xl\@my-n1 {
		margin-top: -0.25rem !important;
		margin-bottom: -0.25rem !important;
	}

	.xl\@my-n2 {
		margin-top: -0.5rem !important;
		margin-bottom: -0.5rem !important;
	}

	.xl\@my-n3 {
		margin-top: -0.75rem !important;
		margin-bottom: -0.75rem !important;
	}

	.xl\@my-n4 {
		margin-top: -1rem !important;
		margin-bottom: -1rem !important;
	}

	.xl\@my-n5 {
		margin-top: -1.25rem !important;
		margin-bottom: -1.25rem !important;
	}

	.xl\@my-n6 {
		margin-top: -1.5rem !important;
		margin-bottom: -1.5rem !important;
	}

	.xl\@my-n7 {
		margin-top: -1.75rem !important;
		margin-bottom: -1.75rem !important;
	}

	.xl\@my-n8 {
		margin-top: -2rem !important;
		margin-bottom: -2rem !important;
	}

	.xl\@my-n9 {
		margin-top: -2.25rem !important;
		margin-bottom: -2.25rem !important;
	}

	.xl\@my-n10 {
		margin-top: -2.5rem !important;
		margin-bottom: -2.5rem !important;
	}

	.xl\@my-n11 {
		margin-top: -2.75rem !important;
		margin-bottom: -2.75rem !important;
	}

	.xl\@my-n12 {
		margin-top: -3rem !important;
		margin-bottom: -3rem !important;
	}

	.xl\@my-n13 {
		margin-top: -3.25rem !important;
		margin-bottom: -3.25rem !important;
	}

	.xl\@my-n14 {
		margin-top: -3.5rem !important;
		margin-bottom: -3.5rem !important;
	}

	.xl\@my-n15 {
		margin-top: -3.75rem !important;
		margin-bottom: -3.75rem !important;
	}

	.xl\@my-n16 {
		margin-top: -4rem !important;
		margin-bottom: -4rem !important;
	}

	.xl\@my-n17 {
		margin-top: -4.25rem !important;
		margin-bottom: -4.25rem !important;
	}

	.xl\@my-n18 {
		margin-top: -4.5rem !important;
		margin-bottom: -4.5rem !important;
	}

	.xl\@my-n19 {
		margin-top: -4.75rem !important;
		margin-bottom: -4.75rem !important;
	}

	.xl\@my-n20 {
		margin-top: -5rem !important;
		margin-bottom: -5rem !important;
	}

	.xl\@mt-n1 {
		margin-top: -0.25rem !important;
	}

	.xl\@mt-n2 {
		margin-top: -0.5rem !important;
	}

	.xl\@mt-n3 {
		margin-top: -0.75rem !important;
	}

	.xl\@mt-n4 {
		margin-top: -1rem !important;
	}

	.xl\@mt-n5 {
		margin-top: -1.25rem !important;
	}

	.xl\@mt-n6 {
		margin-top: -1.5rem !important;
	}

	.xl\@mt-n7 {
		margin-top: -1.75rem !important;
	}

	.xl\@mt-n8 {
		margin-top: -2rem !important;
	}

	.xl\@mt-n9 {
		margin-top: -2.25rem !important;
	}

	.xl\@mt-n10 {
		margin-top: -2.5rem !important;
	}

	.xl\@mt-n11 {
		margin-top: -2.75rem !important;
	}

	.xl\@mt-n12 {
		margin-top: -3rem !important;
	}

	.xl\@mt-n13 {
		margin-top: -3.25rem !important;
	}

	.xl\@mt-n14 {
		margin-top: -3.5rem !important;
	}

	.xl\@mt-n15 {
		margin-top: -3.75rem !important;
	}

	.xl\@mt-n16 {
		margin-top: -4rem !important;
	}

	.xl\@mt-n17 {
		margin-top: -4.25rem !important;
	}

	.xl\@mt-n18 {
		margin-top: -4.5rem !important;
	}

	.xl\@mt-n19 {
		margin-top: -4.75rem !important;
	}

	.xl\@mt-n20 {
		margin-top: -5rem !important;
	}

	.xl\@me-n1 {
		margin-inline-end: -0.25rem !important;
	}

	.xl\@me-n2 {
		margin-inline-end: -0.5rem !important;
	}

	.xl\@me-n3 {
		margin-inline-end: -0.75rem !important;
	}

	.xl\@me-n4 {
		margin-inline-end: -1rem !important;
	}

	.xl\@me-n5 {
		margin-inline-end: -1.25rem !important;
	}

	.xl\@me-n6 {
		margin-inline-end: -1.5rem !important;
	}

	.xl\@me-n7 {
		margin-inline-end: -1.75rem !important;
	}

	.xl\@me-n8 {
		margin-inline-end: -2rem !important;
	}

	.xl\@me-n9 {
		margin-inline-end: -2.25rem !important;
	}

	.xl\@me-n10 {
		margin-inline-end: -2.5rem !important;
	}

	.xl\@me-n11 {
		margin-inline-end: -2.75rem !important;
	}

	.xl\@me-n12 {
		margin-inline-end: -3rem !important;
	}

	.xl\@me-n13 {
		margin-inline-end: -3.25rem !important;
	}

	.xl\@me-n14 {
		margin-inline-end: -3.5rem !important;
	}

	.xl\@me-n15 {
		margin-inline-end: -3.75rem !important;
	}

	.xl\@me-n16 {
		margin-inline-end: -4rem !important;
	}

	.xl\@me-n17 {
		margin-inline-end: -4.25rem !important;
	}

	.xl\@me-n18 {
		margin-inline-end: -4.5rem !important;
	}

	.xl\@me-n19 {
		margin-inline-end: -4.75rem !important;
	}

	.xl\@me-n20 {
		margin-inline-end: -5rem !important;
	}

	.xl\@mb-n1 {
		margin-bottom: -0.25rem !important;
	}

	.xl\@mb-n2 {
		margin-bottom: -0.5rem !important;
	}

	.xl\@mb-n3 {
		margin-bottom: -0.75rem !important;
	}

	.xl\@mb-n4 {
		margin-bottom: -1rem !important;
	}

	.xl\@mb-n5 {
		margin-bottom: -1.25rem !important;
	}

	.xl\@mb-n6 {
		margin-bottom: -1.5rem !important;
	}

	.xl\@mb-n7 {
		margin-bottom: -1.75rem !important;
	}

	.xl\@mb-n8 {
		margin-bottom: -2rem !important;
	}

	.xl\@mb-n9 {
		margin-bottom: -2.25rem !important;
	}

	.xl\@mb-n10 {
		margin-bottom: -2.5rem !important;
	}

	.xl\@mb-n11 {
		margin-bottom: -2.75rem !important;
	}

	.xl\@mb-n12 {
		margin-bottom: -3rem !important;
	}

	.xl\@mb-n13 {
		margin-bottom: -3.25rem !important;
	}

	.xl\@mb-n14 {
		margin-bottom: -3.5rem !important;
	}

	.xl\@mb-n15 {
		margin-bottom: -3.75rem !important;
	}

	.xl\@mb-n16 {
		margin-bottom: -4rem !important;
	}

	.xl\@mb-n17 {
		margin-bottom: -4.25rem !important;
	}

	.xl\@mb-n18 {
		margin-bottom: -4.5rem !important;
	}

	.xl\@mb-n19 {
		margin-bottom: -4.75rem !important;
	}

	.xl\@mb-n20 {
		margin-bottom: -5rem !important;
	}

	.xl\@ms-n1 {
		margin-inline-start: -0.25rem !important;
	}

	.xl\@ms-n2 {
		margin-inline-start: -0.5rem !important;
	}

	.xl\@ms-n3 {
		margin-inline-start: -0.75rem !important;
	}

	.xl\@ms-n4 {
		margin-inline-start: -1rem !important;
	}

	.xl\@ms-n5 {
		margin-inline-start: -1.25rem !important;
	}

	.xl\@ms-n6 {
		margin-inline-start: -1.5rem !important;
	}

	.xl\@ms-n7 {
		margin-inline-start: -1.75rem !important;
	}

	.xl\@ms-n8 {
		margin-inline-start: -2rem !important;
	}

	.xl\@ms-n9 {
		margin-inline-start: -2.25rem !important;
	}

	.xl\@ms-n10 {
		margin-inline-start: -2.5rem !important;
	}

	.xl\@ms-n11 {
		margin-inline-start: -2.75rem !important;
	}

	.xl\@ms-n12 {
		margin-inline-start: -3rem !important;
	}

	.xl\@ms-n13 {
		margin-inline-start: -3.25rem !important;
	}

	.xl\@ms-n14 {
		margin-inline-start: -3.5rem !important;
	}

	.xl\@ms-n15 {
		margin-inline-start: -3.75rem !important;
	}

	.xl\@ms-n16 {
		margin-inline-start: -4rem !important;
	}

	.xl\@ms-n17 {
		margin-inline-start: -4.25rem !important;
	}

	.xl\@ms-n18 {
		margin-inline-start: -4.5rem !important;
	}

	.xl\@ms-n19 {
		margin-inline-start: -4.75rem !important;
	}

	.xl\@ms-n20 {
		margin-inline-start: -5rem !important;
	}

	.xl\@pa-0 {
		padding: 0 !important;
	}

	.xl\@pa-1 {
		padding: 0.25rem !important;
	}

	.xl\@pa-2 {
		padding: 0.5rem !important;
	}

	.xl\@pa-3 {
		padding: 0.75rem !important;
	}

	.xl\@pa-4 {
		padding: 1rem !important;
	}

	.xl\@pa-5 {
		padding: 1.25rem !important;
	}

	.xl\@pa-6 {
		padding: 1.5rem !important;
	}

	.xl\@pa-7 {
		padding: 1.75rem !important;
	}

	.xl\@pa-8 {
		padding: 2rem !important;
	}

	.xl\@pa-9 {
		padding: 2.25rem !important;
	}

	.xl\@pa-10 {
		padding: 2.5rem !important;
	}

	.xl\@pa-11 {
		padding: 2.75rem !important;
	}

	.xl\@pa-12 {
		padding: 3rem !important;
	}

	.xl\@pa-13 {
		padding: 3.25rem !important;
	}

	.xl\@pa-14 {
		padding: 3.5rem !important;
	}

	.xl\@pa-15 {
		padding: 3.75rem !important;
	}

	.xl\@pa-16 {
		padding: 4rem !important;
	}

	.xl\@pa-17 {
		padding: 4.25rem !important;
	}

	.xl\@pa-18 {
		padding: 4.5rem !important;
	}

	.xl\@pa-19 {
		padding: 4.75rem !important;
	}

	.xl\@pa-20 {
		padding: 5rem !important;
	}

	.xl\@px-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.xl\@px-1 {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.xl\@px-2 {
		padding-right: 0.5rem !important;
		padding-left: 0.5rem !important;
	}

	.xl\@px-3 {
		padding-right: 0.75rem !important;
		padding-left: 0.75rem !important;
	}

	.xl\@px-4 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.xl\@px-5 {
		padding-right: 1.25rem !important;
		padding-left: 1.25rem !important;
	}

	.xl\@px-6 {
		padding-right: 1.5rem !important;
		padding-left: 1.5rem !important;
	}

	.xl\@px-7 {
		padding-right: 1.75rem !important;
		padding-left: 1.75rem !important;
	}

	.xl\@px-8 {
		padding-right: 2rem !important;
		padding-left: 2rem !important;
	}

	.xl\@px-9 {
		padding-right: 2.25rem !important;
		padding-left: 2.25rem !important;
	}

	.xl\@px-10 {
		padding-right: 2.5rem !important;
		padding-left: 2.5rem !important;
	}

	.xl\@px-11 {
		padding-right: 2.75rem !important;
		padding-left: 2.75rem !important;
	}

	.xl\@px-12 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.xl\@px-13 {
		padding-right: 3.25rem !important;
		padding-left: 3.25rem !important;
	}

	.xl\@px-14 {
		padding-right: 3.5rem !important;
		padding-left: 3.5rem !important;
	}

	.xl\@px-15 {
		padding-right: 3.75rem !important;
		padding-left: 3.75rem !important;
	}

	.xl\@px-16 {
		padding-right: 4rem !important;
		padding-left: 4rem !important;
	}

	.xl\@px-17 {
		padding-right: 4.25rem !important;
		padding-left: 4.25rem !important;
	}

	.xl\@px-18 {
		padding-right: 4.5rem !important;
		padding-left: 4.5rem !important;
	}

	.xl\@px-19 {
		padding-right: 4.75rem !important;
		padding-left: 4.75rem !important;
	}

	.xl\@px-20 {
		padding-right: 5rem !important;
		padding-left: 5rem !important;
	}

	.xl\@py-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.xl\@py-1 {
		padding-top: 0.25rem !important;
		padding-bottom: 0.25rem !important;
	}

	.xl\@py-2 {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	.xl\@py-3 {
		padding-top: 0.75rem !important;
		padding-bottom: 0.75rem !important;
	}

	.xl\@py-4 {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.xl\@py-5 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.xl\@py-6 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	.xl\@py-7 {
		padding-top: 1.75rem !important;
		padding-bottom: 1.75rem !important;
	}

	.xl\@py-8 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	.xl\@py-9 {
		padding-top: 2.25rem !important;
		padding-bottom: 2.25rem !important;
	}

	.xl\@py-10 {
		padding-top: 2.5rem !important;
		padding-bottom: 2.5rem !important;
	}

	.xl\@py-11 {
		padding-top: 2.75rem !important;
		padding-bottom: 2.75rem !important;
	}

	.xl\@py-12 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.xl\@py-13 {
		padding-top: 3.25rem !important;
		padding-bottom: 3.25rem !important;
	}

	.xl\@py-14 {
		padding-top: 3.5rem !important;
		padding-bottom: 3.5rem !important;
	}

	.xl\@py-15 {
		padding-top: 3.75rem !important;
		padding-bottom: 3.75rem !important;
	}

	.xl\@py-16 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.xl\@py-17 {
		padding-top: 4.25rem !important;
		padding-bottom: 4.25rem !important;
	}

	.xl\@py-18 {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	.xl\@py-19 {
		padding-top: 4.75rem !important;
		padding-bottom: 4.75rem !important;
	}

	.xl\@py-20 {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important;
	}

	.xl\@pt-0 {
		padding-top: 0 !important;
	}

	.xl\@pt-1 {
		padding-top: 0.25rem !important;
	}

	.xl\@pt-2 {
		padding-top: 0.5rem !important;
	}

	.xl\@pt-3 {
		padding-top: 0.75rem !important;
	}

	.xl\@pt-4 {
		padding-top: 1rem !important;
	}

	.xl\@pt-5 {
		padding-top: 1.25rem !important;
	}

	.xl\@pt-6 {
		padding-top: 1.5rem !important;
	}

	.xl\@pt-7 {
		padding-top: 1.75rem !important;
	}

	.xl\@pt-8 {
		padding-top: 2rem !important;
	}

	.xl\@pt-9 {
		padding-top: 2.25rem !important;
	}

	.xl\@pt-10 {
		padding-top: 2.5rem !important;
	}

	.xl\@pt-11 {
		padding-top: 2.75rem !important;
	}

	.xl\@pt-12 {
		padding-top: 3rem !important;
	}

	.xl\@pt-13 {
		padding-top: 3.25rem !important;
	}

	.xl\@pt-14 {
		padding-top: 3.5rem !important;
	}

	.xl\@pt-15 {
		padding-top: 3.75rem !important;
	}

	.xl\@pt-16 {
		padding-top: 4rem !important;
	}

	.xl\@pt-17 {
		padding-top: 4.25rem !important;
	}

	.xl\@pt-18 {
		padding-top: 4.5rem !important;
	}

	.xl\@pt-19 {
		padding-top: 4.75rem !important;
	}

	.xl\@pt-20 {
		padding-top: 5rem !important;
	}

	.xl\@pe-0 {
		padding-right: 0 !important;
	}

	.xl\@pe-1 {
		padding-right: 0.25rem !important;
	}

	.xl\@pe-2 {
		padding-right: 0.5rem !important;
	}

	.xl\@pe-3 {
		padding-right: 0.75rem !important;
	}

	.xl\@pe-4 {
		padding-right: 1rem !important;
	}

	.xl\@pe-5 {
		padding-right: 1.25rem !important;
	}

	.xl\@pe-6 {
		padding-right: 1.5rem !important;
	}

	.xl\@pe-7 {
		padding-right: 1.75rem !important;
	}

	.xl\@pe-8 {
		padding-right: 2rem !important;
	}

	.xl\@pe-9 {
		padding-right: 2.25rem !important;
	}

	.xl\@pe-10 {
		padding-right: 2.5rem !important;
	}

	.xl\@pe-11 {
		padding-right: 2.75rem !important;
	}

	.xl\@pe-12 {
		padding-right: 3rem !important;
	}

	.xl\@pe-13 {
		padding-right: 3.25rem !important;
	}

	.xl\@pe-14 {
		padding-right: 3.5rem !important;
	}

	.xl\@pe-15 {
		padding-right: 3.75rem !important;
	}

	.xl\@pe-16 {
		padding-right: 4rem !important;
	}

	.xl\@pe-17 {
		padding-right: 4.25rem !important;
	}

	.xl\@pe-18 {
		padding-right: 4.5rem !important;
	}

	.xl\@pe-19 {
		padding-right: 4.75rem !important;
	}

	.xl\@pe-20 {
		padding-right: 5rem !important;
	}

	.xl\@pb-0 {
		padding-bottom: 0 !important;
	}

	.xl\@pb-1 {
		padding-bottom: 0.25rem !important;
	}

	.xl\@pb-2 {
		padding-bottom: 0.5rem !important;
	}

	.xl\@pb-3 {
		padding-bottom: 0.75rem !important;
	}

	.xl\@pb-4 {
		padding-bottom: 1rem !important;
	}

	.xl\@pb-5 {
		padding-bottom: 1.25rem !important;
	}

	.xl\@pb-6 {
		padding-bottom: 1.5rem !important;
	}

	.xl\@pb-7 {
		padding-bottom: 1.75rem !important;
	}

	.xl\@pb-8 {
		padding-bottom: 2rem !important;
	}

	.xl\@pb-9 {
		padding-bottom: 2.25rem !important;
	}

	.xl\@pb-10 {
		padding-bottom: 2.5rem !important;
	}

	.xl\@pb-11 {
		padding-bottom: 2.75rem !important;
	}

	.xl\@pb-12 {
		padding-bottom: 3rem !important;
	}

	.xl\@pb-13 {
		padding-bottom: 3.25rem !important;
	}

	.xl\@pb-14 {
		padding-bottom: 3.5rem !important;
	}

	.xl\@pb-15 {
		padding-bottom: 3.75rem !important;
	}

	.xl\@pb-16 {
		padding-bottom: 4rem !important;
	}

	.xl\@pb-17 {
		padding-bottom: 4.25rem !important;
	}

	.xl\@pb-18 {
		padding-bottom: 4.5rem !important;
	}

	.xl\@pb-19 {
		padding-bottom: 4.75rem !important;
	}

	.xl\@pb-20 {
		padding-bottom: 5rem !important;
	}

	.xl\@ps-0 {
		padding-left: 0 !important;
	}

	.xl\@ps-1 {
		padding-left: 0.25rem !important;
	}

	.xl\@ps-2 {
		padding-left: 0.5rem !important;
	}

	.xl\@ps-3 {
		padding-left: 0.75rem !important;
	}

	.xl\@ps-4 {
		padding-left: 1rem !important;
	}

	.xl\@ps-5 {
		padding-left: 1.25rem !important;
	}

	.xl\@ps-6 {
		padding-left: 1.5rem !important;
	}

	.xl\@ps-7 {
		padding-left: 1.75rem !important;
	}

	.xl\@ps-8 {
		padding-left: 2rem !important;
	}

	.xl\@ps-9 {
		padding-left: 2.25rem !important;
	}

	.xl\@ps-10 {
		padding-left: 2.5rem !important;
	}

	.xl\@ps-11 {
		padding-left: 2.75rem !important;
	}

	.xl\@ps-12 {
		padding-left: 3rem !important;
	}

	.xl\@ps-13 {
		padding-left: 3.25rem !important;
	}

	.xl\@ps-14 {
		padding-left: 3.5rem !important;
	}

	.xl\@ps-15 {
		padding-left: 3.75rem !important;
	}

	.xl\@ps-16 {
		padding-left: 4rem !important;
	}

	.xl\@ps-17 {
		padding-left: 4.25rem !important;
	}

	.xl\@ps-18 {
		padding-left: 4.5rem !important;
	}

	.xl\@ps-19 {
		padding-left: 4.75rem !important;
	}

	.xl\@ps-20 {
		padding-left: 5rem !important;
	}
}

/* START: Custom, xl breakpoint */

@media (min-width: 100em) {
	.xl\@ms-\[-8\.5rem\] {
		margin-inline-start: -8.5rem;
	}

	.pe-container {
		padding-right: calc((100% - 95rem) / 2 + 1rem) !important;
	}

	.ps-container {
		padding-left: calc((100% - 95rem) / 2 + 1rem) !important;
	}
}

/* END: Custom, xl breakpoint */

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/text.css?16856230813614*/
/*!
 * Utilities/Typography
 */

/* Text align */

.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.text-justify {
	text-align: justify !important;
}

.text-start {
	text-align: start !important;
}

.text-end {
	text-align: end !important;
}

@media (min-width: 37.5em) {
	.sm\@text-left {
		text-align: left !important;
	}

	.sm\@text-center {
		text-align: center !important;
	}

	.sm\@text-right {
		text-align: right !important;
	}

	.sm\@text-justify {
		text-align: justify !important;
	}

	.sm\@text-start {
		text-align: start !important;
	}

	.sm\@text-end {
		text-align: end !important;
	}
}

@media (min-width: 60em) {
	.md\@text-left {
		text-align: left !important;
	}

	.md\@text-center {
		text-align: center !important;
	}

	.md\@text-right {
		text-align: right !important;
	}

	.md\@text-justify {
		text-align: justify !important;
	}

	.md\@text-start {
		text-align: start !important;
	}

	.md\@text-end {
		text-align: end !important;
	}
}

@media (min-width: 80em) {
	.lg\@text-left {
		text-align: left !important;
	}

	.lg\@text-center {
		text-align: center !important;
	}

	.lg\@text-right {
		text-align: right !important;
	}

	.lg\@text-justify {
		text-align: justify !important;
	}

	.lg\@text-start {
		text-align: start !important;
	}

	.lg\@text-end {
		text-align: end !important;
	}
}

@media (min-width: 100em) {
	.xl\@text-left {
		text-align: left !important;
	}

	.xl\@text-center {
		text-align: center !important;
	}

	.xl\@text-right {
		text-align: right !important;
	}

	.xl\@text-justify {
		text-align: justify !important;
	}

	.xl\@text-start {
		text-align: start !important;
	}

	.xl\@text-end {
		text-align: end !important;
	}
}

/* Text decoration */

.underline {
	text-decoration-line: underline;
}

.underline-hover:hover {
	text-decoration-line: underline;
}

.overline {
	text-decoration-line: overline;
}

.line-through {
	text-decoration-line: line-through;
}

.no-underline {
	text-decoration-line: none;
}

/* Text emphasis */

.text-full-emphasis {
	opacity: var(--x-full-emphasis-opacity) !important;
}

.text-high-emphasis {
	opacity: var(--x-high-emphasis-opacity) !important;
}

.text-medium-emphasis {
	opacity: var(--x-medium-emphasis-opacity) !important;
}

.text-disabled {
	opacity: var(--x-disabled-opacity) !important;
}

/* Text transform */

.uppercase {
	text-transform: uppercase !important;
}

.lowercase {
	text-transform: lowercase !important;
}

.capitalize {
	text-transform: capitalize !important;
}

.normal-case {
	text-transform: none !important;
}

/* Font family */

.font-root {
	font-family: var(--x-font-family-root) !important;
}

.font-optional {
	font-family: var(--x-font-family-optional) !important;
}

/* Font style */

.italic {
	font-style: italic !important;
}

.not-italic {
	font-style: normal !important;
}

/* Font weight */

.font-thin {
	font-weight: 100 !important;
}

.font-light {
	font-weight: 300 !important;
}

.font-normal {
	font-weight: 400 !important;
}

.font-medium {
	font-weight: 500 !important;
}

.font-bold {
	font-weight: 700 !important;
}
.font-black {
	font-weight: 900 !important;
}

/* Line height */

.leading-\[0\.8\] {
	line-height: 0.8 !important;
}
.leading-\[1\] {
	line-height: 1 !important;
}
.leading-\[1\.25\] {
	line-height: 1.25 !important;
}
.leading-\[1\.5\] {
	line-height: 1.5 !important;
}
.leading-\[1\.75\] {
	line-height: 1.75 !important;
}

/* Whitespace */

.whitespace-normal {
	white-space: normal;
}

/* Word Break */

.break-words {
	overflow-wrap: break-word;
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/transform.css?1685623081286*/
/*!
 * Utilities/Transform
 */


.rotate-\[90\%\] {
	transform: rotate(0.25turn);
}

.rotate-\[45\%\] {
	transform: rotate(0.125turn);
}


.scale-\[1\.375\] {
	transform: scale(1.375);
}

@media (min-width: 37.5em) {
	.sm\@scale-100 {
		transform: scale(1);
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/utilities/z-index.css?16856230811187*/
/*!
 * Utilities/Z-index
 */

.z-n2 {
	z-index: -2;
}

.z-n1 {
	z-index: -1;
}

.z-0 {
	z-index: 0;
}

.z-1 {
	z-index: 1;
}

.z-2 {
	z-index: 2;
}

.z-auto {
	z-index: auto;
}

@media (min-width: 37.5em) {
	.sm\@z-n2 {
		z-index: -2;
	}

	.sm\@z-n1 {
		z-index: -1;
	}

	.sm\@z-0 {
		z-index: 0;
	}

	.sm\@z-1 {
		z-index: 1;
	}

	.sm\@z-2 {
		z-index: 2;
	}

	.sm\@z-auto {
		z-index: auto;
	}
}

@media (min-width: 60em) {
	.md\@z-n2 {
		z-index: -2;
	}

	.md\@z-n1 {
		z-index: -1;
	}

	.md\@z-0 {
		z-index: 0;
	}

	.md\@z-1 {
		z-index: 1;
	}

	.md\@z-2 {
		z-index: 2;
	}

	.md\@z-auto {
		z-index: auto;
	}
}

@media (min-width: 80em) {
	.lg\@z-n2 {
		z-index: -2;
	}

	.lg\@z-n1 {
		z-index: -1;
	}

	.lg\@z-0 {
		z-index: 0;
	}

	.lg\@z-1 {
		z-index: 1;
	}

	.lg\@z-2 {
		z-index: 2;
	}

	.lg\@z-auto {
		z-index: auto;
	}
}

@media (min-width: 100em) {
	.xl\@z-n2 {
		z-index: -2;
	}

	.xl\@z-n1 {
		z-index: -1;
	}

	.xl\@z-0 {
		z-index: 0;
	}

	.xl\@z-1 {
		z-index: 1;
	}

	.xl\@z-2 {
		z-index: 2;
	}

	.xl\@z-auto {
		z-index: auto;
	}
}

/* End */


/* Start:/local/templates/2023/assets/styles/themes/colors.css?1685623081396*/
:root {
	/* Shades */

	--black: 0, 0, 0;
	--white: 255, 255, 255;

	--blue-base: 16, 159, 255;
	--red-base: 255, 0, 0;

	--blue: 228, 245, 255;
	--blue-dark: 201, 231, 249;
	--turquoise: 185, 234, 245;
	--turquoise-dark: 125, 188, 200;
	--violet: 109, 115, 157;
	--violet-dark: 111, 79, 139;

	--grey-super-lighten: 244, 244, 244;
	--grey-lighten: 216, 216, 216;
	--grey-darken: 136, 136, 136;
}
/* End */


/* Start:/local/templates/2023/assets/styles/themes/light.css?1685623081642*/
.x-theme--light {
	--x-theme-background: var(--white);
	--x-theme-on-background-color: var(--black);

	--x-theme-blue-background-color: var(--blue);
	--x-theme-blue-dark-background-color: var(--blue-dark);
	--x-theme-turquoise-background-color: var(--turquoise);
	--x-theme-turquoise-dark-background-color: var(--turquoise-dark);
	--x-theme-violet-background-color: var(--violet);
	--x-theme-violet-dark-background-color: var(--violet-dark);
	--x-theme-grey-super-lighten-background-color: var(--grey-super-lighten);
	--x-theme-grey-lighten-background-color: var(--grey-lighten);
	--x-theme-grey-darken-background-color: var(--grey-darken);
}
/* End */


/* Start:/local/templates/2023/assets/styles/themes/dark.css?1685623081101*/
.x-theme--dark {
	--x-theme-background: var(--black);
	--x-theme-on-background-color: var(--white);
}
/* End */


/* Start:/local/templates/2023/assets/styles/themes/color-class.css?16856230811821*/
.bg-white {
	background-color: rgb( var(--x-theme-background) );
}
.fill-white {
	fill: rgb( var(--x-theme-background) );
}

.bg-black {
	background-color: rgb( var(--x-theme-on-background-color) );
}
.fill-black {
	fill: rgb( var(--x-theme-on-background-color) );
}

.bg-blue {
	background-color: rgb( var(--x-theme-blue-background-color) );
}
.color-blue {
	color: rgb( var(--x-theme-blue-background-color) );
}

.bg-blue-dark {
	background-color: rgb( var(--x-theme-blue-dark-background-color) );
}
.color-blue-dark {
	color: rgb( var(--x-theme-blue-dark-background-color) );
}

.bg-turquoise {
	background-color: rgb( var(--x-theme-turquoise-background-color) );
}
.color-turquoise {
	color: rgb( var(--x-theme-turquoise-background-color) );
}

.bg-turquoise-dark {
	background-color: rgb( var(--x-theme-turquoise-dark-background-color) );
}
.color-turquoise-dark {
	color: rgb( var(--x-theme-turquoise-dark-background-color) );
}

.bg-violet {
	background-color: rgb( var(--x-theme-violet-background-color) );
}
.color-violet {
	color: rgb( var(--x-theme-violet-background-color) );
}

.bg-violet-dark {
	background-color: rgb( var(--x-theme-violet-dark-background-color) );
}
.color-violet-dark {
	color: rgb( var(--x-theme-violet-dark-background-color) );
}

.bg-grey-lighten {
	background-color: rgb( var(--x-theme-grey-lighten-background-color) );
}
.color-grey-lighten {
	color: rgb( var(--x-theme-grey-lighten-background-color) );
}

.bg-grey-super-lighten {
	background-color: rgb( var(--x-theme-grey-super-lighten-background-color) );
}
.color-grey-super-lighten {
	color: rgb( var(--x-theme-grey-super-lighten-background-color) );
}

.bg-grey-darken {
	background-color: rgb( var(--x-theme-grey-darken-background-color) );
}
.color-grey-darken {
	color: rgb( var(--x-theme-grey-darken-background-color) );
}
/* End */


/* Start:/local/templates/2023/components/bitrix/menu/nav-main/style.css?1685623081173*/
@charset "utf-8";

.bxc-menu__default {
	position: relative;
	padding-left: 1.5rem;
}
.bxc-menu__default::before {
	content: 'вЂ“';
	position: absolute;
	top: 0;
	left: 0;
}
/* End */


/* Start:/local/templates/2023/components/bitrix/news.list/partners.footer/style.css?1685623081227*/
.bxc-parntners-footer img {
	width: auto;
	max-height: 3rem;
}

@media (min-width: 37.5em) {
	.bxc-parntners-footer img {
		max-height: 4rem;
	}
}
@media (min-width: 60em) {
	.bxc-parntners-footer img {
		max-height: 6rem;
	}
}
/* End */


/* Start:/local/templates/2023/template_styles.css?1734987705228*/
@charset "utf-8";

/* РЎРј. /assets/css/settings.css */

.bxc-text-link a {
	text-decoration: underline;
}

.bxc-ul-ol ul {
	list-style: disc;
	padding-left: 1rem;
}

.bxc-ul-ol ol {
	list-style:decimal;
	padding-left: 1.5rem;
}
.bxc-breadcrumb {
display:inline-block;
}
/* End */
/* End */


/* Start:/local/templates/volga/css/styles.css?177020275626894*/
/* Start:/local/templates/2023/components/bitrix/news.list/master.slider/style.css?1685623081542*/
.bxc-main-slider--slide {
	position: relative;
	width: 100%;
	/*height: 37.5rem;*/
}
.bxc-main-slider--swiper-pagination {
	position: absolute;
	right: 1.5rem;
	bottom: 1.25rem;
}
.bxc-main-slider--swiper-pagination .swiper-pagination-bullet {
	background-color: rgb(var(--x-theme-background)) !important;
}
.bxc-main-slider--swiper-pagination .swiper-pagination-bullet-active {
	background-color: rgb(var(--x-theme-blue-background-color)) !important;
}

@media (min-width: 37.5em) {
	.bxc-main-slider--swiper-pagination {
		right: 3rem;
	}
}
/* End */


/* Start:/local/templates/2023/components/bitrix/news.list/callendar.line/style.css?1685623081110*/
.callendar-line__item {
	position: relative;
}

.callendar-line__item:hover a {
	text-decoration: underline;
}
/* End */
/* /local/templates/2023/components/bitrix/news.list/master.slider/style.css?1685623081542 */
/* /local/templates/2023/components/bitrix/news.list/callendar.line/style.css?1685623081110 */
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background-color: #7a1f3d; /* Бордовый цвет */
  color: #fff;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  display: none; /* Скрыта изначально */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#toTopBtn:hover {
  background-color: #5e1830; /* Темнее при наведении */
  transform: scale(1.1);
}﻿
/* Modernized header and navigation */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-nav {
  background: #f7f4f6;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav {
  flex: 1;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu-link,
.submenu-link {
  color: #2e2230;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-link:hover,
.submenu-link:hover {
  color: #7a1f3d;
}

.menu-item-active,
.submenu-item-active {
  color: #7a1f3d;
}

.menu-item-parent,
.submenu-item-parent {
  position: relative;
}

.sub-menu,
.sub-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  display: none;
  z-index: 20;
}

.menu-item-parent:hover > .sub-menu,
.submenu-item-parent:hover > .sub-sub-menu {
  display: block;
}

.submenu-link {
  padding: 0.35rem 1rem;
  width: 100%;
}

.menu-arrow {
  font-size: 1.1rem;
  opacity: 0.6;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #2e2230;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 18, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .nav-shell {
    justify-content: flex-end;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 40;
  }

  .main-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .menu-item-parent > .sub-menu,
  .submenu-item-parent > .sub-sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 0.5rem;
    background: #f6f2f5;
    display: none;
  }

  .menu-item-parent.active > .sub-menu,
  .submenu-item-parent.active > .sub-sub-menu {
    display: block;
  }

  .submenu-link {
    padding-left: 0.5rem;
  }
}

/* Hero slider */
.hero-section {
  margin: 1.5rem 0 0;
}

.hero-slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(122, 31, 61, 0.2), rgba(34, 24, 36, 0.2));
}

.hero-slide {
  position: relative;
  display: none;
  color: #221824;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg) center/cover no-repeat;
  filter: blur(22px);
  opacity: 0.28;
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 60%),
              linear-gradient(120deg, rgba(122, 31, 61, 0.55), rgba(17, 15, 24, 0.7));
  opacity: 0.75;
}

.hero-slide__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 3rem;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.hero-content {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 1rem;
  color: #2e2230;
}

.hero-title a {
  color: inherit;
  text-decoration: none;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #3e2d3f;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-date {
  font-size: 0.95rem;
  color: #6b5a6b;
}

.hero-link {
  background: #7a1f3d;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: #2e2230;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

@media (max-width: 992px) {
  .hero-slide__inner {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    position: static;
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slide__inner {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    padding: 1.5rem;
  }
}

/* Home sections */
.home-section {
  margin: 3rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-head--split {
  align-items: center;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 0.3rem;
  color: #2e2230;
}

.section-subtitle {
  margin: 0;
  color: #6b5a6b;
}

.section-link {
  color: #7a1f3d;
  font-weight: 600;
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__media {
  display: block;
  height: 180px;
  background: #f0e7eb;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__media--placeholder {
  background: linear-gradient(135deg, rgba(122, 31, 61, 0.25), rgba(17, 14, 20, 0.15));
}

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.news-card__date {
  font-size: 0.9rem;
  color: #8a778a;
}

.news-card__title {
  font-size: 1.1rem;
  margin: 0;
  color: #2e2230;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-card__text {
  margin: 0;
  color: #4a3a4b;
  line-height: 1.5;
  flex-grow: 1;
}

.news-card__link {
  color: #7a1f3d;
  font-weight: 600;
  text-decoration: none;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.partner-card {
  background: #fff;
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
}

.partner-card__media img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(0.1);
}

.partner-card__name {
  font-size: 0.85rem;
  color: #6b5a6b;
}

/* Footer menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1.5rem;
}

.footer-menu__link {
  color: #2e2230;
  text-decoration: none;
  font-weight: 500;
}

.footer-menu__link.is-active,
.footer-menu__link:hover {
  color: #7a1f3d;
}

@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
﻿
/* Navigation overrides for clean multi-level dropdown */
.site-nav .main-menu {
  justify-content: flex-start;
  gap: 1.25rem;
  padding: 0.75rem 0;
}

.site-nav .menu-item {
  position: relative;
}

.site-nav .menu-link {
  padding: 0.35rem 0;
}

.site-nav .sub-menu,
.site-nav .sub-sub-menu {
  min-width: 240px;
}

.site-nav .sub-menu .submenu-link,
.site-nav .sub-sub-menu .submenu-link {
  display: block;
  padding: 0.5rem 1.25rem;
}

@media (max-width: 768px) {
  .site-nav .main-menu {
    justify-content: flex-start;
    padding-top: 4.5rem;
  }
}
﻿
.site-nav .menu-link,
.site-nav .submenu-link {
  font-weight: 500;
}
﻿
/* IG-style slider */
.ig-slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f4eef0;
}

.ig-slide {
  display: none;
  position: relative;
}

.ig-slide.is-active {
  display: block;
}

.ig-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ig-bg) center/cover no-repeat;
  filter: blur(18px) saturate(1.05);
  opacity: 0.25;
  transform: scale(1.1);
}

.ig-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(122, 31, 61, 0.85), rgba(27, 20, 30, 0.65));
  opacity: 0.7;
}

.ig-slide__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
}

.ig-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.ig-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-body {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.ig-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a1f3d;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.ig-title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  margin: 0 0 1rem;
  color: #2e2230;
}

.ig-title a {
  color: inherit;
  text-decoration: none;
}

.ig-text {
  color: #4a3a4b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ig-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ig-date {
  font-size: 0.95rem;
  color: #7b6b7a;
}

.ig-link {
  background: #7a1f3d;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.ig-controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.ig-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2e2230;
  font-size: 1.4rem;
  cursor: pointer;
}

.ig-dots {
  display: flex;
  gap: 0.4rem;
}

.ig-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.ig-dot.is-active {
  background: #fff;
}

@media (max-width: 992px) {
  .ig-slide__inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .ig-controls {
    position: static;
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .ig-slide__inner {
    padding: 1.5rem;
  }

  .ig-body {
    padding: 1.5rem;
  }
}
﻿
/* Volga hero slider (new template) */
.volga-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f4eef0;
}

.volga-hero__slide {
  display: none;
  position: relative;
}

.volga-hero__slide.is-active {
  display: block;
}

.volga-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--volga-hero-bg) center/cover no-repeat;
  filter: blur(20px) saturate(1.1);
  opacity: 0.25;
  transform: scale(1.08);
}

.volga-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(122, 31, 61, 0.85), rgba(27, 20, 30, 0.6));
  opacity: 0.75;
}

.volga-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
}

.volga-hero__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.volga-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volga-hero__content {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.volga-hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a1f3d;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.volga-hero__title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  margin: 0 0 1rem;
  color: #2e2230;
}

.volga-hero__title a {
  color: inherit;
  text-decoration: none;
}

.volga-hero__text {
  color: #4a3a4b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.volga-hero__actions {
  display: flex;
  gap: 1rem;
}

.volga-hero__btn {
  background: #7a1f3d;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.volga-hero__controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.volga-hero__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2e2230;
  font-size: 1.4rem;
  cursor: pointer;
}

.volga-hero__dots {
  display: flex;
  gap: 0.4rem;
}

.volga-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.volga-hero__dot.is-active {
  background: #fff;
}

@media (max-width: 992px) {
  .volga-hero__inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .volga-hero__controls {
    position: static;
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .volga-hero__inner {
    padding: 1.5rem;
  }

  .volga-hero__content {
    padding: 1.5rem;
  }
}
﻿﻿
/* Volga slider component */
.volga-slider {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f4eef0;
}

.volga-slider__slide {
  display: none;
  position: relative;
}

.volga-slider__slide.is-active {
  display: block;
}

.volga-slider__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--volga-slide-bg) center/cover no-repeat;
  filter: blur(20px) saturate(1.1);
  opacity: 0.25;
  transform: scale(1.08);
}

.volga-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(122, 31, 61, 0.85), rgba(27, 20, 30, 0.6));
  opacity: 0.75;
}

.volga-slider__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
}

.volga-slider__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.volga-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volga-slider__content {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 2rem 2.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.volga-slider__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a1f3d;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.volga-slider__title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  margin: 0 0 1rem;
  color: #2e2230;
}

.volga-slider__title a {
  color: inherit;
  text-decoration: none;
}

.volga-slider__text {
  color: #4a3a4b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.volga-slider__actions {
  display: flex;
  gap: 1rem;
}

.volga-slider__btn {
  background: #7a1f3d;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.volga-slider__controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.volga-slider__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #2e2230;
  font-size: 1.4rem;
  cursor: pointer;
}

.volga-slider__dots {
  display: flex;
  gap: 0.4rem;
}

.volga-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.volga-slider__dot.is-active {
  background: #fff;
}

@media (max-width: 992px) {
  .volga-slider__inner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .volga-slider__controls {
    position: static;
    padding: 0 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .volga-slider__inner {
    padding: 1.5rem;
  }

  .volga-slider__content {
    padding: 1.5rem;
  }
}
﻿﻿
/* Radio slider style inspired by CodePen (scoped) */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900');

.volga-radio-slider {
  position: relative;
  width: 100%;
  display: block;
  font-family: 'Poppins', sans-serif;
  color: #343434;
}

.volga-radio-slider__wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}

.volga-radio {
  position: absolute;
  left: -9999px;
}

.volga-radio + label {
  position: relative;
  cursor: pointer;
  margin: 0 6px;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #bdc3c7;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  transition: all 0.2s ease;
  animation: volga-border-transform 6s linear infinite alternate forwards;
  animation-play-state: paused;
}

.volga-radio--1 + label { background-image: var(--volga-radio-thumb-1); }
.volga-radio--2 + label { background-image: var(--volga-radio-thumb-2); }
.volga-radio--3 + label { background-image: var(--volga-radio-thumb-3); }
.volga-radio--4 + label { background-image: var(--volga-radio-thumb-4); }

.volga-radio:checked + label {
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.3);
  transform: scale(1.3);
  animation-play-state: running;
}

@keyframes volga-border-transform {
  0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}

.volga-radio-slider__list {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.volga-radio-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  border: 5px solid #bdc3c7;
  background-size: cover;
  background-position: center;
  background-image: var(--volga-radio-bg);
  border-radius: 50%;
  box-sizing: border-box;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2.7;
  color: #343434;
  writing-mode: vertical-rl;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 25px 0 rgba(16,39,112,.1);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.volga-radio-slide__inner {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 70%;
}

.volga-radio-slide__title {
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.volga-radio-slide__text {
  font-weight: 500;
  margin-top: 0.5rem;
  writing-mode: horizontal-tb;
}

.volga-radio-slide__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: #7a1f3d;
  writing-mode: horizontal-tb;
  text-decoration: none;
}

.volga-radio--1:checked ~ .volga-radio-slider__list li:nth-child(1),
.volga-radio--2:checked ~ .volga-radio-slider__list li:nth-child(2),
.volga-radio--3:checked ~ .volga-radio-slider__list li:nth-child(3),
.volga-radio--4:checked ~ .volga-radio-slider__list li:nth-child(4) {
  opacity: 1;
  pointer-events: auto;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .volga-radio-slider__wrap { padding: 70px 0; }
  .volga-radio-slide { height: 300px; font-size: 13px; letter-spacing: 1px; }
}

@media (max-width: 575px) {
  .volga-radio-slider__wrap { padding: 50px 0; }
  .volga-radio-slide { height: 200px; }
}
﻿﻿
/* Fix radio slider spacing so it doesn't overlap next section */
.volga-radio-slider {
  margin-bottom: 3rem;
}

.volga-radio-slider__wrap {
  padding-top: 440px;
}

@media (max-width: 767px) {
  .volga-radio-slider__wrap { padding-top: 340px; }
}

@media (max-width: 575px) {
  .volga-radio-slider__wrap { padding-top: 240px; }
}
﻿﻿
/* Radio slider sizing to match container width and height */
.volga-radio-slider {
  margin: 0 auto 3rem;
  max-width: 980px;
}

.volga-radio-slider__wrap {
  padding-top: 520px;
}

.volga-radio-slide {
  height: 480px;
}

@media (max-width: 991px) {
  .volga-radio-slider {
    max-width: 100%;
  }
  .volga-radio-slider__wrap { padding-top: 440px; }
  .volga-radio-slide { height: 400px; }
}

@media (max-width: 767px) {
  .volga-radio-slider__wrap { padding-top: 340px; }
  .volga-radio-slide { height: 300px; }
}

@media (max-width: 575px) {
  .volga-radio-slider__wrap { padding-top: 240px; }
  .volga-radio-slide { height: 200px; }
}
﻿﻿
/* Make radio slider full container width and stretch background */
.volga-radio-slider {
  max-width: 100%;
}

.volga-radio-slide {
  width: 100%;
}
﻿﻿
/* Force radio slider to follow container width */
.hero-section .container .volga-radio-slider,
.hero-section .container .volga-radio-slider__wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
﻿﻿
/* Align radio slide title to the right edge */
.volga-radio-slide {
  justify-content: flex-end;
  align-items: center;
  padding-right: 1.5rem;
}

.volga-radio-slide__title {
  text-align: right;
}
﻿﻿
/* Pin title to the right edge of the slide */
.volga-radio-slide {
  position: relative;
  justify-content: center;
  align-items: center;
  padding-right: 0;
}

.volga-radio-slide__title {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-align: right;
}
﻿﻿
/* Make title span full height with top/bottom padding */
.volga-radio-slide__title {
  top: 20px;
  bottom: 20px;
  transform: none;
  display: flex;
  align-items: center;
}
﻿﻿
/* Override: align title from the top, spanning height with padding */
.volga-radio-slide__title {
  top: 20px;
  bottom: 20px;
  transform: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
﻿﻿
/* Override title layout: right edge, full height */
.volga-radio-slide {
  writing-mode: horizontal-tb;
}

.volga-radio-slide__title {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 24px;
  left: auto;
  transform: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.2;
}

/* Documents list */
.p-documents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.p-documents__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.p-documents__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.p-documents__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}
.p-documents__title a {
  color: inherit;
  text-decoration: none;
}
.p-documents__title a:hover {
  color: #0d6efd;
}
.p-documents__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
}
.p-documents__ext {
  background: #eef2ff;
  color: #4338ca;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 600;
}
.p-documents__size,
.p-documents__views {
  color: #6b7280;
}
.p-documents__description {
  margin: 10px 0 12px;
  color: #4b5563;
}
.p-documents__actions {
  display: flex;
  gap: 10px;
}
.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #0d6efd;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.p-btn:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
  color: #fff;
}
.p-btn--light {
  background: #fff;
  color: #0d6efd;
}
.p-btn--light:hover {
  background: #e7f0ff;
}
@media (max-width: 768px) {
  .p-documents__item {
    grid-template-columns: 56px 1fr;
    padding: 14px 16px;
  }
}

/* End */


/* Start:/local/templates/volga/css/documents-search.css?17702027561449*/
.p-docs-search {
  margin: 0 0 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
}
.p-docs-search__row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.p-docs-search__input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
}
.p-docs-search__btn {
  padding: 10px 16px;
  border: 1px solid #0d6efd;
  background: #0d6efd;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.p-docs-search__btn:hover {
  background: #0b5ed7;
}
.p-docs-search__clear {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  color: #0f172a;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.p-docs-search__clear:hover {
  background: #f1f5f9;
}
.p-docs-search__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.p-docs-chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
}
.p-docs-chip.is-active {
  border-color: #0d6efd;
  color: #0d6efd;
  background: #e7f0ff;
}
@media (max-width: 640px) {
  .p-docs-search__row {
    flex-direction: column;
  }
  .p-docs-search__btn {
    width: 100%;
    text-align: center;
  }
  .p-docs-search__clear {
    justify-content: center;
  }
}

/* End */


/* Start:/local/templates/volga/css/photoswipe.css?17702027566978*/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin: 15px 0 0 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}
/* End */


/* Start:/local/templates/volga/css/swiper-bundle.min.css?177020275616466*/
/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */
/* /local/templates/volga/components/bitrix/menu/horizontal_volga/style.css?177020275610789 */
/* /local/templates/volga/components/bitrix/breadcrumb/ulstd_bread/style.min.css?1770202756467 */
/* /local/templates/volga/css/bootstrap.css?1770202756280311 */
/* /local/templates/volga/css/bootstrap-grid.css?177020275670323 */
/* /local/templates/volga/css/bootstrap-utilities.css?1770202756107938 */
/* /local/templates/volga/css/template_styles.css?1770202756305006 */
/* /local/templates/volga/css/styles.css?177020275626894 */
/* /local/templates/volga/css/documents-search.css?17702027561449 */
/* /local/templates/volga/css/photoswipe.css?17702027566978 */
/* /local/templates/volga/css/swiper-bundle.min.css?177020275616466 */
