@charset "UTF-8";
.tippy-box[data-animation="perspective-subtle"][data-placement^="top"] {
  transform-origin: bottom;
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="top"][data-state="visible"] {
  transform: perspective(700px);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="top"][data-state="hidden"] {
  transform: perspective(700px) translateY(5px) rotateX(30deg);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="bottom"] {
  transform-origin: top;
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="bottom"][data-state="visible"] {
  transform: perspective(700px);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="bottom"][data-state="hidden"] {
  transform: perspective(700px) translateY(-5px) rotateX(-30deg);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="left"] {
  transform-origin: right;
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="left"][data-state="visible"] {
  transform: perspective(700px);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="left"][data-state="hidden"] {
  transform: perspective(700px) translateX(5px) rotateY(-30deg);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="right"] {
  transform-origin: left;
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="right"][data-state="visible"] {
  transform: perspective(700px);
}
.tippy-box[data-animation="perspective-subtle"][data-placement^="right"][data-state="hidden"] {
  transform: perspective(700px) translateX(-5px) rotateY(30deg);
}
.tippy-box[data-animation="perspective-subtle"][data-state="hidden"] {
  opacity: 0;
}
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #17d700;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-lightgray: #f1f1f1;
  --bs-gray: rgb(134,146,154);
  --bs-gray-dark: rgb(86,94,105);
  --bs-gray-darker: rgb(23,49,58);
  --bs-gray-100: #f5f5f5;
  --bs-gray-200: #ececec;
  --bs-gray-300: #dedede;
  --bs-gray-400: #d0d0d0;
  --bs-gray-500: #888;
  --bs-gray-600: #969696;
  --bs-gray-700: #33373a;
  --bs-gray-800: #464546;
  --bs-gray-900: #1e1d1e;
  --bs-light-border: rgba(48,60,73, 0.1);
  --bs-primary: rgb(230, 0, 51);
  --bs-secondary: var(--bs-gray-dark);
  --bs-success: #17d700;
  --bs-green-dark: #29974E;
  --bs-green-light: #CAECD9;
  --bs-info: #00d7c0;
  --bs-warning: #ffc107;
  --bs-danger: rgb(230, 0, 51);
  --bs-light: #fbfbfb;
  --bs-dark: var(--bs-gray-darker);
  --bs-primary-rgb: 215, 0, 23;
  --bs-secondary-rgb: 48, 60, 73;
  --bs-success-rgb: 23, 215, 0;
  --bs-info-rgb: 0, 215, 192;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 215, 0, 23;
  --bs-light-rgb: 251, 251, 251;
  --bs-dark-rgb: 12, 11, 11;
  --bs-white-rgb: 255, 255, 255;
  --bs-white-rgb-opacity1: rgba(255, 255, 255, 0.1);
  --bs-white-rgb-opacity5: rgba(255, 255, 255, 0.5);
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 136, 136, 136;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", "Roboto",
    "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", 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: Roboto, system-ui, -apple-system, Segoe UI,
    Helvetica Neue, arial, Noto Sans, Liberation Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.375;
  --bs-body-color: rgb(86,94,105);
  --bs-body-bg: #fff;
  --bs-title-font-family: "Roboto Condensed", system-ui, -apple-system, Segoe UI,
  Helvetica Neue, arial, Noto Sans, Liberation Sans, sans-serif,
  Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-article-font-family: "Roboto Flex", system-ui, -apple-system, Segoe UI,
  Helvetica Neue, arial, Noto Sans, Liberation Sans, sans-serif,
  Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
*,
::after,
::before {
  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: transparent;
}

.fm-body {
  font-family: var(--bs-article-font-family);
}

.article-family {
  font-family: var(--bs-article-font-family);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--bs-gray-darker);
  font-family: var(--bs-title-font-family);
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
  text-transform: uppercase;
}

.h2, h2 {
  text-transform: uppercase;
}

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

.font-title {
  font-family: var(--bs-title-font-family);
}

abbr[data-bs-original-title],
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;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 800;
}
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.2em;
  background-color: #fcf8e3;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: rgb(230, 0, 51);
  text-decoration: none;
}
a:hover {
  color: #ac0012;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
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: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #1e1d1e;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 800;
}
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: #969696;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
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]::-webkit-calendar-picker-indicator {
  display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button: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;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::-webkit-file-upload-button {
  font: inherit;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-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-size: calc(1.525rem + 3.3vw);
  font-weight: 800;
  line-height: 1.125;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 4rem;
  }
}
.display-2 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 800;
  line-height: 1.125;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 3rem;
  }
}
.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: #969696;
}
.blockquote-footer::before {
  content: "— ";
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.25rem);
  padding-left: var(--bs-gutter-x, 1.25rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 768px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1350px;
  }
}
@media (min-width: 1350px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1390px;
  }
}
.row {
  --bs-gutter-x: 2.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.3333333333%;
}
.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.6666666667%;
}
.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 !important;
}
.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: 2rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 2rem;
}
.g-6,
.gx-6 {
  --bs-gutter-x: 2.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 2.5rem;
}
.g-7,
.gx-7 {
  --bs-gutter-x: 3rem;
}
.g-7,
.gy-7 {
  --bs-gutter-y: 3rem;
}
.g-8,
.gx-8 {
  --bs-gutter-x: 4rem;
}
.g-8,
.gy-8 {
  --bs-gutter-y: 4rem;
}
.g-9,
.gx-9 {
  --bs-gutter-x: 5rem;
}
.g-9,
.gy-9 {
  --bs-gutter-y: 5rem;
}
.g-10,
.gx-10 {
  --bs-gutter-x: 6rem;
}
.g-10,
.gy-10 {
  --bs-gutter-y: 6rem;
}
.g-11,
.gx-11 {
  --bs-gutter-x: 7.5rem;
}
.g-11,
.gy-11 {
  --bs-gutter-y: 7.5rem;
}
.g-12,
.gx-12 {
  --bs-gutter-x: 8rem;
}
.g-12,
.gy-12 {
  --bs-gutter-y: 8rem;
}

