/*
  speedme-multilang-bootstrap-lite.css
  Purpose: small Bootstrap-compatible layer for SpeedMe Django templates.
  Scope: replaces the Bootstrap file included in front/multilang/includes/head.html.
  Keep project styles.css, post_page_styles.css and rtl-overrides.css loaded after this file.
*/
:root {
  --bs-spacer-0: 0;
  --bs-spacer-1: .25rem;
  --bs-spacer-2: .5rem;
  --bs-spacer-3: 1rem;
  --bs-spacer-4: 1.5rem;
  --bs-spacer-5: 3rem;
  --bs-primary-text: #212529;
  --bs-muted-text: #6c757d;
  --bs-border-color: #dee2e6;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(0,0,0,0); }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-primary-text);
  background-color: #fff;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; }
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
p { margin-bottom: 1rem; }
ol, ul, dl { margin-top: 0; margin-bottom: 1rem; }
ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; }
b, strong { font-weight: bolder; }
small, .small { font-size: 80%; font-weight: 400; }
a { color: #007bff; text-decoration: none; background-color: transparent; }
a:hover { color: #0056b3; text-decoration: underline; }
img { vertical-align: middle; border-style: none; max-width: 100%; height: auto; }
svg { overflow: hidden; vertical-align: middle; }
table { border-collapse: collapse; }
button, input, optgroup, select, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; }
button, input { overflow: visible; }
button, select { text-transform: none; }
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; }
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { padding: 0; border-style: none; }
figure { margin: 0 0 1rem; }
.container, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container, .container-xl { max-width: 1140px; } }
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }

.col,
.col-auto,
.col-sm,
.col-sm-auto,
.col-md,
.col-md-auto,
.col-lg,
.col-lg-auto,
.col-xl,
.col-xl-auto,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 576px) {
  .col-sm { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 768px) {
  .col-md { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 992px) {
  .col-lg { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 1200px) {
  .col-xl { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-right: 0 !important; }
.mr-0 { margin-left: 0 !important; }
.mx-0 { margin-right: 0 !important; margin-left: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-right: 0 !important; }
.pr-0 { padding-left: 0 !important; }
.px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.m-1 { margin: .25rem !important; }
.mt-1 { margin-top: .25rem !important; }
.mb-1 { margin-bottom: .25rem !important; }
.ml-1 { margin-right: .25rem !important; }
.mr-1 { margin-left: .25rem !important; }
.mx-1 { margin-right: .25rem !important; margin-left: .25rem !important; }
.my-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
.p-1 { padding: .25rem !important; }
.pt-1 { padding-top: .25rem !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pl-1 { padding-right: .25rem !important; }
.pr-1 { padding-left: .25rem !important; }
.px-1 { padding-right: .25rem !important; padding-left: .25rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.m-2 { margin: .5rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.ml-2 { margin-right: .5rem !important; }
.mr-2 { margin-left: .5rem !important; }
.mx-2 { margin-right: .5rem !important; margin-left: .5rem !important; }
.my-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
.p-2 { padding: .5rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pl-2 { padding-right: .5rem !important; }
.pr-2 { padding-left: .5rem !important; }
.px-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.m-3 { margin: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.ml-3 { margin-right: 1rem !important; }
.mr-3 { margin-left: 1rem !important; }
.mx-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.p-3 { padding: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pl-3 { padding-right: 1rem !important; }
.pr-3 { padding-left: 1rem !important; }
.px-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.ml-4 { margin-right: 1.5rem !important; }
.mr-4 { margin-left: 1.5rem !important; }
.mx-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.p-4 { padding: 1.5rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pl-4 { padding-right: 1.5rem !important; }
.pr-4 { padding-left: 1.5rem !important; }
.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.ml-5 { margin-right: 3rem !important; }
.mr-5 { margin-left: 3rem !important; }
.mx-5 { margin-right: 3rem !important; margin-left: 3rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.p-5 { padding: 3rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pl-5 { padding-right: 3rem !important; }
.pr-5 { padding-left: 3rem !important; }
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.ml-auto { margin-right: auto !important; }
.mr-auto { margin-left: auto !important; }
.ms-auto { margin-right: auto !important; }
.me-auto { margin-left: auto !important; }
.ms-3 { margin-right: 1rem !important; }
.me-3 { margin-left: 1rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-auto { margin-bottom: auto !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }
@media (min-width: 576px) {
  .m-sm-0 { margin: 0 !important; }
  .mt-sm-0 { margin-top: 0 !important; }
  .mb-sm-0 { margin-bottom: 0 !important; }
  .ml-sm-0 { margin-right: 0 !important; }
  .mr-sm-0 { margin-left: 0 !important; }
  .mx-sm-0 { margin-right: 0 !important; margin-left: 0 !important; }
  .my-sm-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .p-sm-0 { padding: 0 !important; }
  .pt-sm-0 { padding-top: 0 !important; }
  .pb-sm-0 { padding-bottom: 0 !important; }
  .pl-sm-0 { padding-right: 0 !important; }
  .pr-sm-0 { padding-left: 0 !important; }
  .px-sm-0 { padding-right: 0 !important; padding-left: 0 !important; }
  .py-sm-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .m-sm-1 { margin: .25rem !important; }
  .mt-sm-1 { margin-top: .25rem !important; }
  .mb-sm-1 { margin-bottom: .25rem !important; }
  .ml-sm-1 { margin-right: .25rem !important; }
  .mr-sm-1 { margin-left: .25rem !important; }
  .mx-sm-1 { margin-right: .25rem !important; margin-left: .25rem !important; }
  .my-sm-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
  .p-sm-1 { padding: .25rem !important; }
  .pt-sm-1 { padding-top: .25rem !important; }
  .pb-sm-1 { padding-bottom: .25rem !important; }
  .pl-sm-1 { padding-right: .25rem !important; }
  .pr-sm-1 { padding-left: .25rem !important; }
  .px-sm-1 { padding-right: .25rem !important; padding-left: .25rem !important; }
  .py-sm-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
  .m-sm-2 { margin: .5rem !important; }
  .mt-sm-2 { margin-top: .5rem !important; }
  .mb-sm-2 { margin-bottom: .5rem !important; }
  .ml-sm-2 { margin-right: .5rem !important; }
  .mr-sm-2 { margin-left: .5rem !important; }
  .mx-sm-2 { margin-right: .5rem !important; margin-left: .5rem !important; }
  .my-sm-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
  .p-sm-2 { padding: .5rem !important; }
  .pt-sm-2 { padding-top: .5rem !important; }
  .pb-sm-2 { padding-bottom: .5rem !important; }
  .pl-sm-2 { padding-right: .5rem !important; }
  .pr-sm-2 { padding-left: .5rem !important; }
  .px-sm-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
  .py-sm-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
  .m-sm-3 { margin: 1rem !important; }
  .mt-sm-3 { margin-top: 1rem !important; }
  .mb-sm-3 { margin-bottom: 1rem !important; }
  .ml-sm-3 { margin-right: 1rem !important; }
  .mr-sm-3 { margin-left: 1rem !important; }
  .mx-sm-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
  .my-sm-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .p-sm-3 { padding: 1rem !important; }
  .pt-sm-3 { padding-top: 1rem !important; }
  .pb-sm-3 { padding-bottom: 1rem !important; }
  .pl-sm-3 { padding-right: 1rem !important; }
  .pr-sm-3 { padding-left: 1rem !important; }
  .px-sm-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
  .py-sm-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .m-sm-4 { margin: 1.5rem !important; }
  .mt-sm-4 { margin-top: 1.5rem !important; }
  .mb-sm-4 { margin-bottom: 1.5rem !important; }
  .ml-sm-4 { margin-right: 1.5rem !important; }
  .mr-sm-4 { margin-left: 1.5rem !important; }
  .mx-sm-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; }
  .my-sm-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .p-sm-4 { padding: 1.5rem !important; }
  .pt-sm-4 { padding-top: 1.5rem !important; }
  .pb-sm-4 { padding-bottom: 1.5rem !important; }
  .pl-sm-4 { padding-right: 1.5rem !important; }
  .pr-sm-4 { padding-left: 1.5rem !important; }
  .px-sm-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
  .py-sm-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .m-sm-5 { margin: 3rem !important; }
  .mt-sm-5 { margin-top: 3rem !important; }
  .mb-sm-5 { margin-bottom: 3rem !important; }
  .ml-sm-5 { margin-right: 3rem !important; }
  .mr-sm-5 { margin-left: 3rem !important; }
  .mx-sm-5 { margin-right: 3rem !important; margin-left: 3rem !important; }
  .my-sm-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .p-sm-5 { padding: 3rem !important; }
  .pt-sm-5 { padding-top: 3rem !important; }
  .pb-sm-5 { padding-bottom: 3rem !important; }
  .pl-sm-5 { padding-right: 3rem !important; }
  .pr-sm-5 { padding-left: 3rem !important; }
  .px-sm-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
  .py-sm-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .ml-sm-auto { margin-right: auto !important; }
  .mr-sm-auto { margin-left: auto !important; }
  .mt-sm-auto { margin-top: auto !important; }
  .mb-sm-auto { margin-bottom: auto !important; }
  .mx-sm-auto { margin-right: auto !important; margin-left: auto !important; }
  .my-sm-auto { margin-top: auto !important; margin-bottom: auto !important; }
  .d-sm-none { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  .justify-content-sm-center { justify-content: center !important; }
  .text-sm-left { text-align: right !important; }
}
@media (min-width: 768px) {
  .m-md-0 { margin: 0 !important; }
  .mt-md-0 { margin-top: 0 !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .ml-md-0 { margin-right: 0 !important; }
  .mr-md-0 { margin-left: 0 !important; }
  .mx-md-0 { margin-right: 0 !important; margin-left: 0 !important; }
  .my-md-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .p-md-0 { padding: 0 !important; }
  .pt-md-0 { padding-top: 0 !important; }
  .pb-md-0 { padding-bottom: 0 !important; }
  .pl-md-0 { padding-right: 0 !important; }
  .pr-md-0 { padding-left: 0 !important; }
  .px-md-0 { padding-right: 0 !important; padding-left: 0 !important; }
  .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .m-md-1 { margin: .25rem !important; }
  .mt-md-1 { margin-top: .25rem !important; }
  .mb-md-1 { margin-bottom: .25rem !important; }
  .ml-md-1 { margin-right: .25rem !important; }
  .mr-md-1 { margin-left: .25rem !important; }
  .mx-md-1 { margin-right: .25rem !important; margin-left: .25rem !important; }
  .my-md-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
  .p-md-1 { padding: .25rem !important; }
  .pt-md-1 { padding-top: .25rem !important; }
  .pb-md-1 { padding-bottom: .25rem !important; }
  .pl-md-1 { padding-right: .25rem !important; }
  .pr-md-1 { padding-left: .25rem !important; }
  .px-md-1 { padding-right: .25rem !important; padding-left: .25rem !important; }
  .py-md-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
  .m-md-2 { margin: .5rem !important; }
  .mt-md-2 { margin-top: .5rem !important; }
  .mb-md-2 { margin-bottom: .5rem !important; }
  .ml-md-2 { margin-right: .5rem !important; }
  .mr-md-2 { margin-left: .5rem !important; }
  .mx-md-2 { margin-right: .5rem !important; margin-left: .5rem !important; }
  .my-md-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
  .p-md-2 { padding: .5rem !important; }
  .pt-md-2 { padding-top: .5rem !important; }
  .pb-md-2 { padding-bottom: .5rem !important; }
  .pl-md-2 { padding-right: .5rem !important; }
  .pr-md-2 { padding-left: .5rem !important; }
  .px-md-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
  .py-md-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
  .m-md-3 { margin: 1rem !important; }
  .mt-md-3 { margin-top: 1rem !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
  .ml-md-3 { margin-right: 1rem !important; }
  .mr-md-3 { margin-left: 1rem !important; }
  .mx-md-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
  .my-md-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .p-md-3 { padding: 1rem !important; }
  .pt-md-3 { padding-top: 1rem !important; }
  .pb-md-3 { padding-bottom: 1rem !important; }
  .pl-md-3 { padding-right: 1rem !important; }
  .pr-md-3 { padding-left: 1rem !important; }
  .px-md-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
  .py-md-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .m-md-4 { margin: 1.5rem !important; }
  .mt-md-4 { margin-top: 1.5rem !important; }
  .mb-md-4 { margin-bottom: 1.5rem !important; }
  .ml-md-4 { margin-right: 1.5rem !important; }
  .mr-md-4 { margin-left: 1.5rem !important; }
  .mx-md-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; }
  .my-md-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .p-md-4 { padding: 1.5rem !important; }
  .pt-md-4 { padding-top: 1.5rem !important; }
  .pb-md-4 { padding-bottom: 1.5rem !important; }
  .pl-md-4 { padding-right: 1.5rem !important; }
  .pr-md-4 { padding-left: 1.5rem !important; }
  .px-md-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
  .py-md-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .m-md-5 { margin: 3rem !important; }
  .mt-md-5 { margin-top: 3rem !important; }
  .mb-md-5 { margin-bottom: 3rem !important; }
  .ml-md-5 { margin-right: 3rem !important; }
  .mr-md-5 { margin-left: 3rem !important; }
  .mx-md-5 { margin-right: 3rem !important; margin-left: 3rem !important; }
  .my-md-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .p-md-5 { padding: 3rem !important; }
  .pt-md-5 { padding-top: 3rem !important; }
  .pb-md-5 { padding-bottom: 3rem !important; }
  .pl-md-5 { padding-right: 3rem !important; }
  .pr-md-5 { padding-left: 3rem !important; }
  .px-md-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
  .py-md-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .ml-md-auto { margin-right: auto !important; }
  .mr-md-auto { margin-left: auto !important; }
  .mt-md-auto { margin-top: auto !important; }
  .mb-md-auto { margin-bottom: auto !important; }
  .mx-md-auto { margin-right: auto !important; margin-left: auto !important; }
  .my-md-auto { margin-top: auto !important; margin-bottom: auto !important; }
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-inline { display: inline !important; }
  .justify-content-md-center { justify-content: center !important; }
  .justify-content-md-start { justify-content: flex-start !important; }
  .text-md-center { text-align: center !important; }
}
@media (min-width: 992px) {
  .m-lg-0 { margin: 0 !important; }
  .mt-lg-0 { margin-top: 0 !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .ml-lg-0 { margin-right: 0 !important; }
  .mr-lg-0 { margin-left: 0 !important; }
  .mx-lg-0 { margin-right: 0 !important; margin-left: 0 !important; }
  .my-lg-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  .p-lg-0 { padding: 0 !important; }
  .pt-lg-0 { padding-top: 0 !important; }
  .pb-lg-0 { padding-bottom: 0 !important; }
  .pl-lg-0 { padding-right: 0 !important; }
  .pr-lg-0 { padding-left: 0 !important; }
  .px-lg-0 { padding-right: 0 !important; padding-left: 0 !important; }
  .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  .m-lg-1 { margin: .25rem !important; }
  .mt-lg-1 { margin-top: .25rem !important; }
  .mb-lg-1 { margin-bottom: .25rem !important; }
  .ml-lg-1 { margin-right: .25rem !important; }
  .mr-lg-1 { margin-left: .25rem !important; }
  .mx-lg-1 { margin-right: .25rem !important; margin-left: .25rem !important; }
  .my-lg-1 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
  .p-lg-1 { padding: .25rem !important; }
  .pt-lg-1 { padding-top: .25rem !important; }
  .pb-lg-1 { padding-bottom: .25rem !important; }
  .pl-lg-1 { padding-right: .25rem !important; }
  .pr-lg-1 { padding-left: .25rem !important; }
  .px-lg-1 { padding-right: .25rem !important; padding-left: .25rem !important; }
  .py-lg-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
  .m-lg-2 { margin: .5rem !important; }
  .mt-lg-2 { margin-top: .5rem !important; }
  .mb-lg-2 { margin-bottom: .5rem !important; }
  .ml-lg-2 { margin-right: .5rem !important; }
  .mr-lg-2 { margin-left: .5rem !important; }
  .mx-lg-2 { margin-right: .5rem !important; margin-left: .5rem !important; }
  .my-lg-2 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
  .p-lg-2 { padding: .5rem !important; }
  .pt-lg-2 { padding-top: .5rem !important; }
  .pb-lg-2 { padding-bottom: .5rem !important; }
  .pl-lg-2 { padding-right: .5rem !important; }
  .pr-lg-2 { padding-left: .5rem !important; }
  .px-lg-2 { padding-right: .5rem !important; padding-left: .5rem !important; }
  .py-lg-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
  .m-lg-3 { margin: 1rem !important; }
  .mt-lg-3 { margin-top: 1rem !important; }
  .mb-lg-3 { margin-bottom: 1rem !important; }
  .ml-lg-3 { margin-right: 1rem !important; }
  .mr-lg-3 { margin-left: 1rem !important; }
  .mx-lg-3 { margin-right: 1rem !important; margin-left: 1rem !important; }
  .my-lg-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .p-lg-3 { padding: 1rem !important; }
  .pt-lg-3 { padding-top: 1rem !important; }
  .pb-lg-3 { padding-bottom: 1rem !important; }
  .pl-lg-3 { padding-right: 1rem !important; }
  .pr-lg-3 { padding-left: 1rem !important; }
  .px-lg-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
  .py-lg-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .m-lg-4 { margin: 1.5rem !important; }
  .mt-lg-4 { margin-top: 1.5rem !important; }
  .mb-lg-4 { margin-bottom: 1.5rem !important; }
  .ml-lg-4 { margin-right: 1.5rem !important; }
  .mr-lg-4 { margin-left: 1.5rem !important; }
  .mx-lg-4 { margin-right: 1.5rem !important; margin-left: 1.5rem !important; }
  .my-lg-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
  .p-lg-4 { padding: 1.5rem !important; }
  .pt-lg-4 { padding-top: 1.5rem !important; }
  .pb-lg-4 { padding-bottom: 1.5rem !important; }
  .pl-lg-4 { padding-right: 1.5rem !important; }
  .pr-lg-4 { padding-left: 1.5rem !important; }
  .px-lg-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .m-lg-5 { margin: 3rem !important; }
  .mt-lg-5 { margin-top: 3rem !important; }
  .mb-lg-5 { margin-bottom: 3rem !important; }
  .ml-lg-5 { margin-right: 3rem !important; }
  .mr-lg-5 { margin-left: 3rem !important; }
  .mx-lg-5 { margin-right: 3rem !important; margin-left: 3rem !important; }
  .my-lg-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .p-lg-5 { padding: 3rem !important; }
  .pt-lg-5 { padding-top: 3rem !important; }
  .pb-lg-5 { padding-bottom: 3rem !important; }
  .pl-lg-5 { padding-right: 3rem !important; }
  .pr-lg-5 { padding-left: 3rem !important; }
  .px-lg-5 { padding-right: 3rem !important; padding-left: 3rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .ml-lg-auto { margin-right: auto !important; }
  .mr-lg-auto { margin-left: auto !important; }
  .mt-lg-auto { margin-top: auto !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mx-lg-auto { margin-right: auto !important; margin-left: auto !important; }
  .my-lg-auto { margin-top: auto !important; margin-bottom: auto !important; }
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-inline { display: inline !important; }
  .d-lg-flex { display: flex !important; }
  .justify-content-lg-center { justify-content: center !important; }
}

.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
@media (min-width: 576px) { .d-sm-none { display: none !important; } .d-sm-block { display: block !important; } .d-sm-flex { display: flex !important; } }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.position-relative { position: relative !important; }
.bg-white { background-color: #fff !important; }
.border { border: 1px solid var(--bs-border-color) !important; }
.border-0 { border: 0 !important; }
.rounded { border-radius: .25rem !important; }
.rounded-circle { border-radius: 50% !important; }
.text-center { text-align: center !important; }
.text-dark { color: #343a40 !important; }
.text-muted { color: #6c757d !important; }
.text-decoration-none { text-decoration: none !important; }
.fst-italic { font-style: italic !important; }
.fw-bold, .fw-700 { font-weight: 700 !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-32 { font-size: 2rem !important; }
.fs-40 { font-size: 2.5rem !important; }
.h5 { font-size: 1.25rem; }
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn:hover { color: #212529; text-decoration: none; }
.btn:focus, .btn.focus { outline: 0; box-shadow: 0 0 0 .2rem rgba(0,123,255,.25); }
.btn:disabled, .btn.disabled { opacity: .65; pointer-events: none; }
.btn-sm { padding: .25rem .5rem; font-size: .875rem; line-height: 1.5; border-radius: .2rem; }
.navbar { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: .5rem 1rem; }
.navbar-brand { display: inline-block; padding-top: .3125rem; padding-bottom: .3125rem; font-size: 1.25rem; line-height: inherit; white-space: nowrap; }
.navbar-brand:hover, .navbar-brand:focus { text-decoration: none; }
.navbar-nav { display: flex; flex-direction: column; margin-bottom: 0; list-style: none; }
.nav-item { list-style: none; }
.nav-link { display: block; padding: .5rem 1rem; }
.nav-link:hover, .nav-link:focus { text-decoration: none; }
.card { position: relative; display: flex; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0,0,0,.125); border-radius: .25rem; }
.card-body { flex: 1 1 auto; min-height: 1px; padding: 1.25rem; }
.card-text:last-child { margin-bottom: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; padding: .75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: #e9ecef; border-radius: .25rem; }
.breadcrumb-item.active { color: #6c757d; }
.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; width: 100%; backface-visibility: hidden; transition: transform .6s ease-in-out; }
.carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; }
.carousel-fade .carousel-item { opacity: 0; transition-property: opacity; transform: none; }
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { z-index: 1; opacity: 1; }
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { z-index: 0; opacity: 0; transition: opacity 0s .6s; }
.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%; color: #fff; text-align: center; opacity: .5; transition: opacity .15s ease; }
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus { color: #fff; text-decoration: none; outline: 0; opacity: .9; }
.carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; z-index: 15; display: flex; justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; list-style: none; }
.carousel-indicators li { box-sizing: content-box; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: #fff; background-clip: padding-box; border-top: 10px solid transparent; border-bottom: 10px solid transparent; opacity: .5; transition: opacity .6s ease; }
.carousel-indicators .active { opacity: 1; }
.carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; }
.toast { max-width: 350px; overflow: hidden; font-size: .875rem; background-color: rgba(255,255,255,.85); background-clip: padding-box; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 .25rem .75rem rgba(0,0,0,.1); backdrop-filter: blur(10px); border-radius: .25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; }
@media print {
  *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; }
  a:not(.btn) { text-decoration: underline; }
  img { page-break-inside: avoid; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
  .container { min-width: 992px !important; }
}

html[dir="rtl"], body.rtl { direction: rtl; }
body { text-align: right; }
.ltr { direction: ltr !important; }
.rtl { direction: rtl !important; }
.text-left { text-align: right !important; }
.text-right { text-align: left !important; }
.close { float: left; font-size: 1.5rem; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; opacity: .5; background: transparent; border: 0; padding: 0; }
.close:hover { color: #000; text-decoration: none; opacity: .75; }
.navbar-brand { margin-left: 1rem; margin-right: 0; }
.navbar-nav { padding-right: 0; padding-left: initial; }
.breadcrumb-item + .breadcrumb-item { padding-right: .5rem; padding-left: 0; }
.breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-left: .5rem; padding-right: 0; color: #6c757d; content: "/"; }
.breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: none; }
.carousel-item { float: right; margin-left: -100%; margin-right: 0; }
.carousel-item-next:not(.carousel-item-left), .active.carousel-item-right { transform: translateX(-100%); }
.carousel-item-prev:not(.carousel-item-right), .active.carousel-item-left { transform: translateX(100%); }
.carousel-control-prev { right: 0; left: auto; }
.carousel-control-next { left: 0; right: auto; }