@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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: 2rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-11,
  .gx-sm-11 {
    --bs-gutter-x: 7.5rem;
  }
  .g-sm-11,
  .gy-sm-11 {
    --bs-gutter-y: 7.5rem;
  }
  .g-sm-12,
  .gx-sm-12 {
    --bs-gutter-x: 8rem;
  }
  .g-sm-12,
  .gy-sm-12 {
    --bs-gutter-y: 8rem;
  }
}
@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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: 2rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 2rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 3rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 3rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 4rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 4rem;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 5rem;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 5rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 6rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 6rem;
  }
  .g-md-11,
  .gx-md-11 {
    --bs-gutter-x: 7.5rem;
  }
  .g-md-11,
  .gy-md-11 {
    --bs-gutter-y: 7.5rem;
  }
  .g-md-12,
  .gx-md-12 {
    --bs-gutter-x: 8rem;
  }
  .g-md-12,
  .gy-md-12 {
    --bs-gutter-y: 8rem;
  }
}
@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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: 2rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-11,
  .gx-lg-11 {
    --bs-gutter-x: 7.5rem;
  }
  .g-lg-11,
  .gy-lg-11 {
    --bs-gutter-y: 7.5rem;
  }
  .g-lg-12,
  .gx-lg-12 {
    --bs-gutter-x: 8rem;
  }
  .g-lg-12,
  .gy-lg-12 {
    --bs-gutter-y: 8rem;
  }
}
@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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: 2rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-11,
  .gx-xl-11 {
    --bs-gutter-x: 7.5rem;
  }
  .g-xl-11,
  .gy-xl-11 {
    --bs-gutter-y: 7.5rem;
  }
  .g-xl-12,
  .gx-xl-12 {
    --bs-gutter-x: 8rem;
  }
  .g-xl-12,
  .gy-xl-12 {
    --bs-gutter-y: 8rem;
  }
}
@media (min-width: 1350px) {
  .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.3333333333%;
  }
  .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.6666666667%;
  }
  .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: 2rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 4rem;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 5rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-11,
  .gx-xxl-11 {
    --bs-gutter-x: 7.5rem;
  }
  .g-xxl-11,
  .gy-xxl-11 {
    --bs-gutter-y: 7.5rem;
  }
  .g-xxl-12,
  .gx-xxl-12 {
    --bs-gutter-x: 8rem;
  }
  .g-xxl-12,
  .gy-xxl-12 {
    --bs-gutter-y: 8rem;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #888;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  font-size: 1rem;
  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: #888;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.25);
}
.btn-check:active + .btn,
.btn-check:checked + .btn,
.btn.active,
.btn:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-check:active + .btn:focus,
.btn-check:checked + .btn:focus,
.btn.active:focus,
.btn:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.25),
    inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
}
.btn-primary {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-primary svg {
  display: none;
  width: 18px;
  height: 18px;
}

.btn-primary svg path {fill: var(--bs-white);}

.btn-primary.btn-icon svg {display: inline-flex}
.btn-primary:hover {
  color: #fff;
  background-color: #b70014;
  border-color: #ac0012;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #b70014;
  border-color: #ac0012;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ac0012;
  border-color: #a10011;
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-secondary {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary:hover {
  color: #fff;
  background-color: #29333e;
  border-color: #26303a;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: #29333e;
  border-color: #26303a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(79, 89, 100, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #26303a;
  border-color: #242d37;
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(79, 89, 100, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.btn-success {
  color: #000;
  background-color: #17d700;
  border-color: #17d700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-success:hover {
  color: #000;
  background-color: #3add26;
  border-color: #2edb1a;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
  color: #000;
  background-color: #3add26;
  border-color: #2edb1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(20, 183, 0, 0.5);
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
  color: #000;
  background-color: #45df33;
  border-color: #2edb1a;
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(20, 183, 0, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000;
  background-color: #17d700;
  border-color: #17d700;
}
.btn-info {
  color: #000;
  background-color: #00d7c0;
  border-color: #00d7c0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-info:hover {
  color: #000;
  background-color: #26ddc9;
  border-color: #1adbc6;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  color: #000;
  background-color: #26ddc9;
  border-color: #1adbc6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 183, 163, 0.5);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #33dfcd;
  border-color: #1adbc6;
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(0, 183, 163, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000;
  background-color: #00d7c0;
  border-color: #00d7c0;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-danger {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-danger:hover {
  color: #fff;
  background-color: #b70014;
  border-color: #ac0012;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #b70014;
  border-color: #ac0012;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ac0012;
  border-color: #a10011;
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-light {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-light:hover {
  color: #000;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
  color: #000;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(213, 213, 213, 0.5);
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light:active,
.show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(213, 213, 213, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}
.btn-dark {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-dark:hover {
  color: #fff;
  background-color: #0a0909;
  border-color: #0a0909;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: #0a0909;
  border-color: #0a0909;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(48, 48, 48, 0.5);
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #0a0909;
  border-color: #090808;
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(48, 48, 48, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
}
.btn-outline-primary {
  color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: rgb(230, 0, 51);
  background-color: transparent;
}
.btn-outline-secondary {
  color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
  padding: 15px 33px;
}
.btn-outline-secondary.white {
  color: var(--bs-white);
  border-color: var(--white);
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(48, 60, 73, 0.5);
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(48, 60, 73, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: var(--bs-gray-dark);
  background-color: transparent;
}
.btn-outline-success {
  color: #17d700;
  border-color: #17d700;
}
.btn-outline-success:hover {
  color: #000;
  background-color: #17d700;
  border-color: #17d700;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 215, 0, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
  color: #000;
  background-color: #17d700;
  border-color: #17d700;
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(23, 215, 0, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #17d700;
  background-color: transparent;
}
.btn-outline-info {
  color: #00d7c0;
  border-color: #00d7c0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #00d7c0;
  border-color: #00d7c0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 215, 192, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
  color: #000;
  background-color: #00d7c0;
  border-color: #00d7c0;
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(0, 215, 192, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #00d7c0;
  background-color: transparent;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-danger {
  color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: rgb(230, 0, 51);
  background-color: transparent;
}
.btn-outline-light {
  color: #fbfbfb;
  border-color: #fbfbfb;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(251, 251, 251, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(251, 251, 251, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #fbfbfb;
  background-color: transparent;
}
.btn-outline-dark {
  color: #0c0b0b;
  border-color: #0c0b0b;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(12, 11, 11, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(12, 11, 11, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #0c0b0b;
  background-color: transparent;
}
.btn-link {
  font-weight: 400;
  color: rgb(230, 0, 51);
  text-decoration: none;
}
.btn-link:hover {
  color: #ac0012;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #969696;
}
.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.btn-sm {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.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;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgb(230, 0, 51);
  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:focus,
.nav-link:hover {
  color: #ac0012;
}
.nav-link.disabled {
  color: #969696;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dedede;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #ececec #ececec #dedede;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #969696;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #33373a;
  background-color: #fff;
  border-color: #dedede #dedede #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: rgb(230, 0, 51);
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
  flex-basis: 0;
  flex-grow: 1;
  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;
}
.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, 0.125);
  border-radius: 0.25rem;
}
.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: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link + .card-link {
  margin-left: 1rem;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
  margin-bottom: 1.25rem;
}
@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-header,
  .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer,
  .card-group > .card:not(:last-child) .card-img-bottom {
    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-header,
  .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer,
  .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.link-primary {
  color: rgb(230, 0, 51);
}
.link-primary:focus,
.link-primary:hover {
  color: #ac0012;
}
.link-secondary {
  color: var(--bs-gray-dark);
}
.link-secondary:focus,
.link-secondary:hover {
  color: #26303a;
}
.link-success {
  color: #17d700;
}
.link-success:focus,
.link-success:hover {
  color: #45df33;
}
.link-info {
  color: #00d7c0;
}
.link-info:focus,
.link-info:hover {
  color: #33dfcd;
}
.link-warning {
  color: #ffc107;
}
.link-warning:focus,
.link-warning:hover {
  color: #ffcd39;
}
.link-danger {
  color: rgb(230, 0, 51);
}
.link-danger:focus,
.link-danger:hover {
  color: #ac0012;
}
.link-light {
  color: #fbfbfb;
}
.link-light:focus,
.link-light:hover {
  color: #fcfcfc;
}
.link-dark {
  color: #0c0b0b;
}
.link-dark:focus,
.link-dark:hover {
  color: #0a0909;
}
.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%;
  aspect-ratio: 1 / 1;
}
.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;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1350px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 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) {
  position: absolute !important;
  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;
}
.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: 1px;
  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;
}
.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;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: 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: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.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: 1px solid #dedede !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: 1px solid #dedede !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: 1px solid #dedede !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: 1px solid #dedede !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: 1px solid #dedede !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: rgb(230, 0, 51) !important;
}
.border-secondary {
  border-color: var(--bs-gray-dark) !important;
}
.border-success {
  border-color: #17d700 !important;
}
.border-info {
  border-color: #00d7c0 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: rgb(230, 0, 51) !important;
}
.border-light {
  border-color: #fbfbfb !important;
}
.border-dark {
  border-color: #0c0b0b !important;
}
.border-white {
  border-color: #fff !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;
}
.w-28 {
  width: 28px !important;
}
.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;
}
.w-mc {width: max-content;}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}

.maxw-px-250 {width: 250px;}
.maxw-p-fc {width: fit-content;}


.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;
}
.h-px-500 {height: 500px;}
.mh-100 {
  max-height: 100% !important;
}

.mh-px-300  {
  max-height: 300px;
}
.vh-100 {
  height: 100vh !important;
}

.vh-80 {
  height: 80vh;
}

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

.min-px-180 {
  min-width: 180px !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;
}

.flex-column-max-xl {
  flex-direction: column;
}

@media (min-width: 1200px) {
  .flex-column-max-xl {
    flex-direction: row; 
  }
}

.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-2-5 {
  gap: 0.75rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-3-5 {
  gap: 1.25rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-4-5 {
  gap: 1.75rem !important;
}
.gap-5 {
  gap: 2rem !important;
}
.gap-6 {
  gap: 2.5rem !important;
}
.gap-7 {
  gap: 3rem !important;
}
.gap-8 {
  gap: 4rem !important;
}
.gap-9 {
  gap: 5rem !important;
}
.gap-10 {
  gap: 6rem !important;
}
.gap-11 {
  gap: 7.5rem !important;
}
.gap-12 {
  gap: 8rem !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;
}

/* SM (≥576px) */
@media (min-width: 576px) {
  .align-items-sm-start { align-items: flex-start !important; }
  .align-items-sm-center { align-items: center !important; }
  .align-items-sm-end { align-items: flex-end !important; }

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

/* MD (≥768px) */
@media (min-width: 768px) {
  .align-items-md-start { align-items: flex-start !important; }
  .align-items-md-center { align-items: center !important; }
  .align-items-md-end { align-items: flex-end !important; }

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

/* LG (≥992px) */
@media (min-width: 992px) {
  .align-items-lg-start { align-items: flex-start !important; }
  .align-items-lg-center { align-items: center !important; }
  .align-items-lg-end { align-items: flex-end !important; }

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

/* XL (≥1200px) */
@media (min-width: 1200px) {
  .align-items-xl-start { align-items: flex-start !important; }
  .align-items-xl-center { align-items: center !important; }
  .align-items-xl-end { align-items: flex-end !important; }

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

/* XXL (≥1400px) */
@media (min-width: 1400px) {
  .align-items-xxl-start { align-items: flex-start !important; }
  .align-items-xxl-center { align-items: center !important; }
  .align-items-xxl-end { align-items: flex-end !important; }

  .justify-content-xxl-start { justify-content: flex-start !important; }
  .justify-content-xxl-center { justify-content: center !important; }
  .justify-content-xxl-end { justify-content: flex-end !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;
}

/*-- grid --*/
/* Aktivace grid layoutu */
.d-grid {
  display: grid !important;
}

/* Počet sloupců */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr) !important; }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr) !important; }

/* Gap mezi prvky */
.grid-gap-1 { gap: 0.25rem !important; }
.grid-gap-2 { gap: 0.5rem !important; }
.grid-gap-3 { gap: 1rem !important; }
.grid-gap-4 { gap: 1.5rem !important; }
.grid-gap-5 { gap: 3rem !important; }

/* Responsive varianty */
@media (min-width: 576px) {
  .grid-sm-1 { grid-template-columns: repeat(1, 1fr) !important; }
  .grid-sm-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-sm-3 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 768px) {
  .grid-md-1 { grid-template-columns: repeat(1, 1fr) !important; }
  .grid-md-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-md-3 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 992px) {
  .grid-lg-1 { grid-template-columns: repeat(1, 1fr) !important; }
  .grid-lg-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-lg-3 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 1200px) {
  .grid-xl-1 { grid-template-columns: repeat(1, 1fr) !important; }
  .grid-xl-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-xl-3 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 1400px) {
  .grid-xxl-1 { grid-template-columns: repeat(1, 1fr) !important; }
  .grid-xxl-2 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-xxl-3 { grid-template-columns: repeat(3, 1fr) !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: 2rem !important;
}
.m-6 {
  margin: 2.5rem !important;
}
.m-7 {
  margin: 3rem !important;
}
.m-8 {
  margin: 4rem !important;
}
.m-9 {
  margin: 5rem !important;
}
.m-10 {
  margin: 6rem !important;
}
.m-11 {
  margin: 7.5rem !important;
}
.m-12 {
  margin: 8rem !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: 2rem !important;
  margin-left: 2rem !important;
}
.mx-6 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}
.mx-7 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-8 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}
.mx-9 {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}
.mx-10 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}
.mx-11 {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}
.mx-12 {
  margin-right: 8rem !important;
  margin-left: 8rem !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: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-6 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.my-7 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-9 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}
.my-10 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
.my-11 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}
.my-12 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !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: 2rem !important;
}
.mt-6 {
  margin-top: 2.5rem !important;
}
.mt-7 {
  margin-top: 3rem !important;
}
.mt-8 {
  margin-top: 4rem !important;
}
.mt-9 {
  margin-top: 5rem !important;
}
.mt-10 {
  margin-top: 6rem !important;
}
.mt-11 {
  margin-top: 7.5rem !important;
}
.mt-12 {
  margin-top: 8rem !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: 2rem !important;
}
.me-6 {
  margin-right: 2.5rem !important;
}
.me-7 {
  margin-right: 3rem !important;
}
.me-8 {
  margin-right: 4rem !important;
}
.me-9 {
  margin-right: 5rem !important;
}
.me-10 {
  margin-right: 6rem !important;
}
.me-11 {
  margin-right: 7.5rem !important;
}
.me-12 {
  margin-right: 8rem !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-35 {
  margin-bottom: 1.25rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 2rem !important;
}
.mb-6 {
  margin-bottom: 2.5rem !important;
}
.mb-7 {
  margin-bottom: 3rem !important;
}
.mb-8 {
  margin-bottom: 4rem !important;
}
.mb-9 {
  margin-bottom: 5rem !important;
}
.mb-10 {
  margin-bottom: 6rem !important;
}
.mb-11 {
  margin-bottom: 7.5rem !important;
}
.mb-12 {
  margin-bottom: 8rem !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: 2rem !important;
}
.ms-6 {
  margin-left: 2.5rem !important;
}
.ms-7 {
  margin-left: 3rem !important;
}
.ms-8 {
  margin-left: 4rem !important;
}
.ms-9 {
  margin-left: 5rem !important;
}
.ms-10 {
  margin-left: 6rem !important;
}
.ms-11 {
  margin-left: 7.5rem !important;
}
.ms-12 {
  margin-left: 8rem !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-2-75 {
  padding: 0.875rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 2rem !important;
}
.p-6 {
  padding: 2.5rem !important;
}
.p-7 {
  padding: 3rem !important;
}
.p-7-75 {
  padding: 3.75rem !important;
}
.p-8 {
  padding: 4rem !important;
}
.p-9 {
  padding: 5rem !important;
}
.p-10 {
  padding: 6rem !important;
}
.p-11 {
  padding: 7.5rem !important;
}
.p-12 {
  padding: 8rem !important;
}
.p-20 {
  padding: 1.25rem;
}
.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-2-75 {
  padding-right: 0.875rem !important;
  padding-left: 0.875rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-3-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}
.px-6 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}
.px-7 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.px-8 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}
.px-9 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}
.px-10 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}
.px-11 {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}
.px-12 {
  padding-right: 8rem !important;
  padding-left: 8rem !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-3-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-6 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-7 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-9 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.py-10 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
.py-11 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}
.py-12 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !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: 2rem !important;
}
.pt-6 {
  padding-top: 2.5rem !important;
}
.pt-7 {
  padding-top: 3rem !important;
}
.pt-775 {
  padding-top: 3.75rem !important;
}
.pt-8 {
  padding-top: 4rem !important;
}
.pt-9 {
  padding-top: 5rem !important;
}
.pt-10 {
  padding-top: 6rem !important;
}
.pt-1025 {
  padding-top: 6.25rem !important;
}
.pt-11 {
  padding-top: 7.5rem !important;
}
.pt-12 {
  padding-top: 8rem !important;
}

.pt-13 {
  padding-top: 9rem !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: 2rem !important;
}
.pe-6 {
  padding-right: 2.5rem !important;
}
.pe-7 {
  padding-right: 3rem !important;
}
.pe-8 {
  padding-right: 4rem !important;
}
.pe-9 {
  padding-right: 5rem !important;
}
.pe-10 {
  padding-right: 6rem !important;
}
.pe-11 {
  padding-right: 7.5rem !important;
}
.pe-12 {
  padding-right: 8rem !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-3-25 {
  padding-bottom: 1.25rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 2rem !important;
}
.pb-6 {
  padding-bottom: 2.5rem !important;
}
.pb-7 {
  padding-bottom: 3rem !important;
}
.pb-775 {
  padding-bottom: 3.75rem !important;
}
.pb-8 {
  padding-bottom: 4rem !important;
}
.pb-9 {
  padding-bottom: 5rem !important;
}
.pb-10 {
  padding-bottom: 6rem !important;
}
.pb-1025 {
  padding-bottom: 6.25rem !important;
}
.pb-11 {
  padding-bottom: 7.5rem !important;
}
.pb-12 {
  padding-bottom: 8rem !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: 2rem !important;
}
.ps-6 {
  padding-left: 2.5rem !important;
}
.ps-7 {
  padding-left: 3rem !important;
}
.ps-8 {
  padding-left: 4rem !important;
}
.ps-9 {
  padding-left: 5rem !important;
}
.ps-10 {
  padding-left: 6rem !important;
}
.ps-11 {
  padding-left: 7.5rem !important;
}
.ps-12 {
  padding-left: 8rem !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-4-2 {
  font-size: calc(1.2rem + 0.15vw); 
}

.fs-4-5 {
  font-size: calc(1rem + 0.1vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fs-7 {
  font-size: 0.875rem;
}
.fs-8 {
  font-size: 0.9375rem;
}

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

.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500;
}
.fw-bold {
  font-weight: 800 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.fw-medium {
  font-weight: 600 !important;
}
.fw-semibold {
  font-weight: 700 !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-sm {
  line-height: 1.125 !important;
}
.lh-base {
  line-height: 1.6 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.lh-xl {
  line-height: 3 !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;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.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-purewhite {
  --bs-text-opacity: 1;
  color: var(--bs-white) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-body-default {
  color: var(--bs-body-color);
}
.text-muted {
  --bs-text-opacity: 1;
  color: #969696 !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-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;
}
.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-gray100 {
  --bs-bg-opacity: 1;
  background-color: var(--bs-gray-100);
}

.bg-gray200 {
  --bs-bg-opacity: 1;
  background-color: var(--bs-gray-200) !important;
}

.bg-lightshade {
  --bs-bg-opacity: 1;
  background-color: var(--bs-lightgray) !important;
}

.bg-darkshade {
  --bs-bg-opacity: 1;
  background-color: var(--bs-gray-dark) !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-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-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;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: 0.2rem !important;
}
.rounded-2 {
  border-radius: 0.25rem !important;
}
.rounded-3 {
  border-radius: 0.3rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: 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-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;
  }
  .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: 2rem !important;
  }
  .gap-sm-6 {
    gap: 2.5rem !important;
  }
  .gap-sm-7 {
    gap: 3rem !important;
  }
  .p-sm-7-75 {
    padding: 3.75rem !important;
  }
  .gap-sm-8 {
    gap: 4rem !important;
  }
  .gap-sm-9 {
    gap: 5rem !important;
  }
  .gap-sm-10 {
    gap: 6rem !important;
  }
  .gap-sm-11 {
    gap: 7.5rem !important;
  }
  .gap-sm-12 {
    gap: 8rem !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: 2rem !important;
  }
  .m-sm-6 {
    margin: 2.5rem !important;
  }
  .m-sm-7 {
    margin: 3rem !important;
  }
  .m-sm-8 {
    margin: 4rem !important;
  }
  .m-sm-9 {
    margin: 5rem !important;
  }
  .m-sm-10 {
    margin: 6rem !important;
  }
  .m-sm-11 {
    margin: 7.5rem !important;
  }
  .m-sm-12 {
    margin: 8rem !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: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-9 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-10 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-11 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-sm-12 {
    margin-right: 8rem !important;
    margin-left: 8rem !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: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-10 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-11 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-sm-12 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !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: 2rem !important;
  }
  .mt-sm-6 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 3rem !important;
  }
  .mt-sm-8 {
    margin-top: 4rem !important;
  }
  .mt-sm-9 {
    margin-top: 5rem !important;
  }
  .mt-sm-10 {
    margin-top: 6rem !important;
  }
  .mt-sm-11 {
    margin-top: 7.5rem !important;
  }
  .mt-sm-12 {
    margin-top: 8rem !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: 2rem !important;
  }
  .me-sm-6 {
    margin-right: 2.5rem !important;
  }
  .me-sm-7 {
    margin-right: 3rem !important;
  }
  .me-sm-8 {
    margin-right: 4rem !important;
  }
  .me-sm-9 {
    margin-right: 5rem !important;
  }
  .me-sm-10 {
    margin-right: 6rem !important;
  }
  .me-sm-11 {
    margin-right: 7.5rem !important;
  }
  .me-sm-12 {
    margin-right: 8rem !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: 2rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 7.5rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 8rem !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: 2rem !important;
  }
  .ms-sm-6 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 3rem !important;
  }
  .ms-sm-8 {
    margin-left: 4rem !important;
  }
  .ms-sm-9 {
    margin-left: 5rem !important;
  }
  .ms-sm-10 {
    margin-left: 6rem !important;
  }
  .ms-sm-11 {
    margin-left: 7.5rem !important;
  }
  .ms-sm-12 {
    margin-left: 8rem !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: 2rem !important;
  }
  .p-sm-6 {
    padding: 2.5rem !important;
  }
  .p-sm-7 {
    padding: 3rem !important;
  }
  .p-sm-8 {
    padding: 4rem !important;
  }
  .p-sm-9 {
    padding: 5rem !important;
  }
  .p-sm-10 {
    padding: 6rem !important;
  }
  .p-sm-11 {
    padding: 7.5rem !important;
  }
  .p-sm-12 {
    padding: 8rem !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-3-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-9 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-10 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-11 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-sm-12 {
    padding-right: 8rem !important;
    padding-left: 8rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-11 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-sm-12 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !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: 2rem !important;
  }
  .pt-sm-6 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 3rem !important;
  }
  .pt-sm-7-75 {
    padding-top: 3.75rem !important;
  }
  .pt-sm-8 {
    padding-top: 4rem !important;
  }
  .pt-sm-9 {
    padding-top: 5rem !important;
  }
  .pt-sm-10 {
    padding-top: 6rem !important;
  }
  .pt-sm-11 {
    padding-top: 7.5rem !important;
  }
  .pt-sm-12 {
    padding-top: 8rem !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: 2rem !important;
  }
  .pe-sm-6 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 3rem !important;
  }
  .pe-sm-8 {
    padding-right: 4rem !important;
  }
  .pe-sm-9 {
    padding-right: 5rem !important;
  }
  .pe-sm-10 {
    padding-right: 6rem !important;
  }
  .pe-sm-11 {
    padding-right: 7.5rem !important;
  }
  .pe-sm-12 {
    padding-right: 8rem !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: 2rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-7-75 {
    padding-bottom: 3.75rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 7.5rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 8rem !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: 2rem !important;
  }
  .ps-sm-6 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 3rem !important;
  }
  .ps-sm-8 {
    padding-left: 4rem !important;
  }
  .ps-sm-9 {
    padding-left: 5rem !important;
  }
  .ps-sm-10 {
    padding-left: 6rem !important;
  }
  .ps-sm-11 {
    padding-left: 7.5rem !important;
  }
  .ps-sm-12 {
    padding-left: 8rem !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;
  }
  .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-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;
  }
  .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: 2rem !important;
  }
  .gap-md-6 {
    gap: 2.5rem !important;
  }
  .gap-md-7 {
    gap: 3rem !important;
  }
  .gap-md-8 {
    gap: 4rem !important;
  }
  .gap-md-9 {
    gap: 5rem !important;
  }
  .gap-md-10 {
    gap: 6rem !important;
  }
  .gap-md-11 {
    gap: 7.5rem !important;
  }
  .gap-md-12 {
    gap: 8rem !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: 2rem !important;
  }
  .m-md-6 {
    margin: 2.5rem !important;
  }
  .m-md-7 {
    margin: 3rem !important;
  }
  .m-md-8 {
    margin: 4rem !important;
  }
  .m-md-9 {
    margin: 5rem !important;
  }
  .m-md-10 {
    margin: 6rem !important;
  }
  .m-md-11 {
    margin: 7.5rem !important;
  }
  .m-md-12 {
    margin: 8rem !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: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-9 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-10 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-11 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-md-12 {
    margin-right: 8rem !important;
    margin-left: 8rem !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: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-10 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-11 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-md-12 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !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: 2rem !important;
  }
  .mt-md-6 {
    margin-top: 2.5rem !important;
  }
  .mt-md-7 {
    margin-top: 3rem !important;
  }
  .mt-md-8 {
    margin-top: 4rem !important;
  }
  .mt-md-9 {
    margin-top: 5rem !important;
  }
  .mt-md-10 {
    margin-top: 6rem !important;
  }
  .mt-md-11 {
    margin-top: 7.5rem !important;
  }
  .mt-md-12 {
    margin-top: 8rem !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: 2rem !important;
  }
  .me-md-6 {
    margin-right: 2.5rem !important;
  }
  .me-md-7 {
    margin-right: 3rem !important;
  }
  .me-md-8 {
    margin-right: 4rem !important;
  }
  .me-md-9 {
    margin-right: 5rem !important;
  }
  .me-md-10 {
    margin-right: 6rem !important;
  }
  .me-md-11 {
    margin-right: 7.5rem !important;
  }
  .me-md-12 {
    margin-right: 8rem !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: 2rem !important;
  }
  .mb-md-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 3rem !important;
  }
  .mb-md-8 {
    margin-bottom: 4rem !important;
  }
  .mb-md-9 {
    margin-bottom: 5rem !important;
  }
  .mb-md-10 {
    margin-bottom: 6rem !important;
  }
  .mb-md-11 {
    margin-bottom: 7.5rem !important;
  }
  .mb-md-12 {
    margin-bottom: 8rem !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: 2rem !important;
  }
  .ms-md-6 {
    margin-left: 2.5rem !important;
  }
  .ms-md-7 {
    margin-left: 3rem !important;
  }
  .ms-md-8 {
    margin-left: 4rem !important;
  }
  .ms-md-9 {
    margin-left: 5rem !important;
  }
  .ms-md-10 {
    margin-left: 6rem !important;
  }
  .ms-md-11 {
    margin-left: 7.5rem !important;
  }
  .ms-md-12 {
    margin-left: 8rem !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: 2rem !important;
  }
  .p-md-6 {
    padding: 2.5rem !important;
  }
  .p-md-7 {
    padding: 3rem !important;
  }
  .p-md-8 {
    padding: 4rem !important;
  }
  .p-md-9 {
    padding: 5rem !important;
  }
  .p-md-10 {
    padding: 6rem !important;
  }
  .p-md-11 {
    padding: 7.5rem !important;
  }
  .p-md-12 {
    padding: 8rem !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: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-9 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-10 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-11 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-md-12 {
    padding-right: 8rem !important;
    padding-left: 8rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-11 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-md-12 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !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: 2rem !important;
  }
  .pt-md-6 {
    padding-top: 2.5rem !important;
  }
  .pt-md-7 {
    padding-top: 3rem !important;
  }
  .pt-md-8 {
    padding-top: 4rem !important;
  }
  .pt-md-9 {
    padding-top: 5rem !important;
  }
  .pt-md-10 {
    padding-top: 6rem !important;
  }
  .pt-md-11 {
    padding-top: 7.5rem !important;
  }
  .pt-md-12 {
    padding-top: 8rem !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: 2rem !important;
  }
  .pe-md-6 {
    padding-right: 2.5rem !important;
  }
  .pe-md-7 {
    padding-right: 3rem !important;
  }
  .pe-md-8 {
    padding-right: 4rem !important;
  }
  .pe-md-9 {
    padding-right: 5rem !important;
  }
  .pe-md-10 {
    padding-right: 6rem !important;
  }
  .pe-md-11 {
    padding-right: 7.5rem !important;
  }
  .pe-md-12 {
    padding-right: 8rem !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: 2rem !important;
  }
  .pb-md-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 3rem !important;
  }
  .pb-md-8 {
    padding-bottom: 4rem !important;
  }
  .pb-md-9 {
    padding-bottom: 5rem !important;
  }
  .pb-md-10 {
    padding-bottom: 6rem !important;
  }
  .pb-md-11 {
    padding-bottom: 7.5rem !important;
  }
  .pb-md-12 {
    padding-bottom: 8rem !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: 2rem !important;
  }
  .ps-md-6 {
    padding-left: 2.5rem !important;
  }
  .ps-md-7 {
    padding-left: 3rem !important;
  }
  .ps-md-8 {
    padding-left: 4rem !important;
  }
  .ps-md-9 {
    padding-left: 5rem !important;
  }
  .ps-md-10 {
    padding-left: 6rem !important;
  }
  .ps-md-11 {
    padding-left: 7.5rem !important;
  }
  .ps-md-12 {
    padding-left: 8rem !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;
  }
  .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-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;
  }
  .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: 2rem !important;
  }
  .gap-lg-6 {
    gap: 2.5rem !important;
  }
  .gap-lg-7 {
    gap: 3rem !important;
  }
  .gap-lg-8 {
    gap: 4rem !important;
  }
  .gap-lg-9 {
    gap: 5rem !important;
  }
  .gap-lg-10 {
    gap: 6rem !important;
  }
  .gap-lg-11 {
    gap: 7.5rem !important;
  }
  .gap-lg-12 {
    gap: 8rem !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: 2rem !important;
  }
  .m-lg-6 {
    margin: 2.5rem !important;
  }
  .m-lg-7 {
    margin: 3rem !important;
  }
  .m-lg-8 {
    margin: 4rem !important;
  }
  .m-lg-9 {
    margin: 5rem !important;
  }
  .m-lg-10 {
    margin: 6rem !important;
  }
  .m-lg-11 {
    margin: 7.5rem !important;
  }
  .m-lg-12 {
    margin: 8rem !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: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-9 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-10 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-11 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-lg-12 {
    margin-right: 8rem !important;
    margin-left: 8rem !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: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-10 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-11 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-lg-12 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !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: 2rem !important;
  }
  .mt-lg-6 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 3rem !important;
  }
  .mt-lg-8 {
    margin-top: 4rem !important;
  }
  .mt-lg-9 {
    margin-top: 5rem !important;
  }
  .mt-lg-10 {
    margin-top: 6rem !important;
  }
  .mt-lg-11 {
    margin-top: 7.5rem !important;
  }
  .mt-lg-12 {
    margin-top: 8rem !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: 2rem !important;
  }
  .me-lg-6 {
    margin-right: 2.5rem !important;
  }
  .me-lg-7 {
    margin-right: 3rem !important;
  }
  .me-lg-8 {
    margin-right: 4rem !important;
  }
  .me-lg-9 {
    margin-right: 5rem !important;
  }
  .me-lg-10 {
    margin-right: 6rem !important;
  }
  .me-lg-11 {
    margin-right: 7.5rem !important;
  }
  .me-lg-12 {
    margin-right: 8rem !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: 2rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 7.5rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 8rem !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: 2rem !important;
  }
  .ms-lg-6 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 3rem !important;
  }
  .ms-lg-8 {
    margin-left: 4rem !important;
  }
  .ms-lg-9 {
    margin-left: 5rem !important;
  }
  .ms-lg-10 {
    margin-left: 6rem !important;
  }
  .ms-lg-11 {
    margin-left: 7.5rem !important;
  }
  .ms-lg-12 {
    margin-left: 8rem !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: 2rem !important;
  }
  .p-lg-6 {
    padding: 2.5rem !important;
  }
  .p-lg-7 {
    padding: 3rem !important;
  }
  .p-lg-8 {
    padding: 4rem !important;
  }
  .p-lg-9 {
    padding: 5rem !important;
  }
  .p-lg-10 {
    padding: 6rem !important;
  }
  .p-lg-11 {
    padding: 7.5rem !important;
  }
  .p-lg-12 {
    padding: 8rem !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: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-9 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-10 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-11 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-lg-12 {
    padding-right: 8rem !important;
    padding-left: 8rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-11 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-lg-12 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !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: 2rem !important;
  }
  .pt-lg-6 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 3rem !important;
  }
  .pt-lg-8 {
    padding-top: 4rem !important;
  }
  .pt-lg-9 {
    padding-top: 5rem !important;
  }
  .pt-lg-10 {
    padding-top: 6rem !important;
  }
  .pt-lg-11 {
    padding-top: 7.5rem !important;
  }
  .pt-lg-12 {
    padding-top: 8rem !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: 2rem !important;
  }
  .pe-lg-6 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 3rem !important;
  }
  .pe-lg-8 {
    padding-right: 4rem !important;
  }
  .pe-lg-9 {
    padding-right: 5rem !important;
  }
  .pe-lg-10 {
    padding-right: 6rem !important;
  }
  .pe-lg-11 {
    padding-right: 7.5rem !important;
  }
  .pe-lg-12 {
    padding-right: 8rem !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: 2rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 7.5rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 8rem !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: 2rem !important;
  }
  .ps-lg-6 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 3rem !important;
  }
  .ps-lg-8 {
    padding-left: 4rem !important;
  }
  .ps-lg-9 {
    padding-left: 5rem !important;
  }
  .ps-lg-10 {
    padding-left: 6rem !important;
  }
  .ps-lg-11 {
    padding-left: 7.5rem !important;
  }
  .ps-lg-12 {
    padding-left: 8rem !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;
  }
  .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-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;
  }
  .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: 2rem !important;
  }
  .gap-xl-6 {
    gap: 2.5rem !important;
  }
  .gap-xl-7 {
    gap: 3rem !important;
  }
  .gap-xl-8 {
    gap: 4rem !important;
  }
  .gap-xl-9 {
    gap: 5rem !important;
  }
  .gap-xl-10 {
    gap: 6rem !important;
  }
  .gap-xl-11 {
    gap: 7.5rem !important;
  }
  .gap-xl-12 {
    gap: 8rem !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: 2rem !important;
  }
  .m-xl-6 {
    margin: 2.5rem !important;
  }
  .m-xl-7 {
    margin: 3rem !important;
  }
  .m-xl-8 {
    margin: 4rem !important;
  }
  .m-xl-9 {
    margin: 5rem !important;
  }
  .m-xl-10 {
    margin: 6rem !important;
  }
  .m-xl-11 {
    margin: 7.5rem !important;
  }
  .m-xl-12 {
    margin: 8rem !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: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-9 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-10 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-11 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-xl-12 {
    margin-right: 8rem !important;
    margin-left: 8rem !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: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-10 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-11 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-xl-12 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !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: 2rem !important;
  }
  .mt-xl-6 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 3rem !important;
  }
  .mt-xl-8 {
    margin-top: 4rem !important;
  }
  .mt-xl-9 {
    margin-top: 5rem !important;
  }
  .mt-xl-10 {
    margin-top: 6rem !important;
  }
  .mt-xl-11 {
    margin-top: 7.5rem !important;
  }
  .mt-xl-12 {
    margin-top: 8rem !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: 2rem !important;
  }
  .me-xl-6 {
    margin-right: 2.5rem !important;
  }
  .me-xl-7 {
    margin-right: 3rem !important;
  }
  .me-xl-8 {
    margin-right: 4rem !important;
  }
  .me-xl-9 {
    margin-right: 5rem !important;
  }
  .me-xl-10 {
    margin-right: 6rem !important;
  }
  .me-xl-11 {
    margin-right: 7.5rem !important;
  }
  .me-xl-12 {
    margin-right: 8rem !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: 2rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 7.5rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 8rem !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: 2rem !important;
  }
  .ms-xl-6 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 3rem !important;
  }
  .ms-xl-8 {
    margin-left: 4rem !important;
  }
  .ms-xl-9 {
    margin-left: 5rem !important;
  }
  .ms-xl-10 {
    margin-left: 6rem !important;
  }
  .ms-xl-11 {
    margin-left: 7.5rem !important;
  }
  .ms-xl-12 {
    margin-left: 8rem !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: 2rem !important;
  }
  .p-xl-6 {
    padding: 2.5rem !important;
  }
  .p-xl-7 {
    padding: 3rem !important;
  }
  .p-xl-8 {
    padding: 4rem !important;
  }
  .p-xl-9 {
    padding: 5rem !important;
  }
  .p-xl-10 {
    padding: 6rem !important;
  }
  .p-xl-11 {
    padding: 7.5rem !important;
  }
  .p-xl-12 {
    padding: 8rem !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: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-9 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-10 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-11 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-xl-12 {
    padding-right: 8rem !important;
    padding-left: 8rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-11 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xl-12 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !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: 2rem !important;
  }
  .pt-xl-6 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 3rem !important;
  }
  .pt-xl-8 {
    padding-top: 4rem !important;
  }
  .pt-xl-9 {
    padding-top: 5rem !important;
  }
  .pt-xl-10 {
    padding-top: 6rem !important;
  }
  .pt-xl-11 {
    padding-top: 7.5rem !important;
  }
  .pt-xl-12 {
    padding-top: 8rem !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: 2rem !important;
  }
  .pe-xl-6 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 3rem !important;
  }
  .pe-xl-8 {
    padding-right: 4rem !important;
  }
  .pe-xl-9 {
    padding-right: 5rem !important;
  }
  .pe-xl-10 {
    padding-right: 6rem !important;
  }
  .pe-xl-11 {
    padding-right: 7.5rem !important;
  }
  .pe-xl-12 {
    padding-right: 8rem !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: 2rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 7.5rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 8rem !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: 2rem !important;
  }
  .ps-xl-6 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 3rem !important;
  }
  .ps-xl-8 {
    padding-left: 4rem !important;
  }
  .ps-xl-9 {
    padding-left: 5rem !important;
  }
  .ps-xl-10 {
    padding-left: 6rem !important;
  }
  .ps-xl-11 {
    padding-left: 7.5rem !important;
  }
  .ps-xl-12 {
    padding-left: 8rem !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: 1350px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: 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-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;
  }
  .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: 2rem !important;
  }
  .gap-xxl-6 {
    gap: 2.5rem !important;
  }
  .gap-xxl-7 {
    gap: 3rem !important;
  }
  .gap-xxl-8 {
    gap: 4rem !important;
  }
  .gap-xxl-9 {
    gap: 5rem !important;
  }
  .gap-xxl-10 {
    gap: 6rem !important;
  }
  .gap-xxl-11 {
    gap: 7.5rem !important;
  }
  .gap-xxl-12 {
    gap: 8rem !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: 2rem !important;
  }
  .m-xxl-6 {
    margin: 2.5rem !important;
  }
  .m-xxl-7 {
    margin: 3rem !important;
  }
  .m-xxl-8 {
    margin: 4rem !important;
  }
  .m-xxl-9 {
    margin: 5rem !important;
  }
  .m-xxl-10 {
    margin: 6rem !important;
  }
  .m-xxl-11 {
    margin: 7.5rem !important;
  }
  .m-xxl-12 {
    margin: 8rem !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: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-8 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-9 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-10 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-11 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }
  .mx-xxl-12 {
    margin-right: 8rem !important;
    margin-left: 8rem !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: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-9 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-10 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-11 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .my-xxl-12 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !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: 2rem !important;
  }
  .mt-xxl-6 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 3rem !important;
  }
  .mt-xxl-8 {
    margin-top: 4rem !important;
  }
  .mt-xxl-9 {
    margin-top: 5rem !important;
  }
  .mt-xxl-10 {
    margin-top: 6rem !important;
  }
  .mt-xxl-11 {
    margin-top: 7.5rem !important;
  }
  .mt-xxl-12 {
    margin-top: 8rem !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: 2rem !important;
  }
  .me-xxl-6 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 3rem !important;
  }
  .me-xxl-8 {
    margin-right: 4rem !important;
  }
  .me-xxl-9 {
    margin-right: 5rem !important;
  }
  .me-xxl-10 {
    margin-right: 6rem !important;
  }
  .me-xxl-11 {
    margin-right: 7.5rem !important;
  }
  .me-xxl-12 {
    margin-right: 8rem !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: 2rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 7.5rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 8rem !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: 2rem !important;
  }
  .ms-xxl-6 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 3rem !important;
  }
  .ms-xxl-8 {
    margin-left: 4rem !important;
  }
  .ms-xxl-9 {
    margin-left: 5rem !important;
  }
  .ms-xxl-10 {
    margin-left: 6rem !important;
  }
  .ms-xxl-11 {
    margin-left: 7.5rem !important;
  }
  .ms-xxl-12 {
    margin-left: 8rem !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: 2rem !important;
  }
  .p-xxl-6 {
    padding: 2.5rem !important;
  }
  .p-xxl-7 {
    padding: 3rem !important;
  }
  .p-xxl-8 {
    padding: 4rem !important;
  }
  .p-xxl-9 {
    padding: 5rem !important;
  }
  .p-xxl-10 {
    padding: 6rem !important;
  }
  .p-xxl-11 {
    padding: 7.5rem !important;
  }
  .p-xxl-12 {
    padding: 8rem !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: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-8 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-9 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-10 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-11 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }
  .px-xxl-12 {
    padding-right: 8rem !important;
    padding-left: 8rem !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: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-9 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-10 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-11 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .py-xxl-12 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !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: 2rem !important;
  }
  .pt-xxl-6 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 3rem !important;
  }
  .pt-xxl-8 {
    padding-top: 4rem !important;
  }
  .pt-xxl-9 {
    padding-top: 5rem !important;
  }
  .pt-xxl-10 {
    padding-top: 6rem !important;
  }
  .pt-xxl-11 {
    padding-top: 7.5rem !important;
  }
  .pt-xxl-12 {
    padding-top: 8rem !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: 2rem !important;
  }
  .pe-xxl-6 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 3rem !important;
  }
  .pe-xxl-8 {
    padding-right: 4rem !important;
  }
  .pe-xxl-9 {
    padding-right: 5rem !important;
  }
  .pe-xxl-10 {
    padding-right: 6rem !important;
  }
  .pe-xxl-11 {
    padding-right: 7.5rem !important;
  }
  .pe-xxl-12 {
    padding-right: 8rem !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: 2rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 7.5rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 8rem !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: 2rem !important;
  }
  .ps-xxl-6 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 3rem !important;
  }
  .ps-xxl-8 {
    padding-left: 4rem !important;
  }
  .ps-xxl-9 {
    padding-left: 5rem !important;
  }
  .ps-xxl-10 {
    padding-left: 6rem !important;
  }
  .ps-xxl-11 {
    padding-left: 7.5rem !important;
  }
  .ps-xxl-12 {
    padding-left: 8rem !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-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;
  }
}
.icon-xxs {
  width: 0.625rem;
  height: 0.625rem;
}
.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
}
.icon-sm {
  width: 1rem;
  height: 1rem;
}
.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-xl {
  width: 1.75rem;
  height: 1.75rem;
}
.icon-xxl {
  width: 2rem;
  height: 2rem;
}
.t1 {
  font-size: 1.25rem;
  line-height: 1.25;
}
.t2 {
  font-size: 1.125rem;
  line-height: 1.6;
}
.t3 {
  font-size: 0.8125rem;
  line-height: 1.35;
}
.t4 {
  font-size: 0.875rem;
  line-height: 1.6;
}
.t5 {
  font-size: 0.75rem;
  line-height: 1.6;
}
.t6 {
  font-size: 1.375rem;
  line-height: 1.6;
}

.text-gray {
  color: #888;
}

.text-gray-dark {
  color: var(--bs-gray-dark);
}

.text-gray-darker {
  color: var(--bs-gray-darker);
}

.text-half-secondary {
  color: #979da3;
}
.text-faded-secondary {
  color: #d5d8da;
}
.text-fifth-secondary {
  color: #eaebed;
}
.text-off-white-secondary {
  color: #fbfbfb;
}
:root {
  --breakpoint-mobile-menu: 1599.98px;
  --breakpoint-desktop: 991.98px;
  --breakpoint-tablet: 767.98px;
  --breakpoint-mobile: 575.98px;
}
@media (hover: hover) {
  :root {
    scrollbar-color: #d0d0d0 #fbfbfb;
    scrollbar-width: auto;
  }
  :root::-webkit-scrollbar {
    width: 0.75rem;
    height: 0.75rem;
  }
  :root::-webkit-scrollbar-thumb {
    background: #d0d0d0;
  }
  :root::-webkit-scrollbar-track {
    background: #fbfbfb;
  }
}
:target::before {
  display: block;
  height: 3rem;
  margin: -3rem 0 0;
  content: "";
  background-color: #fff;
}
@media (min-width: 992px) {
  :target::before {
    height: 5rem;
    margin: -5rem 0 0;
  }
}
body.embedded .breadcrumb > span > span > a {
  display: none;
}
body.embedded #section-hero {
  padding-top: 1rem;
}
@media screen and (min-width: 600px) {
  /*.admin-bar header,*/
  .admin-bar main {
    top: 32px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar header:not(.header-sticky),
  .admin-bar main {
    top: 32px;
  }
}
::-moz-selection {
  color: #fbfbfb;
  background-color: #dd263a;
}
::selection {
  color: #fbfbfb;
  background-color: #dd263a;
}
.has-img-background {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}
.has-img-background img.is-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.title-border {
  border-bottom: 0.0625rem solid #eaebed;
}
b,
strong {
  font-weight: 700;
}
svg > * {
  vector-effect: non-scaling-stroke;
}
a.body-link {
  transition: 0.15s ease;
  color: var(--bs-gray-dark);
}

.rotate-180 {
  transform: rotate(180deg);
  transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
  a.body-link {
    transition: none;
  }
}
a.body-link:active,
a.body-link:focus,
a.body-link:hover {
  color: rgb(230, 0, 51);
}
.menu {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
span.ripple {
  position: absolute;
  z-index: 21;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  -webkit-animation: ripple 0.5s ease-out;
  animation: ripple 0.5s ease-out;
  border-radius: 50%;
}
.phone-number {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bs-gray-dark);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .phone-number {
    transition: none;
  }
}
.phone-number:focus,
.phone-number:hover {
  color: #979da3;
}
.phone-number svg {
  width: 1rem;
  height: auto;
  color: #17d700;
}
@-webkit-keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}
@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}
@media (min-width: 1350px) {
  .collapse.dont-collapse-mobile-menu-up {
    display: block;
    height: auto !important;
    visibility: visible;
  }
}
.transition {
  transition: 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .transition {
    transition: none;
  }
}
.transition-slow {
  transition: 0.4s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .transition-slow {
    transition: none;
  }
}
.transition-fast {
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .transition-fast {
    transition: none;
  }
}
.flex-1 {
  flex: 1;
}
.half-bg-light {
  background: linear-gradient(0deg, #fff 50%, #fbfbfb 50%);
}
.z--1 {
  z-index: -1;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-10 {
  z-index: 10;
}
.z-11 {
  z-index: 11;
}
.z-20 {
  z-index: 20;
}
.z-21 {
  z-index: 21;
}
.z-99999 {
  z-index: 99999;
}
.media-cover-all img,
.media-cover-all picture,
.media-cover-all video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.media-contain-all img,
.media-contain-all video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.media-scale-down-all img,
.media-scale-down-all video {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.media-cover-x img,
.media-cover-x video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.media-contain-x img,
.media-contain-x video {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.media-scale-down-x img,
.media-scale-down-x video {
  width: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.media-cover-y img,
.media-cover-y video {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.media-contain-y img,
.media-contain-y video {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.media-scale-down-y img,
.media-scale-down-y video {
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.skeleton-loader {
  background: linear-gradient(110deg, #d5d8da 8%, #eaebed 18%, #d5d8da 33%);
  background-size: 400% 100%;
  -webkit-animation: 3s shine linear infinite;
  animation: 3s shine linear infinite;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(1rem);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(1rem);
  }
}
.btn {
  position: relative;
  z-index: 10;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125;
  text-transform: uppercase;
  transition: 0.15s ease;
  font-family: var(--bs-title-font-family);
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* šipka u buttonu
.btn svg {
  width: auto;
  height: 1.5rem;
  overflow: visible;
  opacity: 0.25;
} */
.btn-outline-primary {
  color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: none;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.btn-check:active + .btn-outline-primary:focus,
.btn-check:checked + .btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: rgb(230, 0, 51);
  background-color: transparent;
}
.btn-outline-primary svg {
  opacity: 0.15;
}
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
}
.btn-outline-primary:active svg,
.btn-outline-primary:focus svg,
.btn-outline-primary:hover svg {
  opacity: 0.25;
}
.btn-outline-primary:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.2) !important;
}
.btn-primary {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--bs-gray-darker);
  border-color: var(--bs-gray-darker);
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: var(--bs-gray-darker);
  border-color: var(--bs-gray-darker);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--bs-gray-darker);
  border-color: var(--bs-gray-darker);
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000;
  background-color: #ff253c;
  border-color: #ff253c;
}
.btn-primary:active,
.btn-primary:focus {
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
}
.btn-primary:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.2) !important;
}
/* .btn-outline-secondary {
  color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
  box-shadow: none;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
} */
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(48, 60, 73, 0.5);
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(48, 60, 73, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: var(--bs-gray-dark);
  background-color: transparent;
}
.btn-outline-secondary svg {
  display: none;
}
.btn-outline-secondary:active,
.btn-outline-secondary:focus,
.btn-outline-secondary:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-outline-secondary:active svg,
.btn-outline-secondary:focus svg,
.btn-outline-secondary:hover svg {
  opacity: 0.25;
}
.btn-outline-secondary:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-secondary {
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
}

.btn-secondary.white {
  background-color: var(--bs-white);
  color: var(--bs-gray-darker);
  border-color: var(--bs-white);
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-secondary:hover svg, .btn-secondary:hover svg path {fill: var(--bs-white); color: var(--bs-white)}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(79, 89, 100, 0.5);
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(79, 89, 100, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #4e6277;
  border-color: #4e6277;
}
.btn-secondary:active,
.btn-secondary:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-secondary:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-success {
  color: #17d700;
  border-color: #17d700;
  box-shadow: none;
}
.btn-outline-success:hover {
  color: #000;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(23, 215, 0, 0.5);
}
.btn-check:active + .btn-outline-success,
.btn-check:checked + .btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-success:focus,
.btn-check:checked + .btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(23, 215, 0, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #17d700;
  background-color: transparent;
}
.btn-outline-success svg {
  opacity: 0.15;
}
.btn-outline-success:active,
.btn-outline-success:focus,
.btn-outline-success:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-outline-success:active svg,
.btn-outline-success:focus svg,
.btn-outline-success:hover svg {
  opacity: 0.25;
}
.btn-outline-success:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-success {
  color: #000;
  background-color: #17d700;
  border-color: #17d700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(23, 215, 0, 0.15) !important;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-success,
.btn-success:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(20, 183, 0, 0.5);
}
.btn-check:active + .btn-success,
.btn-check:checked + .btn-success,
.btn-success.active,
.btn-success:active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-success:focus,
.btn-check:checked + .btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(20, 183, 0, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000;
  background-color: #3cff25;
  border-color: #3cff25;
}
.btn-success:active,
.btn-success:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-success:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-info {
  color: #00d7c0;
  border-color: #00d7c0;
  box-shadow: none;
}
.btn-outline-info:hover {
  color: #000;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 215, 192, 0.5);
}
.btn-check:active + .btn-outline-info,
.btn-check:checked + .btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-info:focus,
.btn-check:checked + .btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(0, 215, 192, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #00d7c0;
  background-color: transparent;
}
.btn-outline-info svg {
  opacity: 0.15;
}
.btn-outline-info:active,
.btn-outline-info:focus,
.btn-outline-info:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-outline-info:active svg,
.btn-outline-info:focus svg,
.btn-outline-info:hover svg {
  opacity: 0.25;
}
.btn-outline-info:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-info {
  color: #000;
  background-color: #00d7c0;
  border-color: #00d7c0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(0, 215, 192, 0.15) !important;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 183, 163, 0.5);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-info:focus,
.btn-check:checked + .btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(0, 183, 163, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000;
  background-color: #25ffe8;
  border-color: #25ffe8;
}
.btn-info:active,
.btn-info:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-info:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
  box-shadow: none;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:active + .btn-outline-warning,
.btn-check:checked + .btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-warning:focus,
.btn-check:checked + .btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning svg {
  opacity: 0.15;
}
.btn-outline-warning:active,
.btn-outline-warning:focus,
.btn-outline-warning:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-outline-warning:active svg,
.btn-outline-warning:focus svg,
.btn-outline-warning:hover svg {
  opacity: 0.25;
}
.btn-outline-warning:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(255, 193, 7, 0.15) !important;
}
.btn-warning:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:active + .btn-warning,
.btn-check:checked + .btn-warning,
.btn-warning.active,
.btn-warning:active,
.show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-warning:focus,
.btn-check:checked + .btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000;
  background-color: #ffd454;
  border-color: #ffd454;
}
.btn-warning:active,
.btn-warning:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-warning:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-danger {
  color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: none;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-check:active + .btn-outline-danger,
.btn-check:checked + .btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-danger:focus,
.btn-check:checked + .btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(215, 0, 23, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: rgb(230, 0, 51);
  background-color: transparent;
}
.btn-outline-danger svg {
  opacity: 0.15;
}
.btn-outline-danger:active,
.btn-outline-danger:focus,
.btn-outline-danger:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-outline-danger:active svg,
.btn-outline-danger:focus svg,
.btn-outline-danger:hover svg {
  opacity: 0.25;
}
.btn-outline-danger:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-danger {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-check:active + .btn-danger,
.btn-check:checked + .btn-danger,
.btn-danger.active,
.btn-danger:active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-danger:focus,
.btn-check:checked + .btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(221, 38, 58, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000;
  background-color: #ff253c;
  border-color: #ff253c;
}
.btn-danger:active,
.btn-danger:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-danger:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-light {
  color: #fbfbfb;
  border-color: #fbfbfb;
  box-shadow: none;
}
.btn-outline-light:hover {
  color: #000;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(251, 251, 251, 0.5);
}
.btn-check:active + .btn-outline-light,
.btn-check:checked + .btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
  color: #000;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-light:focus,
.btn-check:checked + .btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(251, 251, 251, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #fbfbfb;
  background-color: transparent;
}
.btn-outline-light svg {
  opacity: 0.15;
}
.btn-outline-light:active,
.btn-outline-light:focus,
.btn-outline-light:hover {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
  box-shadow: 0 4px 4px rgba(251, 251, 251, 0.15) !important;
}
.btn-outline-light:active svg,
.btn-outline-light:focus svg,
.btn-outline-light:hover svg {
  opacity: 0.25;
}
.btn-outline-light:hover {
  box-shadow: 0 6px 1rem rgba(251, 251, 251, 0.2) !important;
}
.btn-light {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(251, 251, 251, 0.15) !important;
}
.btn-light:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-light,
.btn-light:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(213, 213, 213, 0.5);
}
.btn-check:active + .btn-light,
.btn-check:checked + .btn-light,
.btn-light.active,
.btn-light:active,
.show > .btn-light.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(213, 213, 213, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}
.btn-light:active,
.btn-light:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-light:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.btn-outline-dark {
  color: #0c0b0b;
  border-color: #0c0b0b;
  box-shadow: none;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(12, 11, 11, 0.5);
}
.btn-check:active + .btn-outline-dark,
.btn-check:checked + .btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-outline-dark:focus,
.btn-check:checked + .btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(12, 11, 11, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #0c0b0b;
  background-color: transparent;
}
.btn-outline-dark svg {
  opacity: 0.15;
}
.btn-outline-dark:active,
.btn-outline-dark:focus,
.btn-outline-dark:hover {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
  box-shadow: 0 4px 4px rgba(12, 11, 11, 0.15) !important;
}
.btn-outline-dark:active svg,
.btn-outline-dark:focus svg,
.btn-outline-dark:hover svg {
  opacity: 0.25;
}
.btn-outline-dark:hover {
  box-shadow: 0 6px 1rem rgba(12, 11, 11, 0.2) !important;
}
.btn-dark {
  color: #fff;
  background-color: #0c0b0b;
  border-color: #0c0b0b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 4px 4px rgba(12, 11, 11, 0.15) !important;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(48, 48, 48, 0.5);
}
.btn-check:active + .btn-dark,
.btn-check:checked + .btn-dark,
.btn-dark.active,
.btn-dark:active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(230, 0, 51);
  border-color: rgb(230, 0, 51);
}
.btn-check:active + .btn-dark:focus,
.btn-check:checked + .btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125),
    0 0 0 0.25rem rgba(48, 48, 48, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343030;
  border-color: #343030;
}
.btn-dark:active,
.btn-dark:focus {
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
}
.btn-dark:hover {
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
/* btn v boxu kartičky, např. u novinky */
.btn-article {
  width: 100%;
  background-color: var(--bs-gray-dark);
  color: var(--bs-white);
  padding: 0.625rem 1.25rem; 
  line-height: 1em;
}
/*--*/


.view-more {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bs-gray-dark);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .view-more {
    transition: none;
  }
}
.view-more:active,
.view-more:focus,
.view-more:hover {
  color: rgb(230, 0, 51);
}
.view-more svg {
  width: auto;
  height: 1rem;
  overflow: visible;
  color: rgb(230, 0, 51);
}
.content-block .title-block:not(:last-of-type) > p {
  margin-bottom: 2rem;
}

/*----- MENU ------*/
.menu-wrapper .menu {
  display: flex;
  flex-grow: 1;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  justify-content: flex-end;
  margin: 0;
}
.menu-wrapper .menu .top-level > .menu-link {
  line-height: 1.5;
  outline: 0;
}

.menu-wrapper .menu .top-level:not(.akce, .kontakt) > .menu-link::before {
  position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 0.25rem;
    content: "";
    background-color: var(--bs-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease;
}


@media (min-width: 1350px) {
  .menu-wrapper .menu .top-level > .menu-link .menu-submenu-icon {
    line-height: 0;
    pointer-events: none;
  }
}

.menu-wrapper .menu .top-level > .menu-link:active,
.menu-wrapper .menu .top-level > .menu-link:focus {
  color: var(--bs-gray-dark);
}
.menu-wrapper .menu .top-level > .menu-link:hover::before,
.menu-wrapper .menu .top-level > .menu-link:active::before,
.menu-wrapper .menu .top-level > .menu-link:focus::before {
  transform: scaleX(1);
}
.menu-wrapper .menu .top-level:focus-within > .menu-link,
.menu-wrapper .menu .top-level:hover > .menu-link {
  color: var(--bs-gray-dark);
}

.menu-wrapper .menu .top-level.current-menu-ancestor > .menu-link,
.menu-wrapper .menu .top-level.current-menu-item > .menu-link,
.menu-wrapper .menu .top-level.current-menu-parent > .menu-link {
  font-weight: 700;
  color: var(--bs-gray-dark);
}

.menu-wrapper .menu .menu-item > .menu-link {
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-gray-dark);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .menu-wrapper .menu .menu-item > .menu-link {
    transition: none;
  }
}
.menu-wrapper .menu .menu-item.current-menu-ancestor > .menu-link,
.menu-wrapper .menu .menu-item.current-menu-item > .menu-link,
.menu-wrapper .menu .menu-item.current-menu-parent > .menu-link,
.menu-wrapper .menu .menu-item:active > .menu-link,
.menu-wrapper .menu .menu-item:focus > .menu-link,
.menu-wrapper .menu .menu-item:hover > .menu-link {
  color: var(--bs-gray-dark);
}
.menu-wrapper .menu .menu-item .menu-dropdown > .sub-menu {
  padding-left: 0;
  list-style: none;
}
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item
  > .menu-link {
  display: block;
  padding: 0.75rem 3rem 0.75rem 1.5rem;
  font-size: 0.875rem;
  background-color: #fff;
  outline: 0;
  transform: translateZ(0) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item
  > .menu-link:active,
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item
  > .menu-link:focus,
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item
  > .menu-link:hover {
  color: rgb(230, 0, 51);
  background-color: #fbfbfb;
}
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item.current-menu-ancestor
  > .menu-link,
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item.current-menu-item
  > .menu-link,
.menu-wrapper
  .menu
  .menu-item
  .menu-dropdown
  > .sub-menu
  > .menu-item.current-menu-parent
  > .menu-link {
  color: rgb(230, 0, 51);
  background-color: #fbfbfb;
}


@media (min-width: 1350px) {
  .menu-wrapper .menu .menu-item .menu-dropdown:not([data-popper-placement]) {
    display: none;
  }
  .menu-wrapper .menu .menu-item .menu-dropdown[data-show] {
    pointer-events: all;
  }
  .menu-wrapper .menu .menu-item .menu-dropdown[data-show] > .sub-menu {
    opacity: 1;
  }
  .menu-wrapper .menu .menu-item .menu-dropdown:not([data-show]) {
    pointer-events: none;
  }
  .menu-wrapper .menu .menu-item .menu-dropdown:not([data-show]) > .sub-menu {
    opacity: 0;
    transform: perspective(64rem) translateY(0.25rem) rotateY(25deg);
  }
  .menu-wrapper .menu .menu-item .menu-dropdown > .sub-menu {
    overflow: hidden;
    background-color: #fff;
    transform-origin: top left;
    border-radius: 0.25rem;
    box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.12) !important;
    transition: 0.15s ease;
  }

  .menu-wrapper .menu .menu-item .menu-dropdown > .sub-menu > .menu-item > .menu-link:hover {
    background: var(--bs-gray-300);
  }

  .menu-wrapper .menu .menu-item .menu-dropdown > .sub-menu > .menu-item > .menu-link {
    width: 100% !important;
  }
}
@media (min-width: 1350px) and (prefers-reduced-motion: reduce) {
  .menu-wrapper .menu .menu-item .menu-dropdown > .sub-menu {
    transition: none;
  }
}

@media (max-width: 1599.98px) {
  .menu-wrapper:not([data-popper-placement]) {
    display: none;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper {
    z-index: 99999;
    width: 100%;
    max-width: 1390px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-radius: 0.25rem;
    transition: 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    height: auto !important;;
    overflow-y: scroll;
  }
  .menu-wrapper > ul {
    width: 100%;
  }
  .menu-wrapper > .menu-mobile-buttons,
  header .menu-item .menu-dropdown {
    width: 100%;
  }

  .menu-wrapper .menu .top-level:not(.akce, .kontakt) > .menu-link::before {display: none;}
  .menu-wrapper .menu .menu-item.current_page_item {border-left: var(--bs-primary) 2px solid}
  .menu-wrapper .menu .top-level.menu-item.current_page_item > .menu-link {background-color: var(--bs-gray-400)}
}
@media (max-width: 1599.98px) and (prefers-reduced-motion: reduce) {
  .menu-wrapper {
    transition: none;
  }
}
@media (max-width: 1599.98px) and (hover: hover) and (hover: hover) {
  html body header .menu-wrapper {
    scrollbar-color: #d0d0d0 #fbfbfb;
    scrollbar-width: thin;
    transform: translate3d(0px, 145px, 0px) !important;
  }
  .menu-wrapper::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
  }
  .menu-wrapper::-webkit-scrollbar-thumb {
    background: #d0d0d0;
  }
  .menu-wrapper::-webkit-scrollbar-track {
    background: #fbfbfb;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper:not([data-show]) {
    top: 0.5rem !important;
    pointer-events: none;
    opacity: 0;
  }

  header .menu-wrapper .socialicons {
    display: flex;
    justify-content: center;
    background: var(--bs-gray-200);
    border-top: var(--bs-gray-400) 1px solid;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper .menu {
    flex-direction: column;
  }
  .menu-wrapper .menu .top-level > .menu-link {
    padding: 0 1rem;
    line-height: 3.5;
    background-color: #fbfbfb;
  }
  .menu-wrapper .menu .top-level > .menu-link .menu-submenu-icon {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: flex-end;
  }
  .menu-wrapper .menu .top-level > .menu-link .menu-submenu-icon svg {
    transition: 0.3s ease;
  }
}
@media (max-width: 1599.98px) and (prefers-reduced-motion: reduce) {
  .menu-wrapper .menu .top-level > .menu-link .menu-submenu-icon svg {
    transition: none;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper
    .menu
    .top-level
    > .menu-link
    .menu-submenu-icon:not(.collapsed)
    svg {
    transform: rotate(-180deg);
  }
  header .search-form {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper .menu-mobile-buttons {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 21;
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
  }
  .menu-wrapper .menu-mobile-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 50%;
    flex-grow: 1;
    gap: 0.5rem;
    height: 3.125rem;
    min-height: 3rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: var(--bs-gray-dark);
    text-align: center;
    background-color: #ececec;
    transition: 0.15s ease;
  }
}
@media (max-width: 1599.98px) and (prefers-reduced-motion: reduce) {
  .menu-wrapper .menu-mobile-buttons a {
    transition: none;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper .menu-mobile-buttons a:active,
  .menu-wrapper .menu-mobile-buttons a:focus,
  .menu-wrapper .menu-mobile-buttons a:hover {
    color: rgb(230, 0, 51);
    background-color: #dedede;
  }
}
@media (max-width: 1599.98px) {
  .menu-wrapper .menu-mobile-buttons a svg {
    width: 1rem;
    height: 1rem;
    opacity: 0.75;
  }
}
.menu-mobile-toggle {
  z-index: 999999;
  color: var(--bs-gray-dark);
  cursor: pointer;
  font-size: 32px;
}
.menu-mobile-toggle svg {
  width: 32px;
  height: 32px;
}
@media (min-width: 1600px) {
  .menu-mobile-toggle {
    display: none;
  }
  html body header .menu-item .menu-dropdown {
    position: absolute !important
  }
}
.menu-mobile-toggle[data-menu-open] svg line:nth-of-type(1) {
  opacity: 0;
}
.menu-mobile-toggle[data-menu-open] svg line:nth-of-type(2) {
  transform: rotate(45deg) translateY(25%);
}
.menu-mobile-toggle[data-menu-open] svg line:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-25%);
}
.menu-mobile-toggle svg line {
  transform-origin: center;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .menu-mobile-toggle svg line {
    transition: none;
  }
}
.menu-mobile-toggle:active,
.menu-mobile-toggle:focus,
.menu-mobile-toggle:hover {
  color: rgb(230, 0, 51);
}
.map .branch-item {
  position: relative;
  color: #fff;
  flex-wrap: wrap !important;
}
.map .branch-item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 0.125rem;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .map .branch-item::before {
    transition: none;
  }
}
/* .map .branch-item.active::before,
.map .branch-item:active::before,
.map .branch-item:focus::before,
.map .branch-item:hover::before {
  transform: scaleX(1);
} */
.map .branch-item svg {
  width: 1.75rem;
  height: auto;
  stroke-width: 1.5;
}
.map .branch-item .branch-department-icon {
  position: relative;
  z-index: 1;
}
/* .map .branch-item .branch-department-icon::before {
  position: absolute;
  bottom: 0.125rem;
  left: 10%;
  z-index: -1;
  width: 80%;
  height: 0.25rem;
  content: "";
  background-color: rgb(230, 0, 51);
  border-radius: 0.25rem;
}
.map .branch-item .branch-department-icon.repair::before {
  background-color: #17d700;
}
.map .branch-item .branch-department-icon.sale::before {
  background-color: rgb(230, 0, 51);
}
.map .branch-item .branch-department-icon.manufacture::before {
  background-color: #00d7c0;
} */
.map .branch-pin {
  position: absolute;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  transform: translate(-50%, -15%);
  transition: 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .map .branch-pin {
    transition: none;
  }
}
.map .branch-pin svg {
  position: absolute;
  left: 50%;
  width: auto;
  height: 2rem;
  color: rgb(230, 0, 51);
  transition: inherit;
  transform: translate(-50%, -85%);
  -moz-transform: translate(-50%, -155%);
  filter: drop-shadow(0 4px 4px rgba(215, 0, 23, 0.2)) !important;
}
.map .branch-pin .branch-pin-title {
  opacity: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bs-primary);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  border: 1px solid #d5d8da;
  transition: inherit;
  box-shadow: 0 4px 4px rgba(4215, 0, 23, 0.15) !important;
  border-radius: 0.25rem;
  transition: opacity 0.3s;
  pointer-events: none;
}

.map .branch-pin.is-hovered .branch-pin-title, .map .branch-pin:hover .branch-pin-title {
  opacity: 1;
}

@media (max-width: 575.98px) {
  .map .branch-pin .branch-pin-title {
    display: none;
  }
}
.map .tippy-box {
  max-width: 100% !important;
}
.map .quick-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.map .quick-contacts .quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.map .quick-contacts .quick-contact a:hover svg {
  color: #fdd8db;
}
.map .quick-contacts .quick-contact a svg {
  transition: 0.15s ease;
  width: 0.625rem;
  height: auto;
  margin-right: 0.25rem;
  color: #d5d8da;
}
@media (prefers-reduced-motion: reduce) {
  .map .quick-contacts .quick-contact a svg {
    transition: none;
  }
}

/*------- Mapa - branch items - redesign do tabulky */
.branches-table-wrap {
  width: unset;
  flex: 1;
}

.branches-table .table-header {display: none !important;}

.branches-table .table-header,
.branches-table > .branch-item {
  border-bottom: var(--bs-gray-600) 1px solid;
}

.branches-table > .branch-item  {
  padding: 0.5rem 0.625rem;
}

.branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:not(:first-of-type) {
  display: inline-flex;
}

.branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:not(:first-of-type)::before {
  position: relative;
  display: inline-flex;
  margin-right: 0.5rem;
  font-weight: 300;
}
.branches-table .table-header span:not(:first-of-type) {
  margin-right: 0rem;
}
.branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:nth-of-type(2)::before {
  content: 'Servis:';
}
.branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:nth-of-type(3)::before {
  content: 'Kancelář:';
}

.branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:first-of-type {
  width: 100%;
  padding-bottom: 0.25rem;
}
.branches-table > .branch-item .branch-department-icon, .branches-table .table-header span.thbranches  {
  width: unset;
  min-width: 100px;
}

.branches-table > .branch-item .branch-department-icon::before  {
  display: none;
}

.branches-table > .branch-item .branch-department-icon svg {
  width: 20px;
  height: 20px;
}

.branches-table > .branch-item .branch-department-icon.manufacture-missing svg, .branches-table > .branch-item .branch-department-icon.repair-missing svg, .branches-table > .branch-item .branch-department-icon.sale-missing svg   {
  fill: var(--bs-gray-600);
}

.branches-table > .branch-item .branch-department-icon.manufacture svg, .branches-table > .branch-item .branch-department-icon.repair svg  {
  fill: var(--bs-primary);
}
.branches-table > .branch-item .branch-department-icon.sale svg {
  color: var(--bs-primary);
  fill: none;
}

/* hover */
.map .branches-table .branch-item:active::before, .map .branches-table .branch-item:focus::before, .map .branches-table .branch-item:hover::before {
  display: none;
}

.map .branches-table .branch-item.active, .map .branches-table .branch-item:focus, .map .branches-table .branch-item:hover {
  background-color: var(--bs-white);
}


.map .branches-table .branch-item.active > span, .map .branches-table .branch-item:focus > span, .map .branches-table .branch-item:hover > span {
  background-color: var(--bs-white);
  color: var(--bs-primary);
  font-weight: 700;
}

@media only screen and (min-width: 576px) {
  .branches-table .table-header {display: flex !important}
  .map .branch-item {
    flex-wrap: nowrap !important;
  }
  .branches-table .table-header span, .branches-table > .branch-item > span {
    padding: 0.5rem 0.625rem;
  }
  .branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:first-of-type {
    width: unset;
  }
  .branches-table > .branch-item .branch-department-icon, .branches-table .table-header span.thbranches  {
    width: 6.25rem;
  }
  .branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:not(:first-of-type) {
    border-left: var(--bs-gray-600) 1px solid;
  }
  .branches-table > .branch-item  {
    padding: 0rem 0rem;
  }
  .branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:nth-of-type(2)::before,
  .branches-table .table-header span:not(:first-of-type), .branches-table > .branch-item > span:nth-of-type(3)::before  {
    display: none;
  }
}

/*---*/

/* sorting filters - zobrazení na dlaždice a seznam, řazení - nakonec nebude použito, zatím ale ponecháno
.sort-filters-wrap {
  border-bottom: var(--bs-gray-400) 1px solid;
}
.sort-view-filters > div {
  cursor: pointer;
}
.sort-view-filters > div svg {
  fill: var(--bs-gray-dark) !important;
}
.sort-view-filters > div.active {
  background: var(--bs-gray-dark);
  color: var(--bs-white);
}
.sort-view-filters > div.active svg {
  fill: var(--bs-white) !important;
}
.sort-filters-wrap .filter-sort {
  width: 250px;
}

.sort-filters-wrap .filter-sort label {
  font-size: 14px;
  font-family: var(--bs-title-font-family);
  color: var(--bs-gray-darker);
}

.sort-filters-wrap .filter-sort select {
  font-family: var(--bs-body-font-family);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px 8px;
  border: 0px solid #ccc;
  font-size: 1rem;
  color:var(--bs-gray-darker);
  outline: none;
  cursor: pointer;
}
  */

.flex-default-responsive {
  flex-direction: row !important;
}
@media (max-width: 575.98px), (min-width: 992px) and (max-width: 1399.98px) {
  .flex-default-responsive {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .used-vehicles.archive .vehicles .vehicle .vehicle-footer {
    width: 100% !important;
  }
} 

.used-vehicles div.vehicles {
  grid-template-columns: repeat(1, 1fr); 
  gap: 20px; 
  align-items: stretch;
  transition: height 0.3s ease;
  height: 100% !important;
}
#section-used-vehicles.detail .used-vehicles div.vehicles {
  gap: 0px; 
  --bs-gutter-y: 1.25rem;
}
@media (prefers-reduced-motion: reduce) {
  .used-vehicles .vehicles {
    transition: none;
  }
}
.vehicles.gap-lg > .vehicle {
  width: 100%;
}

@media (min-width: 992px) {
  .vehicles.gap-lg {
    gap: 20px; /* moderní gap pro flex – Bootstrap 5.2+ */
  }

  .vehicles.gap-lg > .vehicle-item {
    flex: 1 1 calc(50% - 10px); /* dvě vedle sebe */
  }

  .vehicles.gap-lg > .vehicle {
    width: calc(50% - 10px) !important;
  }
}

@media (max-width: 575.98px) {
  .vehicles.gap-lg > .vehicle-item {
    flex: 1 1 100%;
  }
}
.used-vehicles .vehicles .vehicle {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: 0.3s ease;
  position: relative !important;
  left: unset !important;
  top: unset !important;
}

/* dočasné skrytí ceny před */
.prices .price-before {
display: none;
}



@media (prefers-reduced-motion: reduce) {
  .used-vehicles .vehicles .vehicle {
    transition: none;
  }
}
.used-vehicles .vehicles .vehicle:active,
.used-vehicles .vehicles .vehicle:focus,
.used-vehicles .vehicles .vehicle:hover {
  box-shadow: 0 6px 2rem rgba(48, 60, 73, 0.1) !important;
}

/* 2 images */
.used-vehicles .vehicle .vehicle-image-wrapper .vehicle-image {
  width: 50%;
  aspect-ratio: 4 / 3;
  position: relative;
}
.used-vehicles .vehicle .vehicle-image-wrapper .vehicle-image picture {
  width: 100%;
  height: 100%; /* ← důležité pro správné fungování aspect-ratio */
  display: block;
}
.used-vehicles .vehicle .vehicle-image-wrapper .vehicle-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.used-vehicles .vehicles .vehicle img {
  transition: 0.3s ease;
}

/* sale badge */
.sale-badge {
  color: var(--bs-green-dark);
  background: var(--bs-green-light);
  padding: 0.125rem 0.625rem;
  font-family: var(--bs-title-font-family);
  font-size: 14px;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .used-vehicles .vehicles .vehicle img {
    transition: none;
  }
}
.used-vehicles .vehicles .vehicle img:active,
.used-vehicles .vehicles .vehicle img:focus,
.used-vehicles .vehicles .vehicle img:hover {
  transform: scale(1.05);
}
.used-vehicles .vehicles .vehicle .vehicle-content {
  flex: 1;
}
.used-vehicles .vehicles .vehicle .vehicle-content .vehicle-title {
  display: inline;
  transition: 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .used-vehicles .vehicles .vehicle .vehicle-content .vehicle-title {
    transition: none;
  }
}

.used-vehicles .vehicles .vehicle .vehicle-content .vehicle-attributes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .used-vehicles .vehicles .vehicle .vehicle-content .vehicle-attributes,
  .used-vehicles .vehicles .vehicle .vehicle-content .vehicle-attribute {
    justify-content: initial;
    align-items: initial;
  }
}

.vehicle-attributes > * {
  width: calc(50% - 1rem); /* výchozí – stacked */
}

@media (min-width: 576px) {
  .used-vehicles .vehicles .vehicle .vehicle-content .vehicle-attribute {
    width: calc(25% - 2rem); /* výchozí – stacked */
  }
}

@media (min-width: 992px) {
  .used-vehicles .vehicles .vehicle .vehicle-content .vehicle-attribute {
    width: calc(50% - 1rem); /* výchozí – stacked */
  }
}


.flex-start-max-xl {
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .flex-start-max-xl {
    justify-content: initial;
    align-items: initial;
  }
}
.used-vehicles
  .vehicles
  .vehicle
  .vehicle-content
  .vehicle-attributes
  .vehicle-attribute {
  display: flex;
  flex-wrap: wrap;
}
.used-vehicles
  .vehicles
  .vehicle
  .vehicle-content
  .vehicle-attributes
  .vehicle-attribute
  svg {
  width: 1rem;
  height: auto;
}
.used-vehicles .vehicles .vehicle .vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tag {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  overflow: hidden;
  background-color: #fbfbfb;
  border-radius: 0.25rem;
}
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tag svg {
  width: 1.25rem;
  height: auto;
  margin-right: 0.5rem;
  color: rgb(230, 0, 51);
}
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tag[data-hidden] {
  display: none;
}
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tags-more {
  display: inline-flex;
  padding: 0.5rem 1rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #eaebed;
  outline: 0.125rem solid transparent;
  outline-offset: -0.125rem;
  border-radius: 0.25rem;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tags-more {
    transition: none;
  }
}
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tags-more:active,
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tags-more:focus,
.used-vehicles .vehicles .vehicle .vehicle-tags .vehicle-tags-more:hover {
  outline-color: #979da3;
}
.used-vehicles.archive .vehicles {
  min-height: 20rem;
}

@media (min-width: 992px) {
  .vehicles-wrap {padding-left: 0px !important;}
  .used-vehicles.archive .vehicles .vehicle {
    /* flex-direction: row !important; */
    height: 100% !important;
  }
  .used-vehicles.archive .vehicles .vehicle .vehicle-image {
    width: 100%;
  }
  .used-vehicles.archive .vehicles .vehicle .vehicle-footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 25%;
  }
}
.used-vehicles.archive .vehicles .vehicles-empty {
  transition: 0.3s ease;
  grid-column: span 2;
}

.used-vehicles.archive .vehicles .vehicles-empty > svg {
  fill: var(--bs-gray-400);
  margin-bottom: 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .used-vehicles.archive .vehicles .vehicles-empty {
    transition: none;
  }
}
.used-vehicles.archive .vehicles .vehicles-empty[data-hidden] {
  opacity: 0;
  transform: translateY(0.25rem);
  height: 0;
  padding: 0 !important;
  overflow: hidden;
}

/* pagination */
.nav-arrows > div.disabled {opacity: 0.3;}
.bg-hover-primary:not(.disabled):hover, .bg-hover-primary:not(.disabled):focus, .bg-hover-primary:not(.disabled):active {
  background-color: var(--bs-primary) !important;
}
.cursor-pointer:not(.disabled) {cursor: pointer;}

/*--*/

.usp-block.move-up {
  margin-top: -3rem;
}
.usp-block .usps .usp {
  min-height: 6rem;
  padding: 1rem 0rem;
}
@media only screen and (min-width: 786px) {
  .usp-block .usps .usp {
    min-height: 6rem;
    padding-top: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
  }
}

.usp-block .usps .usp svg {
  width: 5rem;
  height: auto;
}

.usp-block .usps .usp svg {
  width: 5rem;
  height: auto;
}

/* features block */
.feature-item svg {
  width: 28px;
}
.form-fields {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
.field:not([data-type="checkbox"]) {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  outline: 0;
  padding: 0.5rem 1rem;
  background-color: var(--bs-white);
}
.field:not([data-type="checkbox"]) input:not([type="hidden"]),
.field:not([data-type="checkbox"]) textarea:not([type="hidden"]) {
  display: block;
  flex-grow: 1;
  width: auto;
  font-weight: 400;
  color: var(--bs-gray-dark);
  border: none;
  outline: 0;
  order: 2;
  margin-top: 0.0625rem;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"]) input:not([type="hidden"]),
  .field:not([data-type="checkbox"]) textarea:not([type="hidden"]) {
    transition: none;
  }
}
.field:not([data-type="checkbox"]) input:not([type="hidden"]):active,
.field:not([data-type="checkbox"]) input:not([type="hidden"]):focus,
.field:not([data-type="checkbox"]) textarea:not([type="hidden"]):active,
.field:not([data-type="checkbox"]) textarea:not([type="hidden"]):focus {
  border-color: var(--bs-primary);
}
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:-moz-placeholder-shown)
  ~ label,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:-moz-placeholder-shown)
  ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
}
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:-ms-input-placeholder)
  ~ label,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:-ms-input-placeholder)
  ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
}
/* efekt vyjetí labelu na focus */
/* .field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):focus
  ~ label,
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:placeholder-shown)
  ~ label,
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"])[value]
  ~ label,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):focus
  ~ label,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:placeholder-shown)
  ~ label,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"])[value]
  ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
} */
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:-moz-placeholder-shown)
  ~ svg,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:-moz-placeholder-shown)
  ~ svg {
  transform: translateY(-50%) rotate(-180deg);
}
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:-ms-input-placeholder)
  ~ svg,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:-ms-input-placeholder)
  ~ svg {
  transform: translateY(-50%) rotate(-180deg);
}
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):focus
  ~ svg,
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"]):not(:placeholder-shown)
  ~ svg,
.field:not([data-type="checkbox"])
  input:not([type="hidden"]):not([type="file"])[value]
  ~ svg,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):focus
  ~ svg,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"]):not(:placeholder-shown)
  ~ svg,
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"]):not([type="file"])[value]
  ~ svg {
  transform: translateY(-50%) rotate(-180deg);
}
.field:not([data-type="checkbox"]) input:not([type="hidden"])[type="textarea"],
.field:not([data-type="checkbox"])
  textarea:not([type="hidden"])[type="textarea"] {
  min-height: 12rem;
  max-height: 24rem;
}
.field:not([data-type="checkbox"]) input::-moz-placeholder,
.field:not([data-type="checkbox"]) textarea::-moz-placeholder {
  -moz-user-select: none;
  user-select: none;
}
.field:not([data-type="checkbox"]) input:-ms-input-placeholder,
.field:not([data-type="checkbox"]) textarea:-ms-input-placeholder {
  -ms-user-select: none;
  user-select: none;
}
.field:not([data-type="checkbox"]) input::placeholder,
.field:not([data-type="checkbox"]) textarea::placeholder {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.field:not([data-type="checkbox"]).correct input,
.field:not([data-type="checkbox"]).correct textarea {
  border-color: #17d700 !important;
}
.field:not([data-type="checkbox"]).incorrect input,
.field:not([data-type="checkbox"]).incorrect textarea {
  border-color: rgb(230, 0, 51) !important;
}
.field:not([data-type="checkbox"]):not([data-type="textarea"]):not(
    [data-type="file"]
  ) {
  flex-basis: calc(50% - 2.5rem);
}
.field:not([data-type="checkbox"]) label, .field:not([data-type="checkbox"])[data-type="select"] .select-field {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bs-gray-darker);
  pointer-events: none;
  font-family: var(--bs-title-font-family);
  order: 1;
}

.field:not([data-type="checkbox"]).select-field.border-red {
  border-bottom: var(--bs-primary) 0.125rem solid;
}

.field:not([data-type="checkbox"])[data-type="file"] {
  flex-basis: 100%;
  min-height: 3rem;
}

.field:not([data-type="checkbox"])[data-type="file"] * {
  cursor: pointer;
}

.field:not([data-type="checkbox"])[data-type="file"] label {
  order: 1;
}
.field:not([data-type="checkbox"])[data-type="file"].correct
  .file-upload-field {
  border-color: #17d700 !important;
}
.field:not([data-type="checkbox"])[data-type="file"].incorrect
  .file-upload-field {
  border-color: rgb(230, 0, 51) !important;
}
.field:not([data-type="checkbox"])[data-type="file"] .file-upload-field {
  position: relative;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0.5rem 2.75rem 0.5rem 1.25rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom: 0.125rem solid #d5d8da;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  transition: 0.15s ease;
  order: 2;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="file"] .file-upload-field {
    transition: none;
  }
}

.field:not([data-type="checkbox"])[data-type="file"] .file-upload-field > span {
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-gray-dark);
}

/* select field - přesunutí labelu nad pole po kliku */
/* .field:not([data-type="checkbox"])[data-type="file"].file-ready input ~ label,
.field:not([data-type="checkbox"])[data-type="file"]:active input ~ label,
.field:not([data-type="checkbox"])[data-type="file"]:focus input ~ label,
.field:not([data-type="checkbox"])[data-type="file"]:focus-within
  input
  ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
} */

.field:not([data-type="checkbox"])[data-type="file"].file-ready .select-field,
.field:not([data-type="checkbox"])[data-type="file"]:active .select-field,
.field:not([data-type="checkbox"])[data-type="file"]:focus .select-field,
.field:not([data-type="checkbox"])[data-type="file"]:focus-within
  .select-field {
  border-color: var(--bs-gray-dark);
}
.field:not([data-type="checkbox"])[data-type="file"] label,
.field:not([data-type="checkbox"])[data-type="file"] svg {
  z-index: 12;
}
.field:not([data-type="checkbox"])[data-type="file"] input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.field:not([data-type="checkbox"])[data-type="file"] svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: auto;
  margin-right: 1.25rem;
  color: var(--bs-gray-dark);
  pointer-events: none;
  transform: translateY(-50%);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="file"] svg {
    transition: none;
  }
}
.field:not([data-type="checkbox"])[data-type="select"] {
  min-height: 3rem;
  cursor: pointer;
}
.field:not([data-type="checkbox"])[data-type="select"].correct .select-field {
  border-color: #17d700 !important;
}
.field:not([data-type="checkbox"])[data-type="select"].incorrect .select-field {
  border-color: rgb(230, 0, 51) !important;
}
.field:not([data-type="checkbox"])[data-type="select"] .select-field {
  position: relative;
  top: 0;
  left: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.25rem;
  width: 100%;
  height: 1.5rem;
  pointer-events: none;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="select"] .select-field {
    transition: none;
  }
}
.field:not([data-type="checkbox"])[data-type="select"] .select-field > span {
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-gray-dark);
}
.field:not([data-type="checkbox"])[data-type="select"]:focus .select-field,
.field:not([data-type="checkbox"])[data-type="select"]:focus-within
  .select-field {
  border-color: var(--bs-gray-dark);
}
.field:not([data-type="checkbox"])[data-type="select"] label,
.field:not([data-type="checkbox"])[data-type="select"] svg {
  z-index: 12;
}
/* chevron down */
.field.i-chevron:not([data-type="checkbox"])[data-type="select"] i[data-feather="chevron-down"] {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: var(--bs-gray-400) transparent transparent transparent;
  transform: rotate(0deg) translateY(-50%);
  right: 1rem;
  top: 50%;
}

.field.i-chevron:not([data-type="checkbox"])[data-type="select"][data-select-open] i[data-feather="chevron-down"],
.field.i-chevron:not([data-type="checkbox"])[data-type="select"]:hover i[data-feather="chevron-down"] {
  border-color: var(--bs-gray-500) transparent transparent transparent;
}


/* efekt posunutí labelu nad field při focusu */
/* .field:not([data-type="checkbox"])[data-type="select"] input[value] ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
} 
.field:not([data-type="checkbox"])[data-type="select"][data-select-open]
  input
  ~ label {
  top: -1.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-dark);
}
.field:not([data-type="checkbox"])[data-type="select"][data-select-open]
  input
  ~ svg {
  transform: translateY(-50%) rotate(-180deg);
}
*/

.field:not([data-type="checkbox"])[data-type="select"] svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: auto;
  margin-right: 1.25rem;
  color: var(--bs-gray-dark);
  pointer-events: none;
  transform: translateY(-50%);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="select"] svg {
    transition: none;
  }
}
.field:not([data-type="checkbox"])[data-type="select"] .options {
  z-index: 9999;
  width: 100%;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options:not([data-popper-placement]) {
  display: none;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options
  .options-wrapper {
  overflow: hidden;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.2) !important;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="select"]
    .options
    .options-wrapper {
    transition: none;
  }
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options
  .options-wrapper
  .option {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fbfbfb;
  outline: 0;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field:not([data-type="checkbox"])[data-type="select"]
    .options
    .options-wrapper
    .option {
    transition: none;
  }
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options
  .options-wrapper
  .option:focus,
.field:not([data-type="checkbox"])[data-type="select"]
  .options
  .options-wrapper
  .option:hover,
.field:not([data-type="checkbox"])[data-type="select"]
  .options
  .options-wrapper
  .option[data-selected] {
  color: rgb(230, 0, 51);
  background-color: #fff;
}
.field:not([data-type="checkbox"])[data-type="select"] .options[data-show] {
  pointer-events: all;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options[data-show]
  > .options-wrapper {
  opacity: 1;
  transform: none;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options:not([data-show]) {
  pointer-events: none;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options:not([data-show])
  > .options-wrapper {
  opacity: 0;
  transform: translateY(-1rem);
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options[data-popper-placement*="top"] {
  z-index: 12;
}
.field:not([data-type="checkbox"])[data-type="select"]
  .options[data-popper-placement*="top"]
  .options-wrapper {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* zvýrazněný input po výběru v selectu */
/* .field:not([data-type="checkbox"])[data-type="select"].title-select svg {
  width: 1.75rem;
  height: auto;
  stroke-width: 1.25;
}
.field:not([data-type="checkbox"])[data-type="select"].title-select
  .select-field {
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: #fff;
}
.field:not([data-type="checkbox"])[data-type="select"].title-select
  .select-field
  span {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 800;
}

.field:not([data-type="checkbox"])[data-type="select"].title-select
  .select-field
  span:not(:empty)::after {
  color: rgb(230, 0, 51);
  content: ".";
} */

.field:not([data-type="checkbox"]).full-width {
  flex-basis: 100% !important;
}
.field[data-type="checkbox"] {
  position: relative;
  display: flex;
  align-items: center;
}
.field[data-type="checkbox"]:focus .check,
.field[data-type="checkbox"]:hover .check {
  border-color: #979da3;
}
.field[data-type="checkbox"]:focus label,
.field[data-type="checkbox"]:hover label {
  color: var(--bs-gray-dark);
}
.field[data-type="checkbox"] input,
.field[data-type="checkbox"] textarea {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field[data-type="checkbox"] input:checked ~ .check,
.field[data-type="checkbox"] textarea:checked ~ .check {
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}
.field[data-type="checkbox"] input:checked ~ .check svg path,
.field[data-type="checkbox"] textarea:checked ~ .check svg path {
  opacity: 1;
  stroke-dashoffset: 0;
}
.field[data-type="checkbox"] input:checked ~ label,
.field[data-type="checkbox"] textarea:checked ~ label {
  color: var(--bs-gray-dark);
}
.field[data-type="checkbox"] .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0.25rem;
  margin-right: 0.5rem;
  background-color: #fbfbfb;
  border: 0.125rem solid #d5d8da;
  border-radius: 0.25rem;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field[data-type="checkbox"] .check {
    transition: none;
  }
}
.field[data-type="checkbox"] .check svg {
  width: auto;
  height: 0.5rem;
  overflow: visible;
  color: #fff;
  stroke-width: 1.5;
}
.field[data-type="checkbox"] .check svg path {
  transition: 0.3s ease;
  opacity: 0;
  stroke-dasharray: 17;
  stroke-dashoffset: -17;
}
@media (prefers-reduced-motion: reduce) {
  .field[data-type="checkbox"] .check svg path {
    transition: none;
  }
}
.field[data-type="checkbox"] label {
  z-index: 1;
  color: #888;
  pointer-events: none;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .field[data-type="checkbox"] label {
    transition: none;
  }
}
.field[data-type="checkbox"] label a {
  text-decoration: underline;
  pointer-events: all;
}
.field[data-type="checkbox"].incorrect .check {
  border-color: rgb(230, 0, 51) !important;
}



/*--- FORM - FILTERS ---*/
.filters .filter-item .field:not([data-type="checkbox"]) {
  background: var(--bs-white-rgb-opacity1);
  padding: 0;
}

.filters .filter-item .field:not([data-type="checkbox"]) > input { 
  background-color: transparent;
  padding: 0.625rem 2rem 0.625rem 0.875rem;
  border-bottom: var(--bs-white-rgb-opacity5) 0.125rem solid;
  color: var(--bs-white) !important;
}

.filters .filter-item .field-row[data-title="STAV"] .field[data-type="checkbox"]  {
  flex-direction: row;
}

.filters .filter-item .field-row[data-title="STAV"] .field[data-type="checkbox"] svg #checkmark  {
  display: none;
  fill: var(--bs-primary)
}

.filters .filter-item .field-row[data-title="STAV"] .field[data-type="checkbox"].is-checked svg #checkmark  {
  display: block;
}

/* hp - katalog search */
#section-katalog-search form button[type="submit"]{
  width: 100%;
}
.katalog-form__fields .field:not([data-type="checkbox"])[data-type="select"] .select-field {
  height: auto;
}
@media only screen and (min-width: 576px) {
  #section-katalog-search form button[type="submit"]{
    width: unset;
  }
}


/* kategorie */
.filters .filter-item .field[data-type="checkbox"] {
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  border: transparent 0.125rem solid;
  cursor: pointer !important;
  width: calc(50% - 2rem);
}

.filters .filter-item .field[data-type="checkbox"] input {
  cursor: pointer;
}

.filters .filter-item .field[data-type="checkbox"] .check {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.filters .filter-item .field[data-type="checkbox"] label  {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--bs-white);
  cursor: pointer !important;
}


.filters .filter-item .field[data-type="checkbox"] .checkbox-icon {
  height: 30px;
  fill: var(--bs-white);
  opacity: 0.5;
  pointer-events: none;
}

.filters .filter-item .field[data-type="checkbox"].is-checked {
  border: var(--bs-white-rgb-opacity5) 0.125rem solid;
  background: var(--bs-white-rgb-opacity1);
}
.filters .filter-item .field[data-type="checkbox"]:hover {
  border: var(--bs-primary) 0.125rem solid;
}


.filters .filter-item .field[data-type="checkbox"].is-checked .checkbox-icon{
  opacity: 1;
}

/* select fields */

.filters .filter-item .field:not([data-type="checkbox"]) > .select-field {
  border-bottom: var(--bs-white-rgb-opacity5) 0.125rem solid;
  padding: 0.625rem 2rem 0.625rem 0rem;
}

.filters .filter-item .field:is(.transmission-select, .fuel-select)[data-type="select"] { 
  background-color: transparent;
  min-height: unset;
}

.filters .filter-item .field:not([data-type="checkbox"]) > .select-field span {
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bs-white-rgb-opacity5);
}

.filters .filter-item .field:not([data-type="checkbox"])[data-type="select"] svg {
  color: var(--bs-white) !important;
  margin-right: 0rem;
}

.filters .filter-item .field:not([data-type="checkbox"])[data-type="select"] .options .options-wrapper .option:not([data-selected]) {
  color: var(--bs-dark) !important;
}
.filters .filter-item .field:not([data-type="checkbox"])[data-type="select"] .options .options-wrapper .option:hover {
  background: var(--bs-secondary);
}
.filters .filter-item .field:not([data-type="checkbox"])[data-type="select"] .options .options-wrapper .option:hover span {
  color: var(--bs-white);
}

/* labels */

.filters .filter-item .field:not([data-type="checkbox"]) > label{
  position: absolute;
  left: 0.875rem;
  top: 0.75rem;
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bs-white-rgb-opacity5);
}

/* number field - remove default arrows */
/* Chrome, Safari, Edge, Opera */
.filters .filter-item .field:not([data-type="checkbox"]) input[type=number]::-webkit-outer-spin-button,
.filters .filter-item .field:not([data-type="checkbox"]) input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.filters .filter-item .field:not([data-type="checkbox"]) input[type=number] {
  -moz-appearance: textfield;
}

/* input unit */
.filters .filter-item .input-unit {
  position: absolute;
  right: 0.875rem;
  top: 0.75rem;
}

/* focus */
.filters .filter-item .field:not([data-type="checkbox"]) > input:focus,
.filters .filter-item .field:not([data-type="checkbox"]) > input:focus-visible,
.filters .filter-item .field:not([data-type="checkbox"]) > input:hover,
.filters .filter-item .field[data-select-open] > .select-field {
  border-bottom: var(--bs-primary) 0.125rem solid;
}

/* buttons */
.filters .filters-footer {
  display: flex !important;
  padding: 0rem 1.5rem 1.5rem 1.5rem;
  gap: 1rem;
}
.filters .filters-footer .btn {
  border-radius: 0rem;
}

/* .page-id-480 #site-wrapper {
  overflow: hidden;
} */

/* skrytí položek 5.5. */
.filter-item.filter-item-fuel {
  display: none;
}

/*----*/

.validation-output {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 0;
  font-size: 0.75rem;
  color: rgb(230, 0, 51);
  text-align: right;
  pointer-events: none;
  -webkit-animation: 0.15s ease 1 normal forwards fadeInRight;
  animation: 0.15s ease 1 normal forwards fadeInRight;
}
.validation-output[data-fade-out] {
  pointer-events: none;
  -webkit-animation: 0.15s ease 1 normal forwards fadeOutRight;
  animation: 0.15s ease 1 normal forwards fadeOutRight;
}
.bg-light .field[data-type="select"].title-select .select-field {
  background-color: #fbfbfb;
}
.form-loader {
  position: absolute;
  top: -2.5%;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 105%;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-backdrop-filter: blur(0.125rem) saturate(1.6);
  backdrop-filter: blur(0.125rem) saturate(1.6);
  transition: 0.4s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-loader {
    transition: none;
  }
}
.form-loader .form-spinner {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.form-loader .form-spinner svg {
  width: 4rem;
  height: auto;
  stroke: var(--bs-gray-dark);
}
.form-loader .form-spinner circle,
.form-loader .form-spinner svg {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.form-loader .form-check {
  position: absolute;
  z-index: -2;
  pointer-events: none;
  transition: 0.4s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-loader .form-check {
    transition: none;
  }
}
.form-loader .form-check svg {
  width: 4rem;
  height: 4rem;
  stroke: #17d700;
}
.form-loader .form-check polyline {
  opacity: 0;
  transition: opacity 0.15s, stroke-dashoffset 0.4s ease-out;
}
.form-loader .form-x {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}
.form-loader .form-x svg {
  width: 4rem;
  height: 4rem;
  stroke: rgb(230, 0, 51);
}
.form-loader .form-x line {
  opacity: 0;
  transition: opacity 0.15s, stroke-dashoffset 0.4s ease-out;
}
.form-loader.error,
.form-loader.loading,
.form-loader.success {
  pointer-events: all;
  opacity: 1;
}
.form-loader.loading .form-spinner {
  opacity: 1;
}
.form-loader.loading .form-spinner circle,
.form-loader.loading .form-spinner svg {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.form-loader.success .form-spinner {
  opacity: 0;
}
.form-loader.success .form-spinner circle,
.form-loader.success .form-spinner svg {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.form-loader.success .form-check polyline {
  opacity: 1;
  stroke-dashoffset: 0;
}
.form-loader.error .form-spinner {
  opacity: 0;
}
.form-loader.error .form-spinner circle,
.form-loader.error .form-spinner svg {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.form-loader.error .form-x line {
  opacity: 1;
  stroke-dashoffset: 0;
}
.form-spinner svg {
  position: relative;
  transform-origin: center center;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}
.form-spinner circle {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

/* pravděpodobně jen součástí formuláře --> zatím schovávám */
/* .contact-person {
  min-height: 30rem;
}
.contact-person .contact-person-content::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0,
    rgba(46, 46, 46, 0.5) 70%,
    #000 100%
  );
  opacity: 0.5;
}
.contact-person .contact-person-content .contact-person-content-item {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.contact-person .contact-person-content .contact-person-content-item:focus,
.contact-person .contact-person-content .contact-person-content-item:hover {
  color: #fbfbfb;
}
.contact-person .contact-person-content .contact-person-content-item svg {
  width: 1rem;
  height: auto;
  color: #17d700;
} */
.offers {
  row-gap: 2.5rem;
}
@media (min-width: 768px) {
  .offers .offer {
    height: 100%;
  }
}
.offers .offer .offer-image {
  flex-basis: 40%;
}
@media (max-width: 767.98px) {
  .offers .offer .offer-image {
    max-width: initial;
    height: 16rem;
    aspect-ratio: 2/1;
  }
}
.offers .offer .offer-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.offers .offer .offer-content {
  flex-basis: 100%;
}
.offers .offer .offer-popover-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  cursor: pointer;
  background-color: rgb(230, 0, 51);
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .offers .offer .offer-popover-button {
    transition: none;
  }
}
.offers .offer .offer-popover-button:hover:not([aria-expanded="true"]) {
  transform: translateY(-0.0625rem);
}
.offers .offer .offer-popover-button:hover,
.offers .offer .offer-popover-button[aria-expanded="true"] {
  background-color: var(--bs-gray-dark);
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
}
.offers .offer .offer-popover-button[aria-expanded="true"] svg {
  transform: rotate(135deg);
}
.offers .offer .offer-popover-button svg {
  width: 0.75rem;
  height: auto;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .offers .offer .offer-popover-button svg {
    transition: none;
  }
}
.trailer-categories {
  row-gap: 2.5rem;
}
.trailer-categories .trailer-category {
  transition: 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .trailer-categories .trailer-category {
    transition: none;
  }
}
.trailer-categories .trailer-category .trailer-category-image {
  width: 8rem;
  height: 8rem;
}
.trailer-categories .trailer-category .trailer-category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.trailer-categories .trailer-category svg {
  transition: 0.3s ease;
  width: 1.5rem;
  height: auto;
  color: #d5d8da;
}
@media (prefers-reduced-motion: reduce) {
  .trailer-categories .trailer-category svg {
    transition: none;
  }
}
.trailer-categories .trailer-category:focus,
.trailer-categories .trailer-category:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.06) !important;
}
.trailer-categories .trailer-category:focus svg:not(.feather-plus),
.trailer-categories .trailer-category:hover svg:not(.feather-plus) {
  color: rgb(230, 0, 51);
}
.trailer-categories .trailer-category.subcategory .trailer-category-image {
  width: 10rem;
  height: 10rem;
}
.trailer-categories .trailer-category.subcategory .trailer-category-image img {
  -o-object-fit: cover;
  object-fit: cover;
}
.trailer-categories .trailer-category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  background-color: rgb(230, 0, 51);
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .trailer-categories .trailer-category-button {
    transition: none;
  }
}
.trailer-categories .trailer-category-button:hover:not([aria-expanded="true"]) {
  transform: translateY(-0.0625rem);
}
.trailer-categories .trailer-category-button:hover {
  background-color: var(--bs-gray-dark);
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
}
.trailer-categories .trailer-category-button svg {
  width: 0.75rem;
  height: auto;
  color: #fff;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .trailer-categories .trailer-category-button svg {
    transition: none;
  }
}
.trailers {
  row-gap: 2.5rem;
}
.trailers .trailer {
  transition: 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .trailers .trailer {
    transition: none;
  }
}
.trailers .trailer .trailer-image {
  width: 10rem;
  height: 10rem;
}
.trailers .trailer .trailer-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.trailers .trailer:focus,
.trailers .trailer:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.06) !important;
}
.trailers .trailer:focus svg:not(.feather-plus),
.trailers .trailer:hover svg:not(.feather-plus) {
  color: rgb(230, 0, 51);
}
@media (max-width: 767.98px) {
  .trailers .trailer .trailer-image {
    width: 100%;
    height: 16rem;
  }
  .trailer-categories .trailer-category .trailer-category-image,
  .trailer-categories .trailer-category.subcategory .trailer-category-image {
    width: 100% !important;
    height: 16rem !important;
  }
}
[data-trailer-categories][data-hidden],
[data-trailer-column][data-hidden],
[data-trailers-heading-back][data-hidden],
[data-trailers-heading-subtitle][data-hidden] {
  display: none !important;
}
[data-trailer-categories],
[data-trailer-column] {
  opacity: 0;
  -webkit-animation: 0.3s ease 1 forwards normal fadeInLeft;
  animation: 0.3s ease 1 forwards normal fadeInLeft;
}
[data-trailers-heading-back],
[data-trailers-heading-subtitle] {
  opacity: 0;
  -webkit-animation: 0.15s ease 0.15s 1 forwards normal fadeInLeft;
  animation: 0.15s ease 0.15s 1 forwards normal fadeInLeft;
}
[data-trailers-heading-back][data-hidden],
[data-trailers-heading-subtitle][data-hidden] {
  display: none !important;
}
[data-trailers-heading-title] {
  opacity: 0;
  transform: translateX(-1rem);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  [data-trailers-heading-title] {
    transition: none;
  }
}
[data-trailers-heading-title][data-fade] {
  opacity: 1;
  transform: translateX(0);
}
[data-is-skeleton-loading] {
  pointer-events: none;
}
[data-is-skeleton-loading] [data-trailer-description],
[data-is-skeleton-loading] [data-trailer-image],
[data-is-skeleton-loading] [data-trailer-title] {
  background: #eaebed;
  background: linear-gradient(110deg, #eaebed 8%, #fbfbfb 18%, #eaebed 33%);
  background-size: 400% 100%;
  -webkit-animation: 3s shine linear infinite;
  animation: 3s shine linear infinite;
}
[data-is-skeleton-loading] [data-trailer-image] {
  width: 10rem !important;
}
@media (max-width: 767.98px) {
  [data-is-skeleton-loading] [data-trailer-image] {
    width: 100% !important;
  }
}
[data-is-skeleton-loading] [data-trailer-image] img {
  visibility: hidden;
}
[data-is-skeleton-loading] [data-trailer-title] {
  width: 50%;
  height: 2rem;
  margin-bottom: 0.5rem !important;
  border-radius: 0.25rem;
}
[data-is-skeleton-loading] [data-trailer-description] {
  width: 75%;
  height: 3rem;
  border-radius: 0.25rem;
}
@-webkit-keyframes shine {
  to {
    background-position-x: -400%;
  }
}
@keyframes shine {
  to {
    background-position-x: -400%;
  }
}
.breadcrumb {
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: var(--bs-title-font-family);  
}

.breadcrumb > span > span {
  flex-wrap: wrap;
}
.breadcrumb a,
.breadcrumb span {
  display: flex;
  align-items: center;
  color: var(--bs-gray-darker);
}
.breadcrumb a {
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .breadcrumb a {
    transition: none;
  }
}
.breadcrumb a:hover {
  color: var(--bs-gray-dark);
}
.breadcrumb a::after {
  content: "/";
  position: relative;
  display: inline-block;
  width: 0.25rem;
  height: 100%;
  margin: 0 0.5rem;
  pointer-events: none;
}
.breadcrumb .breadcrumb_last {
  font-weight: 500;
}


@media (max-width: 575.98px) {
  .breadcrumb a,
  .breadcrumb span {
    font-size: 0.875rem;
  }
}
.gallery-wrapper .gallery {
  height: 100%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.gallery-wrapper .gallery .swiper-wrapper {
  align-items: stretch;
  height: 100%;
}
.gallery-wrapper .gallery .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  max-height: min(48rem, 70vh);
}
.gallery-wrapper .gallery .swiper-wrapper .swiper-slide .gallery-image,
.gallery-wrapper .gallery .swiper-wrapper .swiper-slide picture {
  width: 100%;
}
@media (max-width: 767.98px) {
  .gallery-wrapper .gallery .swiper-wrapper .swiper-slide img {
    height: 32rem;
  }
}
@media (max-width: 575.98px) {
  .gallery-wrapper .gallery .swiper-wrapper .swiper-slide img {
    height: 24rem;
  }
}
.gallery-wrapper .gallery-thumbnails {
  padding-bottom: 1rem;
  overflow-x: hidden;
}
.gallery-wrapper .gallery-thumbnails .swiper-slide {
  cursor: pointer;
}
.gallery-wrapper .gallery-thumbnails .swiper-slide::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1875rem;
  content: "";
  background-color: rgb(230, 0, 51);
  opacity: 0;
  transform-origin: left;
  box-shadow: 0 4px 4px rgba(215, 0, 23, 0.15) !important;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-wrapper .gallery-thumbnails .swiper-slide::after {
    transition: none;
  }
}
.gallery-wrapper
  .gallery-thumbnails
  .swiper-slide.swiper-slide-thumb-active::after {
  opacity: 1;
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 3rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  backdrop-filter: blur(8px) saturate(1.4);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-wrapper .gallery-thumbnails .swiper-button-next,
  .gallery-wrapper .gallery-thumbnails .swiper-button-prev {
    transition: none;
  }
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next:focus,
.gallery-wrapper .gallery-thumbnails .swiper-button-next:hover,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev:focus,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.82);
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next:focus svg,
.gallery-wrapper .gallery-thumbnails .swiper-button-next:hover svg,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev:focus svg,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev:hover svg {
  color: rgb(230, 0, 51);
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next svg,
.gallery-wrapper .gallery-thumbnails .swiper-button-prev svg {
  width: 2rem;
  height: auto;
  color: var(--bs-gray-dark);
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next.swiper-button-disabled,
.gallery-wrapper
  .gallery-thumbnails
  .swiper-button-prev.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.gallery-wrapper .gallery-thumbnails .swiper-button-prev {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  left: 0;
}
.gallery-wrapper
  .gallery-thumbnails
  .swiper-button-prev.swiper-button-disabled {
  transform: translateY(-50%) translateX(-50%);
}
.gallery-wrapper .gallery-thumbnails .swiper-button-next {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  right: 0;
}
.gallery-wrapper
  .gallery-thumbnails
  .swiper-button-next.swiper-button-disabled {
  transform: translateY(-50%) translateX(50%);
}
.gallery-wrapper .fake-border-radius {
  position: absolute;
  bottom: 1rem;
  z-index: 10;
  width: 100%;
  height: 4rem;
  overflow: hidden;
  pointer-events: none;
}
.gallery-wrapper .fake-border-radius::after,
.gallery-wrapper .fake-border-radius::before {
  position: absolute;
  bottom: 0;
  display: block;
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  content: "";
  border-radius: 50%;
  transform: scale(0.2);
}
.gallery-wrapper .fake-border-radius::before {
  left: 0;
  box-shadow: -2rem 2rem 0 #fff;
  transform-origin: left bottom;
}
.gallery-wrapper .fake-border-radius::after {
  right: 0;
  box-shadow: 2rem 2rem 0 #fff;
  transform-origin: right bottom;
}
.tabs .tab-navigation {
  row-gap: 1.25rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
.tabs .tab-navigation .tab-link {
  position: relative;
  display: inline-flex;
  padding: 0;
  padding-bottom: 0.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 300;
  color: #888;
  background-color: transparent;
  border: none;
  outline: 0;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .tabs .tab-navigation .tab-link {
    transition: none;
  }
}
.tabs .tab-navigation .tab-link.active {
  color: var(--bs-gray-dark);
  text-shadow: 0.0625rem 0 0 currentcolor, 0.0625rem 0 0 currentcolor,
    0.0625rem 0 0 currentcolor;
}
.tabs .tab-navigation .tab-link.active::after {
  transform: scaleX(100%);
}
.tabs .tab-navigation .tab-link:focus::after,
.tabs .tab-navigation .tab-link:hover::after {
  transform: scaleX(100%);
}
.tabs .tab-navigation .tab-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  content: "";
  background-color: rgb(230, 0, 51);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .tabs .tab-navigation .tab-link::after {
    transition: none;
  }
}
.tabs .tab-content .tab-pane .tab-column {
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 0.25rem;
}
@media (max-width: 575.98px) {
  .tabs .tab-content .tab-pane .tab-column {
    padding: 0;
    background-color: transparent;
  }
}
.tabs .tab-pane.fade {
  transform: translateX(-0.5rem);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .tabs .tab-pane.fade {
    transition: none;
  }
}
.tabs .tab-pane.fade.show {
  transform: translateX(0);
}
.timeline-wrapper .timeline {
  overflow-x: auto;
}
@media (hover: hover) {
  .timeline-wrapper .timeline {
    scrollbar-color: #d0d0d0 #fbfbfb;
    scrollbar-width: thin;
  }
  .timeline-wrapper .timeline::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
  }
  .timeline-wrapper .timeline::-webkit-scrollbar-thumb {
    background: #d0d0d0;
  }
  .timeline-wrapper .timeline::-webkit-scrollbar-track {
    background: #fbfbfb;
  }
}
.timeline-wrapper .timeline .timeline-item {
  z-index: 10;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .timeline-wrapper .timeline .timeline-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.timeline-wrapper .timeline .timeline-item .timeline-content {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  margin-left: 0.5rem;
}
.timeline-wrapper .timeline .timeline-item .timeline-year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--bs-gray-dark);
  border-radius: 50%;
}
.timeline-wrapper .timeline .timeline-item .timeline-year-line {
  position: relative;
  width: 0.0625rem;
  height: auto;
  background-color: #d5d8da;
}
.timeline-wrapper .timeline .timeline-item .timeline-year-line::after {
  position: absolute;
  top: 0;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: #fbfbfb;
  border: 0.0625rem solid var(--bs-gray-dark);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.timeline-wrapper .timeline .timeline-item.first .timeline-year::before {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  content: "";
  border-bottom: 0.125rem dashed #d5d8da;
}
.timeline-wrapper .timeline .timeline-item:nth-child(odd) .timeline-content {
  flex-basis: 50%;
}
.timeline-wrapper .timeline .timeline-item:nth-child(even) {
  margin-top: -4rem;
  margin-left: 12rem;
}
@media (max-width: 1599.98px) {
  .timeline-wrapper .timeline .timeline-item:nth-child(even) {
    margin-left: 6rem;
  }
}
.timeline-wrapper .timeline .timeline-item:nth-child(even) .timeline-content {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  margin-left: 0.5rem;
}
.timeline-wrapper
  .timeline
  .timeline-item:nth-child(even)
  div:not(.timeline-year) {
  order: 1;
}
.timeline-wrapper
  .timeline
  .timeline-item:nth-child(even)
  .timeline-year-line::after {
  top: initial;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.job-offers {
  transition: height 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .job-offers {
    transition: none;
  }
}
.job-offers .job-offer {
  transition: 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .job-offers .job-offer {
    transition: none;
  }
}
.job-offers .job-offer .job-offer-image {
  width: 15rem;
  min-height: 10rem;
}
@media (max-width: 767.98px) {
  .job-offers .job-offer .job-offer-image {
    width: 100%;
  }
}
.job-offers .job-offer:focus,
.job-offers .job-offer:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.06) !important;
}
.filters {
  background-color: var(--bs-gray-dark);
  color: var(--bs-white);
}
@media (hover: hover) {
  .filters {
    scrollbar-color: #d0d0d0 #fbfbfb;
    scrollbar-width: auto;
  }
  .filters::-webkit-scrollbar {
    width: 0.75rem;
    height: 0.75rem;
  }
  .filters::-webkit-scrollbar-thumb {
    background: #d0d0d0;
  }
  .filters::-webkit-scrollbar-track {
    background: #fbfbfb;
  }
}
.filters .filters-content {
  padding: 1.5rem;
}
.filters .filters-content .filters-items .filter-item .field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"]) {
  width: 100%;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"]):not(:-moz-placeholder-shown)
  ~ label {
  top: 0.75rem;
  left: 1.25rem;
  font-size: 0.875rem;
  opacity: 0;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"]):not(:-ms-input-placeholder)
  ~ label {
  top: 0.75rem;
  left: 1.25rem;
  font-size: 0.875rem;
  opacity: 0;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"]):focus
  ~ label,
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"]):not(:placeholder-shown)
  ~ label,
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"])[value]
  ~ label {
  top: 0.75rem;
  left: 1.25rem;
  font-size: 0.875rem;
  opacity: 0;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  input:not([type="checkbox"])[value]
  ~ label,
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field
  textarea[value]
  ~ label {
  top: 0.75rem;
  left: 1.25rem;
  font-size: 0.875rem;
  opacity: 0;
}
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field[data-select-open]
  input
  ~ label,
.filters
  .filters-content
  .filters-items
  .filter-item
  .field-row
  .field[data-select-open]
  textarea
  ~ label {
  top: 0.75rem;
  left: 1.25rem;
  font-size: 0.875rem;
  opacity: 0;
}
.filters-footer,
.filters-toggle {
  display: none;
}
@media (max-width: 991.98px) {
  .filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
    max-width: 100vw;
    height: 100%;
    width: 100%;
    overflow-x: hidden; 
    overflow-y: scroll;
    transition: 0.3s ease;
    box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .filters {
    transition: none;
  }
}
@media (max-width: 991.98px) {

  .filters:not([data-open]) {
    pointer-events: none;
    transform: translateX(-100%);
  }
  .filters > *, .filters > * {
    max-width: 100vw;
  }
}
@media (max-width: 991.98px) {
  .filters .filters-content {
    padding-top: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .filters-toggle {
    display: inline-flex;
    transition: 0.15s ease;
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .filters-toggle {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .filters-toggle:active,
  .filters-toggle:focus,
  .filters-toggle:hover {
    color: var(--bs-white);
  }
}
@media (max-width: 991.98px) {
  .filters-toggle.close-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2999999;
  }
}

@media (max-width: 992px) {
  .full-height-mobile {
    max-height: 100vh;
  }

  .full-width-mobile {
    max-width: 100vw;
  }
}
@media (max-width: 991.98px) {
  .filters-footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 21;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    justify-content: space-between;
    padding-top: 1.5rem !important;
    border-top: 0.0625rem solid #d5d8da;
    background: var(--bs-gray-500);
  }
  .filters-footer a {
    flex: 1;
  }
}
table {
  width: 100%;
}
table tr {
  border-bottom: 0.0625rem solid #eaebed;
}
table td {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}
table td:not(:last-child:not(:first-child)) {
  width: 100%;
}
table td:last-child:not(:first-child) {
  padding-right: 0.5rem;
  font-weight: 700;
  color: var(--bs-gray-dark);
  white-space: nowrap;
} /*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  position: fixed;
  z-index: 2147483647;
  display: inline-block;
  max-width: calc(50% - 20px);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: var(--bs-gray-dark);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 0.25rem;
}
.toastify.on {
  opacity: 1;
}
.toastify.success {
  background-color: #17d700;
}
.toastify.error {
  background-color: rgb(230, 0, 51);
}
.toast-close {
  padding: 0 5px;
  font-family: inherit;
  font-size: 1em;
  color: #fff;
  cursor: pointer;
  background: 0 0;
  border: 0;
  opacity: 0.4;
}
.toastify-right {
  right: 1rem;
}
.toastify-left {
  left: 1rem;
}
.toastify-top {
  top: -10rem;
}
.toastify-bottom {
  bottom: -10rem;
}
.toastify-rounded {
  border-radius: 50rem;
}
.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}
.toastify-center {
  right: 0;
  left: 0;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 360px) {
  .toastify-left,
  .toastify-right {
    right: 0;
    left: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}
.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *,
.carousel :after,
.carousel :before {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.carousel__track {
  display: flex;
}
.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}
.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}
.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}
.carousel__button.is-next,
.carousel__button.is-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}
html.with-fancybox {
  scroll-behavior: auto;
}
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0)
    env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: 0;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: 0;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff,
    0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}
.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}
.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}
.fancybox__track {
  display: flex;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::after,
.fancybox__slide::before {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}
.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}
.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}
.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}
.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}
@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"]
  .carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
  animation: 0.15s ease backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
  animation: 0.15s ease both fancybox-fadeOut;
}
.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
  animation: 0.15s ease both fancybox-fadeIn;
}
.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
  animation: 0.1s ease both fancybox-fadeOut;
}
.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
  animation: 0.2s ease both fancybox-zoomInUp;
}
.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
  animation: 0.15s ease both fancybox-zoomOutDown;
}
.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
  animation: 0.15s ease both fancybox-throwOutUp;
}
.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
  animation: 0.15s ease both fancybox-throwOutDown;
}
@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: none;
}
.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit="contain"] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit="contain"] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.has-image[data-image-fit="contain-w"] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit="cover"] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit="cover"] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}
.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(
    to top,
    hsla(0deg, 0%, 0%, 0) 0,
    hsla(0deg, 0%, 0%, 0.006) 8.1%,
    hsla(0deg, 0%, 0%, 0.021) 15.5%,
    hsla(0deg, 0%, 0%, 0.046) 22.5%,
    hsla(0deg, 0%, 0%, 0.077) 29%,
    hsla(0deg, 0%, 0%, 0.114) 35.3%,
    hsla(0deg, 0%, 0%, 0.155) 41.2%,
    hsla(0deg, 0%, 0%, 0.198) 47.1%,
    hsla(0deg, 0%, 0%, 0.242) 52.9%,
    hsla(0deg, 0%, 0%, 0.285) 58.8%,
    hsla(0deg, 0%, 0%, 0.326) 64.7%,
    hsla(0deg, 0%, 0%, 0.363) 71%,
    hsla(0deg, 0%, 0%, 0.394) 77.5%,
    hsla(0deg, 0%, 0%, 0.419) 84.5%,
    hsla(0deg, 0%, 0%, 0.434) 91.9%,
    hsla(0deg, 0%, 0%, 0.44) 100%
  );
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.4)
  );
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}
.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}
.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}
.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}
.fancybox__container:-webkit-full-screen
  .fancybox__button--fullscreen
  g:nth-child(1) {
  display: none;
}
.fancybox__container:-ms-fullscreen
  .fancybox__button--fullscreen
  g:nth-child(1) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}
.fancybox__container:-webkit-full-screen
  .fancybox__button--fullscreen
  g:nth-child(2) {
  display: block;
}
.fancybox__container:-ms-fullscreen
  .fancybox__button--fullscreen
  g:nth-child(2) {
  display: block;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}
.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
.page-intro .page-intro-media:not(.is-single-image):not(.gallery) {
  height: 100%;
  min-height: min(37.5rem, 60vh);
  max-height: min(100%, 80vh);
}
.page-intro .page-intro-media:not(.is-single-image):not(.gallery) video {
  height: 100%;
  min-height: min(37.5rem, 60vh);
  max-height: min(100%, 80vh);
}
.page-intro .page-intro-media.is-single-image {
  height: 100%;
}
.page-intro .page-intro-media.is-single-image img {
  min-height: min(37.5rem, 60vh);
  max-height: min(100%, 80vh);
}
.page-intro .page-intro-media.is-single-image video {
  height: 100%;
  min-height: min(37.5rem, 60vh);
  max-height: min(100%, 80vh);
}
.page-intro .address svg {
  width: 1rem;
  color: rgb(230, 0, 51);
}
.services {
  margin-top: -2.5rem;
}
.services .service {
  position: relative;
  min-height: 10rem;
  overflow: hidden;
  background-color: var(--bs-gray-dark);
  box-shadow: 0 4px 4px rgba(48, 60, 73, 0.15) !important;
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .services .service {
    transition: none;
  }
}
.services .service:active,
.services .service:focus,
.services .service:hover {
  background-color: rgb(230, 0, 51);
  transform: translateY(-0.125rem);
  box-shadow: 0 6px 1rem rgba(215, 0, 23, 0.2) !important;
}
.services .service:active span,
.services .service:focus span,
.services .service:hover span {
  color: rgba(255, 255, 255, 0.92);
}
.services .service:active svg,
.services .service:focus svg,
.services .service:hover svg {
  opacity: 0.3;
}
.services .service svg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10rem;
  height: 10rem;
  color: #fff;
  opacity: 0.2;
  stroke-width: 3;
  transform: translate(15%, 10%);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .services .service svg {
    transition: none;
  }
}
.services .service svg > [data-reverse] {
  transform: scale(-1, 1) translate(-24px, 0);
}
.services .service svg > [data-reverse][data-enlarge] {
  transform: scale(-1.2, 1.2) translate(-24px, 0);
}
@media (max-width: 991.98px) {
  .services .service {
    flex-basis: 30%;
  }
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1049;
  padding: 0;
  background-color: #fff;
  transition: 0.15s ease;
}

header .header-left {
  padding: 0.625rem 0rem;
}

header .header-right {
  height: 90px;
}

header .header-right .menu-wrapper .menu {
  height: 100%;
  column-gap: 0;
}

header .header-right .menu-wrapper .menu .menu-item {
  height: 100%;
}

header .header-right .menu-wrapper .menu .menu-item a {
  height: 100%;
  width: 100%;
  
}

header .header-right .menu-wrapper .menu .menu-item a .menu-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
}
header .menu-wrapper .menu .menu-dropdown .menu-item {
  align-items: flex-start !important;
}

header .container-fluid.header-secondary .menu-item .menu-text {
  text-transform: uppercase;
  font-weight: 700;
}

.menu-wrapper .menu .menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height:100%;
  justify-content: center;
  align-items: center;
  min-width: 130px;
}

.menu-wrapper .menu .menu-item{
  border-left: var(--bs-light-border) 1px solid;
  text-transform: none;
}

.menu-wrapper .menu .menu-item > .menu-link {
  font-weight: 400;
}

header .menu-wrapper .menu .menu-item.akce > .menu-link, header .menu-wrapper .menu .menu-item.kontakt  > .menu-link{
  color: var(--bs-white);
  text-transform: uppercase;
}

.menu-wrapper .menu .menu-item.akce {
  background-color: var(--bs-primary);

}
.menu-wrapper .menu .menu-item.kontakt {
  background-color: var(--bs-gray-dark);
}

.menu-wrapper .menu .menu-dropdown ul.submenu li:hover  {
  color: var(--bs-primary);
  background-color: black !important;
}

/* submenu se značkami */
.menu-znacky .menu-dropdown .sub-menu {
  display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.menu-znacky .menu-dropdown .sub-menu .menu-item {
  width: 50%;
}
.menu-znacky .menu-dropdown .sub-menu .menu-item .menu-link {
  padding: 1rem 0 !important;
}
.menu-znacky .menu-dropdown .sub-menu .menu-item .menu-link .menu-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} 
@media (min-width: 576px) {
  .menu-znacky .menu-dropdown .sub-menu {
    width: 100%;
    }
  .menu-znacky .menu-dropdown .sub-menu .menu-item {
    width: 33.3%;
  }
}
@media (min-width: 1599.98px) {
  .menu-znacky .menu-dropdown .sub-menu {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  }
  .menu-znacky .menu-dropdown .sub-menu .menu-item {
    width: 25%;
  }
}



/*---*/


@media (prefers-reduced-motion: reduce) {
  header {
    transition: none;
  }
}

@media (min-width: 1599.98px) {
header #menu-headermenu_2 {
  display: none;
}
.menu-wrapper .menu-mobile-buttons {
  display: none !important;
}
}

@media (max-width: 1599.98px) {
  header {
    padding: 0;
  }

  header .header-right .menu-wrapper  {
    left: unset !important;
    right: 0 !important;
  }

  header .header-right .menu-wrapper .menu {
    height: unset;
  }

  header .header-right .menu-wrapper .menu .menu-item a {
    height: unset;
    min-width: unset;
  }

  header .header-right .menu-wrapper .menu .menu-item a span.menu-text {
    line-height: 1;
    text-align: left;
    align-items: flex-start;
  }

  header .menu-wrapper .menu .menu-item.akce, header .menu-wrapper .menu .menu-item.kontakt {
    background-color: transparent;
    color: var(--bs-body-color);
  }

  header .menu-wrapper .menu .menu-item.akce > .menu-link, header .menu-wrapper .menu .menu-item.kontakt > .menu-link {
    color: var(--bs-body-color);
    text-transform: unset;
  }
}

header .container-fluid.header-secondary {
  padding: 0rem 0rem;
  background-color: var(--bs-gray-100);
}

header .container-fluid.header-secondary .menu-wrapper {
  height: 100%;
}

header .container-fluid.header-secondary .menu-wrapper .menu .menu-item {
  border-left: none;
}

header .container-fluid.header-secondary .menu-wrapper .menu .menu-item .menu-link {
  padding: 1.75rem 0rem;
}

/* sekundární menu */
.header-secondary .menu-wrapper .menu{
  justify-content: space-between;

}

/* search */
header .header-secondary .search-form {
  height: 3rem;
}
header .header-secondary .search-form > .row, header .header-secondary .search-form > .row > .col, header .header-secondary .search-form > .row > .col, header .header-secondary .search-form > .row > .col input { height: 100%; position: relative;}

header .header-secondary .search-form > .row > .col input { border: none; border-radius: 0px; background: var(--bs-white); width: 290px; padding-left: 3rem} 
header .header-secondary .search-form > .row > .col svg {position: absolute; left: 1rem; top: 1rem; width: 14px; height: 14px;}

header .header-secondary .search-form > .row > .col input:focus-visible,
header .header-secondary .search-form > .row > .col input:focus-visible:focus  {border-radius: 0px !important; outline-color: var(  --bs-primary) !important} 

header .custom-logo {
  width: auto;    
  max-width: 170px;
  height: auto;
}
@media only screen and (min-width: 576px) {
  header .custom-logo {
    margin-right: 1.5rem;
  }
}

header .custom-logo svg {
  height: 100%;
}
header.header-sticky {
  padding: 0;
  background-color: #fff;
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.06) !important;
}

header .header-left > .socialicons {display: none !important;}
@media only screen and (min-width: 720px) {header .header-left > .socialicons {display: flex !important;}}

header .socialicons a {
  color: var(--bs-gray-dark);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  header .socialicons a {
    transition: none;
  }
}
header .socialicons a:active,
header .socialicons a:focus,
header .socialicons a:hover {
  color: rgb(230, 0, 51);
}
@media (max-width: 1599.98px) {
  header .header-buttons {
    display: none;
  }
}
body.home header,
body.single-pobocky header {
  background-color: #fbfbfb;
}

/* === #FOOTER ---*/
footer .footer-columns .footer-column .footer-column-title {
  margin-top: 0rem;
  margin-bottom: 0.875rem;
}
footer .footer-columns .body-link,
footer .footer-columns .menu-link {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: var(--bs-gray-dark);
  transition: color 0.15s ease;
}

footer .footer-columns .body-link:hover,
footer .footer-columns .menu-item:hover .menu-link {
  color: var(--bs-dark);
  text-decoration: underline;
}

/* social */
footer .socialicons .socialicon a {
  background-color: var(--bs-white);
  padding: 0.75rem;
  border-radius: 2rem;
}
footer .socialicons .socialicon a svg { width: 17px; height: 17px;}

/*h*/
footer .socialicons .socialicon a:hover { background-color: var(--bs-gray-dark); }
footer .socialicons .socialicon a:hover svg { fill: var(--bs-white); }

/* #FOOTER end */


@media (prefers-reduced-motion: reduce) {
  footer .footer-columns .body-link,
  footer .footer-columns .menu-link {
    transition: none;
  }
}
footer .footer-columns .body-link:focus,
footer .footer-columns .body-link:hover,
footer .footer-columns .menu-link:focus,
footer .footer-columns .menu-link:hover {
  color: #d5d8da;
}
footer .footer-columns .socialicons a {
  color: var(--bs-gray-dark);
  transition: color 0.15s ease;
}

footer .footer-columns .socialicons a svg {
  height: 17px !important;
}

@media (prefers-reduced-motion: reduce) {
  footer .footer-columns .socialicons a {
    transition: none;
  }
}
footer .footer-columns .socialicons a:focus,
footer .footer-columns .socialicons a:hover {
  color: #d5d8da;
}

footer .logo-claim .logo svg {
  width: 200px;
}

@media only screen and (min-width: 576px) {
  footer .logo-claim .logo svg {
    width: 396px;
  }
}

footer .footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 4rem;
}
footer .footer-bar .menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
footer .footer-bar .body-link,
footer .footer-bar .menu-link {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: #fbfbfb;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  footer .footer-bar .body-link,
  footer .footer-bar .menu-link {
    transition: none;
  }
}
footer .footer-bar .body-link:focus,
footer .footer-bar .body-link:hover,
footer .footer-bar .menu-link:focus,
footer .footer-bar .menu-link:hover {
  opacity: 1;
}
@media (max-width: 575.98px) {
  footer .footer-columns .footer-column .footer-column-title {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
body.home .page-intro .media-cover-all {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

body.home .partners-block .partners-logos .logo-wrapper {
  flex: 1;
}

/* pruh partnerů bez paddingů na stranách */
.partners-block .partners-logos.no-sides-px .logo-wrapper:first-of-type { padding-left: 0px !important; }
.partners-block .partners-logos.no-sides-px .logo-wrapper:last-of-type { padding-right: 0px !important; }


/* loga partnerů - carousel */
.partners-logos.logos-carousel .owl-stage-outer {
  padding-left: 24px;
  padding-right: 24px;
}
.partners-logos.logos-carousel, .partners-logos.logos-carousel img  {
  max-height: 150px;
}
.partners-logos.logos-carousel .owl-stage {
  display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logos.logos-carousel .owl-item, .partners-logos.logos-carousel .logo-wrapper, .partners-logos.logos-carousel a {
  height: 100%;
  width:100%;
}
.partners-logos.logos-carousel a {
  margin-left: 24px;
  margin-right: 24px;
}
.partners-logos.logos-carousel img {
  width: 100%;
  max-height: 120px;
  max-width: 200px;
  object-fit: contain;
}

.partners-block .no-sides-px.partners-logos.logos-carousel .logo-wrapper  {
  /* padding-left: 32px !important; */
  padding-right: 32px !important;
}

.partners-logos.logos-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.partners-logos.logos-carousel .owl-nav svg {width: 24px;}

.partners-logos:not(.logos-carousel) {
  display: grid !important;
   grid-template-columns: repeat(5, 1fr); /* fallback pro mobily */
}

.partners-logos:not(.logos-carousel) .logo-wrapper {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logos:not(.logos-carousel) .logo-wrapper img {
  width: 100%;
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

/**/
/*---- CTA sekce -----*/
#section-cta > *, #section-cta  h2 {color: var(--bs-white)}
#section-cta .cta-img {
  height: 500px;
}

#section-cta .cta-img img {
  height: 100%;
}

#section-cta .cta-background {
  z-index: -1;
   width: 100%;
  height: calc(100% - 64px);
  top: 32px;
  overflow: hidden;
} 
#section-cta .cta-background picture, #section-cta .cta-background img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#section-cta .cta-background img {
    filter: brightness(0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
  body.home .partners-block .partners-logos .logo-wrapper {
    flex-basis: 33%;
  }
  
.partners-logos:not(.logos-carousel) {
   grid-template-columns: repeat(2, 1fr); /* fallback pro mobily */
}
}
@media (max-width: 575.98px) {
  body.home .partners-block .partners-logos .logo-wrapper {
    flex-basis: 50%;
  }
}
body.home .partners-block .partners-logos .logo-wrapper a {
  filter: grayscale(1);
  transition: 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.home .partners-block .partners-logos .logo-wrapper a {
    transition: none;
  }
}
body.home .partners-block .partners-logos .logo-wrapper a:active,
body.home .partners-block .partners-logos .logo-wrapper a:focus,
body.home .partners-block .partners-logos .logo-wrapper a:hover {
  filter: grayscale(0);
}
.branch-content .branch-content-item {
  font-size: 1rem;
  font-weight: 600;
}
@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")
    format("woff");
  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(0, 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, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 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, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 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, 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 {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  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 {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
[data-tippy-root] {
  max-width: calc(100vw - 1rem);
}
.tippy-box {
  position: relative;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs-gray-dark);
  white-space: normal;
  background-color: #fff;
  outline: 0;
  transition-property: transform, visibility, opacity;
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.1) !important;
  border-radius: 0.25rem;
}
.tippy-box[data-animation="fade"][data-state="hidden"] {
  opacity: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
  bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow::before {
  bottom: -0.5rem;
  left: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: initial;
  transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
  top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow::before {
  top: -0.5rem;
  left: 0;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: initial;
  transform-origin: center bottom;
}
.tippy-box[data-placement^="left"] > .tippy-arrow {
  right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow::before {
  right: -0.5rem;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: initial;
  transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow::before {
  left: -0.5rem;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: initial;
  transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-box .tippy-arrow {
  width: 1rem;
  height: 1rem;
  color: #fff;
}
.tippy-box .tippy-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.tippy-box .tippy-content {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
}
.tippy-box[data-theme="quick-view"] .tippy-content {
  padding: 1.25rem;
}
.tippy-box[data-animation="shift-away-subtle"][data-state="hidden"] {
  opacity: 0;
  transform: none;
}
.tippy-box[data-animation="shift-away-subtle"][data-state="hidden"][data-placement^="top"] {
  transform: translateY(0.5rem) rotateX(-15deg);
}
.tippy-box[data-animation="shift-away-subtle"][data-state="hidden"][data-placement^="bottom"] {
  transform: translateY(0.5rem) rotateX(-15deg);
}
.tippy-box[data-animation="shift-away-subtle"][data-state="hidden"][data-placement^="left"] {
  transform: translateX(0.5rem) rotateX(15deg);
}
.tippy-box[data-animation="shift-away-subtle"][data-state="hidden"][data-placement^="right"] {
  transform: translateX(-0.5rem) rotateX(15deg);
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.wp-caption {
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #f0f0f0;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  padding: 0;
  margin: 0;
  border: 0 none;
}
.wp-caption p.wp-caption-text {
  padding: 0 4px 5px;
  margin: 0;
  font-size: 11px;
  line-height: 17px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  word-wrap: normal !important;
  border: 0;
}
.screen-reader-text:focus {
  top: 5px;
  left: 5px;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  font-size: 1em;
  line-height: normal;
  color: #444;
  text-decoration: none;
  background-color: #eee;
}
}
/**/
.news-plain .news-item .news-image,
.news .news-item .news-image {
    width: 100%;
}
.news-plain, .news {
    transition: height 0.3s ease;
}
.news-plain .news-item, .news .news-item {
  transition: 0.3s ease;
}
.news-plain .news-item:focus,
.news-plain .news-item:hover,
.news .news-item:focus,
.news .news-item:hover {
  box-shadow: 0 6px 1rem rgba(48, 60, 73, 0.06) !important;
}

.news-plain .news-item:focus .btn-article,
.news-plain .news-item:hover .btn-article {
  background-color: var(--bs-primary) !important;
}


.new-item-wrapper {
    max-width: 850px;
    width: 100%;
}

.novinky-a-akce-template-default.single  .new-item-wrapper {
  /* max-width: 100%; */
}

.new-item-image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem !important;
}
/* .news-content {
    line-height: 1.7;
} */

.news-content picture, .news-content picture img {
  max-width: 100%;
  height: auto
}

/* news plain - předělání kartiček do gridu místo s absolutní pozicí */
.news-plain {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* fallback pro mobily */
  gap: 1.5rem; /* mezera mezi sloupci a řádky */
  height: unset !important;
}

.news-plain.news-plain--2 {
  grid-template-columns: repeat(2, 1fr);
}

.news-plain > div {
  position: relative !important;
  left: unset !important;
  top: unset !important;
  width: 100%;
}

.news-plain > div > a.news-item {
  height: 100%;
}

.news-plain .news-image {
  aspect-ratio: 3 / 4;
  position: relative;

}

.news-plain.news-plain--2 .news-image {
  max-width: 40%;
}

/* .news-plain .news-image img {
  position: absolute;
  
} */

/*--*/

@media (max-width: 768px) {
    .new-item-image img {
        height: 300px;
    }
    .news-plain,
    .news-plain.news-plain--2 {
      grid-template-columns: repeat(1, 1fr); 
    }

  .news-plain.news-plain--2 .news-image {
    max-width: unset;
  }
}

@media (min-width: 768px) {
  .timeline-wrapper .timeline-content {
    min-height: 274px;
  }
}

/*------- separators --------*/
.separator-bottom {
  border-bottom: var(--bs-gray-200) 1px solid; 
  padding-bottom: 1.25rem;
}

.separators-vertical > div:not(:last-of-type)  {
  border-right: var(--bs-gray-300) 1px solid;
}

/*----- POZADÍ SEKCÍ ---------*/
.section-bcg-truck {
  background: url('/wp-content/uploads/2025/04/bcg-truck.webp') center center no-repeat;
  background-size: cover;
}

.section-bcg-kariera {
  background: url('/wp-content/uploads/2025/05/bcg-kariera.webp') center center no-repeat;
  background-size: cover;
}

/*------ KONTAKTNÍ FORMULÁŘ ------*/


/*----- PODNADPISY -----*/
.subheading-rdec { position: relative; }

.subheading-rdec::before { 
  content: '';
  display: inline-block;
  position: relative;
  width: 0.25rem;
  height: 1.5rem;
  background: var(--bs-primary);
  margin-right: 1rem;
  transform: translateY(0.25rem);
}

/*--- OWL CAROUSEL ---*/
.owl-carousel.hp,
.owl-carousel.hp .owl-stage-outer,
.owl-carousel.hp .owl-stage,
.owl-carousel.hp .owl-item,
.owl-carousel.hp .slider-item,
.owl-carousel.hp .slider-content {
  height: 100%;
}

.owl-carousel.hp .owl-item .slider-item {
  position: relative;
}

.owl-carousel.hp .owl-item .slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.owl-carousel.hp .slider-content > * {
 max-width: 695px; /* polovina site width */
}

.darken-left::before { 
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%); */
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
}

/* šipky */
.owl-nav-custom {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  display: none;
}

.owl-nav-custom button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;;
  padding: 0.75rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  pointer-events: all;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  background-color: transparent;
}

.owl-nav-custom button:hover {
  opacity: 1;
}

.owl-prev-custom {
  left: 1rem;
}

.owl-next-custom {
  right: 1rem;
}

.owl-nav-custom svg {
  width: 100%;
  height: 100%;
  fill: var(--bs-white);
}

/* thumbnaily */
.slider-nav-custom {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  flex: 1 1 0;
}

.slider-nav-custom .slider-nav-item {
  position:relative;
  flex: 1;
  min-width: 150px;
  padding: 1.5rem;
  border: none;
  background-color: var(--bs-white);
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 0;
}

.slider-nav-number {
  position: relative;
  font-size: 1rem;
  color: var(--bs-white);
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
  font-weight: 800;
  background-color: var(--bs-gray-500);
}

/* hover, active */
.slider-nav-custom .slider-nav-item.active {background-color: var(--bs-gray-dark); transform: translateY(-0.25rem) scale(1.05)}
.slider-nav-custom .slider-nav-item.active .font-title {color: var(--bs-white);}
.slider-nav-custom .slider-nav-item.active .slider-nav-number { background-color: var(--bs-primary)}

/* slider respo */
@media only screen and (min-width: 1400px) {
  .owl-nav-custom {display: block;}
}
@media only screen and (max-width: 992px) {
  #section-slider {
    height: unset;
  }

  .owl-carousel.hp, .owl-carousel.hp .owl-stage-outer, .owl-carousel.hp .owl-stage-outer > * {
    min-height: 600px;
  }
  #novinky-a-akce-slider, .owl-carousel.hp, .owl-carousel.hp .owl-stage-outer, .owl-carousel.hp .owl-stage, .owl-carousel.hp .owl-item, .owl-carousel.hp .slider-item, .owl-carousel.hp .slider-content {
    min-height: 600px;
  }
  .slider-nav-custom {
    transform: translateX(0);
    left: 0rem;
    justify-content: flex-start !important;
  }
  .slider-nav-custom .slider-nav-item {padding: 0; background-color: transparent; min-width: unset; width: auto; flex: 0;}
 .slider-nav-custom .slider-nav-item .slider-nav-text {display: none;}
  .slider-nav-custom .slider-nav-item.active {transform: translateY(0px); background-color: transparent}
}

/* slider respo */
@media only screen and (max-width: 576px) {
  #section-slider {
    height: unset;
  }

  .owl-carousel.hp, .owl-carousel.hp .owl-stage-outer, .owl-carousel.hp .owl-stage-outer > * {
    min-height: 600px;
  }
  .owl-carousel.hp, .owl-carousel.hp .owl-stage-outer, .owl-carousel.hp .owl-stage, .owl-carousel.hp .owl-item, .owl-carousel.hp .slider-item, .owl-carousel.hp .slider-content {
    min-height: 600px;
  }
}

/* cms page slider*/
section#novinky-a-akce-slider {
    height: 450px;
}
.slider-top-title {
    font-size: 2rem;
    margin-bottom: .75rem !important;
    font-weight: 300;
    font-size:clamp(1.25rem,3vW,1.75rem);
    font-family: var(--bs-title-font-family);
}

#novinky-a-akce-slider .slider-nav-custom, #novinky-a-akce-slider .owl-nav-custom {
  max-width: 1350px;
  padding: 0 2.5rem;
}

#novinky-a-akce-slider .owl-nav-custom  {
  margin:0 auto;
  /* display: none; */
}

#novinky-a-akce-slider .slider-nav-custom .slider-nav-item.active {
  transform:none
}

/* #novinky-a-akce-slider .slider-content {
  padding-bottom: 80px;
} */
@media (min-width:1201px) {
#novinky-a-akce-slider .slider-content {
    padding: 3rem 3rem 80px;
}

/* #novinky-a-akce-slider .slider-nav-custom, #novinky-a-akce-slider .owl-nav-custom { */
#novinky-a-akce-slider .slider-nav-custom {
    max-width: 1360px;
    bottom: 2rem;
}

#novinky-a-akce-slider .slider-content {
    padding: 1rem 2.25rem 8rem;
}

}

/* mřížka boxů */
.custom-grid > .col {
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

/* Odstraň pravý border z posledního sloupce v řádku (3 sloupce na lg a výš) */
@media (min-width: 992px) {
  .custom-grid > .col:nth-child(3n) {
    border-right: none;
  }
  /* Odstranit spodní border u poslední řady */
  .custom-grid > .col:nth-last-child(-n+3) {
    border-bottom: none;
  }
}

/* Pro md breakpoint – 2 sloupce */
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom-grid > .col:nth-child(2n) {
    border-right: none;
  }
  .custom-grid > .col:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Pro sm a menší – 1 sloupec */
@media (max-width: 767.98px) {
  .custom-grid > .col {
    border-right: none;
  }
  .custom-grid > .col:last-child {
    border-bottom: none;
  }
}

