@import "https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css";

:root {
  --gray-dark: #373a3c;
  --gray: #55595c;
  --gray-light: #818a91;
  --gray-lighter: #eceeef;
  --gray-lightest: #f7f7f9;

  --meta-text-color: #979797;
  --subtitle-text-color: #f76561;

  --grid-columns: 12;
  --grid-gutter-width: 15px;

  --padding-base-horizontal: 15px;
  --font-size-h1: calc(16px * 3);
  --font-size-h2: calc(16px * 1.75);
  --font-size-h3: calc(16px * 1.5);
  --font-size-h4: calc(16px * 1.25);
  --font-size-h5: calc(16px * 1.1);
  --font-size-h6: calc(16px * 1);
  --line-height-computed: 16px * 1.5;
  --strong-font-weight: 600;
  --hr-border: #eceeef;

  --box-shadow-base: 0 1px 3px rgba(55, 60, 80, 0.05);
  --box-shadow-big: 0 6px 12px rgba(55, 60, 80, 0.08);
  --box-shadow-button: 0 1px 3px rgba(55, 60, 80, 0.15);
  --input-border-color: #dee1e3;
  --input-focus-border-color: rgba(133, 10, 7, 1);

  /* Formatting Content */

  --lt-accordion-border: #eceeef;
  --border-width: 2px;
  --border-radius-base-min: 6px;
  --border-radius-base-max: 48px;
  --border-radius-base: min(
    var(--border-radius-base-min),
    var(--border-radius-base-max)
  );
  --border-radius-lg-min: 16px;
  --border-radius-lg-max: 48px;
  --border-radius-lg: min(
    var(--border-radius-lg-min),
    var(--border-radius-lg-max)
  );

  --lt-accordion-padding-vertical: 1rem;
  --lt-accordion-padding-horizontal: 1.5rem;

  --font-weight-bold: 700;
  --font-family-body: 'Lato', sans-serif;

  --body-color-bg: #F2F7F7;
  --color-text-primary: rgba(133, 10, 7, 1);
  --color-brand-primary: rgba(133, 10, 7, 1);
  --color-bg-secondary: #F2F2F2;
  --color-brand-primary-inverse: #fff;

  --info-callout-color: rgba(133, 10, 7, 1);
  --warning-callout-color: #DB8709;
  --danger-callout-color: #C70606;
  --success-callout-color: #05BB0C;
  --neutral-callout-color: #d6d6d6;

  --callout-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05),
    0px 8px 40px 0px rgba(0, 0, 0, 0.1);

  --info-callout-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R804E0W9TN41CTJJQM5K68.svg);
  --warning-callout-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R8045PTSNJD8CDH9R0A42N.svg);
  --danger-callout-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R801MPYM55ER3MSDMDP405.svg);
  --success-callout-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R8033A9RDSPJHCS1CYF940.svg);
  --copy-code-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R804F52ARG4KF1EDADE3BB.svg);
  --anchor-list-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R8045RDG8QVQ9EEV9WJX0R.svg);
  --anchor-file-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R8043A1HYXKY9XMH5TV35A.svg);
  --blockqoute-icon: url(/themes/custom/ti_zendesk_theme/images/01K3R804FCTHYA5YCW61SEEF7J.svg);

  --dots-left-bg: url($assets-dots-left-svg);

  --callout-padding: 2rem;
  --callout-border-width: 4px;

  --rte-bullet-color: #818a91;
  --code-bg: #f7f7f9;
  --light-gray: #f8f7f8;

  --color-table-bg-hover: #d6d6d6;

  --color-border: #eceeef;

  --text-xxs: calc(0.625rem * var(--font-body-scale));
  --text-xs: calc(0.75rem * var(--font-body-scale));
  --text-sm: calc(0.875rem * var(--font-body-scale));
  --text-base: calc(1rem * var(--font-body-scale));
  --text-lg: calc(1.125rem * var(--font-body-scale));
  --text-xl: calc(1.25rem * var(--font-body-scale));
  --text-2xl: calc(1.5rem * var(--font-body-scale));
  --text-3xl: calc(1.875rem * var(--font-body-scale));
  --text-4xl: calc(2.25rem * var(--font-body-scale));
  --text-5xl: calc(3rem * var(--font-body-scale));

  /* End of Formatting Content */
}
/* Reset the box-sizing */
*,
*:before,
*:after,
input,
input:before,
input:after,
select,
select:before,
select:after,
textarea,
textarea:before,
textarea:after,
input[type="search"],
input[type="search"]:before,
input[type="search"]:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
/* Body reset */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(133, 10, 7, 1);
  background-color: #F2F7F7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-opened {
  overflow: hidden;
}

.body-overlay {
  position: fixed;
  top: 0;
  z-index: 98;
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: #F2F7F7;
  opacity: 0;
  transition: all 0.3s;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, p, .wysiwyg-font-size-x-large, .wysiwyg-font-size-large, .wysiwyg-font-size-medium {
  margin: 0 0 calc(var(--line-height-computed));
}

.menu-opened .body-overlay {
  visibility: visible;
  opacity: 0.7;
}

[dir="ltr"] .body-overlay {
  left: 0;
}

[dir="rtl"] .body-overlay {
  right: 0;
}
/* Reset fonts for relevant elements */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
}
/* Placeholder */
::-webkit-input-placeholder {
  /* Chrome */
  color: rgba(133, 10, 7, 1);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(133, 10, 7, 1);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(133, 10, 7, 1);
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: rgba(133, 10, 7, 1);
  opacity: 1;
}
/* Links */
a {
  color: rgba(0, 105, 192, 1);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover,
a:focus {
  color: #003f74;
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid var(--hr-border);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.wysiwyg-font-size-x-large,
.wysiwyg-font-size-large,
.wysiwyg-font-size-medium {
  font-weight: var(--strong-font-weight);
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
.wysiwyg-font-size-x-large,
.wysiwyg-font-size-large,
.wysiwyg-font-size-medium {
  margin: 0 0 calc(var(--line-height-computed));
}

ul,
ol {
  margin: calc(var(--line-height-computed)) 0;
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}

h2,
.h2,
.wysiwyg-font-size-x-large {
  font-size: var(--font-size-h2);
}

h3,
.h3,
.wysiwyg-font-size-large {
  font-size: var(--font-size-h3);
}

h4,
.h4,
.wysiwyg-font-size-medium {
  font-size: var(--font-size-h4);
}

h5,
.h5 {
  font-size: var(--font-size-h5);
}

h6,
.h6 {
  font-size: var(--font-size-h6);
}

b,
strong {
  font-weight: 600;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}
/* Description Lists */
dl {
  margin-top: 0;
  margin-bottom: calc(var(--line-height-computed));
}

dt,
dd {
  margin-bottom: calc(var(--line-height-computed) / 2);
  line-height: 1.5;
}

dt {
  font-weight: bold;
}

[dir="ltr"] dd {
  margin-left: 0;
}

[dir="rtl"] dd {
  margin-right: 0;
}

.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: "";
}

.dl-horizontal:after {
  clear: both;
}

@media (min-width: 576px) {
  .dl-horizontal dt {
    float: left;
    width: 30%;
    padding-right: var(--grid-gutter-width);
    clear: both;
  }
}

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .dl-horizontal dd {
    float: right;
    width: 70%;
  }
}
/* Abbreviations and acronyms */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted var(--gray-light);
}
/*  Addresses */
address {
  margin-bottom: calc(var(--line-height-computed));
  font-style: normal;
  line-height: 1.5;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.list-unstyled {
  margin: 0;
  list-style: none;
}

[dir="ltr"] .list-unstyled {
  padding-left: 0;
}

[dir="rtl"] .list-unstyled {
  padding-right: 0;
}

.is-hidden,
.hidden,
[hidden] {
  display: none !important;
}

.powered-by-zendesk {
  display: none;
}

.visibility-hidden,
.recent-activity-accessibility-label,
.pagination-first-text,
.pagination-last-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.rte li ul {
  margin-top: 0;
}
/* Components */
.container {
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
}
@media (min-width: 576px) {
  .container {
    padding-right: calc(var(--grid-gutter-width) * 2);
    padding-left: calc(var(--grid-gutter-width) * 2);
  }
}

.container-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lt-layout {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}

.lt-layout > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.lt-layout > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.lt-layout > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.row {
  display: flex;
  margin-right: calc(var(--grid-gutter-width) * -1);
  margin-left: calc(var(--grid-gutter-width) * -1);
  flex-wrap: wrap;
}

.column {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
}

[dir="ltr"] .column {
  float: left;
}

[dir="rtl"] .column {
  float: right;
}

.column--xs-1 {
  width: 8.33333%;
}

.column--xs-2 {
  width: 16.66667%;
}

.column--xs-3 {
  width: 25%;
}

.column--xs-4 {
  width: 33.33333%;
}

.column--xs-5 {
  width: 41.66667%;
}

.column--xs-6 {
  width: 50%;
}

.column--xs-7 {
  width: 58.33333%;
}

.column--xs-8 {
  width: 66.66667%;
}

.column--xs-9 {
  width: 75%;
}

.column--xs-10 {
  width: 83.33333%;
}

.column--xs-11 {
  width: 91.66667%;
}

.column--xs-12 {
  width: 100%;
}

[dir="ltr"] .column--xs-offset-0 {
  margin-left: 0%;
}

[dir="rtl"] .column--xs-offset-0 {
  margin-right: 0%;
}

[dir="ltr"] .column--xs-offset-1 {
  margin-left: 8.33333%;
}

[dir="rtl"] .column--xs-offset-1 {
  margin-right: 8.33333%;
}

[dir="ltr"] .column--xs-offset-2 {
  margin-left: 16.66667%;
}

[dir="rtl"] .column--xs-offset-2 {
  margin-right: 16.66667%;
}

[dir="ltr"] .column--xs-offset-3 {
  margin-left: 25%;
}

[dir="rtl"] .column--xs-offset-3 {
  margin-right: 25%;
}

[dir="ltr"] .column--xs-offset-4 {
  margin-left: 33.33333%;
}

[dir="rtl"] .column--xs-offset-4 {
  margin-right: 33.33333%;
}

[dir="ltr"] .column--xs-offset-5 {
  margin-left: 41.66667%;
}

[dir="rtl"] .column--xs-offset-5 {
  margin-right: 41.66667%;
}

[dir="ltr"] .column--xs-offset-6 {
  margin-left: 50%;
}

[dir="rtl"] .column--xs-offset-6 {
  margin-right: 50%;
}

[dir="ltr"] .column--xs-offset-7 {
  margin-left: 58.33333%;
}

[dir="rtl"] .column--xs-offset-7 {
  margin-right: 58.33333%;
}

[dir="ltr"] .column--xs-offset-8 {
  margin-left: 66.66667%;
}

[dir="rtl"] .column--xs-offset-8 {
  margin-right: 66.66667%;
}

[dir="ltr"] .column--xs-offset-9 {
  margin-left: 75%;
}

[dir="rtl"] .column--xs-offset-9 {
  margin-right: 75%;
}

[dir="ltr"] .column--xs-offset-10 {
  margin-left: 83.33333%;
}

[dir="rtl"] .column--xs-offset-10 {
  margin-right: 83.33333%;
}

[dir="ltr"] .column--xs-offset-11 {
  margin-left: 91.66667%;
}

[dir="rtl"] .column--xs-offset-11 {
  margin-right: 91.66667%;
}

[dir="ltr"] .column--xs-offset-12 {
  margin-left: 100%;
}

[dir="rtl"] .column--xs-offset-12 {
  margin-right: 100%;
}

@media (min-width: 576px) {
  .column--sm-1 {
    width: 8.33333%;
  }

  .column--sm-2 {
    width: 16.66667%;
  }

  .column--sm-3 {
    width: 25%;
  }

  .column--sm-4 {
    width: 33.33333%;
  }

  .column--sm-5 {
    width: 41.66667%;
  }

  .column--sm-6 {
    width: 50%;
  }

  .column--sm-7 {
    width: 58.33333%;
  }

  .column--sm-8 {
    width: 66.66667%;
  }

  .column--sm-9 {
    width: 75%;
  }

  .column--sm-10 {
    width: 83.33333%;
  }

  .column--sm-11 {
    width: 91.66667%;
  }

  .column--sm-12 {
    width: 100%;
  }

  [dir="ltr"] .column--sm-offset-0 {
    margin-left: 0%;
  }

  [dir="rtl"] .column--sm-offset-0 {
    margin-right: 0%;
  }

  [dir="ltr"] .column--sm-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--sm-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--sm-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--sm-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--sm-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--sm-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--sm-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--sm-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--sm-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--sm-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--sm-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--sm-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--sm-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--sm-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--sm-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--sm-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--sm-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--sm-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--sm-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--sm-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--sm-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--sm-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--sm-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--sm-offset-12 {
    margin-right: 100%;
  }
}

@media (min-width: 768px) {
  .column--md-1 {
    width: 8.33333%;
  }

  .column--md-2 {
    width: 16.66667%;
  }

  .column--md-3 {
    width: 25%;
  }

  .column--md-4 {
    width: 33.33333%;
  }

  .column--md-5 {
    width: 41.66667%;
  }

  .column--md-6 {
    width: 50%;
  }

  .column--md-7 {
    width: 58.33333%;
  }

  .column--md-8 {
    width: 66.66667%;
  }

  .column--md-9 {
    width: 75%;
  }

  .column--md-10 {
    width: 83.33333%;
  }

  .column--md-11 {
    width: 91.66667%;
  }

  .column--md-12 {
    width: 100%;
  }

  [dir="ltr"] .column--md-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--md-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--md-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--md-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--md-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--md-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--md-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--md-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--md-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--md-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--md-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--md-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--md-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--md-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--md-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--md-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--md-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--md-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--md-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--md-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--md-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--md-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--md-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--md-offset-12 {
    margin-right: 100%;
  }
}

@media (min-width: 992px) {
  .column--lg-1 {
    width: 8.33333%;
  }

  .column--lg-2 {
    width: 16.66667%;
  }

  .column--lg-3 {
    width: 25%;
  }

  .column--lg-4 {
    width: 33.33333%;
  }

  .column--lg-5 {
    width: 41.66667%;
  }

  .column--lg-6 {
    width: 50%;
  }

  .column--lg-7 {
    width: 58.33333%;
  }

  .column--lg-8 {
    width: 66.66667%;
  }

  .column--lg-9 {
    width: 75%;
  }

  .column--lg-10 {
    width: 83.33333%;
  }

  .column--lg-11 {
    width: 91.66667%;
  }

  .column--lg-12 {
    width: 100%;
  }

  [dir="ltr"] .column--lg-pull-0 {
    right: auto;
  }

  [dir="rtl"] .column--lg-pull-0 {
    left: auto;
  }

  [dir="ltr"] .column--lg-pull-1 {
    right: 8.33333%;
  }

  [dir="rtl"] .column--lg-pull-1 {
    left: 8.33333%;
  }

  [dir="ltr"] .column--lg-pull-2 {
    right: 16.66667%;
  }

  [dir="rtl"] .column--lg-pull-2 {
    left: 16.66667%;
  }

  [dir="ltr"] .column--lg-pull-3 {
    right: 25%;
  }

  [dir="rtl"] .column--lg-pull-3 {
    left: 25%;
  }

  [dir="ltr"] .column--lg-pull-4 {
    right: 33.33333%;
  }

  [dir="rtl"] .column--lg-pull-4 {
    left: 33.33333%;
  }

  [dir="ltr"] .column--lg-pull-5 {
    right: 41.66667%;
  }

  [dir="rtl"] .column--lg-pull-5 {
    left: 41.66667%;
  }

  [dir="ltr"] .column--lg-pull-6 {
    right: 50%;
  }

  [dir="rtl"] .column--lg-pull-6 {
    left: 50%;
  }

  [dir="ltr"] .column--lg-pull-7 {
    right: 58.33333%;
  }

  [dir="rtl"] .column--lg-pull-7 {
    left: 58.33333%;
  }

  [dir="ltr"] .column--lg-pull-8 {
    right: 66.66667%;
  }

  [dir="rtl"] .column--lg-pull-8 {
    left: 66.66667%;
  }

  [dir="ltr"] .column--lg-pull-9 {
    right: 75%;
  }

  [dir="rtl"] .column--lg-pull-9 {
    left: 75%;
  }

  [dir="ltr"] .column--lg-pull-10 {
    right: 83.33333%;
  }

  [dir="rtl"] .column--lg-pull-10 {
    left: 83.33333%;
  }

  [dir="ltr"] .column--lg-pull-11 {
    right: 91.66667%;
  }

  [dir="rtl"] .column--lg-pull-11 {
    left: 91.66667%;
  }

  [dir="ltr"] .column--lg-pull-12 {
    right: 100%;
  }

  [dir="rtl"] .column--lg-pull-12 {
    left: 100%;
  }

  [dir="ltr"] .column--lg-push-0 {
    left: auto;
  }

  [dir="rtl"] .column--lg-push-0 {
    right: auto;
  }

  [dir="ltr"] .column--lg-push-1 {
    left: 8.33333%;
  }

  [dir="rtl"] .column--lg-push-1 {
    right: 8.33333%;
  }

  [dir="ltr"] .column--lg-push-2 {
    left: 16.66667%;
  }

  [dir="rtl"] .column--lg-push-2 {
    right: 16.66667%;
  }

  [dir="ltr"] .column--lg-push-3 {
    left: 25%;
  }

  [dir="rtl"] .column--lg-push-3 {
    right: 25%;
  }

  [dir="ltr"] .column--lg-push-4 {
    left: 33.33333%;
  }

  [dir="rtl"] .column--lg-push-4 {
    right: 33.33333%;
  }

  [dir="ltr"] .column--lg-push-5 {
    left: 41.66667%;
  }

  [dir="rtl"] .column--lg-push-5 {
    right: 41.66667%;
  }

  [dir="ltr"] .column--lg-push-6 {
    left: 50%;
  }

  [dir="rtl"] .column--lg-push-6 {
    right: 50%;
  }

  [dir="ltr"] .column--lg-push-7 {
    left: 58.33333%;
  }

  [dir="rtl"] .column--lg-push-7 {
    right: 58.33333%;
  }

  [dir="ltr"] .column--lg-push-8 {
    left: 66.66667%;
  }

  [dir="rtl"] .column--lg-push-8 {
    right: 66.66667%;
  }

  [dir="ltr"] .column--lg-push-9 {
    left: 75%;
  }

  [dir="rtl"] .column--lg-push-9 {
    right: 75%;
  }

  [dir="ltr"] .column--lg-push-10 {
    left: 83.33333%;
  }

  [dir="rtl"] .column--lg-push-10 {
    right: 83.33333%;
  }

  [dir="ltr"] .column--lg-push-11 {
    left: 91.66667%;
  }

  [dir="rtl"] .column--lg-push-11 {
    right: 91.66667%;
  }

  [dir="ltr"] .column--lg-push-12 {
    left: 100%;
  }

  [dir="rtl"] .column--lg-push-12 {
    right: 100%;
  }

  [dir="ltr"] .column--lg-offset-0 {
    margin-left: 0%;
  }

  [dir="rtl"] .column--lg-offset-0 {
    margin-right: 0%;
  }

  [dir="ltr"] .column--lg-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--lg-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--lg-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--lg-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--lg-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--lg-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--lg-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--lg-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--lg-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--lg-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--lg-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--lg-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--lg-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--lg-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--lg-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--lg-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--lg-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--lg-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--lg-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--lg-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--lg-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--lg-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--lg-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--lg-offset-12 {
    margin-right: 100%;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
  cursor: pointer;
  background: none;
  border: 0;
}

.dropdown-toggle:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: calc(16px - 4px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: inherit;
  content: "\f107";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-toggle:after {
  margin-left: 8px;
}

[dir="rtl"] .dropdown-toggle:after {
  margin-right: 8px;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 170px;
  padding: 10px 0;
  margin-top: 1px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

[dir="ltr"] .dropdown-menu {
  left: 0;
  text-align: left;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  text-align: right;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  display: block;
  padding: 5px 0;
  margin: 5px 20px 10px;
  font-size: 11px;
  font-weight: normal;
  color: #969696;
  border-bottom: 1px solid #d8d8d8;
}

.dropdown-menu [role="menuitem"] {
  display: block;
  width: 100%;
  line-height: inherit;
  color: #333;
  text-align: start;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

[dir="ltr"] .dropdown-menu [role="menuitem"] {
  padding: 7px 40px 7px 20px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover,
.dropdown-menu [role="menuitem"]:focus {
  color: #333;
  text-decoration: none;
  background: #f3f3f3;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  display: inline-block;
  width: 12px;
  height: 12px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
}

[dir="ltr"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-left: 10px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-right: 10px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  float: left;
  margin-right: 10px;
  margin-left: 0;
}

.dropdown-menu [role="menuitem"][hidden],
.dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

[dir="ltr"] .dropdown-menu-end {
  right: 0;
  left: auto;
}

[dir="rtl"] .dropdown-menu-end {
  right: auto;
  left: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

[dir="rtl"] .dropdown-menu-end {
  right: auto;
  left: 0;
}

.dropdown-toggle--user {
  padding: 0;
  font-weight: bold;
  color: #fff;
  border: 0;
}

.language-selector {
  display: inline-block;
  vertical-align: middle;
}

.dropdown a[data-url]:before {
  display: none;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-left: 8px;
  vertical-align: text-top;
  content: "";
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-size: auto;
}

.language-selector--flags.dropdown a[data-url]:before {
  display: inline-block;
}

.dropdown a[data-url]:before {
  background-image: url("/themes/custom/ti_zendesk_theme/images/01K3R803P4N7MYJHCCGQK88JFT.png");
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/af"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/af-za"]:before {
  background-position: 0 0;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/af"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/af-za"]:before {
  background-position: 100% 0;
}

.dropdown a[data-url*="/hc/change_language/am"]:before {
  background-position: -22px 0;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/ar"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/ar-ae"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/ar-ps"]:before {
  background-position: 0 -22px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/ar"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/ar-ae"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/ar-ps"]:before {
  background-position: 100% -22px;
}

.dropdown a[data-url*="/hc/change_language/az"]:before {
  background-position: -22px -22px;
}

.dropdown a[data-url*="/hc/change_language/be"]:before {
  background-position: -44px 0;
}

.dropdown a[data-url*="/hc/change_language/bg-bg"]:before,
.dropdown a[data-url*="/hc/change_language/bg"]:before {
  background-position: -44px -22px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/bn"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/bn-in"]:before {
  background-position: 0 -44px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/bn"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/bn-in"]:before {
  background-position: 100% -44px;
}

.dropdown a[data-url*="/hc/change_language/bo"]:before {
  background-position: -22px -44px;
}

.dropdown a[data-url*="/hc/change_language/bs"]:before {
  background-position: -44px -44px;
}

.dropdown a[data-url*="/hc/change_language/cs"]:before,
.dropdown a[data-url*="/hc/change_language/cs-cz"]:before {
  background-position: -66px 0;
}

.dropdown a[data-url*="/hc/change_language/cy"]:before {
  background-position: -66px -22px;
}

.dropdown a[data-url*="/hc/change_language/da"]:before,
.dropdown a[data-url*="/hc/change_language/da-dk"]:before {
  background-position: -66px -44px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-at"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-be"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-ch"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-dk"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-it"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-lu"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/de-ro"]:before {
  background-position: 0 -66px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-at"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-be"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-ch"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-dk"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-it"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-lu"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/de-ro"]:before {
  background-position: 100% -66px;
}

.dropdown a[data-url*="/hc/change_language/el"]:before,
.dropdown a[data-url*="/hc/change_language/el-gr"]:before {
  background-position: -22px -66px;
}

.dropdown a[data-url*="/hc/change_language/et"]:before,
.dropdown a[data-url*="/hc/change_language/et-ee"]:before {
  background-position: -44px -66px;
}

.dropdown a[data-url*="/hc/change_language/eu"]:before,
.dropdown a[data-url*="/hc/change_language/eu-es"]:before {
  background-position: -66px -66px;
}

.dropdown a[data-url*="/hc/change_language/fa"]:before {
  background-position: -88px 0;
}

.dropdown a[data-url*="/hc/change_language/fi"]:before {
  background-position: -88px -22px;
}

.dropdown a[data-url*="/hc/change_language/fil"]:before {
  background-position: -88px -44px;
}

.dropdown a[data-url*="/hc/change_language/fo"]:before,
.dropdown a[data-url*="/hc/change_language/fo-dk"]:before {
  background-position: -88px -66px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-002"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-be"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-ca"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-ch"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-fr"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-it"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/fr-lu"]:before {
  background-position: 0 -88px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-002"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-be"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-ca"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-ch"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-fr"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-it"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/fr-lu"]:before {
  background-position: 100% -88px;
}

.dropdown a[data-url*="/hc/change_language/ga"]:before,
.dropdown a[data-url*="/hc/change_language/ga-ie"]:before {
  background-position: -22px -88px;
}

.dropdown a[data-url*="/hc/change_language/he"]:before {
  background-position: -44px -88px;
}

.dropdown a[data-url*="/hc/change_language/hr"]:before {
  background-position: -66px -88px;
}

.dropdown a[data-url*="/hc/change_language/hu"]:before,
.dropdown a[data-url*="/hc/change_language/hu-hu"]:before,
.dropdown a[data-url*="/hc/change_language/hu-ro"]:before,
.dropdown a[data-url*="/hc/change_language/hu-sk"]:before,
.dropdown a[data-url*="/hc/change_language/hu-ua"]:before {
  background-position: -88px -88px;
}

.dropdown a[data-url*="/hc/change_language/hy"]:before {
  background-position: -110px 0;
}

.dropdown a[data-url*="/hc/change_language/id"]:before,
.dropdown a[data-url*="/hc/change_language/id-id"]:before,
.dropdown a[data-url*="/hc/change_language/jv-id"]:before {
  background-position: -110px -22px;
}

.dropdown a[data-url*="/hc/change_language/as-in"]:before,
.dropdown a[data-url*="/hc/change_language/gu"]:before,
.dropdown a[data-url*="/hc/change_language/gu-in"]:before,
.dropdown a[data-url*="/hc/change_language/hi"]:before,
.dropdown a[data-url*="/hc/change_language/hi-in"]:before,
.dropdown a[data-url*="/hc/change_language/kn"]:before,
.dropdown a[data-url*="/hc/change_language/kn-in"]:before,
.dropdown a[data-url*="/hc/change_language/ks-in"]:before,
.dropdown a[data-url*="/hc/change_language/or-in"]:before,
.dropdown a[data-url*="/hc/change_language/pa-in"]:before,
.dropdown a[data-url*="/hc/change_language/sa-in"]:before,
.dropdown a[data-url*="/hc/change_language/sd-in"]:before,
.dropdown a[data-url*="/hc/change_language/ta"]:before,
.dropdown a[data-url*="/hc/change_language/ta-in"]:before,
.dropdown a[data-url*="/hc/change_language/te"]:before,
.dropdown a[data-url*="/hc/change_language/te-in"]:before,
.dropdown a[data-url*="/hc/change_language/ur"]:before,
.dropdown a[data-url*="/hc/change_language/ur-in"]:before {
  background-position: -110px -44px;
}

.dropdown a[data-url*="/hc/change_language/is"]:before {
  background-position: -110px -66px;
}

.dropdown a[data-url*="/hc/change_language/it"]:before,
.dropdown a[data-url*="/hc/change_language/it-ch"]:before,
.dropdown a[data-url*="/hc/change_language/it-it"]:before {
  background-position: -110px -88px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/ja"]:before {
  background-position: 0 -110px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/ja"]:before {
  background-position: 100% -110px;
}

.dropdown a[data-url*="/hc/change_language/ka"]:before {
  background-position: -22px -110px;
}

.dropdown a[data-url*="/hc/change_language/kk"]:before {
  background-position: -44px -110px;
}

.dropdown a[data-url*="/hc/change_language/kl"]:before {
  background-position: -66px -110px;
}

.dropdown a[data-url*="/hc/change_language/km"]:before {
  background-position: -88px -110px;
}

.dropdown a[data-url*="/hc/change_language/ko"]:before,
.dropdown a[data-url*="/hc/change_language/ko-kr"]:before {
  background-position: -110px -110px;
}

.dropdown a[data-url*="/hc/change_language/ky"]:before {
  background-position: -132px 0;
}

.dropdown a[data-url*="/hc/change_language/lt"]:before,
.dropdown a[data-url*="/hc/change_language/lt-lv"]:before,
.dropdown a[data-url*="/hc/change_language/lt-lt"]:before {
  background-position: -132px -22px;
}

.dropdown a[data-url*="/hc/change_language/lv"]:before,
.dropdown a[data-url*="/hc/change_language/lv-lv"]:before {
  background-position: -132px -44px;
}

.dropdown a[data-url*="/hc/change_language/mk"]:before {
  background-position: -132px -66px;
}

.dropdown a[data-url*="/hc/change_language/mn"]:before {
  background-position: -132px -88px;
}

.dropdown a[data-url*="/hc/change_language/ms"]:before,
.dropdown a[data-url*="/hc/change_language/ms-my"]:before,
.dropdown a[data-url*="/hc/change_language/ml"]:before,
.dropdown a[data-url*="/hc/change_language/ml-in"]:before {
  background-position: -132px -110px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/mt"]:before {
  background-position: 0 -132px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/mt"]:before {
  background-position: 100% -132px;
}

.dropdown a[data-url*="/hc/change_language/my"]:before {
  background-position: -22px -132px;
}

.dropdown a[data-url*="/hc/change_language/ne"]:before {
  background-position: -44px -132px;
}

.dropdown a[data-url*="/hc/change_language/nl"]:before,
.dropdown a[data-url*="/hc/change_language/nl-id"]:before,
.dropdown a[data-url*="/hc/change_language/nl-nl"]:before,
.dropdown a[data-url*="/hc/change_language/nl-be"]:before {
  background-position: -66px -132px;
}

.dropdown a[data-url*="/hc/change_language/no"]:before,
.dropdown a[data-url*="/hc/change_language/nb"]:before,
.dropdown a[data-url*="/hc/change_language/nb-no"]:before,
.dropdown a[data-url*="/hc/change_language/nn"]:before,
.dropdown a[data-url*="/hc/change_language/nn-no"]:before {
  background-position: -88px -132px;
}

.dropdown a[data-url*="/hc/change_language/mi-nz"]:before {
  background-position: -110px -132px;
}

.dropdown a[data-url*="/hc/change_language/pl"]:before,
.dropdown a[data-url*="/hc/change_language/pl-cz"]:before,
.dropdown a[data-url*="/hc/change_language/pl-lt"]:before,
.dropdown a[data-url*="/hc/change_language/pl-pl"]:before,
.dropdown a[data-url*="/hc/change_language/pl-ua"]:before {
  background-position: -132px -132px;
}

.dropdown a[data-url*="/hc/change_language/apc-ps"]:before,
.dropdown a[data-url*="/hc/change_language/ajp-ps"]:before {
  background-position: -154px 0;
}

.dropdown a[data-url*="/hc/change_language/ps"]:before {
  background-position: -154px -22px;
}

.dropdown a[data-url*="/hc/change_language/pt-br"]:before {
  background-position: -154px -44px;
}

.dropdown a[data-url*="/hc/change_language/pt"]:before,
.dropdown a[data-url*="/hc/change_language/pt-bt"]:before {
  background-position: -154px -66px;
}

.dropdown a[data-url*="/hc/change_language/ro"]:before,
.dropdown a[data-url*="/hc/change_language/ro-bg"]:before,
.dropdown a[data-url*="/hc/change_language/ro-sk"]:before,
.dropdown a[data-url*="/hc/change_language/ro-ua"]:before,
.dropdown a[data-url*="/hc/change_language/ro-ro"]:before {
  background-position: -154px -88px;
}

.dropdown a[data-url*="/hc/change_language/ru"]:before,
.dropdown a[data-url*="/hc/change_language/ru-ee"]:before,
.dropdown a[data-url*="/hc/change_language/ru-kz"]:before,
.dropdown a[data-url*="/hc/change_language/ru-lt"]:before,
.dropdown a[data-url*="/hc/change_language/ru-lv"]:before,
.dropdown a[data-url*="/hc/change_language/ru-ua"]:before {
  background-position: -154px -110px;
}

.dropdown a[data-url*="/hc/change_language/si"]:before {
  background-position: -154px -132px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/sl"]:before {
  background-position: 0 -154px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/sl"]:before {
  background-position: 100% -154px;
}

.dropdown a[data-url*="/hc/change_language/so"]:before {
  background-position: -22px -154px;
}

.dropdown a[data-url*="/hc/change_language/ca"]:before,
.dropdown a[data-url*="/hc/change_language/ca-es"]:before,
.dropdown a[data-url*="/hc/change_language/gl"]:before,
.dropdown a[data-url*="/hc/change_language/gl-es"]:before,
.dropdown a[data-url*="/hc/change_language/es-419"]:before,
.dropdown a[data-url*="/hc/change_language/es-ar"]:before,
.dropdown a[data-url*="/hc/change_language/es-cl"]:before,
.dropdown a[data-url*="/hc/change_language/es-co"]:before,
.dropdown a[data-url*="/hc/change_language/es-es"]:before,
.dropdown a[data-url*="/hc/change_language/es-hn"]:before,
.dropdown a[data-url*="/hc/change_language/es-mx"]:before,
.dropdown a[data-url*="/hc/change_language/es-pe"]:before,
.dropdown a[data-url*="/hc/change_language/es-pr"]:before,
.dropdown a[data-url*="/hc/change_language/es-us"]:before,
.dropdown a[data-url*="/hc/change_language/es-ve"]:before {
  background-position: -44px -154px;
}

.dropdown a[data-url*="/hc/change_language/sq"]:before {
  background-position: -66px -154px;
}

.dropdown a[data-url*="/hc/change_language/sr-me"]:before {
  background-position: -88px -154px;
}

.dropdown a[data-url*="/hc/change_language/sr"]:before {
  background-position: -110px -154px;
}

.dropdown a[data-url*="/hc/change_language/sv"]:before,
.dropdown a[data-url*="/hc/change_language/sv-se"]:before {
  background-position: -132px -154px;
}

.dropdown a[data-url*="/hc/change_language/sw"]:before {
  background-position: -154px -154px;
}

.dropdown a[data-url*="/hc/change_language/tg"]:before {
  background-position: -176px 0;
}

.dropdown a[data-url*="/hc/change_language/th"]:before {
  background-position: -176px -22px;
}

.dropdown a[data-url*="/hc/change_language/tk"]:before {
  background-position: -176px -44px;
}

.dropdown a[data-url*="/hc/change_language/tl"]:before,
.dropdown a[data-url*="/hc/change_language/tl-ph"]:before {
  background-position: -176px -66px;
}

.dropdown a[data-url*="/hc/change_language/tr"]:before,
.dropdown a[data-url*="/hc/change_language/tr-bg"]:before {
  background-position: -176px -88px;
}

.dropdown a[data-url*="/hc/change_language/uk"]:before,
.dropdown a[data-url*="/hc/change_language/uk-sk"]:before,
.dropdown a[data-url*="/hc/change_language/uk-ua"]:before {
  background-position: -176px -110px;
}

.dropdown a[data-url*="/hc/change_language/en-us"]:before,
.dropdown a[data-url*="/hc/change_language/en-001"]:before,
.dropdown a[data-url*="/hc/change_language/en-ae"]:before,
.dropdown a[data-url*="/hc/change_language/en-150"]:before,
.dropdown a[data-url*="/hc/change_language/en-at"]:before,
.dropdown a[data-url*="/hc/change_language/en-au"]:before,
.dropdown a[data-url*="/hc/change_language/en-be"]:before,
.dropdown a[data-url*="/hc/change_language/en-bg"]:before,
.dropdown a[data-url*="/hc/change_language/en-bo"]:before,
.dropdown a[data-url*="/hc/change_language/en-ca"]:before,
.dropdown a[data-url*="/hc/change_language/en-ch"]:before,
.dropdown a[data-url*="/hc/change_language/en-co"]:before,
.dropdown a[data-url*="/hc/change_language/en-cr"]:before,
.dropdown a[data-url*="/hc/change_language/en-cy"]:before,
.dropdown a[data-url*="/hc/change_language/en-cz"]:before,
.dropdown a[data-url*="/hc/change_language/en-dk"]:before,
.dropdown a[data-url*="/hc/change_language/en-ec"]:before,
.dropdown a[data-url*="/hc/change_language/en-ee"]:before,
.dropdown a[data-url*="/hc/change_language/en-es"]:before,
.dropdown a[data-url*="/hc/change_language/en-gb"]:before,
.dropdown a[data-url*="/hc/change_language/en-gr"]:before,
.dropdown a[data-url*="/hc/change_language/en-gu"]:before,
.dropdown a[data-url*="/hc/change_language/en-hk"]:before,
.dropdown a[data-url*="/hc/change_language/en-hn"]:before,
.dropdown a[data-url*="/hc/change_language/en-hu"]:before,
.dropdown a[data-url*="/hc/change_language/en-id"]:before,
.dropdown a[data-url*="/hc/change_language/en-ie"]:before,
.dropdown a[data-url*="/hc/change_language/en-il"]:before,
.dropdown a[data-url*="/hc/change_language/en-in"]:before,
.dropdown a[data-url*="/hc/change_language/en-it"]:before,
.dropdown a[data-url*="/hc/change_language/en-kr"]:before,
.dropdown a[data-url*="/hc/change_language/en-lr"]:before,
.dropdown a[data-url*="/hc/change_language/en-lt"]:before,
.dropdown a[data-url*="/hc/change_language/en-lu"]:before,
.dropdown a[data-url*="/hc/change_language/en-lv"]:before,
.dropdown a[data-url*="/hc/change_language/en-mx"]:before,
.dropdown a[data-url*="/hc/change_language/en-my"]:before,
.dropdown a[data-url*="/hc/change_language/en-nl"]:before,
.dropdown a[data-url*="/hc/change_language/en-no"]:before,
.dropdown a[data-url*="/hc/change_language/en-nz"]:before,
.dropdown a[data-url*="/hc/change_language/en-pe"]:before,
.dropdown a[data-url*="/hc/change_language/en-ph"]:before,
.dropdown a[data-url*="/hc/change_language/en-pl"]:before,
.dropdown a[data-url*="/hc/change_language/en-pr"]:before,
.dropdown a[data-url*="/hc/change_language/en-ps"]:before,
.dropdown a[data-url*="/hc/change_language/en-pt"]:before,
.dropdown a[data-url*="/hc/change_language/en-ro"]:before,
.dropdown a[data-url*="/hc/change_language/en-se"]:before,
.dropdown a[data-url*="/hc/change_language/en-sg"]:before,
.dropdown a[data-url*="/hc/change_language/en-sk"]:before,
.dropdown a[data-url*="/hc/change_language/en-th"]:before,
.dropdown a[data-url*="/hc/change_language/en-ua"]:before,
.dropdown a[data-url*="/hc/change_language/en-vn"]:before,
.dropdown a[data-url*="/hc/change_language/en-za"]:before {
  background-position: -176px -132px;
}

.dropdown a[data-url*="/hc/change_language/uz"]:before {
  background-position: -176px -154px;
}

[dir="ltr"] .dropdown a[data-url*="/hc/change_language/vi"]:before,
[dir="ltr"] .dropdown a[data-url*="/hc/change_language/vi-vn"]:before {
  background-position: 0 -176px;
}

[dir="rtl"] .dropdown a[data-url*="/hc/change_language/vi"]:before,
[dir="rtl"] .dropdown a[data-url*="/hc/change_language/vi-vn"]:before {
  background-position: 100% -176px;
}

.dropdown a[data-url*="/hc/change_language/nso-za"]:before,
.dropdown a[data-url*="/hc/change_language/st-za"]:before,
.dropdown a[data-url*="/hc/change_language/tz-za"]:before,
.dropdown a[data-url*="/hc/change_language/ts-za"]:before,
.dropdown a[data-url*="/hc/change_language/xh"]:before,
.dropdown a[data-url*="/hc/change_language/xh-za"]:before,
.dropdown a[data-url*="/hc/change_language/zu-za"]:before {
  background-position: -22px -176px;
}

.dropdown a[data-url*="/hc/change_language/zh"]:before,
.dropdown a[data-url*="/hc/change_language/zh-hk"]:before,
.dropdown a[data-url*="/hc/change_language/zh-mo"]:before,
.dropdown a[data-url*="/hc/change_language/zh-sg"]:before,
.dropdown a[data-url*="/hc/change_language/zh-cn"]:before,
.dropdown a[data-url*="/hc/change_language/zh-tw"]:before {
  background-position: -44px -176px;
}

.dropdown a[data-url*="/hc/change_language/es"]:before {
  background-position: -44px -154px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .dropdown a[data-url]:before {
    background-image: url("/themes/custom/ti_zendesk_theme/images/01K3R802AJQSG9QNWC83RMMD8H.png");
    background-size: 198px 198px;
  }
}

@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (--screen-xxs-max) {
  .hidden-xxs {
    display: none !important;
  }
}

.btn,
input[type="submit"],
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-organization-subscribe button,
.subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: var(--strong-font-weight);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-image: none;
  border: var(--border-width) solid transparent;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.btn:focus,
.btn:active:focus,
input[type="submit"]:focus,
input[type="submit"]:active:focus,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active:focus,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active:focus,
.lt-community-follow button:focus,
.lt-community-follow button:active:focus,
.lt-profile__buttons button:focus,
.lt-profile__buttons button:active:focus,
.lt-profile__buttons a:focus,
.lt-profile__buttons a:active:focus,
.lt-organization-subscribe button:focus,
.lt-organization-subscribe button:active:focus,
.subscriptions-subscribe button:focus,
.subscriptions-subscribe button:active:focus,
.pagination-next-link:focus,
.pagination-next-link:active:focus,
.pagination-prev-link:focus,
.pagination-prev-link:active:focus,
.pagination-first-link:focus,
.pagination-first-link:active:focus,
.pagination-last-link:focus,
.pagination-last-link:active:focus {
  outline: none;
}

.btn:hover,
.btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-community-follow button:hover,
.lt-community-follow button:focus,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons a:hover,
.lt-profile__buttons a:focus,
.lt-organization-subscribe button:hover,
.lt-organization-subscribe button:focus,
.subscriptions-subscribe button:hover,
.subscriptions-subscribe button:focus,
.pagination-next-link:hover,
.pagination-next-link:focus,
.pagination-prev-link:hover,
.pagination-prev-link:focus,
.pagination-first-link:hover,
.pagination-first-link:focus,
.pagination-last-link:hover,
.pagination-last-link:focus {
  text-decoration: none;
  box-shadow: var(--box-shadow-big);
}

.btn:active,
input[type="submit"]:active,
.lt-section-subscribe button:active,
.lt-article-subscribe button:active,
.lt-community-follow button:active,
.lt-profile__buttons button:active,
.lt-profile__buttons a:active,
.lt-organization-subscribe button:active,
.subscriptions-subscribe button:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active {
  background-image: none;
  outline: none;
  box-shadow: inset var(--box-shadow-button);
}

.btn--default,
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-organization-subscribe button,
.subscriptions-subscribe button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  color: rgba(133, 10, 7, 1);
  background-color: #fff;
  border-color: rgba(133, 10, 7, 1);
}

.btn--default:hover,
.btn--default:focus,
.btn--default:active,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active,
.lt-community-follow button:hover,
.lt-community-follow button:focus,
.lt-community-follow button:active,
.lt-organization-subscribe button:hover,
.lt-organization-subscribe button:focus,
.lt-organization-subscribe button:active,
.subscriptions-subscribe button:hover,
.subscriptions-subscribe button:focus,
.subscriptions-subscribe button:active,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons button:active,
.lt-profile__buttons a:hover,
.lt-profile__buttons a:focus,
.lt-profile__buttons a:active,
.pagination-next-link:hover,
.pagination-next-link:focus,
.pagination-next-link:active,
.pagination-prev-link:hover,
.pagination-prev-link:focus,
.pagination-prev-link:active,
.pagination-first-link:hover,
.pagination-first-link:focus,
.pagination-first-link:active,
.pagination-last-link:hover,
.pagination-last-link:focus,
.pagination-last-link:active {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
  border-color: rgba(133, 10, 7, 1);
}

input[type="submit"],
.btn--primary {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
  border-color: rgba(133, 10, 7, 1);
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  color: #fff;
  background-color: #4b0604;
  border-color: #4b0604;
}

.btn--topbar {
  padding: 0.75rem 2rem;
  color: #fff;
  background-color: transparent;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .btn--topbar {
    width: 100%;
    font-size: 16px;
  }
}

.btn--topbar:hover,
.btn--topbar:focus,
.btn--topbar:active {
  color: #fff;
  background-color: transparent;
  opacity: 0.6;
}

.btn--submit-a-request {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--login {
  color: rgba(255, 255, 255, 1);
  background-color: #fff;
}

.btn--login:hover,
.btn--login:focus,
.btn--login:active {
  color: rgba(255, 255, 255, 1);
  background-color: #fff;
  opacity: 0.6;
}

.lt-community-subscribe button,
.lt-article-subscribe button {
  position: relative;
}

.lt-community-subscribe button:before,
.lt-article-subscribe button:before {
  position: absolute;
  top: 48%;
  display: block;
  font-size: 26px;
  line-height: 1;
  color: currentColor;
  content: "+";
  transform: translateY(-50%);
}

[dir="ltr"] .lt-community-subscribe button,
[dir="ltr"] .lt-article-subscribe button {
  padding-left: calc(var(--line-height-computed) * 1.3);
}

[dir="ltr"] .lt-community-subscribe button:before,
[dir="ltr"] .lt-article-subscribe button:before {
  left: 9px;
  margin-right: 5px;
}

[dir="rtl"] .lt-community-subscribe button,
[dir="rtl"] .lt-article-subscribe button {
  padding-right: calc(var(--line-height-computed) * 1.3);
}

[dir="rtl"] .lt-community-subscribe button:before,
[dir="rtl"] .lt-article-subscribe button:before {
  right: 9px;
  margin-left: 5px;
}

.topbar {
  position: relative;
  z-index: 99;
  width: 100%;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 1);
}

.topbar--bordered {
  /* border-color: $topbar_border_color transparent #eee transparent;
  border-style: solid;
  border-width: 4px 0 1px; */
}

.topbar__logo {
  height: 50px !important;
}

.topbar__navigation a {
  display: block;
}

.topbar__link {
  color: rgba(133, 10, 7, 1);
  transition: opacity 0.2s;
}

.topbar__link:hover {
  color: rgba(133, 10, 7, 1);
  opacity: 0.6;
}

[dir="ltr"] .topbar__navigation > * + * {
  margin-left: 1rem;
}

[dir="rtl"] .topbar__navigation > * + * {
  margin-right: 1rem;
}

@media (max-width: 991px) {
  .topbar__controls {
    width: 100%;
    max-width: 266px;
    margin: 0 auto;
    text-align: center;
  }

  .topbar__controls > * + *,
  .topbar__collapse > * + * {
    margin-top: 1rem;
  }

  .topbar__collapse {
    display: none;
    padding-top: calc(var(--line-height-computed) / 2);
    padding-bottom: calc(var(--line-height-computed));
  }

  .topbar__menu {
    position: absolute;
    width: 100%;
    padding: 0 var(--grid-gutter-width);
    background: rgba(255, 255, 255, 1);
  }

  [dir="ltr"] .topbar__menu {
    left: 0;
  }

  [dir="rtl"] .topbar__menu {
    right: 0;
  }

  .topbar__navigation {
    width: 100%;
    max-width: 400px;
  }
}

@media (min-width: 992px) {
  [dir="ltr"] .topbar__controls > * + * {
    margin-left: 1rem;
  }

  [dir="rtl"] .topbar__controls > * + * {
    margin-right: 1rem;
  }

  .topbar__menu {
    flex: 1 1 100px;
  }
}

.logo-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.help-center-name {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

@media (max-width: 575px) {
  .help-center-name {
    display: none;
  }
}

.hero-unit {
  position: relative;
  z-index: 2;
  background-color: rgba(247, 243, 243, 1);
}

.hero-unit--no-custom-blocks:after {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 20px;
  content: "";
  background: #F2F7F7;
}

[dir="ltr"] .hero-unit--no-custom-blocks:after {
  left: 0;
}

[dir="rtl"] .hero-unit--no-custom-blocks:after {
  right: 0;
}

.hero-unit__title {
  color: rgba(133, 10, 7, 1);
}

@media (min-width: 768px) {
  .hero-unit__title {
    margin-bottom: 2%;
  }
}

@media (max-width: 767px) {
  .hero-unit__title {
    margin-bottom: 30px;
  }
}

.hero-unit__title .underline {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.hero-unit__title .underline:before {
  position: absolute;
  bottom: 5px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(133, 10, 7, 1);
}

[dir="ltr"] .hero-unit__title .underline {
  text-shadow: 3px 0 0 rgba(247, 243, 243, 1), -3px 0 0 rgba(247, 243, 243, 1);
}

[dir="ltr"] .hero-unit__title .underline:before {
  left: 0;
}

[dir="rtl"] .hero-unit__title .underline {
  text-shadow: -3px 0 0 rgba(247, 243, 243, 1), 3px 0 0 rgba(247, 243, 243, 1);
}

[dir="rtl"] .hero-unit__title .underline:before {
  right: 0;
}

.hero-unit__subtitle {
  max-width: 500px;
  line-height: 1.5;
  color: rgba(133, 10, 7, 1);
}

@media (max-width: 767px) {
  .hero-unit__subtitle {
    margin: 0 auto 30px;
  }
}

.hero-unit__image {
  max-width: 95%;
}

.lines-button {
  width: calc(27px + 16px);
  padding: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent !important;
  border: 0;
  box-shadow: none !important;
  transition: 0.3s;
}

.lines-button:focus,
.lines-button:active {
  outline: none;
}

.lines-button:hover {
  opacity: 1;
}

.lines-button:active {
  outline: 0;
  box-shadow: none;
  transition: none;
}

.lines-button:focus {
  outline: 0;
}
/*common to all three-liners */
.lines,
.lines:before,
.lines:after {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.lines {
  position: relative;
  width: 22px;
}

.lines:before,
.lines:after {
  position: absolute;
  width: 27px;
  content: "";
}

.lines:before {
  top: 8px;
}

.lines:after {
  bottom: 8px;
}

[dir="ltr"] .lines {
  margin: 8px 0 8px 5px;
}

[dir="ltr"] .lines:before,
[dir="ltr"] .lines:after {
  right: 0;
  transform-origin: calc(30px / 14) center;
}

[dir="rtl"] .lines {
  margin: 8px 5px 8px 0;
}

[dir="rtl"] .lines:before,
[dir="rtl"] .lines:after {
  left: 0;
  transform-origin: calc(100% - (30px / 14)) center;
}

.lines-button.is-active {
  transform: scale3d(0.8, 0.8, 0.8);
}

.lines-button.is-active .lines {
  background: transparent;
}

.lines-button.is-active .lines:before,
.lines-button.is-active .lines:after {
  top: 0;
  width: 30px;
  transform-origin: 50% 50%;
}

[dir="ltr"] .lines-button.is-active .lines:before {
  transform: translateX(2px) rotate3d(0, 0, 1, 45deg);
}

[dir="ltr"] .lines-button.is-active .lines:after {
  transform: translateX(2px) rotate3d(0, 0, 1, -45deg);
}

[dir="rtl"] .lines-button.is-active .lines:before {
  transform: translateX(-2px) rotate3d(0, 0, 1, -45deg);
}

[dir="rtl"] .lines-button.is-active .lines:after {
  transform: translateX(-2px) rotate3d(0, 0, 1, 45deg);
}

.lt-avatar {
  position: relative;
  display: inline-block;
}

.lt-avatar--agent:before {
  position: absolute;
  bottom: -4px;
  display: flex;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  content: "\f007";
  background-color: rgba(133, 10, 7, 1);
  border: 2px solid #F2F7F7;
  border-radius: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .lt-avatar--agent:before {
  right: -4px;
}

[dir="rtl"] .lt-avatar--agent:before {
  left: -4px;
}

.lt-user-avatar {
  border-radius: 50%;
}

.lt-user-avatar--default {
  width: 48px;
  height: 48px;
}

.lt-user-avatar--topbar {
  width: 40px;
  height: 40px;
}

[dir="ltr"] .lt-user-avatar--topbar {
  margin-right: 8px;
}

[dir="rtl"] .lt-user-avatar--topbar {
  margin-left: 8px;
}

.search-box {
  position: relative;
  clear: both;
}

.search-box svg {
  position: absolute;
  top: 50%;
  display: block;
  width: 25px;
  height: 26px;
  fill: rgba(133, 10, 7, 1);
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .search-box svg {
    left: 30px;
  }
}

@media (max-width: 767px) {
  .search-box svg {
    left: 24px;
  }
}

.search-box .search {
  width: 100%;
}

.search-box #query {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-bottom: var(--border-width) solid var(--hr-border);
  border-radius: 6px 6px 0 0;
}

@media (min-width: 768px) {
  .search-box #query {
    height: 95px;
    padding: 2px 10px 0 70px;
    font-size: var(--font-size-h3);
  }
}

@media (max-width: 767px) {
  .search-box #query {
    height: 73px;
    padding: 2px 10px 0 60px;
    font-size: var(--font-size-h4);
  }
}

.search-box.search-box_page #query {
  border-bottom: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
}

.search-box input[type="submit"] {
  display: none;
}

.searchbox-suggestions ul {
  margin-top: 0;
  margin-bottom: calc(var(--line-height-computed));
  list-style: none;
}

.searchbox-suggestions li {
  margin-bottom: calc(var(--line-height-computed) / 3);
}

[dir="ltr"] .searchbox-suggestions ul {
  padding-left: 0;
}

[dir="rtl"] .searchbox-suggestions ul {
  padding-right: 0;
}

.custom-blocks {
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: var(--box-shadow-base);
}

@media (min-width: 576px) {
  .custom-blocks {
    padding: calc(var(--grid-gutter-width) * 2);
  }

  .custom-blocks .row {
    flex-wrap: nowrap;
  }
}

@media (max-width: 575px) {
  .custom-blocks {
    padding: 0 var(--grid-gutter-width) var(--grid-gutter-width);
  }

  .custom-blocks .column {
    padding-top: var(--grid-gutter-width);
  }
}

.custom-block__link {
  display: block;
  height: 100%;
  text-align: center;
  background: var(--gray-lightest);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
  transition: border-color 0.3s;
}

.custom-block__link:hover {
  border-color: rgba(133, 10, 7, 1);
}

.custom-block__link:hover .custom-block__title {
  color: rgba(133, 10, 7, 1);
}

@media (min-width: 576px) {
  .custom-block__link {
    padding: calc(var(--grid-gutter-width) * 2);
  }
}

@media (max-width: 575px) {
  .custom-block__link {
    padding: var(--grid-gutter-width);
  }
}

.custom-block__icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin: calc(var(--line-height-computed)) auto
    calc(var(--line-height-computed) * 1.6);
}

.custom-block__icon img {
  position: absolute;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
}

.custom-block__icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(204, 64, 0, 1);
}

[dir="ltr"] .custom-block__icon img {
  left: 50%;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .custom-block__icon img {
  right: 50%;
  transform: translate(50%, -50%);
}

.custom-block__title {
  margin-bottom: 16px;
  font-size: var(--font-size-h3);
  font-weight: var(--strong-font-weight);
  color: rgba(133, 10, 7, 1);
  transition: color 0.3s;
}

.custom-block__description {
  margin: 0;
  color: var(--subtitle-text-color);
}

@media (min-width: 768px) {
  .custom-block__description {
    padding: 0 calc(var(--padding-base-horizontal) * 2);
  }
}

@media (max-width: 575px) {
  .custom-block__description {
    padding: 0 calc(var(--padding-base-horizontal) * 2);
  }
}

.category-tree__title-link {
  color: rgba(133, 10, 7, 1);
}

.category-tree__title-link:hover,
.category-tree__title-link:focus,
.category-tree__title-link:active {
  color: rgba(133, 10, 7, 1);
}

.category-tree__description {
  color: var(--subtitle-text-color);
}

.section {
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
  transition: box-shadow 0.3s;
}

@media (min-width: 576px) {
  .section {
    margin-top: calc(var(--line-height-computed) * 0.9);
  }
}

@media (max-width: 575px) {
  .section {
    margin-top: calc(var(--line-height-computed) * 0.8);
  }
}

.section.is-active {
  box-shadow: var(--box-shadow-big);
}

.section__title {
  position: relative;
  cursor: pointer;
}

@media (min-width: 576px) {
  .section__title {
    padding: calc(var(--line-height-computed) * 1.15)
      calc(var(--grid-gutter-width) * 5)
      calc(var(--line-height-computed) * 1.15)
      calc(var(--grid-gutter-width) * 2);
  }
}

@media (max-width: 575px) {
  .section__title {
    padding: calc(var(--line-height-computed))
      calc(var(--grid-gutter-width) * 4) calc(var(--line-height-computed))
      var(--grid-gutter-width);
  }
}

.section__title:hover .section__title-name,
.section__title:focus .section__title-name,
.section__title:active .section__title-name {
  color: rgba(133, 10, 7, 1);
}

.section__title.is-active .section__title-icon {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
}

[dir="ltr"] .section__title.is-active .section__title-icon {
  transform: rotate(180deg);
}

[dir="rtl"] .section__title.is-active .section__title-icon {
  transform: rotate(-180deg);
}

.section__title-name {
  margin: 0;
  font-size: var(--font-size-h5);
  font-weight: 500;
  color: rgba(133, 10, 7, 1);
  transition: color 0.3s;
}

.section__title-icon {
  position: absolute;
  top: calc(50% - 15px);
  display: flex;
  width: 30px;
  height: 30px;
  font-size: var(--font-size-h3);
  color: #fff;
  text-align: center;
  background-color: rgba(133, 10, 7, 1);
  border-radius: 50%;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .section__title-icon {
  right: calc(var(--grid-gutter-width) * 2);
}

[dir="rtl"] .section__title-icon {
  left: calc(var(--grid-gutter-width) * 2);
}

.article-list {
  display: none;
  margin-top: calc(var(--padding-base-horizontal) * -1);
  margin-bottom: 0;
}

.article-list.article-list_page {
  display: block;
  margin-top: 0;
}

@media (min-width: 576px) {
  .article-list {
    padding: 0 calc(var(--grid-gutter-width) * 2);
  }
}

@media (max-width: 575px) {
  .article-list {
    padding: 0 var(--grid-gutter-width);
  }
}

.article-list__item {
  display: block;
  padding: calc(var(--line-height-computed) * 0.8) 0;
  list-style: none;
  border-top: var(--border-width) solid var(--hr-border);
}

.article-list__item:first-child {
  border: none;
}

.article-list__item .fa {
  width: 16px;
  height: 16px;
  font-size: calc(16px - 6px);
  line-height: 1.5;
  color: rgba(0, 105, 192, 1);
  text-align: center;
  border: var(--border-width) solid rgba(0, 105, 192, 1);
  border-radius: 50%;
  transform: translateY(-2px);
}

[dir="ltr"] .article-list__item .fa {
  margin-right: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .article-list__item .fa {
  margin-left: calc(var(--padding-base-horizontal) / 2);
}

.article-list__item-link {
  color: #b50e0a;
}

.article-list__item-link:hover,
.article-list__item-link:focus,
.article-list__item-link:active {
  color: rgba(0, 105, 192, 1);
}

@media (min-width: 576px) {
  .promoted-articles {
    margin-top: calc(var(--line-height-computed) * 3);
  }
}

@media (max-width: 575px) {
  .promoted-articles {
    margin-top: calc(var(--line-height-computed) * 2);
  }
}

.promoted-articles__title {
  margin: 0;
}

.promoted-articles__description {
  margin: 5px 0 calc(var(--line-height-computed) / 3);
  font-size: calc(16px - 1px);
  color: var(--subtitle-text-color);
}

@media (max-width: 575px) {
  .promoted-articles__description {
    margin-bottom: calc(var(--line-height-computed) / 4);
  }
}

@media (min-width: 576px) {
  .promoted-articles__list .column {
    padding-top: calc(var(--grid-gutter-width) * 2);
  }
}

@media (max-width: 575px) {
  .promoted-articles__list .column {
    padding-top: calc(var(--line-height-computed) * 0.8);
  }
}

.promoted-articles__item {
  width: 100%;
  height: 100%;
  padding: var(--grid-gutter-width) calc(var(--grid-gutter-width) * 2);
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
  transition: box-shadow 0.3s;
}

@media (max-width: 575px) {
  .promoted-articles__item {
    padding: var(--grid-gutter-width) calc(var(--grid-gutter-width) * 2 - 5px);
  }
}

.promoted-articles__item:hover {
  box-shadow: var(--box-shadow-big);
}

.promoted-articles__item-title {
  display: block;
  margin-bottom: 5px;
  font-size: var(--font-size-h4);
  font-weight: 500;
}

.promoted-articles__item-text {
  margin: 0;
  font-size: calc(16px - 2px);
  color: var(--subtitle-text-color);
}

.promoted-articles__item-header {
  margin-bottom: calc(var(--line-height-computed) / 1.6);
  overflow: hidden;
}

.promoted-articles__item-img {
  width: 42px;
  height: 42px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}

.promoted-articles__item-img img {
  display: block;
  width: 100%;
  height: 100%;
}

[dir="ltr"] .promoted-articles__item-img {
  float: left;
}

[dir="rtl"] .promoted-articles__item-img {
  float: right;
}

.promoted-articles__item-time {
  margin: 0;
  font-size: calc(16px - 4px);
  line-height: 42px;
  color: var(--subtitle-text-color);
}

[dir="ltr"] .promoted-articles__item-time {
  float: right;
}

[dir="rtl"] .promoted-articles__item-time {
  float: left;
}

.still-have-questions {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
}

@media (min-width: 576px) {
  .still-have-questions {
    padding: calc(var(--padding-base-horizontal) * 2 + 6px)
      calc(var(--padding-base-horizontal) * 4.7);
    margin-top: calc(var(--line-height-computed) * 3.1);
  }
}

@media (max-width: 575px) {
  .still-have-questions {
    padding: calc(var(--padding-base-horizontal) * 2 + 6px)
      calc(var(--padding-base-horizontal) * 2 - 5px);
    margin-top: calc(var(--line-height-computed) * 1.92);
    text-align: center;
  }
}

.still-have-questions .row {
  align-items: center;
}

.still-have-questions__title .underline {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.still-have-questions__title .underline:before {
  position: absolute;
  bottom: 2px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(133, 10, 7, 1);
}

[dir="ltr"] .still-have-questions__title .underline:before {
  left: 0;
}

[dir="rtl"] .still-have-questions__title .underline:before {
  right: 0;
}

.still-have-questions__text {
  margin-bottom: calc(var(--line-height-computed) * 1.15);
  line-height: calc(1.5 + 0.2);
  color: var(--subtitle-text-color);
}

.still-have-questions__btn {
  padding: var(--padding-base-horizontal)
    calc(var(--padding-base-horizontal) * 2);
  font-size: calc(16px - 2px);
  line-height: 1.2;
}

@media (min-width: 576px) {
  .still-have-questions__img-box {
    text-align: right;
  }
}

@media (max-width: 575px) {
  .still-have-questions__img-box {
    margin-top: calc(var(--line-height-computed) * 1.5);
    text-align: center;
  }
}

.still-have-questions__img {
  max-width: 100%;
}

.footer {
  padding: calc(var(--padding-base-horizontal) * 4) 0;
  margin-top: 4rem;
  font-size: calc(16px - 4px);
  color: #4c536e;
  background-color: #fff;
}

@media (max-width: 575px) {
  .footer {
    padding-bottom: calc(var(--padding-base-horizontal) * 1.33);
  }
}

.footer a {
  color: #4c536e;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
  color: rgba(133, 10, 7, 1);
}

.footer__logo {
  margin-bottom: calc(var(--line-height-computed));
}

.footer__logo img {
  height: 50px !important;
}

.footer__text {
  max-width: 370px;
}

@media (max-width: 575px) {
  .footer__text {
    margin-bottom: calc(var(--line-height-computed));
  }
}

.footer__header {
  margin-bottom: calc(var(--line-height-computed));
  font-size: calc(16px - 3px);
  font-weight: var(--strong-font-weight);
  color: rgba(133, 10, 7, 1);
  text-transform: uppercase;
}

.footer__menu {
  display: block;
  padding: 0;
  margin: 0;
}

@media (max-width: 575px) {
  .footer__menu {
    margin-bottom: calc(var(--line-height-computed));
  }
}

.footer__menu li {
  display: block;
  padding: 0;
  margin-bottom: calc(var(--line-height-computed) / 2);
  list-style: none;
}

.footer__menu_contacts {
  overflow: hidden;
}

@media (max-width: 575px) {
  .footer__menu_contacts li {
    float: left;
    width: 50%;
    margin: 0;
  }

  .footer__menu_contacts li:nth-child(2n + 2) {
    padding-left: var(--grid-gutter-width);
  }
}

.footer__social {
  display: flex;
  margin-top: 3px;
}

@media (max-width: 575px) {
  .footer__social {
    margin-bottom: calc(var(--line-height-computed));
    justify-content: space-around;
  }
}

.footer__social-link {
  display: block;
  color: #fff !important;
  text-align: center;
  background-color: #4c536e;
  border-radius: 50%;
}

@media (min-width: 576px) {
  .footer__social-link {
    width: 24px;
    height: 24px;
    margin-left: 9%;
    line-height: 24px !important;
  }
}

@media (max-width: 575px) {
  .footer__social-link {
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 20px !important;
    line-height: 40px !important;
  }
}

[dir="ltr"] .footer__social-link:first-child {
  margin-left: 0;
}

[dir="rtl"] .footer__social-link:first-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .footer_copyright {
    text-align: center;
  }
}

.breadcrumbs {
  display: flex;
  padding: 0;
  margin: 0 0 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #b50e0a;
  vertical-align: middle;
  list-style: none;
}

.breadcrumbs li:before {
  position: absolute;
  top: 50%;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(133, 10, 7, 1);
  content: "\f105";
  transform: translateY(-50%);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.breadcrumbs li:last-child:before {
  display: none;
}

.breadcrumbs li a {
  color: #b50e0a;
}

.breadcrumbs li a:hover,
.breadcrumbs li a:focus,
.breadcrumbs li a:active {
  color: #b50e0a;
  text-decoration: underline;
}

[dir="ltr"] .breadcrumbs li {
  padding: 0 2rem 0 0;
}

[dir="ltr"] .breadcrumbs li:before {
  right: 0.75rem;
}

[dir="ltr"] .breadcrumbs li:last-child {
  padding-right: 0;
}

[dir="rtl"] .breadcrumbs li {
  padding: 0 0 0 2rem;
}

[dir="rtl"] .breadcrumbs li:before {
  left: 0.75rem;
}

[dir="rtl"] .breadcrumbs li:last-child {
  padding-left: 0;
}

[dir="rtl"] .breadcrumbs li:before {
  content: "\f104";
}

.article__body {
  word-break: break-word;
}

.article__vote {
  text-align: center;
}

.article__vote-question {
  margin-bottom: calc(var(--padding-base-horizontal) * 2);
  font-size: var(--font-size-h3);
  font-weight: var(--strong-font-weight);
}

.article__vote-item {
  color: rgba(133, 10, 7, 1);
  border-color: #eceeef;
}

.article__vote-item:before,
.article__vote-item:after {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.article__vote-item:before {
  content: "";
}

.article__vote-item:after {
  content: attr(title);
}

[dir="ltr"] .article__vote-item:before {
  margin-right: 0.875rem;
}

[dir="rtl"] .article__vote-item:before {
  margin-left: 0.875rem;
}

.article__vote-item:hover,
.article__vote-item:active,
.article__vote-item:focus {
  color: rgba(133, 10, 7, 1);
  background-color: transparent;
  border-color: #eceeef;
}

.article__vote-item_up:before {
  width: 16px;
  height: 12px;
  background-image: url(/themes/custom/ti_zendesk_theme/images/01K3R804D272JKF8FB22PA1AET.svg);
}

.article__vote-item_down:before {
  width: 13px;
  height: 13px;
  background-image: url(/themes/custom/ti_zendesk_theme/images/01K3R804F8EK5BK48HJ6YQQTK8.svg);
}

.article__vote-item_voted {
  background-color: #eceeef;
}

.article__vote-count {
  padding-top: calc(var(--padding-base-horizontal) * 2);
}

.article__attachments {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.article-container {
  display: flex;
  margin-right: calc(var(--grid-gutter-width) * -1);
  margin-left: calc(var(--grid-gutter-width) * -1);
  flex-wrap: wrap;
}

.article-container__column {
  width: 100%;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
}

.article-container__sidenav,
.article-container__toc {
  display: none;
}

.sidenav-enabled .article-container__sidenav,
.toc-enabled .article-container__toc {
  display: block;
}

.sidenav-enabled .article-container__sidenav {
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .article-container__article {
    width: calc(100% / 12 * 8);
  }

  .article-container__sidebar {
    width: calc(100% / 12 * 4);
  }

  .toc-enabled .article-container__toc {
    width: calc(100% / 12 * 4);
  }

  .sidenav-enabled .article-container__sidenav {
    width: calc(100% / 12 * 4);
  }

  [dir="ltr"] .sidenav-enabled .article-container__sidebar {
    margin-left: calc(100% / 12 * 4);
  }

  [dir="rtl"] .sidenav-enabled .article-container__sidebar {
    margin-right: calc(100% / 12 * 4);
  }

  .sidenav-enabled.toc-enabled .article-container__sidenav,
  .sidenav-enabled.toc-enabled .article-container__toc {
    width: calc(100% / 12 * 3);
  }

  .sidenav-enabled.toc-enabled .article-container__article {
    width: calc(100% / 12 * 6);
  }

  [dir="ltr"] .sidenav-enabled.toc-enabled .article-container__sidebar {
    margin-left: calc(100% / 12 * 3);
  }

  [dir="rtl"] .sidenav-enabled.toc-enabled .article-container__sidebar {
    margin-right: calc(100% / 12 * 3);
  }
}

@media (min-width: 992px) {
  .sidenav-enabled.toc-enabled .article-container__article {
    width: calc(100% / 12 * 7);
  }

  .sidenav-enabled.toc-enabled .article-container__toc {
    width: calc(100% / 12 * 2);
  }
}

.content-tags__list {
  display: flex;
  padding: 0;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .content-tags__list {
    display: none;
  }

  .content-tags__list.is-active {
    display: flex;
  }
}

.content-tags__item {
  padding: 6px 12px;
  color: rgba(133, 10, 7, 1);
  background-color: transparent;
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.content-tags__item:hover,
.content-tags__item:active,
.content-tags__item:focus {
  color: rgba(133, 10, 7, 1);
  background-color: #eceeef;
}

.content-tags__item--search {
  display: inline-flex;
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
}

.content-tags__item--search .label {
  display: inline-block;
}

.content-tags__item--search .close-icon {
  color: #fff;
}

.content-tags__item--search:hover,
.content-tags__item--search:active,
.content-tags__item--search:focus {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
}

[dir="ltr"] .content-tags__item--search .label {
  margin-right: 3px;
}

[dir="rtl"] .content-tags__item--search .label {
  margin-left: 3px;
}

.search-results-filter__title-btn {
  width: 100%;
  background-color: transparent;
  border: none;
}

[dir="ltr"] .search-results-filter__title-btn {
  text-align: left;
}

[dir="ltr"] .search-results-filter__title-btn.search-results-filter__title {
  margin-left: 0;
}

[dir="rtl"] .search-results-filter__title-btn {
  text-align: right;
}

[dir="rtl"] .search-results-filter__title-btn.search-results-filter__title {
  margin-right: 0;
}

.search-results-filter__list.is-active {
  display: block;
}

.lt-entry-info {
  display: flex;
  margin: 0;
}

.lt-entry-info__avatar {
  flex-shrink: 0;
}

[dir="ltr"] .lt-entry-info__avatar {
  margin-right: 1rem;
}

[dir="rtl"] .lt-entry-info__avatar {
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .lt-entry-info_right {
    flex-direction: row-reverse;
  }

  [dir="ltr"] .lt-entry-info_right {
    text-align: right;
  }

  [dir="rtl"] .lt-entry-info_right {
    text-align: left;
  }

  [dir="ltr"] .lt-entry-info_right .lt-entry-info__avatar {
    margin-right: 0;
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-entry-info_right .lt-entry-info__avatar {
    margin-right: 1rem;
    margin-left: 0;
  }
}

.box {
  width: 100%;
  padding: var(--grid-gutter-width) var(--grid-gutter-width);
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-base);
}

@media (min-width: 576px) {
  .box {
    padding: calc(var(--padding-base-horizontal) * 2)
      calc(var(--padding-base-horizontal) * 2);
    margin-bottom: calc(var(--line-height-computed) * 1.54);
  }
}

@media (max-width: 575px) {
  .box {
    padding: var(--padding-base-horizontal)
      calc(var(--padding-base-horizontal) * 1.2);
    margin-bottom: calc(var(--line-height-computed) * 1.15);
  }
}

@media (min-width: 576px) {
  .box_top {
    margin-top: calc(var(--line-height-computed) * 1.54);
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .box_top {
    margin-top: calc(var(--line-height-computed) * 1.15);
    margin-bottom: 0;
  }
}

@media (min-width: 576px) {
  .box_min {
    padding: calc(var(--padding-base-horizontal) * 2);
    margin-bottom: calc(var(--line-height-computed) * 1.54);
  }
}

[dir="ltr"] .text-left {
  text-align: left;
}

[dir="rtl"] .text-left {
  text-align: right;
}

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

[dir="ltr"] .text-right {
  text-align: right;
}

[dir="rtl"] .text-right {
  text-align: left;
}

.text-primary {
  background-color: #f43631;
}

.text-info {
  background-color: rgba(133, 10, 7, 1);
}

.text-warning {
  background-color: #DB8709;
}

.text-danger {
  background-color: #C70606;
}

.text-success {
  background-color: #05BB0C;
}

.comments {
  position: relative;
}

.comments__callout {
  margin: 0;
}

.comments__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comments__title .h3 {
  margin-bottom: calc(var(--padding-base-horizontal) / 3);
}

.comments__title .meta {
  margin: 0;
}

.comment__sorter .btn {
  font-size: calc(16px - 2px);
  font-weight: 500;
  color: #e6110c;
}

.comment__sorter .btn,
.comment__sorter .btn:hover,
.comment__sorter .btn:focus,
.comment__sorter .btn:active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.comment__sorter .btn:after {
  font-size: calc(16px - 2px);
  color: rgba(133, 10, 7, 1);
}

[dir="ltr"] .comment__sorter .btn:after {
  margin-left: 10px;
}

[dir="rtl"] .comment__sorter .btn:after {
  margin-right: 10px;
}

.comments__list {
  display: block;
  padding: 0;
  margin: 0;
}

.comment {
  position: relative;
  display: flex;
  padding: calc(var(--padding-base-horizontal) * 1.33);
  margin-top: calc(var(--padding-base-horizontal) * 1.33);
  list-style: none;
  background: var(--gray-lightest);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
  justify-content: space-between;
}

@media (min-width: 576px) {
  .comment {
    padding: calc(var(--padding-base-horizontal) * 2);
  }
}

.comment__body {
  margin-top: calc(var(--padding-base-horizontal) * 1.66);
  word-break: break-word;
}

.comment__body p {
  margin: 0;
}

.vote__control {
  width: 100%;
  font-size: 12px !important;
  color: rgba(133, 10, 7, 1);
}

.vote__control,
.vote__control:hover,
.vote__control:focus,
.vote__control:active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.vote__control:hover,
.vote__control:focus,
.vote__control:active {
  color: #4b0604;
}

.vote__sum {
  width: 100%;
  font-size: calc(16px * 1.66);
  line-height: 1;
  text-align: center;
}

.comment__voting-and-actions {
  flex-shrink: 0;
}

.comment__actions button {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}

.comment-form {
  position: relative;
  margin-top: calc(var(--line-height-computed));
}

@media (min-width: 576px) {
  .comment-form {
    padding-left: calc(40px + 2rem);
  }
}

.comment-form__avatar {
  position: absolute;
  top: 0;
}

@media (max-width: 575px) {
  .comment-form__avatar {
    display: none;
  }
}

[dir="ltr"] .comment-form__avatar {
  left: 0;
}

[dir="rtl"] .comment-form__avatar {
  right: 0;
}

.comment-form__attachments {
  margin-top: var(--padding-base-horizontal);
}

.comment-form__mark-as-solved {
  position: relative;
}

.comment-form__controls {
  padding-top: var(--padding-base-horizontal);
  font-size: calc(16px - 2px);
  font-weight: 500;
}

.comment-form__comment-ccs ul {
  margin-bottom: 0;
}

.comment-form__ccs + textarea {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.comment-form__ccs ul[data-hc-pills-container] {
  margin: 0 0 calc(var(--border-width) * -1);
}

.comment-form__ccs ul[data-hc-pills-container][data-hc-focus="true"] {
  position: relative;
  z-index: 2;
}

.comment__actions {
  position: relative;
}

.comment__actions button {
  text-indent: -9000px;
  text-transform: capitalize;
}

.comment__actions button:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-indent: 1px;
  content: "\f013";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .comment__actions button:after {
  margin-left: 0;
}

[dir="rtl"] .comment__actions button:after {
  margin-right: 0;
}

.vote {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.comment__official-heading {
  position: absolute;
  top: 0;
  width: auto;
  padding: 1px calc(16px / 2);
  font-size: 14px;
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
  border-radius: 0 0 6px 6px;
}

[dir="ltr"] .comment__official-heading {
  right: calc(16px * 5);
}

[dir="rtl"] .comment__official-heading {
  left: calc(16px * 5);
}

.comment--official {
  position: relative;
  padding-top: calc(16px * 1.5);
  padding-right: calc(16px * 2);
  padding-bottom: calc(16px * 1.5);
  padding-left: calc(16px * 2);
  background-color: #f99492 !important;
  border: 1px solid rgba(133, 10, 7, 1) !important;
  border-radius: 6px;
}

.cta-box__img {
  max-width: 180px;
}
/* .cta-box {
  @media (--screen-sm) {
    margin-top: calc(var(--line-height-computed) * 1.54);
  }

  @media (--screen-xs-max) {
    margin-top: calc(var(--line-height-computed) * 1.15);
  }
}

.cta-box__img {
  @media (--screen-lg) {
    float: left;
    margin-right: calc(var(--line-height-computed) * 1.2);
  }

  @media (--screen-md-max) {
    display: inline-block;
  }
}

.cta-box__content {
  @media (--screen-lg) {
    float: left;
    margin: 0;
  }
}

.cta-box__right {
  @media (--screen-lg) {
    float: right;
    margin: 0;
  }
}

.cta-box__left {
  @media (--screen-sm-max) {
    margin-bottom: calc(var(--padding-base-horizontal) * 1.33);
  }
}

.cta-box__right,
.cta-box__left {
  @media (--screen-md-max) {
    text-align: center;
  }
}

.cta-box__title {
  margin-top: calc(var(--line-height-computed) * 1.2);
} */
.share {
  display: flex;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .share {
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .share {
    justify-content: space-evenly;
  }
}

.share li {
  display: block;
  list-style: none;
}

.share li a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.share li a:before {
  position: absolute;
  top: 52%;
  display: block;
  width: 100%;
  font: normal normal normal 20px/35px "Font Awesome 5 Brands";
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

[dir="ltr"] .share li a {
  padding-left: 35px;
}

[dir="ltr"] .share li a:before {
  left: 0;
}

[dir="rtl"] .share li a {
  padding-right: 35px;
}

[dir="rtl"] .share li a:before {
  right: 0;
}

.share-facebook {
  background: #3b5998;
}

.share-facebook:hover {
  background: #2a3f6c;
}

.share-facebook:before {
  content: "\f39e";
}

.share-twitter {
  background: #9bcef5;
}

.share-twitter:hover {
  background: #55acee;
}

.share-twitter:before {
  content: "\f099";
}

.share-googleplus {
  font-size: 12px !important;
  background: #e88a82;
}

.share-googleplus:hover {
  background: #dc4e41;
}

.share-googleplus:before {
  content: "\f0d5";
}

.share-linkedin {
  background: #03a9ff;
}

.share-linkedin:hover {
  background: #0077b5;
}

.share-linkedin:before {
  content: "\f0e1";
}

.related-articles h3:before {
  display: inline-flex;
  width: 18px;
  height: 18px;
  font: normal normal normal calc(18px - 6px) / 1.45 "Font Awesome 5 Free";
  line-height: 1;
  color: rgba(133, 10, 7, 1);
  text-align: center;
  content: "\f005";
  border: 1px solid rgba(133, 10, 7, 1);
  border-radius: 50%;
  transform: translateY(-4px);
  align-items: center;
  justify-content: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

[dir="ltr"] .related-articles h3:before {
  margin-right: calc(15px / 1.5);
}

[dir="rtl"] .related-articles h3:before {
  margin-left: calc(15px / 1.5);
}

.related-articles ul {
  display: block;
  padding: 0;
  margin: 0 0 calc(var(--line-height-computed));
}

.related-articles ul li {
  display: block;
  padding: calc(var(--padding-base-horizontal) * 1.33) 0;
  border-bottom: var(--border-width) solid var(--hr-border);
}

.related-articles ul li a {
  color: #b50e0a;
}

.related-articles ul li a:hover,
.related-articles ul li a:focus,
.related-articles ul li a:active {
  color: rgba(0, 105, 192, 1);
}

.my-activities-header {
  margin-bottom: calc(var(--line-height-computed));
}

.my-activities-items {
  width: 100%;
  margin-bottom: calc(var(--line-height-computed) * 2);
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}

@media (min-width: 576px) {
  .my-activities-items {
    table-layout: auto;
  }
}

.my-activities-items__head {
  display: none;
  color: var(--meta-text-color);
}

@media (min-width: 576px) {
  .my-activities-items__head {
    display: table-header-group;
    font-size: var(--font-size-small);
    font-weight: var(--strong-font-weight);
    text-transform: uppercase;
  }
}

@media (min-width: 576px) {
  .my-activities-items__body {
    display: table-row-group;
  }
}

.my-activities-items__row {
  display: block;
}

@media (min-width: 576px) {
  .my-activities-items__row {
    display: table-row;
  }
}

.my-activities-items__col {
  display: block;
}

@media (min-width: 576px) {
  .my-activities-items__col {
    display: table-cell;
    padding-top: calc(var(--line-height-computed) / 2);
    padding-bottom: calc(var(--line-height-computed) / 2);
    border-bottom: 1px solid var(--hr-border);
  }

  [dir="ltr"] .my-activities-items__col + .my-activities-items__col {
    padding-left: var(--padding-base-horizontal);
  }

  [dir="rtl"] .my-activities-items__col + .my-activities-items__col {
    padding-right: var(--padding-base-horizontal);
  }
}

@media (max-width: 575px) {
  .my-activities-items__request-id {
    display: inline;
  }
}

@media (min-width: 576px) {
  .my-activities-items__request-id {
    display: none;
  }
}

@media (max-width: 575px) {
  .my-activities-item {
    padding: calc(var(--line-height-computed) / 2)
      var(--padding-base-horizontal);
    margin-bottom: calc(var(--line-height-computed));
    border: var(--border-width) solid var(--hr-border);
    border-radius: 6px;
  }
}

.my-activities-item__meta {
  font-size: 14px;
  color: var(--meta-text-color);
}

@media (max-width: 575px) {
  .my-activities-item__meta {
    display: inline-block;
  }

  [dir="ltr"] .my-activities-item__meta {
    margin-right: calc(var(--padding-base-horizontal) / 2);
  }

  [dir="rtl"] .my-activities-item__meta {
    margin-left: calc(var(--padding-base-horizontal) / 2);
  }

  .my-activities-item__meta + .my-activities-item__meta:before {
    content: "\2022";
  }

  [dir="ltr"] .my-activities-item__meta + .my-activities-item__meta:before {
    margin-right: calc(var(--padding-base-horizontal) / 2);
  }

  [dir="rtl"] .my-activities-item__meta + .my-activities-item__meta:before {
    margin-left: calc(var(--padding-base-horizontal) / 2);
  }
}

.my-activities-item__title {
  font-weight: 400;
}

@media (max-width: 575px) {
  .my-activities-item__title {
    font-size: var(--font-size-h4);
  }
}

@media (max-width: 575px) {
  .my-activities-item__icon {
    display: inline-block;
  }
}

@media (min-width: 576px) {
  .my-activities-item__icon {
    display: none;
  }
}

.subscriptions-subscribe div {
  display: inline-block;
}

.my-activities-menu ul {
  list-style: none;
}

[dir="ltr"] .my-activities-menu ul {
  padding-left: 0;
}

[dir="rtl"] .my-activities-menu ul {
  padding-right: 0;
}

.my-activities-menu__items {
  margin-bottom: 0;
}

.my-activities-menu__item {
  margin-bottom: 0;
}

.my-activities-menu__item a {
  display: block;
}

@media (min-width: 576px) {
  .my-activities-menu__item {
    float: left;
  }
}

@media (min-width: 576px) {
  [dir="ltr"] .my-activities-menu__item + .my-activities-menu__item {
    margin-left: var(--padding-base-horizontal);
  }

  [dir="rtl"] .my-activities-menu__item + .my-activities-menu__item {
    margin-right: var(--padding-base-horizontal);
  }
}

.my-activities-menu--main {
  padding-bottom: calc(var(--line-height-computed));
  margin-bottom: calc(var(--line-height-computed));
  border-bottom: var(--border-width) solid var(--hr-border);
}

.my-activities-menu--main .my-activities-menu__item {
  padding: 6px var(--padding-base-horizontal);
  background-color: var(--gray-lighter);
  border-radius: 6px;
}

@media (max-width: 575px) {
  .my-activities-menu--main .my-activities-menu__item {
    margin-bottom: calc(var(--line-height-computed) / 3);
  }
}

.my-activities-menu--main .my-activities-menu__item.is-active {
  font-weight: 600;
  color: rgba(133, 10, 7, 1);
}

.my-activities-menu--sub {
  margin-bottom: calc(var(--line-height-computed));
}

.my-activities-menu--sub .my-activities-menu__item.is-active {
  font-weight: 600;
}

.my-activities-menu--sub .my-activities-menu__item a {
  display: inline-block;
}

@media (min-width: 576px) {
  .my-activities-menu--sub
    .my-activities-menu__item
    + .my-activities-menu__item:before {
    margin-right: calc(var(--padding-base-horizontal) / 2);
    font-size: 10px;
    content: "\2022";
  }
}

.page-description {
  color: var(--subtitle-text-color);
}

.request-table-toolbar {
  display: block;
  height: 100%;
  padding-top: var(--padding-base-horizontal);
  padding-bottom: var(--padding-base-horizontal);
  margin-bottom: calc(var(--padding-base-horizontal) * 2);
  background: var(--gray-lightest);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
}

.request-table-toolbar label {
  font-size: var(--font-size-small);
  font-weight: 500;
}

@media (min-width: 576px) {
  .request-table-filters {
    display: table;
    width: 100%;
  }
}

.request-table-filters__item {
  padding-right: var(--padding-base-horizontal);
  padding-left: var(--padding-base-horizontal);
}

@media (max-width: 575px) {
  .request-table-filters__item {
    min-height: calc(var(--line-height-computed));
  }
}

@media (min-width: 576px) {
  .request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }
}

.request-table-organization {
  display: table;
  width: 100%;
}

.request-table-organization__col {
  display: table-cell;
  vertical-align: middle;
}

.request-table-organization__col--main {
  width: 100%;
}

.request-table-organization__col--button [role="button"] {
  height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
  padding-top: 0;
  padding-bottom: 0;
  line-height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
}

[dir="ltr"] .request-table-organization__col--button {
  padding-left: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .request-table-organization__col--button {
  padding-right: calc(var(--padding-base-horizontal) / 2);
}

.requests-sort-symbol {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}

.requests-sort-symbol:after {
  display: inline-block;
  margin-bottom: 2px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  color: var(--meta-text-color);
  content: "\f0d7";
}

[dir="ltr"] .requests-sort-symbol:after {
  margin-left: 5px;
}

[dir="rtl"] .requests-sort-symbol:after {
  margin-right: 5px;
}

.requests-link {
  color: var(--meta-text-color);
  white-space: nowrap;
}

.requests-link[href*="asc"] .requests-sort-symbol:after {
  content: "\f0d8";
}
/*
Normalize non-controls

Restyle and baseline non-control form elements.
*/
fieldset {
  /*
  Chrome and Firefox set a `min-width: min-content;` on fieldsets,
  so we reset that to ensure it behaves more like a standard block element
  See https:github.com/twbs/bootstrap/issues/12359.
  */
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: calc(var(--line-height-computed));
  font-size: calc(16px * 1.5);
  line-height: inherit;
  color: #373a3c;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}
/*
 Normalize form controls

 While most of our form styles require extra classes, some basic normalization
 is required to ensure optimum display with or without those classes to better
 address browser inconsistencies.
*/
/*  Override content-box in Normalize (* isn't specific enough) */
input[type="search"] {
  box-sizing: border-box;
}
/*  Position radios and checkboxes better */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
/*  Set the height of file controls to match text inputs */
input[type="file"] {
  display: block;
}
/*  Make range inputs behave like textual form controls */
input[type="range"] {
  display: block;
  width: 100%;
}
/*  Make multiple select elements height not fixed */
select[multiple],
select[size] {
  height: auto;
}
/*  Focus for file, radio, and checkbox */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/*  Adjust output element */
output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
}
/*
 Common form controls

 Shared size and type resets for form controls. Apply `.form-control` to any
 of the following form controls:

*/
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.nesty-input,
ul[data-hc-pills-container] {
  display: block;
  width: 100%;
  height: auto;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  border: var(--border-width) solid var(--input-border-color);
  border-radius: 6px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/*  Customize the `:focus` state to imitate native WebKit styles. */
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.nesty-input:focus,
ul[data-hc-pills-container]:focus {
  border-color: var(--input-focus-border-color);
  outline: 0;
}
/*  Placeholder */
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
.nesty-input::-moz-placeholder,
ul[data-hc-pills-container]::-moz-placeholder {
  color: #999;
  opacity: 1;
}

select::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder,
.nesty-input::placeholder,
ul[data-hc-pills-container]::placeholder {
  color: #999;
  opacity: 1;
}

ul[data-hc-pills-container] {
  margin-top: 0;
}

ul[data-hc-pills-container][data-hc-focus="true"] {
  border-color: var(--input-focus-border-color);
}

select {
  width: 100%;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A")
    no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}

[dir="ltr"] select {
  padding-right: 36px;
  background-position: right 12px center;
}

[dir="rtl"] select {
  padding-left: 36px;
  background-position: left 12px center;
}

select::-ms-expand {
  display: none;
}
/*  Reset height for `textarea`s */
textarea {
  height: auto;
  height: calc(
    (var(--line-height-computed) + var(--padding-base-horizontal) + 2px) * 3
  );
  resize: vertical;
}

#hc-wysiwyg {
  border-color: var(--input-border-color);
  border-width: var(--border-width);
}
/*  Search inputs in iOS */
/*
 This overrides the extra rounded corners on search inputs in iOS so that our
 `.form-control` class can properly style them. Note that this cannot simply
 be added to `.form-control` as it's not specific enough. For details, see
 https:github.com/twbs/bootstrap/issues/11586. */
input[type="search"] {
  -webkit-appearance: none;
}
/*  Special styles for iOS temporal inputs

 In Mobile Safari, setting `display: block` on temporal inputs causes the
 text within the input to become vertically misaligned. As a workaround, we
 set a pixel line-height that matches the given height of the input, but only
 for Safari. */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: calc(16px * 1.5 * 2.5);
  }
}
/*  Form groups

 Designed to help with the organization and spacing of vertical forms. For
 horizontal forms, use the predefined grid classes. */
.form-field {
  margin-bottom: calc(var(--line-height-computed));
}

.form-field p {
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 90%;
  color: #f31e19;
}

.form-field .optional {
  color: #e6110c;
}

[dir="ltr"] .form-field .optional {
  margin-left: 4px;
}

[dir="rtl"] .form-field .optional {
  margin-right: 4px;
}

.form-field.boolean {
  position: relative;
}

.form-field.boolean input[type="checkbox"] {
  position: absolute;
}

.form-field.boolean label {
  min-height: calc(var(--line-height-computed));
  /* Ensure the input doesn't jump when there is no text */
  margin-bottom: 0;
  cursor: pointer;
}

[dir="ltr"] .form-field.boolean {
  padding-left: 20px;
}

[dir="ltr"] .form-field.boolean input[type="checkbox"] {
  left: 0;
}

[dir="rtl"] .form-field.boolean {
  padding-right: 20px;
}

[dir="rtl"] .form-field.boolean input[type="checkbox"] {
  right: 0;
}

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
/*  Help text

 Apply to any element you wish to create light text for placement immediately
 below a form control. Use for general help, formatting, or instructional text. */
.form-field p,
.help-block {
  display: block; /* account for any element using help-block */
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 90%;
  color: #f31e19; /* lighten the text some for contrast */
}

.upload-dropzone {
  padding: calc(var(--line-height-computed)) 16px;
  color: rgba(133, 10, 7, 1);
  border-color: var(--input-border-color) !important;
  border-width: var(--border-width);
  border-radius: 6px;
}

.upload-dropzone,
.upload-dropzone a {
  font-size: var(--font-size-small);
}

.upload-dropzone span {
  color: rgba(133, 10, 7, 1);
}

@media (min-width: 576px) and (max-width: 767px) {
  .search-results-box {
    padding: calc(var(--padding-base-horizontal) * 2);
    margin-bottom: calc(var(--line-height-computed) * 1.54);
  }
}

.search-results-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.search-results-count {
  font-size: var(--font-size-h4);
  font-weight: var(--strong-font-weight);
}

.search-result {
  margin-bottom: calc(var(--line-height-computed));
  border-bottom: var(--border-width) solid var(--hr-border);
}

.search-result__title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

.search-result__description {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-small);
}

.search-result__description:empty {
  display: none;
}

.search-result__description em {
  padding: 0 3px;
  font-style: normal;
  font-weight: var(--strong-font-weight);
  background-color: #fff3ca;
  border-radius: 3px;
}

.search-result__meta {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.search-result-votes {
  display: inline-block;
  padding: 2px 4px;
  font-size: var(--font-size-small);
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
  border-radius: 6px;
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.search-results-filters {
  padding: 16px;
  font-size: calc(16px - 2px);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
}
@media (max-width: 575px) {
  .search-results-filters {
    margin-bottom: calc(var(--line-height-computed) * 2);
  }
}

.search-results-filter + .search-results-filter {
  margin-top: 24px;
}

@media (min-width: 576px) {
  .search-results-filter + .search-results-filter {
    margin-top: 32px;
  }
}

.search-results-filter__title {
  margin-bottom: 0;
  font-weight: var(--strong-font-weight);
}

@media (max-width: 575px) {
  .search-results-filter__title {
    position: relative;
    font-size: var(--font-size-h6);
    cursor: pointer;
  }
}

[dir="ltr"] .search-results-filter__title {
  margin-left: 8px;
}

[dir="rtl"] .search-results-filter__title {
  margin-right: 8px;
}

@media (max-width: 575px) {
  .search-results-filter__title:after {
    position: absolute;
    top: 50%;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    line-height: 1.5;
    color: inherit;
    content: "\f107";
    transition: all 0.3s ease;
    transform: translateY(-50%);
  }

  [dir="ltr"] .search-results-filter__title:after {
    right: 0;
    margin-left: 5px;
  }

  [dir="rtl"] .search-results-filter__title:after {
    left: 0;
    margin-right: 5px;
  }

  [dir="ltr"] .search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(-180deg);
  }

  [dir="rtl"] .search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

.search-results-filter__list {
  margin-top: 24px;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .search-results-filter__list {
    display: none;
  }
}

@media (min-width: 576px) {
  .search-results-filter__list {
    display: block !important;
  }
}

.search-results-filter__item {
  display: block;
  margin-bottom: 4px;
}

.search-results-filter__item.is-active .search-results-filter__link {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
  border-color: rgba(133, 10, 7, 1);
}

.search-results-filter__item--subfilter:nth-child(n + 7) {
  display: none;
}

.search-result__subfilters--all .search-results-filter__item:nth-child(n + 7) {
  display: block;
}

.search-result__subfilters--all .search-result__show-more {
  display: none !important;
}

.search-results-filter__link {
  display: block;
  padding: 6px 8px;
  color: rgba(133, 10, 7, 1);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.search-results-filter__link:hover,
.search-results-filter__link:focus,
.search-results-filter__link:active {
  background-color: var(--gray-lightest);
  border-color: var(--gray-lightest);
}

.search-results-filter__link:active {
  background-image: none;
  outline: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.search-results-filter__count {
  opacity: 0.6;
}

.search-result__show-more {
  padding: 0;
  color: rgba(133, 10, 7, 1);
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .search-result__show-more {
  margin-left: 8px;
}

[dir="rtl"] .search-result__show-more {
  margin-right: 8px;
}

.error-page {
  padding-top: 10%;
  padding-bottom: 10%;
  text-align: center;
}

.error-page__title {
  text-transform: capitalize;
}

.lt-profile-header {
  text-align: center;
  border-radius: 6px;
}

.lt-profile-header__avatar {
  display: inline-block;
  margin-bottom: 16px;
}

.lt-profile-header__private-badge {
  display: inline-block;
  margin-bottom: calc(var(--line-height-computed));
  background-color: rgba(133, 10, 7, 1);
}

.lt-profile-header__description {
  word-break: break-all;
  word-break: break-word;
}

[dir="ltr"] .lt-profile__buttons > * + *,
[dir="ltr"] [data-action="userProfileActions"] > * + * {
  margin-left: var(--grid-gutter-width);
}

[dir="rtl"] .lt-profile__buttons > * + *,
[dir="rtl"] [data-action="userProfileActions"] > * + * {
  margin-right: var(--grid-gutter-width);
}

.lt-profile-stats {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: calc(16px - 2px);
  color: var(--meta-text-color);
  list-style: none;
}

[dir="ltr"] .lt-profile-stats {
  padding-left: 0;
}

[dir="rtl"] .lt-profile-stats {
  padding-right: 0;
}

.lt-profile-stats__stat {
  margin-bottom: calc(var(--line-height-computed) / 4);
}

@media (max-width: 767px) {
  .lt-profile-stats__stat {
    display: block;
  }

  .lt-profile-stats__stat:before {
    display: none;
  }
}

[dir="ltr"] .lt-profile-stats__label {
  margin-right: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .lt-profile-stats__label {
  margin-left: calc(var(--padding-base-horizontal) / 2);
}

.lt-profile-stats__value {
  color: rgba(133, 10, 7, 1);
}

.lt-profile-nav {
  margin-bottom: calc(var(--line-height-computed));
  overflow: hidden;
  font-size: var(--font-size-small);
  font-weight: 600;
  background-color: var(--gray-lightest);
  border-radius: 6px;
}

.lt-profile-nav__items {
  margin: 0;
  list-style: none;
}

[dir="ltr"] .lt-profile-nav__items {
  padding-left: 0;
}

[dir="rtl"] .lt-profile-nav__items {
  padding-right: 0;
}

.lt-profile-nav__item {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .lt-profile-nav__item {
    display: inline-block;
    vertical-align: middle;
  }
}

.lt-profile-nav__item a {
  display: block;
  color: rgba(133, 10, 7, 1);
}

.lt-profile-nav__item.is-active {
  color: #fff;
  background-color: rgba(133, 10, 7, 1);
}

.lt-profile-nav__item.is-active,
.lt-profile-nav__item a {
  padding: calc(var(--line-height-computed) / 1.5)
    var(--padding-base-horizontal);
  line-height: 1;
}

[dir="ltr"] .lt-profile-nav__item:after {
  right: var(--padding-base-horizontal) !important;
}

[dir="rtl"] .lt-profile-nav__item:after {
  left: var(--padding-base-horizontal) !important;
}

.lt-profile-section {
  width: 100%;
}

.lt-profile-section__header {
  margin-bottom: calc(var(--line-height-computed));
}

.lt-profile-section__title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-h3);
}

.lt-profile-section__description {
  font-size: var(--font-size-small);
  color: var(--meta-text-color);
}

@media (min-width: 576px) {
  .lt-profile-section__description {
    padding-bottom: 0;
  }
}

.lt-profile-contribution {
  position: relative;
  padding: calc(var(--line-height-computed) / 2) var(--grid-gutter-width);

  word-wrap: break-word;
  background-color: var(--gray-lightest);

  border-radius: 6px;
}

.lt-profile-contribution__header {
  margin-bottom: calc(var(--line-height-computed) / 4);
}

.lt-profile-contribution__status {
  margin-bottom: calc(var(--line-height-computed) / 4);
}

.lt-profile-contribution__title {
  margin-bottom: calc(var(--line-height-computed) / 4);
  font-size: 16px;
  font-weight: 600;
}

.lt-profile-contribution__body {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-profile-contribution--list .lt-profile-contribution__title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"]
  .lt-profile-contribution--list
  .lt-profile-contribution__title:before {
  margin-right: 2px;
}

[dir="rtl"]
  .lt-profile-contribution--list
  .lt-profile-contribution__title:before {
  margin-left: 2px;
}

.lt-profile-contribution__breadcrumbs {
  padding: 0;
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-small);
}

.lt-profile__no-activity,
.lt-profile__private-activity {
  color: var(--meta-text-color);
  text-align: center;
}

.lt-profile-activity-list {
  list-style: none;
}

[dir="ltr"] .lt-profile-activity-list {
  padding-left: 0;
}

[dir="rtl"] .lt-profile-activity-list {
  padding-right: 0;
}

.lt-profile-activity {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) * 1.5);
}

.lt-profile-activity__header {
  margin-bottom: calc(var(--line-height-computed) / 2);

  font-size: var(--font-size-small);
  font-weight: 600;
}

.lt-profile-activity__avatar {
  width: 30px;
  height: 30px;
}

[dir="ltr"] .lt-profile-activity__avatar {
  margin-right: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .lt-profile-activity__avatar {
  margin-left: calc(var(--padding-base-horizontal) / 2);
}

.lt-profile-activity__header:before,
.lt-profile-contribution__title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .lt-profile-activity__header:before,
[dir="ltr"] .lt-profile-contribution__title:before {
  margin-right: 2px;
}

[dir="rtl"] .lt-profile-activity__header:before,
[dir="rtl"] .lt-profile-contribution__title:before {
  margin-left: 2px;
}

[dir="ltr"] .lt-profile-contribution__title:before {
  margin-right: 4px;
}

[dir="rtl"] .lt-profile-contribution__title:before {
  margin-left: 4px;
}

.lt-profile-activity-list--articles .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-article"] .lt-profile-activity__header:before {
  content: "\f15c";
}

.lt-profile-activity-list--posts .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-post"] .lt-profile-activity__header:before {
  content: "\f086";
}

.lt-profile-activity-list--comments .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-comment"] .lt-profile-activity__header:before {
  font-weight: 400;
  content: "\f075";
}

.user-subscribe {
  display: inline-block;
}

.lt-profile-badge-item {
  border: 2px solid #eceeef;
  border-radius: 6px;
}

.lt-profile-badge {
  width: 40px;
  height: 40px;
}

.lt-profile-badge__image {
  width: 40px;
  height: 40px;
}

.request-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.request {
  position: relative;
}

.request-id {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

.request-subject {
  font-size: var(--font-size-h3);
}

@media (min-width: 768px) {
  .request-subject {
    font-size: var(--font-size-h2);
    font-weight: 300;
  }
}

.request-follow-up:empty {
  display: none;
}

.request-sidebar {
  padding: calc(var(--line-height-computed)) var(--padding-base-horizontal) 0;
  margin-bottom: calc(var(--line-height-computed));
  font-size: 14px;
  background: var(--gray-lightest);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
}

.request-sidebar dd {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.request__comment:first-child {
  margin-top: 0;
}

.request-status {
  display: inline-block;
  padding: 1px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  border-radius: 6px;
}

.request-status--solved,
.request-status--closed {
  background-color: #05BB0C;
}

.request-status--new,
.request-status--open {
  background-color: #C70606;
}

.request-status--answered {
  background-color: #DB8709;
}

.attachment-list {
  list-style: none;
}

.attachment-list__item {
  position: relative;
  padding: 0;
  margin-top: calc(var(--line-height-computed) / 2);
  word-break: break-all;
}

.attachment-list__item:last-child {
  margin-bottom: 0;
}

.attachment-list__item .btn {
  width: 100%;
  padding-top: calc(var(--line-height-computed) / 4);
  padding-bottom: calc(var(--line-height-computed) / 4);
}

[dir="ltr"] .attachment-list__item .btn {
  text-align: left;
}

[dir="rtl"] .attachment-list__item .btn {
  text-align: right;
}

.pagination-list {
  list-style: none;
}

[dir="ltr"] .pagination-list {
  padding-left: 0;
  margin-left: 0;
}

[dir="rtl"] .pagination-list {
  padding-right: 0;
  margin-right: 0;
}

.pagination-next,
.pagination-prev,
.pagination-first,
.pagination-last {
  display: inline-block;
}

[dir="ltr"] .pagination-next-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="ltr"] .pagination-prev-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

.section-articles__title {
  margin-bottom: 0;
}

.sidenav-container {
  font-size: 14px !important;
}

.lt-toc--title,
.lt-toc {
  font-size: 14px !important;
}

.skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  padding: 20px;
  margin: 20px;
  overflow: hidden;
  font-size: 14px;
  color: white;
  background-color: black;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .skip-navigation {
  left: -999px;
}

[dir="rtl"] .skip-navigation {
  right: -999px;
}

.skip-navigation:focus,
.skip-navigation:active {
  top: auto;
  z-index: 999;
  overflow: auto;
  text-align: center;
  text-decoration: none;
}

[dir="ltr"] .skip-navigation:focus,
[dir="ltr"] .skip-navigation:active {
  left: auto;
}

[dir="rtl"] .skip-navigation:focus,
[dir="rtl"] .skip-navigation:active {
  right: auto;
}
/* ==========================================================================
  Notification
  ========================================================================== */
.notification {
  display: table;
  width: 100%;
  padding: 13px 15px;
  font-family: sans-serif;
  font-size: 12px;
  color: #555;
  border: 1px solid;
  transition: height 0.2s;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.notification-icon,
.notification-text,
.notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  width: 100%;
  padding: 0 15px;
}

.notification + .notification {
  position: relative;
  top: -1px;
  margin-bottom: -1px;
}
/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon:before,
.notification-error .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}
/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon:before,
.notification-notice .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}
/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon:before,
.notification-alert .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon:before,
.notification-inline.notification-error:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  content: "";
  background-size: cover;
}
/* Dismiss button */
.notification-dismiss,
a.notification-dismiss {
  color: #555;
  text-decoration: none !important;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 100ms ease;
}

.notification-dismiss:hover {
  opacity: 1;
}
/* Inline notifications */
.notification-inline {
  position: relative;
  padding: 5px;
  margin-top: 5px;
  line-height: 14px;
  vertical-align: middle;
  border-radius: 4px;
}

[dir="ltr"] .notification-inline {
  text-align: left;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

.notification-inline[aria-hidden="true"] {
  display: none;
}

.notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
}

[dir="ltr"] .notification-inline.notification-error:before {
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: -2px 0 0 5px;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  color: #cc3340;
  background-color: #fff0f1;
  border: 1px solid #e35b66;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

[dir="ltr"] .notification-left-aligned {
  padding-left: 0;
  text-align: left;
}

[dir="rtl"] .notification-left-aligned {
  padding-right: 0;
  text-align: right;
}
/* Community */
.meta {
  font-size: 14px;
  color: #e6110c;
}

.meta__item {
  display: inline-block;
}

[dir="ltr"] .meta__item {
  margin-right: 0.25rem;
}

[dir="rtl"] .meta__item {
  margin-left: 0.25rem;
}

.meta__item + .meta__item:before {
  font-size: 0.75rem;
  content: "\2022";
}

[dir="ltr"] .meta__item + .meta__item:before {
  margin-right: 0.25rem;
}

[dir="rtl"] .meta__item + .meta__item:before {
  margin-left: 0.25rem;
}

.meta__link {
  color: inherit;
}

.meta--profile {
  margin-bottom: 0;
}

.community-nav__item {
  padding: 7px 0;
}

.community-nav__item.is-active {
  font-weight: var(--strong-font-weight);
}

[dir="ltr"] .community-nav__item {
  float: left;
}

[dir="rtl"] .community-nav__item {
  float: right;
}

[dir="ltr"] .community-nav__item + .community-nav__item {
  margin-left: var(--padding-base-horizontal);
}

[dir="rtl"] .community-nav__item + .community-nav__item {
  margin-right: var(--padding-base-horizontal);
}

.community-nav__item--button {
  padding: 0;
}

[dir="ltr"] .community-nav__item--button {
  float: right;
}

[dir="rtl"] .community-nav__item--button {
  float: left;
}

.topic-list {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .topic-list-page {
    margin-bottom: calc(var(--line-height-computed));
  }
}

.topic-list-item:first-child .topic-list-item__box {
  margin-top: 0;
}

@media (min-width: 576px) {
  .topic-list-item:nth-child(2) .topic-list-item__box {
    margin-top: 0;
  }
}

[dir="ltr"] .topic-list-item:nth-child(2n + 1) {
  clear: left;
}

[dir="rtl"] .topic-list-item:nth-child(2n + 1) {
  clear: right;
}

.topic-list-item__box {
  padding: calc(var(--line-height-computed)) var(--padding-base-horizontal);
  margin-top: calc(var(--padding-base-horizontal));
  background: var(--gray-lightest);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 6px;
}

@media (min-width: 576px) {
  .topic-list-item__box {
    margin-top: calc(var(--padding-base-horizontal) * 2);
  }
}

.topic-list-item__title {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

[dir="ltr"] .topic-followers {
  margin-right: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .topic-followers {
  margin-left: calc(var(--padding-base-horizontal) / 2);
}

@media (max-width: 575px) {
  .topic-filters__item {
    margin-bottom: 8px;
  }
}

[dir="ltr"] .topic-filters__item {
  margin-right: 8px;
}

[dir="rtl"] .topic-filters__item {
  margin-left: 8px;
}

.topic-controls {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

@media (min-width: 576px) {
  .topic-controls {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 576px) {
  .topic-controls__item {
    display: flex;
    align-items: center;
  }
}

[dir="ltr"] .topic-followers {
  margin-right: 16px;
}

[dir="rtl"] .topic-followers {
  margin-left: 16px;
}

.topic-controls__item--subscribe {
  display: flex;
  align-items: center;
}

.post__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.post__actions button {
  font-size: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.community-featured-posts {
  margin-top: 0 !important;
  box-shadow: none !important;
}

.community-featured-posts .promoted-articles {
  margin: 0 !important;
}

.post-list {
  clear: both;
}

@media (min-width: 576px) {
  .post-list-page {
    margin-bottom: calc(var(--line-height-computed) * 2);
  }
}

.post-list-item {
  border-bottom: var(--border-width) solid var(--hr-border);
}

.post-list-item:last-child {
  padding: 0;
  border: none;
}

@media (min-width: 576px) {
  .post-list-item {
    display: table;
    width: 100%;
    padding-bottom: calc(var(--line-height-computed));
    margin-top: calc(var(--line-height-computed));
  }
}

@media (max-width: 575px) {
  .post-list-item {
    padding-bottom: var(--padding-base-horizontal);
    margin-top: var(--padding-base-horizontal);
  }
}

.post-list-item__title {
  margin-bottom: 0;
  font-size: var(--font-size-h3);
}

.post-list-item__title .fa-star {
  position: relative;
  top: -4px;
  font-size: 50%;
}

@media (min-width: 576px) {
  .post-list-item__col {
    display: table-cell;
    vertical-align: top;
  }
}

@media (min-width: 576px) {
  .post-list-item__col--main {
    width: 60%;
  }
}

@media (min-width: 576px) {
  .post-list-item__col--side {
    width: 40%;
    text-align: right;
  }
}

.post-info {
  font-size: 14px;
  color: var(--meta-text-color);
}

@media (min-width: 576px) {
  .post-info {
    float: right;
    min-width: 90px;
    padding: calc(var(--padding-base-horizontal) / 2)
      var(--padding-base-horizontal);
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 6px;
  }
}

@media (min-width: 576px) {
  .post-info__count {
    display: block;
    font-weight: var(--strong-font-weight);
    color: rgba(133, 10, 7, 1);
  }
}

@media (max-width: 575px) {
  .post-info + .post-info:before {
    margin-right: calc(var(--padding-base-horizontal) / 2);
    font-size: 10px;
    content: "\2022";
  }
}

[dir="ltr"] .post-info + .post-info {
  margin-right: var(--padding-base-horizontal);
}

[dir="rtl"] .post-info + .post-info {
  margin-left: var(--padding-base-horizontal);
}

.post__actions .dropdown-toggle {
  font-size: 0;
}

.post__actions .dropdown-toggle:after {
  font-size: 16px;
  content: "\f013";
}

[dir="ltr"] .post__actions .dropdown-toggle:after {
  margin-left: 0;
}

[dir="rtl"] .post__actions .dropdown-toggle:after {
  margin-right: 0;
}

.post-status {
  display: inline-block;
  padding: 1px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  border-radius: 6px;
}

.post-status--completed,
.post-status--answered,
.post-status-answered,
.post-status-completed {
  background-color: #088c9e;
}

.post-status--planned,
.post-status-planned {
  background-color: #05BB0C;
}

.post-status--not-planned,
.post-status-not-planned {
  background-color: #05BB0C;
}

.post-status--pinned,
.post-status-pinned {
  background-color: #05BB0C;
}

.post-status--featured,
.post-status-featured {
  background-color: #05BB0C;
}

.community-badge {
  margin: 2px;
}

.community-badge-titles {
  display: inline-flex;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
  background-color: rgba(133, 10, 7, 1);
  border-radius: 4px;
}

.community-badge-achievements {
  display: inline-block;
}

[dir="ltr"] .community-badge-achievements {
  margin: 0 0.25rem 0 0;
}

[dir="rtl"] .community-badge-achievements {
  margin: 0 0 0 0.25rem;
}

.community-badge-achievements img {
  width: 22px;
  height: 22px;
}

.community-badge-titles img {
  width: 20px;
  height: 20px;
}

.profile-info .community-badge-achievements img {
  width: 40px;
  height: 40px;
}

.accordion {
  padding-top: 0;
  overflow: hidden;
  border: var(--border-width) solid var(--lt-accordion-border);
  border-radius: var(--border-radius-base);
}

.accordion__summary {
  position: relative;
  display: block;
  width: 100%;
  padding: var(--lt-accordion-padding-vertical)
    var(--lt-accordion-padding-horizontal);
  font-weight: var(--font-weight-bold);
  color: var(--accordion-color-text, var(--color-text-primary));
  list-style: none;
  cursor: pointer;
  background-color: transparent;
  background-image: none;
  border: 0;
  touch-action: manipulation;
}

[dir="ltr"] .accordion__summary {
  text-align: left;
}

[dir="rtl"] .accordion__summary {
  text-align: right;
}

.accordion__summary-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion__item + .accordion__item summary {
  border-top: var(--border-width) solid var(--lt-accordion-border);
}

.stroke .accordion__item + .accordion__item summary {
  border-top: var(--border-width) solid var(--color-brand-primary);
}

.accordion__content {
  padding-top: var(--lt-accordion-padding-vertical);
  padding-bottom: var(--lt-accordion-padding-vertical);
  margin-right: var(--lt-accordion-padding-horizontal);
  margin-left: var(--lt-accordion-padding-horizontal);
  overflow: hidden;
  border-top: var(--border-width) solid var(--lt-accordion-border);
}

.accordion__content *:last-child {
  margin-bottom: 0;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary-wrapper > .lt-icon {
  transition: transform 0.3s;
  margin-inline-start: 1rem;
}

[dir="ltr"] details[open] .accordion__summary-wrapper > .lt-icon {
  transform: rotate(180deg);
}

[dir="rtl"] details[open] .accordion__summary-wrapper > .lt-icon {
  transform: rotate(-180deg);
}

.accordion--large {
  border-radius: var(--border-radius-lg);
}

.accordion--large .accordion__summary {
  font-weight: 400;
}

.lt-icon {
  width: 1rem;
  height: 1rem;
}

.accordion--large .accordion__summary-wrapper .lt-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.accordion--large:hover,
.accordion--large:focus,
.accordion[open] {
  border-color: var(--color-brand-primary);
}

.stroke.accordion {
  border: var(--border-width) solid var(--color-brand-primary);
}

.colored-title.accordion details[open] .accordion__summary-wrapper {
  color: var(--color-brand-primary);
}

.colored.accordion details[open] .accordion__summary-wrapper {
  color: var(--color-brand-primary-inverse);
}

.colored.accordion details[open] .accordion__summary {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.neutral.accordion .accordion__summary {
  background-color: rgba(214, 214, 214, 0.2);
}

.neutral.accordion details[open] .accordion__summary {
  border-bottom: var(--border-width) solid var(--lt-accordion-border);
}

.neutral.accordion details[open] .accordion__content {
  border-top: none;
}

.image-with-border {
  padding: var(--image-padding, 1rem);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.image-with-shadow {
  box-shadow: 0 5px 15px 2px var(--gray);
}

.image-with-lightbox {
  cursor: pointer;
}

.image-overlay {
  position: relative;
}

.image-overlay:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
}

.image-with-video-icon {
  position: relative;
  display: block;
}

.image-with-video-icon img {
  width: 100%;
}

.image-with-video-icon:before {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  font-size: 0;
  content: "";
  border-style: solid;
  transition: transform 0.6s ease;
}

.image-with-video-icon:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}

[dir="ltr"] .image-with-video-icon:before {
  left: 50%;
  border-color: transparent transparent transparent #fff;
  border-width: 30px 0 30px 60px;
  transform: translate(-50%, -50%);
}

[dir="ltr"] .image-with-video-icon:active:before,
[dir="ltr"] .image-with-video-icon:hover:before {
  transform: translate(-50%, -50%) scale(1.1);
}

[dir="rtl"] .image-with-video-icon:before {
  right: 50%;
  border-color: transparent #fff transparent transparent;
  border-width: 30px 60px 30px 0;
  transform: translate(50%, -50%);
}

[dir="rtl"] .image-with-video-icon:active:before,
[dir="rtl"] .image-with-video-icon:hover:before {
  transform: translate(50%, -50%) scale(1.1);
}

.image-with-background {
  padding: var(--image-padding, 2rem);
  background-color: var(--image-bg, var(--light-gray));
  border-radius: var(--border-radius-base);
}
/* Blockquotes */
blockquote {
  position: relative;
  padding: 1rem 3rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-family-body);
  font-size: var(--text-xl);
  line-height: 2rem;
  color: var(--color-text-primary);
  text-align: center;
}

blockquote > *:last-child {
  margin-bottom: 0;
}

blockquote:after,
blockquote:before {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--color-text-primary);
  content: "";
  background-color: var(--color-text-primary);
  -webkit-mask: var(--blockqoute-icon) center/contain no-repeat;
  mask: var(--blockqoute-icon) center/contain no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

blockquote:before {
  top: 0;
}

[dir="ltr"] blockquote:before {
  left: 0;
}

[dir="rtl"] blockquote:before {
  right: 0;
}

blockquote:after {
  bottom: 0;
}

[dir="ltr"] blockquote:after {
  right: 0;
  transform: scaleY(-1) rotate(180deg);
}

[dir="rtl"] blockquote:after {
  left: 0;
  transform: scaleY(-1) rotate(-180deg);
}

.callout,
.note,
.warning,
.danger,
.success {
  position: relative;
  z-index: 1;
  overflow: hidden;
  list-style: none;
  border-radius: var(--border-radius-base);
}

[dir="ltr"] .callout,
[dir="ltr"] .note,
[dir="ltr"] .warning,
[dir="ltr"] .danger,
[dir="ltr"] .success {
  padding: var(--callout-padding) var(--callout-padding) var(--callout-padding)
    calc(var(--callout-padding) * 2);
}

[dir="rtl"] .callout,
[dir="rtl"] .note,
[dir="rtl"] .warning,
[dir="rtl"] .danger,
[dir="rtl"] .success {
  padding: var(--callout-padding) calc(var(--callout-padding) * 2)
    var(--callout-padding) var(--callout-padding);
}

.callout > * + *,
.note > * + *,
.warning > * + *,
.danger > * + *,
.success > * + * {
  margin-top: var(--flow-space, 1rem);
}

.callout:after,
.note:after,
.warning:after,
.danger:after,
.success:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--callout-color);
  border-radius: var(--border-radius-base);
  opacity: 0.15;
}

[dir="ltr"] .callout:after,
[dir="ltr"] .note:after,
[dir="ltr"] .warning:after,
[dir="ltr"] .danger:after,
[dir="ltr"] .success:after {
  left: 0;
}

[dir="rtl"] .callout:after,
[dir="rtl"] .note:after,
[dir="rtl"] .warning:after,
[dir="rtl"] .danger:after,
[dir="rtl"] .success:after {
  right: 0;
}

.callout:before,
.note:before,
.note--default:before,
.callout--info:before,
.note--warning:before,
.warning:before,
.callout--warning:before,
.note--danger:before,
.danger:before,
.callout--danger:before,
.note--success:before,
.success:before,
.callout--success:before {
  position: absolute;
  top: 2rem;
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask-size: cover;
  mask-size: cover;
}

[dir="ltr"] .callout:before,
[dir="ltr"] .note:before,
[dir="ltr"] .note--default:before,
[dir="ltr"] .callout--info:before,
[dir="ltr"] .note--warning:before,
[dir="ltr"] .warning:before,
[dir="ltr"] .callout--warning:before,
[dir="ltr"] .note--danger:before,
[dir="ltr"] .danger:before,
[dir="ltr"] .callout--danger:before,
[dir="ltr"] .note--success:before,
[dir="ltr"] .success:before,
[dir="ltr"] .callout--success:before {
  left: 2rem;
}

[dir="rtl"] .callout:before,
[dir="rtl"] .note:before,
[dir="rtl"] .note--default:before,
[dir="rtl"] .callout--info:before,
[dir="rtl"] .note--warning:before,
[dir="rtl"] .warning:before,
[dir="rtl"] .callout--warning:before,
[dir="rtl"] .note--danger:before,
[dir="rtl"] .danger:before,
[dir="rtl"] .callout--danger:before,
[dir="rtl"] .note--success:before,
[dir="rtl"] .success:before,
[dir="rtl"] .callout--success:before {
  right: 2rem;
}

.note:before,
.note--default:before,
.callout:before,
.callout--info:before {
  background-color: var(--info-callout-color);
  -webkit-mask: var(--info-callout-icon) center/contain no-repeat;
  mask: var(--info-callout-icon) center/contain no-repeat;
}

.note--success:before,
.success:before,
.callout--success:before {
  background-color: var(--success-callout-color);
  -webkit-mask: var(--success-callout-icon) center/contain no-repeat;
  mask: var(--success-callout-icon) center/contain no-repeat;
}

.note--danger:before,
.danger:before,
.callout--danger:before {
  background-color: var(--danger-callout-color);

  -webkit-mask: var(--danger-callout-icon) center/contain no-repeat;
  mask: var(--danger-callout-icon) center/contain no-repeat;
}

.note--warning:before,
.warning:before,
.callout--warning:before {
  background-color: var(--warning-callout-color);
  -webkit-mask: var(--warning-callout-icon) center/contain no-repeat;
  mask: var(--warning-callout-icon) center/contain no-repeat;
}

.shadow.callout,
.shadow.note,
.shadow.warning,
.shadow.danger,
.shadow.success {
  box-shadow: var(--callout-box-shadow);
}

[dir="ltr"] .minimal.callout,
[dir="ltr"] .minimal.note,
[dir="ltr"] .minimal.warning,
[dir="ltr"] .minimal.danger,
[dir="ltr"] .minimal.success {
  border-left: none;
}

[dir="rtl"] .minimal.callout,
[dir="rtl"] .minimal.note,
[dir="rtl"] .minimal.warning,
[dir="rtl"] .minimal.danger,
[dir="rtl"] .minimal.success {
  border-right: none;
}

.stroke.note,
.minimal.stroke.note,
.minimal.stroke.callout--info,
.stroke.callout--info {
  border: 1px solid var(--info-callout-color);
}

.minimal.stroke.warning,
.minimal.stroke.callout--warning,
.stroke.callout--warning,
.stroke.warning {
  border: 1px solid var(--warning-callout-color);
}

.minimal.stroke.callout--danger,
.minimal.stroke.danger,
.stroke.callout--danger,
.stroke.danger {
  border: 1px solid var(--danger-callout-color);
}

.minimal.stroke.callout--success,
.minimal.stroke.success,
.stroke.callout--success,
.stroke.success {
  border: 1px solid var(--success-callout-color);
}

.note,
.note--default,
.callout,
.callout--info,
.callout--primary {
  --callout-color: var(--info-callout-color);
}

[dir="ltr"] .note,
[dir="ltr"] .note--default,
[dir="ltr"] .callout,
[dir="ltr"] .callout--info,
[dir="ltr"] .callout--primary {
  border-left: var(--callout-border-width) solid var(--info-callout-color);
}

[dir="rtl"] .note,
[dir="rtl"] .note--default,
[dir="rtl"] .callout,
[dir="rtl"] .callout--info,
[dir="rtl"] .callout--primary {
  border-right: var(--callout-border-width) solid var(--info-callout-color);
}

.warning,
.note--warning,
.callout--warning {
  --callout-color: var(--warning-callout-color);
}

[dir="ltr"] .warning,
[dir="ltr"] .note--warning,
[dir="ltr"] .callout--warning {
  border-left: var(--callout-border-width) solid var(--warning-callout-color);
}

[dir="rtl"] .warning,
[dir="rtl"] .note--warning,
[dir="rtl"] .callout--warning {
  border-right: var(--callout-border-width) solid var(--warning-callout-color);
}

.danger,
.note--danger,
.callout--danger {
  --callout-color: var(--danger-callout-color);
}

[dir="ltr"] .danger,
[dir="ltr"] .note--danger,
[dir="ltr"] .callout--danger {
  border-left: var(--callout-border-width) solid var(--danger-callout-color);
}

[dir="rtl"] .danger,
[dir="rtl"] .note--danger,
[dir="rtl"] .callout--danger {
  border-right: var(--callout-border-width) solid var(--danger-callout-color);
}

.success,
.note--success,
.callout--success {
  --callout-color: var(--success-callout-color);
}

[dir="ltr"] .success,
[dir="ltr"] .note--success,
[dir="ltr"] .callout--success {
  border-left: var(--callout-border-width) solid var(--success-callout-color);
}

[dir="rtl"] .success,
[dir="rtl"] .note--success,
[dir="rtl"] .callout--success {
  border-right: var(--callout-border-width) solid var(--success-callout-color);
}

.no-icon.callout,
.no-icon.note,
.no-icon.warning,
.no-icon.danger,
.no-icon.success {
  padding: var(--callout-padding);
}

.no-icon.callout:before,
.no-icon.note:before,
.no-icon.warning:before,
.no-icon.danger:before,
.no-icon.success:before {
  display: none;
}

.transparent.callout:after,
.transparent.note:after,
.transparent.warning:after,
.transparent.danger:after,
.transparent.success:after {
  background-color: transparent;
}

.neutral.callout:after,
.neutral.note:after,
.neutral.warning:after,
.neutral.danger:after,
.neutral.success:after {
  background-color: var(--neutral-callout-color);
  opacity: 0.2;
}

code {
  font-size: 0.875em;
  word-wrap: break-word;
}

.rte code:not([class]) {
  padding: 0.25em;
  background-color: var(--code-bg);
  border-radius: var(--border-radius-base);
}

.rte pre code {
  padding: 1.25rem;
  border-radius: var(--border-radius-base);
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

pre {
  position: relative;
}

.lt-copy-code {
  position: absolute;
  top: 22px;
  z-index: 2;
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-theme-text, var(--color-text-primary));
  cursor: pointer;
}

.lt-copy-code:before {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  content: "";
}

[dir="ltr"] .lt-copy-code {
  right: 22px;
}

[dir="ltr"] .lt-copy-code:before {
  margin-right: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir="rtl"] .lt-copy-code {
  left: 22px;
}

[dir="rtl"] .lt-copy-code:before {
  margin-left: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir] .lt-copy-code:before {
  background-size: 18px auto;
}

.list-check ul:not([class]),
.list-bullet ul:not([class]),
.list-number ul:not([class]),
.list-colored ul:not([class]),
.list-anchor ul:not([class]),
.list-dash ul:not([class]),
.list-file ul:not([class]),
.rte ul:not([class]) {
  list-style-type: disc;
}

[dir="ltr"] .list-check ul:not([class]),
[dir="ltr"] .list-bullet ul:not([class]),
[dir="ltr"] .list-number ul:not([class]),
[dir="ltr"] .list-colored ul:not([class]),
[dir="ltr"] .list-anchor ul:not([class]),
[dir="ltr"] .list-dash ul:not([class]),
[dir="ltr"] .list-file ul:not([class]),
[dir="ltr"] .rte ul:not([class]) {
  padding-left: 1rem;
}

[dir="rtl"] .list-check ul:not([class]),
[dir="rtl"] .list-bullet ul:not([class]),
[dir="rtl"] .list-number ul:not([class]),
[dir="rtl"] .list-colored ul:not([class]),
[dir="rtl"] .list-anchor ul:not([class]),
[dir="rtl"] .list-dash ul:not([class]),
[dir="rtl"] .list-file ul:not([class]),
[dir="rtl"] .rte ul:not([class]) {
  padding-right: 1rem;
}

.list-check ul:not([class]) > li,
.list-bullet ul:not([class]) > li,
.list-number ul:not([class]) > li,
.list-colored ul:not([class]) > li,
.list-anchor ul:not([class]) > li,
.list-dash ul:not([class]) > li,
.list-file ul:not([class]) > li,
.rte ul:not([class]) > li {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check ul:not([class]) > li,
[dir="ltr"] .list-bullet ul:not([class]) > li,
[dir="ltr"] .list-number ul:not([class]) > li,
[dir="ltr"] .list-colored ul:not([class]) > li,
[dir="ltr"] .list-anchor ul:not([class]) > li,
[dir="ltr"] .list-dash ul:not([class]) > li,
[dir="ltr"] .list-file ul:not([class]) > li,
[dir="ltr"] .rte ul:not([class]) > li {
  padding-left: 0.5rem;
}

[dir="rtl"] .list-check ul:not([class]) > li,
[dir="rtl"] .list-bullet ul:not([class]) > li,
[dir="rtl"] .list-number ul:not([class]) > li,
[dir="rtl"] .list-colored ul:not([class]) > li,
[dir="rtl"] .list-anchor ul:not([class]) > li,
[dir="rtl"] .list-dash ul:not([class]) > li,
[dir="rtl"] .list-file ul:not([class]) > li,
[dir="rtl"] .rte ul:not([class]) > li {
  padding-right: 0.5rem;
}

.list-check ul:not([class]) > li::marker,
.list-bullet ul:not([class]) > li::marker,
.list-number ul:not([class]) > li::marker,
.list-colored ul:not([class]) > li::marker,
.list-anchor ul:not([class]) > li::marker,
.list-dash ul:not([class]) > li::marker,
.list-file ul:not([class]) > li::marker,
.rte ul:not([class]) > li::marker {
  color: var(--rte-bullet-color);
}

.rte-enhanced ol {
  list-style: none;
}

.list-check,
.list-bullet,
.list-number,
.rte-enhanced ol,
.rte ol,
.list-colored,
.list-anchor,
.list-dash,
.list-file {
  list-style-position: inside;
}

[dir="ltr"] .list-check,
[dir="ltr"] .list-bullet,
[dir="ltr"] .list-number,
[dir="ltr"] .rte-enhanced ol,
[dir="ltr"] .rte ol,
[dir="ltr"] .list-colored,
[dir="ltr"] .list-anchor,
[dir="ltr"] .list-dash,
[dir="ltr"] .list-file {
  padding-left: 0;
}

[dir="rtl"] .list-check,
[dir="rtl"] .list-bullet,
[dir="rtl"] .list-number,
[dir="rtl"] .rte-enhanced ol,
[dir="rtl"] .rte ol,
[dir="rtl"] .list-colored,
[dir="rtl"] .list-anchor,
[dir="rtl"] .list-dash,
[dir="rtl"] .list-file {
  padding-right: 0;
}

.list-number li,
.rte-enhanced ol li,
.list-colored li,
.list-file li,
.rte li {
  list-style: inherit;
}

.list-number li:last-child,
.rte-enhanced ol li:last-child,
.list-colored li:last-child,
.rte li:last-child {
  margin-bottom: 0;
}

.article__body .list-check,
.article__body .list-bullet,
.article__body .list-number,
.article__body .rte-enhanced ol,
.article__body .list-colored,
.article__body .list-anchor,
.article__body .list-task,
.article__body .list-dash,
.article__body .list-file {
  list-style: none;
}

[dir="ltr"] .article__body .list-check,
[dir="ltr"] .article__body .list-bullet,
[dir="ltr"] .article__body .list-number,
[dir="ltr"] .article__body .rte-enhanced ol,
[dir="ltr"] .article__body .list-colored,
[dir="ltr"] .article__body .list-anchor,
[dir="ltr"] .article__body .list-task,
[dir="ltr"] .article__body .list-dash,
[dir="ltr"] .article__body .list-file {
  padding-left: 0;
}

[dir="rtl"] .article__body .list-check,
[dir="rtl"] .article__body .list-bullet,
[dir="rtl"] .article__body .list-number,
[dir="rtl"] .article__body .rte-enhanced ol,
[dir="rtl"] .article__body .list-colored,
[dir="rtl"] .article__body .list-anchor,
[dir="rtl"] .article__body .list-task,
[dir="rtl"] .article__body .list-dash,
[dir="rtl"] .article__body .list-file {
  padding-right: 0;
}

.list-check > li,
.list-bullet > li,
.list-number > li,
.rte-enhanced ol > li,
.list-colored > li,
.list-task > div,
.list-task > li,
.list-dash > li,
.list-anchor > li,
.list-file > li {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check > li,
[dir="ltr"] .list-bullet > li,
[dir="ltr"] .list-number > li,
[dir="ltr"] .rte-enhanced ol > li,
[dir="ltr"] .list-colored > li,
[dir="ltr"] .list-task > div,
[dir="ltr"] .list-task > li,
[dir="ltr"] .list-dash > li,
[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 2.5rem;
}

[dir="rtl"] .list-check > li,
[dir="rtl"] .list-bullet > li,
[dir="rtl"] .list-number > li,
[dir="rtl"] .rte-enhanced ol > li,
[dir="rtl"] .list-colored > li,
[dir="rtl"] .list-task > div,
[dir="rtl"] .list-task > li,
[dir="rtl"] .list-dash > li,
[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 2.5rem;
}

[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 1.5rem;
}

[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 1.5rem;
}

[dir="ltr"] .list-dash > li {
  padding-left: 1.75rem;
}

[dir="rtl"] .list-dash > li {
  padding-right: 1.75rem;
}

[dir="ltr"] .rte li + ul,
[dir="ltr"] .rte li + ol {
  margin-left: 2.5rem;
}

[dir="rtl"] .rte li + ul,
[dir="rtl"] .rte li + ol {
  margin-right: 2.5rem;
}

.list-check > li:before,
.list-bullet > li:before,
.list-number > li:before,
.list-anchor > li:before,
.list-file > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before,
.list-dash > li:before {
  position: absolute;
  top: 0.15em;
  display: inline-block;
  width: 1.725em;
  height: 1.725em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.725em;
  text-align: center;
  border-radius: 50%;
}

[dir="ltr"] .list-check > li:before,
[dir="ltr"] .list-bullet > li:before,
[dir="ltr"] .list-number > li:before,
[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before,
[dir="ltr"] .rte-enhanced ol > li:before,
[dir="ltr"] .list-colored > li:before,
[dir="ltr"] .list-dash > li:before {
  left: 0;
}

[dir="rtl"] .list-check > li:before,
[dir="rtl"] .list-bullet > li:before,
[dir="rtl"] .list-number > li:before,
[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before,
[dir="rtl"] .rte-enhanced ol > li:before,
[dir="rtl"] .list-colored > li:before,
[dir="rtl"] .list-dash > li:before {
  right: 0;
}

.list-anchor > li:before,
.list-file > li:before {
  width: 1rem;
  height: 1rem;
  content: "";
}

[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before {
  left: 0;
}

[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before {
  right: 0;
}

.list-anchor > li:before {
  top: 0.4rem;
  background: var(--anchor-list-icon) center/contain no-repeat;
}

.list-file > li:before {
  top: 0.5rem;
  background: var(--anchor-file-icon) center/contain no-repeat;
}

.list-bullet > li:before,
.list-check > li:before {
  color: var(--list-bullet-text, var(--color-brand-primary-inverse));
  content: "✓";
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.list-number,
.rte-enhanced ol,
.list-colored {
  counter-reset: list;
}

.list-number > li,
.rte-enhanced ol > li,
.list-colored > li {
  counter-increment: list;
}

.list-number > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before {
  color: var(--list-bullet-bg, var(--color-brand-primary-inverse));
  content: counter(list);
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.task-wrapper {
  display: flex;
  align-items: center;
}

.task-wrapper label {
  display: flex;
  font-weight: normal;
  cursor: pointer;
  align-items: center;
}

[dir="ltr"] .task-wrapper label {
  margin-left: -2rem;
}

[dir="rtl"] .task-wrapper label {
  margin-right: -2rem;
}

.task-wrapper label:before {
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-color: var(--body-color-bg);
  border: 0.05em solid var(--color-text-primary);
  border-radius: 0.15em;
}

[dir="ltr"] .task-wrapper label:before {
  margin-right: 0.5em;
}

[dir="rtl"] .task-wrapper label:before {
  margin-left: 0.5em;
}

.task-wrapper input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}

.task-wrapper label:hover:before,
.task-wrapper input[type="checkbox"]:hover + label:before {
  background-color: var(--color-bg-secondary);
}

.task-wrapper label:focus:before,
.task-wrapper input[type="checkbox"]:focus + label:before {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-brand-primary);
}

.task-wrapper input[type="checkbox"]:checked + label:before {
  display: flex;
  color: var(--color-brand-primary-inverse);
  content: "✓";
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  justify-content: center;
  align-items: center;
}

.list-dash > li:before {
  content: "—";
}

.list-step {
  position: relative;
}

.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: 10px;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-step > li:not(:last-child):after {
  left: calc(1.5rem + 1px);
}

[dir="rtl"] .list-step > li:not(:last-child):after {
  right: calc(1.5rem + 1px);
}

.list-number.list-step > li:not(:last-child):after,
.list-colored.list-step > li:not(:last-child):after,
.list-file.list-step > li:not(:last-child):after,
.list-task.list-step > .task-wrapper:not(:last-child):after,
.list-task.list-step > li:not(:last-child):after,
.list-dash.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: -1.5rem;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-number.list-step > li:not(:last-child):after,
[dir="ltr"] .list-colored.list-step > li:not(:last-child):after,
[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-dash.list-step > li:not(:last-child):after {
  left: calc(1rem - 4px);
}

[dir="rtl"] .list-number.list-step > li:not(:last-child):after,
[dir="rtl"] .list-colored.list-step > li:not(:last-child):after,
[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-dash.list-step > li:not(:last-child):after {
  right: calc(1rem - 4px);
}

[dir="ltr"] .list-file.list-step > li:not(:last-child):after {
  left: 1.5rem;
}

[dir="rtl"] .list-file.list-step > li:not(:last-child):after {
  right: 1.5rem;
}

.list-task.list-step > li {
  position: relative;
}

.list-task.list-step > li:before {
  position: absolute;
  top: calc(1rem - 6px);
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--body-color-bg);
  border: 1px solid var(--color-text-primary);
  border-radius: 50%;
}

[dir="ltr"] .list-task.list-step > li:before {
  left: calc(1rem - 2px);
}

[dir="rtl"] .list-task.list-step > li:before {
  right: calc(1rem - 2px);
}

[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-task.list-step > li:not(:last-child):after {
  left: calc(1rem + 2px);
}

[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-task.list-step > li:not(:last-child):after {
  right: calc(1rem + 2px);
}

.img-magnifier-glass {
  position: absolute;
  width: 150px;
  height: 150px;
  cursor: none;
  border: 1px solid rgb(121, 121, 121);
  border-radius: 50%;
}

.rte iframe,
.rte embed,
.rte object,
.rte video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.rte {
  line-height: 1.8;
  word-break: break-word;
}

.rte > * {
  margin-bottom: 0;
}

.rte > *:not([hidden]) + *:not([hidden]) {
  margin-top: var(--flow-space, 1rem);
}

.rte > * {
  margin-bottom: 0;
}

.rte h1,
.rte h2,
.rte h3 {
  --flow-space: 3rem;
}

.rte h4,
.rte h5,
.rte h6 {
  --flow-space: 2rem;
}

.rte:after {
  display: block;
  clear: both;
  content: "";
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte figcaption {
  margin-top: 1rem;
  opacity: 0.75;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
  background-color: transparent;
}

.rte table:not([class*="table"]) {
  width: 100%;
  table-layout: auto;
}

[dir="ltr"] .rte table:not([class*="table"]) {
  text-align: left;
}

[dir="rtl"] .rte table:not([class*="table"]) {
  text-align: right;
}

.rte table:not([class*="table"]) thead {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) th,
.rte table:not([class*="table"]) td {
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}

[dir="ltr"] .rte table:not([class*="table"]) th:first-child,
[dir="ltr"] .rte table:not([class*="table"]) td:first-child {
  padding-left: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:first-child,
[dir="rtl"] .rte table:not([class*="table"]) td:first-child {
  padding-right: 0;
}

[dir="ltr"] .rte table:not([class*="table"]) th:last-child,
[dir="ltr"] .rte table:not([class*="table"]) td:last-child {
  padding-right: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:last-child,
[dir="rtl"] .rte table:not([class*="table"]) td:last-child {
  padding-left: 0;
}

.rte table:not([class*="table"]) th {
  font-weight: 600;
  vertical-align: bottom;
}

.rte table:not([class*="table"]) tbody tr {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) tbody td {
  padding-top: 0.5rem;
  vertical-align: baseline;
}

.rte table:not([class*="table"]) tbody tr:last-child {
  border-bottom-width: 0;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 575px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    border: var(--border-width) solid var(--color-border);
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .table-responsive > table > thead > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}

.rte table.hover td,
.rte table.hover th,
.rte table.border td,
.rte table.border th,
.rte table.striped td,
.rte table.striped th,
.rte table.colored td,
.rte table.colored th {
  padding: 1rem !important;
}

table.striped tbody tr:nth-child(odd) {
  color: inherit;
}

.rte table.colored:not([class*="table"]) thead {
  border-bottom: none;
}

[dir="ltr"] .table--color-header thead th:first-child,
[dir="ltr"] table.colored thead th:first-child {
  border-top-left-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:first-child,
[dir="rtl"] table.colored thead th:first-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--color-header thead th:last-child,
[dir="ltr"] table.colored thead th:last-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:last-child,
[dir="rtl"] table.colored thead th:last-child {
  border-top-left-radius: var(--border-radius-base-min);
}

table.table--color-header th,
table.colored th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

table.border {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

table.border tbody tr:not(:last-child) td,
table.border th {
  border-bottom: 1px solid var(--color-border);
}

[dir="ltr"] table.border td:not(:first-child),
[dir="ltr"] table.border th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] table.border td:not(:first-child),
[dir="rtl"] table.border th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: calc(var(--line-height-computed));
}

.table th,
.table td {
  padding: 12px;
  vertical-align: top;
}

.table td {
  border-top: 1px solid var(--color-border);
}

.table--color-header tbody tr:first-child td {
  border-top: none;
}

.table thead th {
  vertical-align: bottom;
}

[dir="ltr"] .table thead th {
  text-align: left;
}

[dir="rtl"] .table thead th {
  text-align: right;
}

.table tbody + tbody {
  border-top: 1px solid var(--color-border);
}

.table .table {
  background-color: var(--color-brand-primary-inverse);
}

.table--color-header th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: var(--color-brand-primary-inverse);
}

.table--striped tbody tr:nth-child(odd) {
  color: inherit;
}

.table--hover tbody tr:hover {
  color: inherit;
}

.table--bordered {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--bordered td:not(:first-child),
[dir="ltr"] .table--bordered th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] .table--bordered td:not(:first-child),
[dir="rtl"] .table--bordered th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

.table--striped tbody tr:nth-child(odd),
table.striped tbody tr:nth-child(odd),
.table--hover tbody tr,
.rte table.hover tr {
  position: relative;
}

.table--striped tbody tr:nth-child(odd) td,
table.striped tbody tr:nth-child(odd) td,
.table--hover tbody tr td,
.rte table.hover tr td {
  position: relative;
  z-index: 1;
}

.table--striped th,
.table--striped td,
table.striped th,
.table--striped td {
  position: relative;
}

.table--striped tbody td:after,
table.striped tbody td:after,
.table--hover tbody td:after,
.rte table.hover tbody td:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  opacity: 0.3;
}

[dir="ltr"] .table--striped tbody td:after,
[dir="ltr"] table.striped tbody td:after,
[dir="ltr"] .table--hover tbody td:after,
[dir="ltr"] .rte table.hover tbody td:after {
  left: 0;
}

[dir="rtl"] .table--striped tbody td:after,
[dir="rtl"] table.striped tbody td:after,
[dir="rtl"] .table--hover tbody td:after,
[dir="rtl"] .rte table.hover tbody td:after {
  right: 0;
}

.table--hover tbody td:after,
.rte table.hover tbody td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--striped tbody td:after,
table.striped tbody td:after {
  background-color: var(--color-table-bg-hover);
}

.table--striped tbody tr:nth-child(even) td:after,
table.striped tbody tr:nth-child(even) td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--hover tbody tr:hover td:after,
.rte table.hover tbody tr:hover td:after {
  background-color: var(--color-table-bg-hover);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 576px) {
  .tabs {
    flex-direction: row;
  }
}

.tab {
  flex-basis: 100%;
  padding: 1rem;
  border: var(--border-width) solid var(--color-border);
  border-bottom-right-radius: var(--border-radius-base);
  border-bottom-left-radius: var(--border-radius-base);
}

.tab > *:last-child {
  margin-bottom: 0;
}

.tabs-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  cursor: pointer;
  border-color: var(--color-border);
  border-style: solid;
  border-width: var(--border-width) var(--border-width) 0 var(--border-width);
}

@media (min-width: 576px) {
  .tabs-link {
    margin-bottom: calc(-1 * var(--border-width));
  }

  .tabs-link:not([aria-selected="true"]) {
    border-color: transparent;
  }
}

.tabs-link:first-child {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base);
}

@media (min-width: 576px) {
  .tabs-link {
    border-top-left-radius: var(--border-radius-base);
    border-top-right-radius: var(--border-radius-base);
  }
}

.tabs-link[aria-selected="true"] {
  color: var(--color-brand-primary);
  cursor: pointer;
  background-color: var(--tabs-bg, var(--color-bg));
  border-color: var(--color-border);
}

.underline .tabs-link[aria-selected="true"] {
  border-color: var(--color-brand-primary);
  border-width: 0 0 var(--border-width) 0;
}

.background .tabs-link[aria-selected="true"],
.background .tab {
  position: relative;
  overflow: hidden;
  color: var(--color-text-primary);
  border-width: 0 0 0 0;
}

.background .tab:after,
.background .tabs-link[aria-selected="true"]:after {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-brand-primary);
  opacity: 0.15;
}

[dir="ltr"] .background .tab:after,
[dir="ltr"] .background .tabs-link[aria-selected="true"]:after {
  left: 0;
}

[dir="rtl"] .background .tab:after,
[dir="rtl"] .background .tabs-link[aria-selected="true"]:after {
  right: 0;
}

slider-component {
  position: relative;
  display: block;
}

.slider-grid {
  display: flex;
  padding: 0;
  margin-bottom: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.slider-grid:last-child {
  margin-bottom: 0;
}

.slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
  width: 0.4rem;
  height: 0.4rem;
}

.slider::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 0.4rem;
}

.slider::-webkit-scrollbar-track {
  border-radius: 0.4rem;
}

.slider.slider--tablet {
  position: relative;
  margin-bottom: 1rem;
  overflow-x: auto;
  flex-wrap: inherit;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

[dir="ltr"] .slider.slider--tablet {
  scroll-padding-left: 1.5rem;
}

[dir="rtl"] .slider.slider--tablet {
  scroll-padding-right: 1.5rem;
}

.slider--tablet.smooth {
  scroll-behavior: smooth;
}

.slider--tablet:after {
  width: 0;
  content: "";
}

[dir="ltr"] .slider--tablet:after {
  padding-left: 1.5rem;
}

[dir="rtl"] .slider--tablet:after {
  padding-right: 1.5rem;
}

.slider.slider--tablet .slider__slide {
  margin-bottom: 0;
}

.slider-grid__item {
  flex-grow: 1;
  flex-shrink: 0;
}

.slider-grid__item.slider__slide--full-width {
  width: 100%;
  max-width: none;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  padding-bottom: 0;
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-btn.slider-button {
  display: flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  align-items: center;
  justify-content: center;
}

.slider-button .icon {
  height: 0.6rem;
}

.slider-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.slider-button[disabled] .icon {
  cursor: not-allowed;
}

[dir="ltr"] .slider-button--next .icon {
  transform: rotate(-90deg);
}

[dir="rtl"] .slider-button--next .icon {
  transform: rotate(90deg);
}

[dir="ltr"] .slider-button--prev .icon {
  transform: rotate(90deg);
}

[dir="rtl"] .slider-button--prev .icon {
  transform: rotate(-90deg);
}

[dir="ltr"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

[dir="rtl"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="ltr"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="rtl"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

.slider-counter {
  display: flex;
  justify-content: center;
  min-width: 4.4rem;
}
/* Ekstra design til custom blocks */
.custom-block {
  background: #fff;
  border-radius: 8px;
  padding: 32px 16px 24px 16px;
  box-shadow: 0 4px 18px rgba(30,34,61,0.08);
  margin-bottom: 32px;
}
.row {
  gap: 32px;
}
.footer__mainbox {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30,34,61,0.08);
  margin: 0 auto 32px auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__mainbox .footer__logo img {
  max-width: 220px;
}

.footer__social a img {
  width: 38px;
  height: 38px;
  margin: 0 7px;
  display: inline-block;
  vertical-align: middle;
}
.footer .container,
.footer .container-inner {
  max-width: 1200px !important;  /* samme som ovenfor */
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.footer .row {
  justify-content: flex-start;
  gap: 0;
}
.footer .column--sm-5.custom-block {
  float: none;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: auto;
}
.footer .container-inner { max-width: 1200px; margin: 0 auto; }
.footer .container,
.footer .container-inner {
  max-width: 1200px !important;   /* samme bredde som .container-inner ovenfor */
  margin-left: auto;
  margin-right: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.footer .row {
  gap: 0;
  justify-content: flex-start;
}
.footer .column.column--sm-5.custom-block {
  float: none;
  width: 100%;         /* Fylder hele containerens bredde */
  max-width: 100%;     /* Ingen max på selve kolonnen */
  margin-left: 0;
  margin-right: 0;
}
#request_issue_type_select,
label[for="request_issue_type_select"] { display: none !important; }

.footer__social {
  display: flex;
  justify-content: flex-start;
  gap: 16px;  /* du kan tilpasse afstanden mellem ikonerne */
  margin-top: 8px;
}

.footer__social-link {
  margin: 0;              /* fjerner evt. auto-margen */
}
.course-cta-box {
  background: #fff;
  border-radius: 12px;
  max-width: 1200px;   /* Eller samme som container-inner */
  margin: 40px auto 0 auto;
  padding: 36px 0;
  box-shadow: 0 4px 18px rgba(30,34,61,0.08);
  text-align: center;
}
#request_issue_type_select,
label[for="request_issue_type_select"] {
  display: none !important;
}
.nesty-input,
.nesty-panel,
.request_ticket_form_id .nesty-input {
  display: none !important;
}
/* Skjul CTA-billeder kun på artikelsider */
.article-page .cta-box__img,
.article__body .cta-box__img {
  display: none !important;
}
.cta-box__img {
  display: none !important;
}
.still-have-questions__img,
.still-have-questions__img-box {
  display: none !important;
}
.still-have-questions__btn,
.call-us-cta .btn {
  min-width: 250px;
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 10px;
}
/* Skjul forfatternavn, avatar og profil-link (Peter Toftekær m.fl.) */
.author,
.lt-entry-info__avatar,
.lt-entry-info__author,
a.user-profile {
  display: none !important;
}

/*FIL: 01K3R804B82F5348SZ11CZZE2Y */
.lt-row {
  --lt-gutter-x: 2rem;
  --lt-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--lt-gutter-y) * -1);
  margin-inline-end: calc(var(--lt-gutter-x) / -2);
  margin-inline-start: calc(var(--lt-gutter-x) / -2);
}
.lt-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--lt-gutter-x) / 2);
  padding-left: calc(var(--lt-gutter-x) / 2);
  margin-top: var(--lt-gutter-y);
}

.lt-col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dir="ltr"] .lt-offset-1 {
  margin-inline-start: 8.3333333333%;
}

[dir="rtl"] .lt-offset-1 {
  margin-inline-end: 8.3333333333%;
}

[dir="ltr"] .lt-offset-2 {
  margin-inline-start: 16.6666666667%;
}

[dir="rtl"] .lt-offset-2 {
  margin-inline-end: 16.6666666667%;
}

[dir="ltr"] .lt-offset-3 {
  margin-inline-start: 25%;
}

[dir="rtl"] .lt-offset-3 {
  margin-inline-end: 25%;
}

[dir="ltr"] .lt-offset-4 {
  margin-inline-start: 33.3333333333%;
}

[dir="rtl"] .lt-offset-4 {
  margin-inline-end: 33.3333333333%;
}

[dir="ltr"] .lt-offset-5 {
  margin-inline-start: 41.6666666667%;
}

[dir="rtl"] .lt-offset-5 {
  margin-inline-end: 41.6666666667%;
}

[dir="ltr"] .lt-offset-6 {
  margin-inline-start: 50%;
}

[dir="rtl"] .lt-offset-6 {
  margin-inline-end: 50%;
}

[dir="ltr"] .lt-offset-7 {
  margin-inline-start: 58.3333333333%;
}

[dir="rtl"] .lt-offset-7 {
  margin-inline-end: 58.3333333333%;
}

[dir="ltr"] .lt-offset-8 {
  margin-inline-start: 66.6666666667%;
}

[dir="rtl"] .lt-offset-8 {
  margin-inline-end: 66.6666666667%;
}

[dir="ltr"] .lt-offset-9 {
  margin-inline-start: 75%;
}

[dir="rtl"] .lt-offset-9 {
  margin-inline-end: 75%;
}

[dir="ltr"] .lt-offset-10 {
  margin-inline-start: 83.3333333333%;
}

[dir="rtl"] .lt-offset-10 {
  margin-inline-end: 83.3333333333%;
}

[dir="ltr"] .lt-offset-11 {
  margin-inline-start: 91.6666666667%;
}

[dir="rtl"] .lt-offset-11 {
  margin-inline-end: 91.6666666667%;
}

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

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

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

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

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

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

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

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

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

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

.lt-g-5,
.lt-gx-5 {
  --lt-gutter-x: 2rem;
}

.lt-g-5,
.lt-gy-5 {
  --lt-gutter-y: 2rem;
}

.lt-g-6,
.lt-gx-6 {
  --lt-gutter-x: 2.5rem;
}

.lt-g-6,
.lt-gy-6 {
  --lt-gutter-y: 2.5rem;
}

.lt-g-7,
.lt-gx-7 {
  --lt-gutter-x: 3rem;
}

.lt-g-7,
.lt-gy-7 {
  --lt-gutter-y: 3rem;
}

.lt-g-8,
.lt-gx-8 {
  --lt-gutter-x: 3.5rem;
}

.lt-g-8,
.lt-gy-8 {
  --lt-gutter-y: 3.5rem;
}

.lt-g-9,
.lt-gx-9 {
  --lt-gutter-x: 4rem;
}

.lt-g-9,
.lt-gy-9 {
  --lt-gutter-y: 4rem;
}

@media (min-width: 576px) {
  .lt-col-sm {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

  .lt-col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .lt-col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

  .lt-col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .lt-col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

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

  .lt-col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .lt-col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

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

  .lt-col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .lt-col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

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

  .lt-offset-sm-0 {
    margin-inline-start: 0;
  }


  .lt-offset-sm-1 {
    margin-inline-start: 8.3333333333%;
  }


  .lt-offset-sm-2 {
    margin-inline-start: 16.6666666667%;
  }



  .lt-offset-sm-3 {
    margin-inline-start: 25%;  }



  .lt-offset-sm-4 {
    margin-inline-start: 33.3333333333%;
  }


  .lt-offset-sm-5 {
    margin-inline-start: 41.6666666667%;
  }


  .lt-offset-sm-6 {
    margin-inline-start: 50%;
  }



  .lt-offset-sm-7 {
    margin-inline-start: 58.3333333333%;  }



  .lt-offset-sm-8 {
    margin-inline-start: 66.6666666667%;
  }


  .lt-offset-sm-9 {
    margin-inline-start: 75%;
  }


  .lt-offset-sm-10 {
    margin-inline-start: 83.3333333333%;
  }



  .lt-offset-sm-11 {
    margin-inline-start: 91.6666666667%;  }



  .lt-g-sm-0,
.lt-gx-sm-0 {
    --lt-gutter-x: 0;
  }
  .lt-g-sm-0,
.lt-gy-sm-0 {
    --lt-gutter-y: 0;
  }

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

  .lt-g-sm-1,
.lt-gy-sm-1 {
    --lt-gutter-y: 0.25rem;
  }
  .lt-g-sm-2,
.lt-gx-sm-2 {
    --lt-gutter-x: 0.5rem;
  }

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

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

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

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

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

  .lt-g-sm-5,
.lt-gx-sm-5 {
    --lt-gutter-x: 2rem;
  }

  .lt-g-sm-5,
.lt-gy-sm-5 {
    --lt-gutter-y: 2rem;
  }

  .lt-g-sm-6,
.lt-gx-sm-6 {
    --lt-gutter-x: 2.5rem;
  }

  .lt-g-sm-6,
.lt-gy-sm-6 {
    --lt-gutter-y: 2.5rem;
  }

  .lt-g-sm-7,
.lt-gx-sm-7 {
    --lt-gutter-x: 3rem;
  }

  .lt-g-sm-7,
.lt-gy-sm-7 {
    --lt-gutter-y: 3rem;
  }

  .lt-g-sm-8,
.lt-gx-sm-8 {
    --lt-gutter-x: 3.5rem;
  }

  .lt-g-sm-8,
.lt-gy-sm-8 {
    --lt-gutter-y: 3.5rem;
  }

  .lt-g-sm-9,
.lt-gx-sm-9 {
    --lt-gutter-x: 4rem;
  }

  .lt-g-sm-9,
.lt-gy-sm-9 {
    --lt-gutter-y: 4rem;
  }
}
@media (min-width: 768px) {
  .lt-col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

  .lt-col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .lt-col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

  .lt-col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .lt-col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

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

  .lt-col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .lt-col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

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

  .lt-col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .lt-col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

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

  .lt-offset-md-0 {
    margin-inline-start: 0;
  }



  .lt-offset-md-1 {
    margin-inline-start: 8.3333333333%;
  }



  .lt-offset-md-2 {
    margin-inline-start: 16.6666666667%;
  }



  .lt-offset-md-3 {
    margin-inline-start: 25%;
  }



  .lt-offset-md-4 {
    margin-inline-start: 33.3333333333%;
  }


  .lt-offset-md-5 {
    margin-inline-start: 41.6666666667%;
  }


  .lt-offset-md-6 {
    margin-inline-start: 50%;
  }



  .lt-offset-md-7 {
    margin-inline-start: 58.3333333333%;  }



  .lt-offset-md-8 {
    margin-inline-start: 66.6666666667%;
  }


  .lt-offset-md-9 {
    margin-inline-start: 75%;
  }


  .lt-offset-md-10 {
    margin-inline-start: 83.3333333333%;
  }



  .lt-offset-md-11 {
    margin-inline-start: 91.6666666667%;  }



  .lt-g-md-0,
.lt-gx-md-0 {
    --lt-gutter-x: 0;
  }
  .lt-g-md-0,
.lt-gy-md-0 {
    --lt-gutter-y: 0;
  }

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

  .lt-g-md-1,
.lt-gy-md-1 {
    --lt-gutter-y: 0.25rem;
  }
  .lt-g-md-2,
.lt-gx-md-2 {
    --lt-gutter-x: 0.5rem;
  }

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

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

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

  .lt-g-md-4,
.lt-gx-md-4 {
    --lt-gutter-x: 1.5rem;
  }
  .lt-g-md-4,
.lt-gy-md-4 {
    --lt-gutter-y: 1.5rem;
  }

  .lt-g-md-5,
.lt-gx-md-5 {
    --lt-gutter-x: 2rem;
  }

  .lt-g-md-5,
.lt-gy-md-5 {
    --lt-gutter-y: 2rem;
  }

  .lt-g-md-6,
.lt-gx-md-6 {
    --lt-gutter-x: 2.5rem;
  }

  .lt-g-md-6,
.lt-gy-md-6 {
    --lt-gutter-y: 2.5rem;
  }

  .lt-g-md-7,
.lt-gx-md-7 {
    --lt-gutter-x: 3rem;
  }

  .lt-g-md-7,
.lt-gy-md-7 {
    --lt-gutter-y: 3rem;
  }

  .lt-g-md-8,
.lt-gx-md-8 {
    --lt-gutter-x: 3.5rem;
  }

  .lt-g-md-8,
.lt-gy-md-8 {
    --lt-gutter-y: 3.5rem;
  }

  .lt-g-md-9,
.lt-gx-md-9 {
    --lt-gutter-x: 4rem;
  }

  .lt-g-md-9,
.lt-gy-md-9 {
    --lt-gutter-y: 4rem;
  }
}
@media (min-width: 992px) {
  .lt-col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

  .lt-col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .lt-col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

  .lt-col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .lt-col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

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

  .lt-col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .lt-col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

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

  .lt-col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .lt-col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

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

  .lt-offset-lg-0 {
    margin-inline-start: 0;
  }



  .lt-offset-lg-1 {
    margin-inline-start: 8.3333333333%;
  }



  .lt-offset-lg-2 {
    margin-inline-start: 16.6666666667%;
  }



  .lt-offset-lg-3 {
    margin-inline-start: 25%;
  }



  .lt-offset-lg-4 {
    margin-inline-start: 33.3333333333%;
  }



  .lt-offset-lg-5 {
    margin-inline-start: 41.6666666667%;
  }



  .lt-offset-lg-6 {
    margin-inline-start: 50%;
  }



  .lt-offset-lg-7 {
    margin-inline-start: 58.3333333333%;
  }



  .lt-offset-lg-8 {
    margin-inline-start: 66.6666666667%;
  }


  .lt-offset-lg-9 {
    margin-inline-start: 75%;
  }


  .lt-offset-lg-10 {
    margin-inline-start: 83.3333333333%;
  }



  .lt-offset-lg-11 {
    margin-inline-start: 91.6666666667%;  }



  .lt-g-lg-0,
.lt-gx-lg-0 {
    --lt-gutter-x: 0;
  }
  .lt-g-lg-0,
.lt-gy-lg-0 {
    --lt-gutter-y: 0;
  }

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

  .lt-g-lg-1,
.lt-gy-lg-1 {
    --lt-gutter-y: 0.25rem;
  }
  .lt-g-lg-2,
.lt-gx-lg-2 {
    --lt-gutter-x: 0.5rem;
  }

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

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

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

  .lt-g-lg-4,
.lt-gx-lg-4 {
    --lt-gutter-x: 1.5rem;
  }
  .lt-g-lg-4,
.lt-gy-lg-4 {
    --lt-gutter-y: 1.5rem;
  }

  .lt-g-lg-5,
.lt-gx-lg-5 {    --lt-gutter-x: 2rem;
  }

  .lt-g-lg-5,
.lt-gy-lg-5 {
    --lt-gutter-y: 2rem;
  }
  .lt-g-lg-6,
.lt-gx-lg-6 {
    --lt-gutter-x: 2.5rem;
  }

  .lt-g-lg-6,
.lt-gy-lg-6 {
    --lt-gutter-y: 2.5rem;  }

  .lt-g-lg-7,
.lt-gx-lg-7 {
    --lt-gutter-x: 3rem;
  }

  .lt-g-lg-7,
.lt-gy-lg-7 {
    --lt-gutter-y: 3rem;
  }

  .lt-g-lg-8,
.lt-gx-lg-8 {
    --lt-gutter-x: 3.5rem;
  }

  .lt-g-lg-8,
.lt-gy-lg-8 {
    --lt-gutter-y: 3.5rem;
  }

  .lt-g-lg-9,
.lt-gx-lg-9 {
    --lt-gutter-x: 4rem;
  }

  .lt-g-lg-9,
.lt-gy-lg-9 {
    --lt-gutter-y: 4rem;
  }
}
@media (min-width: 1200px) {
  .lt-col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

  .lt-col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .lt-col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

  .lt-col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .lt-col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

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

  .lt-col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .lt-col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

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

  .lt-col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .lt-col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

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

  .lt-offset-xl-0 {
    margin-inline-start: 0;
  }



  .lt-offset-xl-1 {
    margin-inline-start: 8.3333333333%;
  }



  .lt-offset-xl-2 {
    margin-inline-start: 16.6666666667%;
  }



  .lt-offset-xl-3 {
    margin-inline-start: 25%;
  }



  .lt-offset-xl-4 {
    margin-inline-start: 33.3333333333%;
  }



  .lt-offset-xl-5 {
    margin-inline-start: 41.6666666667%;
  }



  .lt-offset-xl-6 {
    margin-inline-start: 50%;
  }



  .lt-offset-xl-7 {
    margin-inline-start: 58.3333333333%;
  }



  .lt-offset-xl-8 {
    margin-inline-start: 66.6666666667%;
  }



  .lt-offset-xl-9 {
    margin-inline-start: 75%;
  }



  .lt-offset-xl-10 {
    margin-inline-start: 83.3333333333%;
  }



  .lt-offset-xl-11 {
    margin-inline-start: 91.6666666667%;
  }



  .lt-g-xl-0,
.lt-gx-xl-0 {
    --lt-gutter-x: 0;
  }
  .lt-g-xl-0,
.lt-gy-xl-0 {
    --lt-gutter-y: 0;
  }

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

  .lt-g-xl-1,
.lt-gy-xl-1 {
    --lt-gutter-y: 0.25rem;
  }
  .lt-g-xl-2,
.lt-gx-xl-2 {
    --lt-gutter-x: 0.5rem;
  }

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

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

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

  .lt-g-xl-4,
.lt-gx-xl-4 {
    --lt-gutter-x: 1.5rem;
  }
  .lt-g-xl-4,
.lt-gy-xl-4 {
    --lt-gutter-y: 1.5rem;
  }

  .lt-g-xl-5,
.lt-gx-xl-5 {    --lt-gutter-x: 2rem;
  }

  .lt-g-xl-5,
.lt-gy-xl-5 {
    --lt-gutter-y: 2rem;
  }
  .lt-g-xl-6,
.lt-gx-xl-6 {
    --lt-gutter-x: 2.5rem;
  }

  .lt-g-xl-6,
.lt-gy-xl-6 {
    --lt-gutter-y: 2.5rem;  }

  .lt-g-xl-7,
.lt-gx-xl-7 {
    --lt-gutter-x: 3rem;
  }

  .lt-g-xl-7,.lt-gy-xl-7 {
    --lt-gutter-y: 3rem;
  }

  .lt-g-xl-8,
.lt-gx-xl-8 {
    --lt-gutter-x: 3.5rem;
  }
  .lt-g-xl-8,
.lt-gy-xl-8 {
    --lt-gutter-y: 3.5rem;
  }

  .lt-g-xl-9,
.lt-gx-xl-9 {    --lt-gutter-x: 4rem;
  }

  .lt-g-xl-9,
.lt-gy-xl-9 {
    --lt-gutter-y: 4rem;
  }
}
@media (min-width: 1400px) {
  .lt-col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

  .lt-col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .lt-col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

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

  .lt-col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .lt-col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

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

  .lt-col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .lt-col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

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

  .lt-col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .lt-col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

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

  .lt-offset-xxl-0 {
    margin-inline-start: 0;
  }



  .lt-offset-xxl-1 {
    margin-inline-start: 8.3333333333%;
  }



  .lt-offset-xxl-2 {
    margin-inline-start: 16.6666666667%;
  }



  .lt-offset-xxl-3 {
    margin-inline-start: 25%;
  }



  .lt-offset-xxl-4 {
    margin-inline-start: 33.3333333333%;
  }



  .lt-offset-xxl-5 {
    margin-inline-start: 41.6666666667%;
  }



  .lt-offset-xxl-6 {
    margin-inline-start: 50%;
  }



  .lt-offset-xxl-7 {
    margin-inline-start: 58.3333333333%;
  }



  .lt-offset-xxl-8 {
    margin-inline-start: 66.6666666667%;
  }



  .lt-offset-xxl-9 {
    margin-inline-start: 75%;
  }



  .lt-offset-xxl-10 {
    margin-inline-start: 83.3333333333%;
  }



  .lt-offset-xxl-11 {
    margin-inline-start: 91.6666666667%;
  }



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

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

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

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

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

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

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

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

  .lt-g-xxl-4,
.lt-gx-xxl-4 {
    --lt-gutter-x: 1.5rem;
  }
  .lt-g-xxl-4,
.lt-gy-xxl-4 {
    --lt-gutter-y: 1.5rem;
  }

  .lt-g-xxl-5,
.lt-gx-xxl-5 {    --lt-gutter-x: 2rem;
  }

  .lt-g-xxl-5,
.lt-gy-xxl-5 {
    --lt-gutter-y: 2rem;
  }
  .lt-g-xxl-6,
.lt-gx-xxl-6 {
    --lt-gutter-x: 2.5rem;
  }

  .lt-g-xxl-6,
.lt-gy-xxl-6 {
    --lt-gutter-y: 2.5rem;  }

  .lt-g-xxl-7,
.lt-gx-xxl-7 {
    --lt-gutter-x: 3rem;
  }

  .lt-g-xxl-7,.lt-gy-xxl-7 {
    --lt-gutter-y: 3rem;
  }

  .lt-g-xxl-8,
.lt-gx-xxl-8 {
    --lt-gutter-x: 3.5rem;
  }
  .lt-g-xxl-8,
.lt-gy-xxl-8 {
    --lt-gutter-y: 3.5rem;
  }

  .lt-g-xxl-9,
.lt-gx-xxl-9 {    --lt-gutter-x: 4rem;
  }

  .lt-g-xxl-9,
.lt-gy-xxl-9 {
    --lt-gutter-y: 4rem;
  }
}.lt-clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.lt-list-unstyled {
  list-style: none;}

[dir="ltr"] .lt-list-unstyled {
  padding-left: 0;
}

[dir="rtl"] .lt-list-unstyled {
  padding-right: 0;}

.lt-visually-hidden,
.lt-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;
}

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

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

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

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

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

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

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

[dir="ltr"] .lt-float-start {
  float: left !important;
}

[dir="rtl"] .lt-float-start {
  float: right !important;
}

[dir="ltr"] .lt-float-end {
  float: right !important;
}

[dir="rtl"] .lt-float-end {
  float: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dir="ltr"] .lt-start-0 {
  left: 0 !important;
}

[dir="rtl"] .lt-start-0 {
  right: 0 !important;
}

[dir="ltr"] .lt-start-50 {
  left: 50% !important;
}

[dir="rtl"] .lt-start-50 {
  right: 50% !important;
}

[dir="ltr"] .lt-start-100 {
  left: 100% !important;
}

[dir="rtl"] .lt-start-100 {
  right: 100% !important;
}

[dir="ltr"] .lt-end-0 {
  right: 0 !important;
}

[dir="rtl"] .lt-end-0 {
  left: 0 !important;
}

[dir="ltr"] .lt-end-50 {
  right: 50% !important;
}

[dir="rtl"] .lt-end-50 {
  left: 50% !important;
}

[dir="ltr"] .lt-end-100 {
  right: 100% !important;
}

[dir="rtl"] .lt-end-100 {
  left: 100% !important;
}

[dir="ltr"] .lt-translate-middle {
  transform: translate(-50%, -50%) !important;
}

[dir="rtl"] .lt-translate-middle {
  transform: translate(50%, -50%) !important;
}

[dir="ltr"] .lt-translate-middle-x {
  transform: translateX(-50%) !important;
}

[dir="rtl"] .lt-translate-middle-x {
  transform: translateX(50%) !important;
}

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

.lt-border {
  border: var(--border-width) solid #dee2e6 !important;
}

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

.lt-border-top {
  border-top: 1px solid #dee2e6 !important;
}

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

[dir="ltr"] .lt-border-end {
  border-right: 1px solid #dee2e6 !important;
}

[dir="rtl"] .lt-border-end {
  border-left: 1px solid #dee2e6 !important;
}

[dir="ltr"] .lt-border-end-0 {
  border-right: 0 !important;
}

[dir="rtl"] .lt-border-end-0 {
  border-left: 0 !important;
}

.lt-border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

[dir="ltr"] .lt-border-start {
  border-left: 1px solid #dee2e6 !important;
}

[dir="rtl"] .lt-border-start {
  border-right: 1px solid #dee2e6 !important;
}

[dir="ltr"] .lt-border-start-0 {
  border-left: 0 !important;
}

[dir="rtl"] .lt-border-start-0 {
  border-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lt-gap-5 {
  gap: 2rem !important;
}

.lt-gap-6 {
  gap: 2.5rem !important;
}

.lt-gap-7 {
  gap: 3rem !important;
}

.lt-gap-8 {
  gap: 3.5rem !important;
}

.lt-gap-9 {
  gap: 4rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lt-m-6 {
  margin: 2.5rem !important;
}

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

.lt-m-8 {
  margin: 3.5rem !important;
}

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

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

.lt-mx-0 {
  margin-inline-end: 0 !important;
  margin-inline-start: 0 !important;
}

.lt-mx-1 {
  margin-inline-end: 0.25rem !important;
  margin-inline-start: 0.25rem !important;
}

.lt-mx-2 {
  margin-inline-end: 0.5rem !important;
  margin-inline-start: 0.5rem !important;
}

.lt-mx-3 {
  margin-inline-end: 1rem !important;
  margin-inline-start: 1rem !important;
}

.lt-mx-4 {
  margin-inline-end: 1.5rem !important;
  margin-inline-start: 1.5rem !important;
}

.lt-mx-5 {
  margin-inline-end: 2rem !important;
  margin-inline-start: 2rem !important;
}

.lt-mx-6 {
  margin-inline-end: 2.5rem !important;
  margin-inline-start: 2.5rem !important;
}

.lt-mx-7 {
  margin-inline-end: 3rem !important;
  margin-inline-start: 3rem !important;
}

.lt-mx-8 {
  margin-inline-end: 3.5rem !important;
  margin-inline-start: 3.5rem !important;
}

.lt-mx-9 {
  margin-inline-end: 4rem !important;
  margin-inline-start: 4rem !important;
}

.lt-mx-auto {
  margin-inline-end: auto !important;
  margin-inline-start: auto !important;
}

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

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

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

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

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

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

.lt-my-6 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

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

.lt-my-8 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

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

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

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

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

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

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

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

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

.lt-mt-6 {
  margin-top: 2.5rem !important;
}

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

.lt-mt-8 {
  margin-top: 3.5rem !important;
}

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

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

[dir="ltr"] .lt-me-0 {
  margin-inline-end: 0 !important;
}

[dir="rtl"] .lt-me-0 {
  margin-inline-start: 0 !important;
}

[dir="ltr"] .lt-me-1 {
  margin-inline-end: 0.25rem !important;
}

[dir="rtl"] .lt-me-1 {
  margin-inline-start: 0.25rem !important;
}

[dir="ltr"] .lt-me-2 {
  margin-inline-end: 0.5rem !important;
}

[dir="rtl"] .lt-me-2 {
  margin-inline-start: 0.5rem !important;
}

[dir="ltr"] .lt-me-3 {
  margin-inline-end: 1rem !important;
}

[dir="rtl"] .lt-me-3 {
  margin-inline-start: 1rem !important;
}

[dir="ltr"] .lt-me-4 {
  margin-inline-end: 1.5rem !important;
}

[dir="rtl"] .lt-me-4 {
  margin-inline-start: 1.5rem !important;
}

[dir="ltr"] .lt-me-5 {
  margin-inline-end: 2rem !important;
}

[dir="rtl"] .lt-me-5 {
  margin-inline-start: 2rem !important;
}

[dir="ltr"] .lt-me-6 {
  margin-inline-end: 2.5rem !important;
}

[dir="rtl"] .lt-me-6 {
  margin-inline-start: 2.5rem !important;
}

[dir="ltr"] .lt-me-7 {
  margin-inline-end: 3rem !important;
}

[dir="rtl"] .lt-me-7 {
  margin-inline-start: 3rem !important;
}

[dir="ltr"] .lt-me-8 {
  margin-inline-end: 3.5rem !important;
}

[dir="rtl"] .lt-me-8 {
  margin-inline-start: 3.5rem !important;
}

[dir="ltr"] .lt-me-9 {
  margin-inline-end: 4rem !important;
}

[dir="rtl"] .lt-me-9 {
  margin-inline-start: 4rem !important;
}

[dir="ltr"] .lt-me-auto {
  margin-inline-end: auto !important;
}

[dir="rtl"] .lt-me-auto {
  margin-inline-start: auto !important;
}

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

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

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

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

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

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

.lt-mb-6 {
  margin-bottom: 2.5rem !important;
}

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

.lt-mb-8 {
  margin-bottom: 3.5rem !important;
}

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

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

[dir="ltr"] .lt-ms-0 {
  margin-inline-start: 0 !important;
}

[dir="rtl"] .lt-ms-0 {
  margin-inline-end: 0 !important;
}

[dir="ltr"] .lt-ms-1 {
  margin-inline-start: 0.25rem !important;
}

[dir="rtl"] .lt-ms-1 {
  margin-inline-end: 0.25rem !important;
}

[dir="ltr"] .lt-ms-2 {
  margin-inline-start: 0.5rem !important;
}

[dir="rtl"] .lt-ms-2 {
  margin-inline-end: 0.5rem !important;
}

[dir="ltr"] .lt-ms-3 {
  margin-inline-start: 1rem !important;
}

[dir="rtl"] .lt-ms-3 {
  margin-inline-end: 1rem !important;
}

[dir="ltr"] .lt-ms-4 {
  margin-inline-start: 1.5rem !important;
}

[dir="rtl"] .lt-ms-4 {
  margin-inline-end: 1.5rem !important;
}

[dir="ltr"] .lt-ms-5 {
  margin-inline-start: 2rem !important;
}

[dir="rtl"] .lt-ms-5 {
  margin-inline-end: 2rem !important;
}

[dir="ltr"] .lt-ms-6 {
  margin-inline-start: 2.5rem !important;
}

[dir="rtl"] .lt-ms-6 {
  margin-inline-end: 2.5rem !important;
}

[dir="ltr"] .lt-ms-7 {
  margin-inline-start: 3rem !important;
}

[dir="rtl"] .lt-ms-7 {
  margin-inline-end: 3rem !important;
}

[dir="ltr"] .lt-ms-8 {
  margin-inline-start: 3.5rem !important;
}

[dir="rtl"] .lt-ms-8 {
  margin-inline-end: 3.5rem !important;
}

[dir="ltr"] .lt-ms-9 {
  margin-inline-start: 4rem !important;
}

[dir="rtl"] .lt-ms-9 {
  margin-inline-end: 4rem !important;
}

[dir="ltr"] .lt-ms-auto {
  margin-inline-start: auto !important;
}

[dir="rtl"] .lt-ms-auto {
  margin-inline-end: auto !important;
}

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

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

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

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

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

.lt-m-n6 {
  margin: -2.5rem !important;
}

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

.lt-m-n8 {
  margin: -3.5rem !important;
}

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

.lt-mx-n1 {
  margin-inline-end: -0.25rem !important;
  margin-inline-start: -0.25rem !important;
}

.lt-mx-n2 {
  margin-inline-end: -0.5rem !important;
  margin-inline-start: -0.5rem !important;
}

.lt-mx-n3 {
  margin-inline-end: -1rem !important;
  margin-inline-start: -1rem !important;
}

.lt-mx-n4 {
  margin-inline-end: -1.5rem !important;
  margin-inline-start: -1.5rem !important;
}

.lt-mx-n5 {
  margin-inline-end: -2rem !important;
  margin-inline-start: -2rem !important;
}

.lt-mx-n6 {
  margin-inline-end: -2.5rem !important;
  margin-inline-start: -2.5rem !important;
}

.lt-mx-n7 {
  margin-inline-end: -3rem !important;
  margin-inline-start: -3rem !important;
}

.lt-mx-n8 {
  margin-inline-end: -3.5rem !important;
  margin-inline-start: -3.5rem !important;
}

.lt-mx-n9 {
  margin-inline-end: -4rem !important;
  margin-inline-start: -4rem !important;
}

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

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

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

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

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

.lt-my-n6 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

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

.lt-my-n8 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

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

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

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

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

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

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

.lt-mt-n6 {
  margin-top: -2.5rem !important;
}

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

.lt-mt-n8 {
  margin-top: -3.5rem !important;
}

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

[dir="ltr"] .lt-me-n1 {
  margin-inline-end: -0.25rem !important;
}

[dir="rtl"] .lt-me-n1 {
  margin-inline-start: -0.25rem !important;
}

[dir="ltr"] .lt-me-n2 {
  margin-inline-end: -0.5rem !important;
}

[dir="rtl"] .lt-me-n2 {
  margin-inline-start: -0.5rem !important;
}

[dir="ltr"] .lt-me-n3 {
  margin-inline-end: -1rem !important;
}

[dir="rtl"] .lt-me-n3 {
  margin-inline-start: -1rem !important;
}

[dir="ltr"] .lt-me-n4 {
  margin-inline-end: -1.5rem !important;
}

[dir="rtl"] .lt-me-n4 {
  margin-inline-start: -1.5rem !important;
}

[dir="ltr"] .lt-me-n5 {
  margin-inline-end: -2rem !important;
}

[dir="rtl"] .lt-me-n5 {
  margin-inline-start: -2rem !important;
}

[dir="ltr"] .lt-me-n6 {
  margin-inline-end: -2.5rem !important;
}

[dir="rtl"] .lt-me-n6 {
  margin-inline-start: -2.5rem !important;
}

[dir="ltr"] .lt-me-n7 {
  margin-inline-end: -3rem !important;
}

[dir="rtl"] .lt-me-n7 {
  margin-inline-start: -3rem !important;
}

[dir="ltr"] .lt-me-n8 {
  margin-inline-end: -3.5rem !important;
}

[dir="rtl"] .lt-me-n8 {
  margin-inline-start: -3.5rem !important;
}

[dir="ltr"] .lt-me-n9 {
  margin-inline-end: -4rem !important;
}

[dir="rtl"] .lt-me-n9 {
  margin-inline-start: -4rem !important;
}

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

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

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

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

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

.lt-mb-n6 {
  margin-bottom: -2.5rem !important;
}

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

.lt-mb-n8 {
  margin-bottom: -3.5rem !important;
}

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

[dir="ltr"] .lt-ms-n1 {
  margin-inline-start: -0.25rem !important;
}

[dir="rtl"] .lt-ms-n1 {
  margin-inline-end: -0.25rem !important;
}

[dir="ltr"] .lt-ms-n2 {
  margin-inline-start: -0.5rem !important;
}

[dir="rtl"] .lt-ms-n2 {
  margin-inline-end: -0.5rem !important;
}

[dir="ltr"] .lt-ms-n3 {
  margin-inline-start: -1rem !important;
}

[dir="rtl"] .lt-ms-n3 {
  margin-inline-end: -1rem !important;
}

[dir="ltr"] .lt-ms-n4 {
  margin-inline-start: -1.5rem !important;
}

[dir="rtl"] .lt-ms-n4 {
  margin-inline-end: -1.5rem !important;
}

[dir="ltr"] .lt-ms-n5 {
  margin-inline-start: -2rem !important;
}

[dir="rtl"] .lt-ms-n5 {
  margin-inline-end: -2rem !important;
}

[dir="ltr"] .lt-ms-n6 {
  margin-inline-start: -2.5rem !important;
}

[dir="rtl"] .lt-ms-n6 {
  margin-inline-end: -2.5rem !important;
}

[dir="ltr"] .lt-ms-n7 {
  margin-inline-start: -3rem !important;
}

[dir="rtl"] .lt-ms-n7 {
  margin-inline-end: -3rem !important;
}

[dir="ltr"] .lt-ms-n8 {
  margin-inline-start: -3.5rem !important;
}

[dir="rtl"] .lt-ms-n8 {
  margin-inline-end: -3.5rem !important;
}

[dir="ltr"] .lt-ms-n9 {
  margin-inline-start: -4rem !important;
}

[dir="rtl"] .lt-ms-n9 {
  margin-inline-end: -4rem !important;
}

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

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

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

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

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

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

.lt-p-6 {
  padding: 2.5rem !important;
}

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

.lt-p-8 {
  padding: 3.5rem !important;
}

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

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

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

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

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

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

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

.lt-px-6 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

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

.lt-px-8 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

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

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

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

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

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

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

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

.lt-py-6 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

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

.lt-py-8 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

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

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

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

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

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

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

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

.lt-pt-6 {
  padding-top: 2.5rem !important;
}

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

.lt-pt-8 {
  padding-top: 3.5rem !important;
}

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

[dir="ltr"] .lt-pe-0 {
  padding-right: 0 !important;
}

[dir="rtl"] .lt-pe-0 {
  padding-left: 0 !important;
}

[dir="ltr"] .lt-pe-1 {
  padding-right: 0.25rem !important;
}

[dir="rtl"] .lt-pe-1 {
  padding-left: 0.25rem !important;
}

[dir="ltr"] .lt-pe-2 {
  padding-right: 0.5rem !important;
}

[dir="rtl"] .lt-pe-2 {
  padding-left: 0.5rem !important;
}

[dir="ltr"] .lt-pe-3 {
  padding-right: 1rem !important;
}

[dir="rtl"] .lt-pe-3 {
  padding-left: 1rem !important;
}

[dir="ltr"] .lt-pe-4 {
  padding-right: 1.5rem !important;
}

[dir="rtl"] .lt-pe-4 {
  padding-left: 1.5rem !important;
}

[dir="ltr"] .lt-pe-5 {
  padding-right: 2rem !important;
}

[dir="rtl"] .lt-pe-5 {
  padding-left: 2rem !important;
}

[dir="ltr"] .lt-pe-6 {
  padding-right: 2.5rem !important;
}

[dir="rtl"] .lt-pe-6 {
  padding-left: 2.5rem !important;
}

[dir="ltr"] .lt-pe-7 {
  padding-right: 3rem !important;
}

[dir="rtl"] .lt-pe-7 {
  padding-left: 3rem !important;
}

[dir="ltr"] .lt-pe-8 {
  padding-right: 3.5rem !important;
}

[dir="rtl"] .lt-pe-8 {
  padding-left: 3.5rem !important;
}

[dir="ltr"] .lt-pe-9 {
  padding-right: 4rem !important;
}

[dir="rtl"] .lt-pe-9 {
  padding-left: 4rem !important;
}

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

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

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

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

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

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

.lt-pb-6 {
  padding-bottom: 2.5rem !important;
}

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

.lt-pb-8 {
  padding-bottom: 3.5rem !important;
}

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

[dir="ltr"] .lt-ps-0 {
  padding-left: 0 !important;
}

[dir="rtl"] .lt-ps-0 {
  padding-right: 0 !important;
}

[dir="ltr"] .lt-ps-1 {
  padding-left: 0.25rem !important;
}

[dir="rtl"] .lt-ps-1 {
  padding-right: 0.25rem !important;
}

[dir="ltr"] .lt-ps-2 {
  padding-left: 0.5rem !important;
}

[dir="rtl"] .lt-ps-2 {
  padding-right: 0.5rem !important;
}

[dir="ltr"] .lt-ps-3 {
  padding-left: 1rem !important;
}

[dir="rtl"] .lt-ps-3 {
  padding-right: 1rem !important;
}

[dir="ltr"] .lt-ps-4 {
  padding-left: 1.5rem !important;
}

[dir="rtl"] .lt-ps-4 {
  padding-right: 1.5rem !important;
}

[dir="ltr"] .lt-ps-5 {
  padding-left: 2rem !important;
}

[dir="rtl"] .lt-ps-5 {
  padding-right: 2rem !important;
}

[dir="ltr"] .lt-ps-6 {
  padding-left: 2.5rem !important;
}

[dir="rtl"] .lt-ps-6 {
  padding-right: 2.5rem !important;
}

[dir="ltr"] .lt-ps-7 {
  padding-left: 3rem !important;
}

[dir="rtl"] .lt-ps-7 {
  padding-right: 3rem !important;
}

[dir="ltr"] .lt-ps-8 {
  padding-left: 3.5rem !important;
}

[dir="rtl"] .lt-ps-8 {
  padding-right: 3.5rem !important;
}

[dir="ltr"] .lt-ps-9 {
  padding-left: 4rem !important;
}

[dir="rtl"] .lt-ps-9 {
  padding-right: 4rem !important;
}

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

.lt-fs-1 {
  font-size: var(--font-size-h1) !important;
}

.lt-fs-2 {
  font-size: var(--font-size-h2) !important;
}

.lt-fs-3 {
  font-size: var(--font-size-h3) !important;
}

.lt-fs-4 {
  font-size: var(--font-size-h4) !important;
}

.lt-fs-5 {
  font-size: var(--font-size-h5) !important;
}

.lt-fs-6 {
  font-size: var(--font-size-h6) !important;
}

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

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

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

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

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

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

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

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

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

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

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

[dir="ltr"] .lt-text-start {
  text-align: left !important;
}

[dir="rtl"] .lt-text-start {
  text-align: right !important;
}

[dir="ltr"] .lt-text-end {
  text-align: right !important;
}

[dir="rtl"] .lt-text-end {
  text-align: left !important;
}

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

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

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

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

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

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

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

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

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

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

/* rtl:end:remove */

.lt-bg-primary {
  background-color: var(--color-brand-primary) !important;
}

.lt-bg-secondary {
  background-color: var(--color-bg-secondary) !important;
}

.lt-bg-success {
  background-color: var(--color-success)!important;
}

.lt-bg-info {
  background-color: var(--color-info)!important;
}

.lt-bg-warning {
  background-color: var(--color-warning)!important;
}

.lt-bg-danger {
  background-color: var(--color-danger) !important;
}


@media (min-width: 576px) {
  .lt-float-sm-start {
    float: left !important;
  }



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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-gap-sm-4 {
    gap: 1.5rem !important;
  }
  .lt-gap-sm-5 {
    gap: 2rem !important;
  }

  .lt-gap-sm-6 {
    gap: 2.5rem !important;
  }
  .lt-gap-sm-7 {
    gap: 3rem !important;
  }

  .lt-gap-sm-8 {
    gap: 3.5rem !important;
  }

  .lt-gap-sm-9 {
    gap: 4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-m-sm-5 {
    margin: 2rem !important;
  }

  .lt-m-sm-6 {
    margin: 2.5rem !important;
  }

  .lt-m-sm-7 {
    margin: 3rem !important;
  }

  .lt-m-sm-8 {
    margin: 3.5rem !important;
  }

  .lt-m-sm-9 {
    margin: 4rem !important;
  }

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

  .lt-mx-sm-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }

  .lt-mx-sm-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }

  .lt-mx-sm-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }

  .lt-mx-sm-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }

  .lt-mx-sm-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }

  .lt-mx-sm-5 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }

  .lt-mx-sm-6 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }

  .lt-mx-sm-7 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }

  .lt-mx-sm-8 {
    margin-inline-end: 3.5rem !important;
    margin-inline-start: 3.5rem !important;
  }

  .lt-mx-sm-9 {
    margin-inline-end: 4rem !important;
    margin-inline-start: 4rem !important;
  }

  .lt-mx-sm-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }

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

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

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

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

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

  .lt-my-sm-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-my-sm-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-my-sm-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-my-sm-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-my-sm-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

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

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

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

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

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

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

  .lt-mt-sm-5 {
    margin-top: 2rem !important;
  }

  .lt-mt-sm-6 {
    margin-top: 2.5rem !important;
  }

  .lt-mt-sm-7 {
    margin-top: 3rem !important;
  }

  .lt-mt-sm-8 {
    margin-top: 3.5rem !important;
  }

  .lt-mt-sm-9 {
    margin-top: 4rem !important;
  }

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

  .lt-me-sm-0 {
    margin-inline-end: 0 !important;
  }



  .lt-me-sm-1 {
    margin-inline-end: 0.25rem !important;
  }



  .lt-me-sm-2 {
    margin-inline-end: 0.5rem !important;
  }



  .lt-me-sm-3 {
    margin-inline-end: 1rem !important;
  }



  .lt-me-sm-4 {
    margin-inline-end: 1.5rem !important;
  }



  .lt-me-sm-5 {
    margin-inline-end: 2rem !important;
  }



  .lt-me-sm-6 {
    margin-inline-end: 2.5rem !important;
  }



  .lt-me-sm-7 {
    margin-inline-end: 3rem !important;
  }



  .lt-me-sm-8 {
    margin-inline-end: 3.5rem !important;
  }



  .lt-me-sm-9 {
    margin-inline-end: 4rem !important;
  }



  .lt-me-sm-auto {
    margin-inline-end: auto !important;
  }



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

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

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

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

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

  .lt-mb-sm-5 {
    margin-bottom: 2rem !important;
  }

  .lt-mb-sm-6 {
    margin-bottom: 2.5rem !important;
  }

  .lt-mb-sm-7 {
    margin-bottom: 3rem !important;
  }

  .lt-mb-sm-8 {
    margin-bottom: 3.5rem !important;
  }

  .lt-mb-sm-9 {
    margin-bottom: 4rem !important;
  }

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

  .lt-ms-sm-0 {
    margin-inline-start: 0 !important;
  }



  .lt-ms-sm-1 {
    margin-inline-start: 0.25rem !important;
  }



  .lt-ms-sm-2 {
    margin-inline-start: 0.5rem !important;
  }


  .lt-ms-sm-3 {
    margin-inline-start: 1rem !important;
  }



  .lt-ms-sm-4 {
    margin-inline-start: 1.5rem !important;  }



  .lt-ms-sm-5 {
    margin-inline-start: 2rem !important;
  }


  .lt-ms-sm-6 {
    margin-inline-start: 2.5rem !important;
  }


  .lt-ms-sm-7 {
    margin-inline-start: 3rem !important;
  }



  .lt-ms-sm-8 {
    margin-inline-start: 3.5rem !important;  }



  .lt-ms-sm-9 {
    margin-inline-start: 4rem !important;
  }


  .lt-ms-sm-auto {
    margin-inline-start: auto !important;
  }


  .lt-m-sm-n1 {
    margin: -0.25rem !important;
  }

  .lt-m-sm-n2 {
    margin: -0.5rem !important;
  }
  .lt-m-sm-n3 {
    margin: -1rem !important;
  }

  .lt-m-sm-n4 {
    margin: -1.5rem !important;
  }
  .lt-m-sm-n5 {
    margin: -2rem !important;
  }

  .lt-m-sm-n6 {
    margin: -2.5rem !important;
  }
  .lt-m-sm-n7 {
    margin: -3rem !important;
  }

  .lt-m-sm-n8 {
    margin: -3.5rem !important;
  }
  .lt-m-sm-n9 {
    margin: -4rem !important;
  }

  .lt-mx-sm-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }

  .lt-mx-sm-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }

  .lt-mx-sm-n3 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }

  .lt-mx-sm-n4 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }

  .lt-mx-sm-n5 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }

  .lt-mx-sm-n6 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }

  .lt-mx-sm-n7 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }

  .lt-mx-sm-n8 {
    margin-inline-end: -3.5rem !important;
    margin-inline-start: -3.5rem !important;
  }

  .lt-mx-sm-n9 {
    margin-inline-end: -4rem !important;
    margin-inline-start: -4rem !important;
  }

  .lt-my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;  }

  .lt-my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-my-sm-n3 {    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .lt-my-sm-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-my-sm-n6 {
    margin-top: -2.5rem !important;    margin-bottom: -2.5rem !important;
  }

  .lt-my-sm-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .lt-my-sm-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-my-sm-n9 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;  }

  .lt-mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .lt-mt-sm-n2 {
    margin-top: -0.5rem !important;  }

  .lt-mt-sm-n3 {
    margin-top: -1rem !important;
  }

  .lt-mt-sm-n4 {
    margin-top: -1.5rem !important;  }

  .lt-mt-sm-n5 {
    margin-top: -2rem !important;
  }

  .lt-mt-sm-n6 {
    margin-top: -2.5rem !important;  }

  .lt-mt-sm-n7 {
    margin-top: -3rem !important;
  }

  .lt-mt-sm-n8 {
    margin-top: -3.5rem !important;  }

  .lt-mt-sm-n9 {
    margin-top: -4rem !important;
  }

  .lt-me-sm-n1 {
    margin-inline-end: -0.25rem !important;  }



  .lt-me-sm-n2 {
    margin-inline-end: -0.5rem !important;
  }



  .lt-me-sm-n3 {
    margin-inline-end: -1rem !important;
  }



  .lt-me-sm-n4 {
    margin-inline-end: -1.5rem !important;
  }



  .lt-me-sm-n5 {
    margin-inline-end: -2rem !important;
  }



  .lt-me-sm-n6 {
    margin-inline-end: -2.5rem !important;
  }



  .lt-me-sm-n7 {
    margin-inline-end: -3rem !important;
  }



  .lt-me-sm-n8 {
    margin-inline-end: -3.5rem !important;
  }



  .lt-me-sm-n9 {
    margin-inline-end: -4rem !important;
  }



  .lt-mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-mb-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .lt-mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .lt-mb-sm-n5 {
    margin-bottom: -2rem !important;
  }

  .lt-mb-sm-n6 {
    margin-bottom: -2.5rem !important;
  }

  .lt-mb-sm-n7 {
    margin-bottom: -3rem !important;
  }

  .lt-mb-sm-n8 {
    margin-bottom: -3.5rem !important;
  }

  .lt-mb-sm-n9 {
    margin-bottom: -4rem !important;
  }

  .lt-ms-sm-n1 {
    margin-inline-start: -0.25rem !important;
  }



  .lt-ms-sm-n2 {
    margin-inline-start: -0.5rem !important;
  }



  .lt-ms-sm-n3 {
    margin-inline-start: -1rem !important;
  }



  .lt-ms-sm-n4 {
    margin-inline-start: -1.5rem !important;
  }



  .lt-ms-sm-n5 {
    margin-inline-start: -2rem !important;
  }



  .lt-ms-sm-n6 {
    margin-inline-start: -2.5rem !important;
  }



  .lt-ms-sm-n7 {
    margin-inline-start: -3rem !important;
  }



  .lt-ms-sm-n8 {
    margin-inline-start: -3.5rem !important;
  }



  .lt-ms-sm-n9 {
    margin-inline-start: -4rem !important;
  }



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

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

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

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

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

  .lt-p-sm-5 {
    padding: 2rem !important;
  }

  .lt-p-sm-6 {
    padding: 2.5rem !important;
  }
  .lt-p-sm-7 {
    padding: 3rem !important;
  }

  .lt-p-sm-8 {
    padding: 3.5rem !important;
  }
  .lt-p-sm-9 {
    padding: 4rem !important;
  }

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

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

  .lt-px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .lt-px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .lt-px-sm-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;  }

  .lt-px-sm-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .lt-px-sm-7 {    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .lt-px-sm-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .lt-px-sm-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

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

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

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

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

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

  .lt-py-sm-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-py-sm-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-py-sm-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-py-sm-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-py-sm-9 {    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

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

  .lt-pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .lt-pt-sm-3 {
    padding-top: 1rem !important;
  }

  .lt-pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .lt-pt-sm-5 {
    padding-top: 2rem !important;
  }

  .lt-pt-sm-6 {
    padding-top: 2.5rem !important;
  }
  .lt-pt-sm-7 {
    padding-top: 3rem !important;
  }

  .lt-pt-sm-8 {
    padding-top: 3.5rem !important;
  }
  .lt-pt-sm-9 {
    padding-top: 4rem !important;
  }

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


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


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



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



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



  .lt-pe-sm-5 {
    padding-right: 2rem !important;
  }



  .lt-pe-sm-6 {
    padding-right: 2.5rem !important;
  }



  .lt-pe-sm-7 {
    padding-right: 3rem !important;
  }



  .lt-pe-sm-8 {
    padding-right: 3.5rem !important;
  }



  .lt-pe-sm-9 {
    padding-right: 4rem !important;
  }



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

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

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

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

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

  .lt-pb-sm-5 {
    padding-bottom: 2rem !important;
  }

  .lt-pb-sm-6 {
    padding-bottom: 2.5rem !important;
  }

  .lt-pb-sm-7 {
    padding-bottom: 3rem !important;
  }

  .lt-pb-sm-8 {
    padding-bottom: 3.5rem !important;
  }

  .lt-pb-sm-9 {
    padding-bottom: 4rem !important;
  }

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



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



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



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



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



  .lt-ps-sm-5 {
    padding-left: 2rem !important;
  }



  .lt-ps-sm-6 {
    padding-left: 2.5rem !important;
  }



  .lt-ps-sm-7 {
    padding-left: 3rem !important;
  }



  .lt-ps-sm-8 {
    padding-left: 3.5rem !important;
  }



  .lt-ps-sm-9 {
    padding-left: 4rem !important;
  }



  .lt-fs-sm-1 {
    font-size: var(--font-size-h1) !important;
  }

  .lt-fs-sm-2 {
    font-size: var(--font-size-h2) !important;
  }

  .lt-fs-sm-3 {
    font-size: var(--font-size-h3) !important;
  }

  .lt-fs-sm-4 {
    font-size: var(--font-size-h4) !important;
  }

  .lt-fs-sm-5 {
    font-size: var(--font-size-h5) !important;
  }

  .lt-fs-sm-6 {
    font-size: var(--font-size-h6) !important;
  }

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



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



  .lt-text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .lt-float-md-start {
    float: left !important;
  }



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



  .lt-float-md-none {
    float: none !important;
  }
  .lt-d-md-inline {
    display: inline !important;
  }

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

  .lt-d-md-grid {
    display: grid !important;
  }
  .lt-d-md-table {
    display: table !important;
  }

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

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

  .lt-d-md-none {
    display: none !important;
  }
  .lt-flex-md-fill {
    flex: 1 1 auto !important;
  }

  .lt-flex-md-row {
    flex-direction: row !important;
  }
  .lt-flex-md-column {
    flex-direction: column !important;
  }

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

  .lt-flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .lt-flex-md-grow-1 {
    flex-grow: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

  .lt-gap-md-5 {
    gap: 2rem !important;
  }
  .lt-gap-md-6 {
    gap: 2.5rem !important;
  }

  .lt-gap-md-7 {
    gap: 3rem !important;
  }
  .lt-gap-md-8 {
    gap: 3.5rem !important;
  }

  .lt-gap-md-9 {
    gap: 4rem !important;
  }
  .lt-justify-content-md-start {
    justify-content: flex-start !important;
  }

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

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

  .lt-justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .lt-align-items-md-start {
    align-items: flex-start !important;
  }

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

  .lt-align-items-md-baseline {
    align-items: baseline !important;
  }
  .lt-align-items-md-stretch {
    align-items: stretch !important;
  }

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

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

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

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

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

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

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

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

  .lt-align-self-md-baseline {
    align-self: baseline !important;
  }
  .lt-align-self-md-stretch {
    align-self: stretch !important;
  }

  .lt-order-md-first {
    order: -1 !important;
  }
  .lt-order-md-0 {
    order: 0 !important;
  }

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

  .lt-order-md-2 {
    order: 2 !important;
  }
  .lt-order-md-3 {
    order: 3 !important;
  }

  .lt-order-md-4 {
    order: 4 !important;
  }
  .lt-order-md-5 {
    order: 5 !important;
  }

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

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

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

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

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

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

  .lt-m-md-5 {
    margin: 2rem !important;
  }

  .lt-m-md-6 {
    margin: 2.5rem !important;
  }

  .lt-m-md-7 {
    margin: 3rem !important;
  }

  .lt-m-md-8 {
    margin: 3.5rem !important;
  }

  .lt-m-md-9 {
    margin: 4rem !important;
  }

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

  .lt-mx-md-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }

  .lt-mx-md-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }

  .lt-mx-md-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }

  .lt-mx-md-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }

  .lt-mx-md-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }

  .lt-mx-md-5 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }

  .lt-mx-md-6 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }

  .lt-mx-md-7 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }

  .lt-mx-md-8 {
    margin-inline-end: 3.5rem !important;
    margin-inline-start: 3.5rem !important;
  }

  .lt-mx-md-9 {
    margin-inline-end: 4rem !important;
    margin-inline-start: 4rem !important;
  }

  .lt-mx-md-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }

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

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

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

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

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

  .lt-my-md-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-my-md-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-my-md-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-my-md-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-my-md-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

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

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

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

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

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

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

  .lt-mt-md-5 {
    margin-top: 2rem !important;
  }

  .lt-mt-md-6 {
    margin-top: 2.5rem !important;
  }

  .lt-mt-md-7 {
    margin-top: 3rem !important;
  }

  .lt-mt-md-8 {
    margin-top: 3.5rem !important;
  }

  .lt-mt-md-9 {
    margin-top: 4rem !important;
  }

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

  .lt-me-md-0 {
    margin-inline-end: 0 !important;
  }



  .lt-me-md-1 {
    margin-inline-end: 0.25rem !important;
  }



  .lt-me-md-2 {
    margin-inline-end: 0.5rem !important;
  }



  .lt-me-md-3 {
    margin-inline-end: 1rem !important;
  }



  .lt-me-md-4 {
    margin-inline-end: 1.5rem !important;
  }



  .lt-me-md-5 {
    margin-inline-end: 2rem !important;
  }



  .lt-me-md-6 {
    margin-inline-end: 2.5rem !important;
  }



  .lt-me-md-7 {
    margin-inline-end: 3rem !important;
  }



  .lt-me-md-8 {
    margin-inline-end: 3.5rem !important;
  }



  .lt-me-md-9 {
    margin-inline-end: 4rem !important;
  }



  .lt-me-md-auto {
    margin-inline-end: auto !important;
  }



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

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

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

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

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

  .lt-mb-md-5 {
    margin-bottom: 2rem !important;
  }

  .lt-mb-md-6 {
    margin-bottom: 2.5rem !important;
  }

  .lt-mb-md-7 {
    margin-bottom: 3rem !important;
  }

  .lt-mb-md-8 {
    margin-bottom: 3.5rem !important;
  }

  .lt-mb-md-9 {
    margin-bottom: 4rem !important;
  }

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

  .lt-ms-md-0 {
    margin-inline-start: 0 !important;
  }



  .lt-ms-md-1 {
    margin-inline-start: 0.25rem !important;
  }



  .lt-ms-md-2 {
    margin-inline-start: 0.5rem !important;
  }



  .lt-ms-md-3 {
    margin-inline-start: 1rem !important;
  }



  .lt-ms-md-4 {
    margin-inline-start: 1.5rem !important;
  }



  .lt-ms-md-5 {
    margin-inline-start: 2rem !important;
  }



  .lt-ms-md-6 {
    margin-inline-start: 2.5rem !important;
  }



  .lt-ms-md-7 {
    margin-inline-start: 3rem !important;
  }



  .lt-ms-md-8 {
    margin-inline-start: 3.5rem !important;
  }



  .lt-ms-md-9 {
    margin-inline-start: 4rem !important;
  }



  .lt-ms-md-auto {
    margin-inline-start: auto !important;
  }



  .lt-m-md-n1 {
    margin: -0.25rem !important;
  }

  .lt-m-md-n2 {
    margin: -0.5rem !important;
  }

  .lt-m-md-n3 {
    margin: -1rem !important;
  }

  .lt-m-md-n4 {
    margin: -1.5rem !important;
  }

  .lt-m-md-n5 {
    margin: -2rem !important;
  }

  .lt-m-md-n6 {
    margin: -2.5rem !important;
  }

  .lt-m-md-n7 {
    margin: -3rem !important;
  }

  .lt-m-md-n8 {
    margin: -3.5rem !important;
  }

  .lt-m-md-n9 {
    margin: -4rem !important;
  }

  .lt-mx-md-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }

  .lt-mx-md-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }

  .lt-mx-md-n3 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }

  .lt-mx-md-n4 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }

  .lt-mx-md-n5 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }

  .lt-mx-md-n6 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }

  .lt-mx-md-n7 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }

  .lt-mx-md-n8 {
    margin-inline-end: -3.5rem !important;
    margin-inline-start: -3.5rem !important;
  }

  .lt-mx-md-n9 {
    margin-inline-end: -4rem !important;
    margin-inline-start: -4rem !important;
  }
  .lt-my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-my-md-n2 {
    margin-top: -0.5rem !important;    margin-bottom: -0.5rem !important;
  }

  .lt-my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .lt-my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-my-md-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;  }

  .lt-my-md-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-my-md-n7 {    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-my-md-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .lt-my-md-n9 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-mt-md-n1 {
    margin-top: -0.25rem !important;  }

  .lt-mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .lt-mt-md-n3 {
    margin-top: -1rem !important;  }

  .lt-mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .lt-mt-md-n5 {
    margin-top: -2rem !important;  }

  .lt-mt-md-n6 {
    margin-top: -2.5rem !important;
  }

  .lt-mt-md-n7 {
    margin-top: -3rem !important;  }

  .lt-mt-md-n8 {
    margin-top: -3.5rem !important;
  }

  .lt-mt-md-n9 {
    margin-top: -4rem !important;  }

  .lt-me-md-n1 {
    margin-inline-end: -0.25rem !important;
  }



  .lt-me-md-n2 {
    margin-inline-end: -0.5rem !important;
  }



  .lt-me-md-n3 {
    margin-inline-end: -1rem !important;
  }



  .lt-me-md-n4 {
    margin-inline-end: -1.5rem !important;
  }



  .lt-me-md-n5 {
    margin-inline-end: -2rem !important;
  }



  .lt-me-md-n6 {
    margin-inline-end: -2.5rem !important;
  }



  .lt-me-md-n7 {
    margin-inline-end: -3rem !important;
  }



  .lt-me-md-n8 {
    margin-inline-end: -3.5rem !important;
  }



  .lt-me-md-n9 {
    margin-inline-end: -4rem !important;  }



  .lt-mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .lt-mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .lt-mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .lt-mb-md-n5 {
    margin-bottom: -2rem !important;
  }
  .lt-mb-md-n6 {
    margin-bottom: -2.5rem !important;
  }

  .lt-mb-md-n7 {
    margin-bottom: -3rem !important;
  }
  .lt-mb-md-n8 {
    margin-bottom: -3.5rem !important;
  }

  .lt-mb-md-n9 {
    margin-bottom: -4rem !important;
  }
  .lt-ms-md-n1 {
    margin-inline-start: -0.25rem !important;
  }



  .lt-ms-md-n2 {
    margin-inline-start: -0.5rem !important;  }



  .lt-ms-md-n3 {
    margin-inline-start: -1rem !important;
  }


  .lt-ms-md-n4 {
    margin-inline-start: -1.5rem !important;
  }


  .lt-ms-md-n5 {
    margin-inline-start: -2rem !important;
  }



  .lt-ms-md-n6 {
    margin-inline-start: -2.5rem !important;  }



  .lt-ms-md-n7 {
    margin-inline-start: -3rem !important;
  }


  .lt-ms-md-n8 {
    margin-inline-start: -3.5rem !important;
  }



  .lt-ms-md-n9 {
    margin-inline-start: -4rem !important;
  }



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

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

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

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

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

  .lt-p-md-5 {
    padding: 2rem !important;
  }

  .lt-p-md-6 {
    padding: 2.5rem !important;
  }

  .lt-p-md-7 {
    padding: 3rem !important;
  }

  .lt-p-md-8 {
    padding: 3.5rem !important;
  }

  .lt-p-md-9 {
    padding: 4rem !important;
  }

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

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

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

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

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

  .lt-px-md-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .lt-px-md-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .lt-px-md-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .lt-px-md-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .lt-px-md-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

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

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

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

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

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

  .lt-py-md-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-py-md-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-py-md-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-py-md-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-py-md-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

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

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

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

  .lt-pt-md-3 {
    padding-top: 1rem !important;
  }
  .lt-pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .lt-pt-md-5 {
    padding-top: 2rem !important;
  }
  .lt-pt-md-6 {
    padding-top: 2.5rem !important;
  }

  .lt-pt-md-7 {
    padding-top: 3rem !important;
  }
  .lt-pt-md-8 {
    padding-top: 3.5rem !important;
  }

  .lt-pt-md-9 {
    padding-top: 4rem !important;
  }
  .lt-pe-md-0 {
    padding-right: 0 !important;
  }



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



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


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


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



  .lt-pe-md-5 {
    padding-right: 2rem !important;  }



  .lt-pe-md-6 {
    padding-right: 2.5rem !important;
  }


  .lt-pe-md-7 {
    padding-right: 3rem !important;
  }



  .lt-pe-md-8 {
    padding-right: 3.5rem !important;
  }



  .lt-pe-md-9 {
    padding-right: 4rem !important;
  }



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

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

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

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

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

  .lt-pb-md-5 {
    padding-bottom: 2rem !important;
  }
  .lt-pb-md-6 {
    padding-bottom: 2.5rem !important;
  }

  .lt-pb-md-7 {
    padding-bottom: 3rem !important;
  }
  .lt-pb-md-8 {
    padding-bottom: 3.5rem !important;
  }

  .lt-pb-md-9 {
    padding-bottom: 4rem !important;
  }
  .lt-ps-md-0 {
    padding-left: 0 !important;
  }



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



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


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


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



  .lt-ps-md-5 {
    padding-left: 2rem !important;  }



  .lt-ps-md-6 {
    padding-left: 2.5rem !important;
  }


  .lt-ps-md-7 {
    padding-left: 3rem !important;
  }


  .lt-ps-md-8 {
    padding-left: 3.5rem !important;
  }



  .lt-ps-md-9 {
    padding-left: 4rem !important;
  }



  .lt-fs-md-1 {
    font-size: var(--font-size-h1) !important;
  }

  .lt-fs-md-2 {
    font-size: var(--font-size-h2) !important;
  }

  .lt-fs-md-3 {
    font-size: var(--font-size-h3) !important;
  }

  .lt-fs-md-4 {
    font-size: var(--font-size-h4) !important;
  }

  .lt-fs-md-5 {
    font-size: var(--font-size-h5) !important;
  }

  .lt-fs-md-6 {
    font-size: var(--font-size-h6) !important;
  }

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



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



  .lt-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .lt-float-lg-start {
    float: left !important;
  }



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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-gap-lg-5 {
    gap: 2rem !important;
  }

  .lt-gap-lg-6 {
    gap: 2.5rem !important;
  }

  .lt-gap-lg-7 {
    gap: 3rem !important;
  }
  .lt-gap-lg-8 {
    gap: 3.5rem !important;
  }

  .lt-gap-lg-9 {
    gap: 4rem !important;
  }
  .lt-justify-content-lg-start {
    justify-content: flex-start !important;
  }

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

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

  .lt-justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .lt-align-items-lg-start {
    align-items: flex-start !important;
  }

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

  .lt-align-items-lg-baseline {
    align-items: baseline !important;
  }
  .lt-align-items-lg-stretch {
    align-items: stretch !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-order-lg-3 {
    order: 3 !important;
  }
  .lt-order-lg-4 {
    order: 4 !important;
  }

  .lt-order-lg-5 {
    order: 5 !important;
  }
  .lt-order-lg-last {
    order: 6 !important;
  }

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

  .lt-m-lg-2 {
    margin: 0.5rem !important;
  }
  .lt-m-lg-3 {
    margin: 1rem !important;
  }

  .lt-m-lg-4 {
    margin: 1.5rem !important;
  }
  .lt-m-lg-5 {
    margin: 2rem !important;
  }

  .lt-m-lg-6 {
    margin: 2.5rem !important;
  }
  .lt-m-lg-7 {
    margin: 3rem !important;
  }

  .lt-m-lg-8 {
    margin: 3.5rem !important;
  }
  .lt-m-lg-9 {
    margin: 4rem !important;
  }

  .lt-m-lg-auto {
    margin: auto !important;
  }
  .lt-mx-lg-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }

  .lt-mx-lg-1 {
    margin-inline-end: 0.25rem !important;    margin-inline-start: 0.25rem !important;
  }

  .lt-mx-lg-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .lt-mx-lg-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }

  .lt-mx-lg-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }

  .lt-mx-lg-5 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }

  .lt-mx-lg-6 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }

  .lt-mx-lg-7 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }

  .lt-mx-lg-8 {
    margin-inline-end: 3.5rem !important;
    margin-inline-start: 3.5rem !important;
  }

  .lt-mx-lg-9 {
    margin-inline-end: 4rem !important;    margin-inline-start: 4rem !important;
  }

  .lt-mx-lg-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }
  .lt-my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

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

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

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

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

  .lt-my-lg-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-my-lg-6 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .lt-my-lg-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .lt-my-lg-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-my-lg-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

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

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

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

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

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

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

  .lt-mt-lg-5 {
    margin-top: 2rem !important;
  }

  .lt-mt-lg-6 {
    margin-top: 2.5rem !important;
  }

  .lt-mt-lg-7 {
    margin-top: 3rem !important;
  }

  .lt-mt-lg-8 {
    margin-top: 3.5rem !important;
  }

  .lt-mt-lg-9 {
    margin-top: 4rem !important;
  }

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

  .lt-me-lg-0 {
    margin-inline-end: 0 !important;
  }



  .lt-me-lg-1 {
    margin-inline-end: 0.25rem !important;
  }



  .lt-me-lg-2 {
    margin-inline-end: 0.5rem !important;
  }



  .lt-me-lg-3 {
    margin-inline-end: 1rem !important;
  }



  .lt-me-lg-4 {
    margin-inline-end: 1.5rem !important;
  }



  .lt-me-lg-5 {
    margin-inline-end: 2rem !important;
  }



  .lt-me-lg-6 {
    margin-inline-end: 2.5rem !important;
  }



  .lt-me-lg-7 {
    margin-inline-end: 3rem !important;
  }



  .lt-me-lg-8 {
    margin-inline-end: 3.5rem !important;
  }



  .lt-me-lg-9 {
    margin-inline-end: 4rem !important;
  }



  .lt-me-lg-auto {
    margin-inline-end: auto !important;
  }



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

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

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

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

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

  .lt-mb-lg-5 {
    margin-bottom: 2rem !important;
  }

  .lt-mb-lg-6 {
    margin-bottom: 2.5rem !important;
  }

  .lt-mb-lg-7 {
    margin-bottom: 3rem !important;
  }

  .lt-mb-lg-8 {
    margin-bottom: 3.5rem !important;
  }

  .lt-mb-lg-9 {
    margin-bottom: 4rem !important;
  }

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

  .lt-ms-lg-0 {
    margin-inline-start: 0 !important;
  }



  .lt-ms-lg-1 {
    margin-inline-start: 0.25rem !important;
  }



  .lt-ms-lg-2 {
    margin-inline-start: 0.5rem !important;
  }



  .lt-ms-lg-3 {
    margin-inline-start: 1rem !important;
  }



  .lt-ms-lg-4 {
    margin-inline-start: 1.5rem !important;
  }



  .lt-ms-lg-5 {
    margin-inline-start: 2rem !important;
  }



  .lt-ms-lg-6 {
    margin-inline-start: 2.5rem !important;
  }



  .lt-ms-lg-7 {
    margin-inline-start: 3rem !important;
  }



  .lt-ms-lg-8 {
    margin-inline-start: 3.5rem !important;
  }



  .lt-ms-lg-9 {
    margin-inline-start: 4rem !important;
  }



  .lt-ms-lg-auto {
    margin-inline-start: auto !important;
  }



  .lt-m-lg-n1 {
    margin: -0.25rem !important;
  }

  .lt-m-lg-n2 {
    margin: -0.5rem !important;
  }

  .lt-m-lg-n3 {
    margin: -1rem !important;
  }

  .lt-m-lg-n4 {
    margin: -1.5rem !important;
  }

  .lt-m-lg-n5 {
    margin: -2rem !important;
  }

  .lt-m-lg-n6 {
    margin: -2.5rem !important;
  }

  .lt-m-lg-n7 {
    margin: -3rem !important;
  }

  .lt-m-lg-n8 {
    margin: -3.5rem !important;
  }

  .lt-m-lg-n9 {
    margin: -4rem !important;
  }

  .lt-mx-lg-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }

  .lt-mx-lg-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }

  .lt-mx-lg-n3 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }

  .lt-mx-lg-n4 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }

  .lt-mx-lg-n5 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }

  .lt-mx-lg-n6 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }

  .lt-mx-lg-n7 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }

  .lt-mx-lg-n8 {
    margin-inline-end: -3.5rem !important;
    margin-inline-start: -3.5rem !important;
  }

  .lt-mx-lg-n9 {
    margin-inline-end: -4rem !important;
    margin-inline-start: -4rem !important;
  }

  .lt-my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-my-lg-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-my-lg-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-my-lg-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-my-lg-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-my-lg-n9 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .lt-mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .lt-mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .lt-mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .lt-mt-lg-n5 {
    margin-top: -2rem !important;
  }

  .lt-mt-lg-n6 {
    margin-top: -2.5rem !important;
  }

  .lt-mt-lg-n7 {
    margin-top: -3rem !important;
  }

  .lt-mt-lg-n8 {
    margin-top: -3.5rem !important;
  }

  .lt-mt-lg-n9 {
    margin-top: -4rem !important;
  }

  .lt-me-lg-n1 {
    margin-inline-end: -0.25rem !important;
  }



  .lt-me-lg-n2 {
    margin-inline-end: -0.5rem !important;
  }



  .lt-me-lg-n3 {
    margin-inline-end: -1rem !important;
  }



  .lt-me-lg-n4 {
    margin-inline-end: -1.5rem !important;
  }



  .lt-me-lg-n5 {
    margin-inline-end: -2rem !important;
  }



  .lt-me-lg-n6 {
    margin-inline-end: -2.5rem !important;
  }



  .lt-me-lg-n7 {
    margin-inline-end: -3rem !important;
  }



  .lt-me-lg-n8 {
    margin-inline-end: -3.5rem !important;
  }


  .lt-me-lg-n9 {
    margin-inline-end: -4rem !important;
  }


  .lt-mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .lt-mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .lt-mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .lt-mb-lg-n5 {
    margin-bottom: -2rem !important;
  }

  .lt-mb-lg-n6 {
    margin-bottom: -2.5rem !important;
  }
  .lt-mb-lg-n7 {
    margin-bottom: -3rem !important;
  }

  .lt-mb-lg-n8 {
    margin-bottom: -3.5rem !important;
  }
  .lt-mb-lg-n9 {
    margin-bottom: -4rem !important;
  }

  .lt-ms-lg-n1 {
    margin-inline-start: -0.25rem !important;
  }


  .lt-ms-lg-n2 {
    margin-inline-start: -0.5rem !important;
  }


  .lt-ms-lg-n3 {
    margin-inline-start: -1rem !important;
  }



  .lt-ms-lg-n4 {
    margin-inline-start: -1.5rem !important;  }



  .lt-ms-lg-n5 {
    margin-inline-start: -2rem !important;
  }


  .lt-ms-lg-n6 {
    margin-inline-start: -2.5rem !important;
  }


  .lt-ms-lg-n7 {
    margin-inline-start: -3rem !important;
  }



  .lt-ms-lg-n8 {
    margin-inline-start: -3.5rem !important;
  }



  .lt-ms-lg-n9 {
    margin-inline-start: -4rem !important;
  }



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

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

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

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

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

  .lt-p-lg-5 {
    padding: 2rem !important;
  }

  .lt-p-lg-6 {
    padding: 2.5rem !important;
  }

  .lt-p-lg-7 {
    padding: 3rem !important;
  }

  .lt-p-lg-8 {
    padding: 3.5rem !important;  }

  .lt-p-lg-9 {
    padding: 4rem !important;
  }

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

  .lt-px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .lt-px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

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

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

  .lt-px-lg-5 {    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .lt-px-lg-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .lt-px-lg-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .lt-px-lg-8 {
    padding-right: 3.5rem !important;    padding-left: 3.5rem !important;
  }

  .lt-px-lg-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .lt-py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

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

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

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

  .lt-py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lt-py-lg-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-py-lg-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-py-lg-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-py-lg-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

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

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

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

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

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

  .lt-pt-lg-5 {
    padding-top: 2rem !important;
  }

  .lt-pt-lg-6 {
    padding-top: 2.5rem !important;
  }

  .lt-pt-lg-7 {
    padding-top: 3rem !important;
  }

  .lt-pt-lg-8 {
    padding-top: 3.5rem !important;
  }

  .lt-pt-lg-9 {
    padding-top: 4rem !important;
  }

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



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



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



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



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



  .lt-pe-lg-5 {
    padding-right: 2rem !important;
  }



  .lt-pe-lg-6 {
    padding-right: 2.5rem !important;
  }



  .lt-pe-lg-7 {
    padding-right: 3rem !important;
  }



  .lt-pe-lg-8 {
    padding-right: 3.5rem !important;
  }



  .lt-pe-lg-9 {
    padding-right: 4rem !important;
  }



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

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

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

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

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

  .lt-pb-lg-5 {
    padding-bottom: 2rem !important;
  }

  .lt-pb-lg-6 {
    padding-bottom: 2.5rem !important;
  }

  .lt-pb-lg-7 {
    padding-bottom: 3rem !important;
  }

  .lt-pb-lg-8 {
    padding-bottom: 3.5rem !important;
  }

  .lt-pb-lg-9 {
    padding-bottom: 4rem !important;
  }

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


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


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



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



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


  .lt-ps-lg-5 {
    padding-left: 2rem !important;
  }


  .lt-ps-lg-6 {
    padding-left: 2.5rem !important;
  }



  .lt-ps-lg-7 {
    padding-left: 3rem !important;  }



  .lt-ps-lg-8 {
    padding-left: 3.5rem !important;
  }


  .lt-ps-lg-9 {
    padding-left: 4rem !important;
  }


  .lt-fs-lg-1 {
    font-size: var(--font-size-h1) !important;
  }

  .lt-fs-lg-2 {
    font-size: var(--font-size-h2) !important;
  }
  .lt-fs-lg-3 {
    font-size: var(--font-size-h3) !important;
  }

  .lt-fs-lg-4 {
    font-size: var(--font-size-h4) !important;
  }

  .lt-fs-lg-5 {
    font-size: var(--font-size-h5) !important;
  }

  .lt-fs-lg-6 {
    font-size: var(--font-size-h6) !important;
  }

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



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



  .lt-text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .lt-float-xl-start {
    float: left !important;
  }



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


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

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

  .lt-d-xl-block {
    display: block !important;
  }
  .lt-d-xl-grid {
    display: grid !important;
  }

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

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

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

  .lt-flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .lt-flex-xl-row {
    flex-direction: row !important;
  }

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

  .lt-flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .lt-flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .lt-gap-xl-5 {
    gap: 2rem !important;
  }

  .lt-gap-xl-6 {
    gap: 2.5rem !important;
  }

  .lt-gap-xl-7 {
    gap: 3rem !important;
  }

  .lt-gap-xl-8 {
    gap: 3.5rem !important;
  }

  .lt-gap-xl-9 {
    gap: 4rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-order-xl-5 {
    order: 5 !important;
  }
  .lt-order-xl-last {
    order: 6 !important;
  }

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

  .lt-m-xl-2 {
    margin: 0.5rem !important;
  }
  .lt-m-xl-3 {
    margin: 1rem !important;
  }

  .lt-m-xl-4 {
    margin: 1.5rem !important;
  }
  .lt-m-xl-5 {
    margin: 2rem !important;
  }

  .lt-m-xl-6 {
    margin: 2.5rem !important;
  }
  .lt-m-xl-7 {
    margin: 3rem !important;
  }

  .lt-m-xl-8 {
    margin: 3.5rem !important;
  }
  .lt-m-xl-9 {
    margin: 4rem !important;
  }

  .lt-m-xl-auto {
    margin: auto !important;
  }
  .lt-mx-xl-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }

  .lt-mx-xl-1 {
    margin-inline-end: 0.25rem !important;    margin-inline-start: 0.25rem !important;
  }

  .lt-mx-xl-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }
  .lt-mx-xl-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }

  .lt-mx-xl-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;  }

  .lt-mx-xl-5 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }

  .lt-mx-xl-6 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }

  .lt-mx-xl-7 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }

  .lt-mx-xl-8 {
    margin-inline-end: 3.5rem !important;
    margin-inline-start: 3.5rem !important;
  }

  .lt-mx-xl-9 {
    margin-inline-end: 4rem !important;
    margin-inline-start: 4rem !important;
  }

  .lt-mx-xl-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }

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

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

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

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

  .lt-my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lt-my-xl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-my-xl-6 {
    margin-top: 2.5rem !important;    margin-bottom: 2.5rem !important;
  }

  .lt-my-xl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lt-my-xl-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-my-xl-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;  }

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

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

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

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

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

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

  .lt-mt-xl-5 {
    margin-top: 2rem !important;
  }

  .lt-mt-xl-6 {    margin-top: 2.5rem !important;
  }

  .lt-mt-xl-7 {
    margin-top: 3rem !important;
  }

  .lt-mt-xl-8 {    margin-top: 3.5rem !important;
  }

  .lt-mt-xl-9 {
    margin-top: 4rem !important;
  }

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

  .lt-me-xl-0 {
    margin-inline-end: 0 !important;
  }



  .lt-me-xl-1 {
    margin-inline-end: 0.25rem !important;
  }



  .lt-me-xl-2 {
    margin-inline-end: 0.5rem !important;
  }



  .lt-me-xl-3 {
    margin-inline-end: 1rem !important;
  }


  .lt-me-xl-4 {
    margin-inline-end: 1.5rem !important;
  }


  .lt-me-xl-5 {
    margin-inline-end: 2rem !important;
  }



  .lt-me-xl-6 {
    margin-inline-end: 2.5rem !important;
  }


  .lt-me-xl-7 {
    margin-inline-end: 3rem !important;
  }



  .lt-me-xl-8 {
    margin-inline-end: 3.5rem !important;  }



  .lt-me-xl-9 {
    margin-inline-end: 4rem !important;
  }



  .lt-me-xl-auto {
    margin-inline-end: auto !important;
  }



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

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

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

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

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

  .lt-mb-xl-5 {
    margin-bottom: 2rem !important;
  }

  .lt-mb-xl-6 {
    margin-bottom: 2.5rem !important;
  }

  .lt-mb-xl-7 {
    margin-bottom: 3rem !important;
  }

  .lt-mb-xl-8 {
    margin-bottom: 3.5rem !important;
  }

  .lt-mb-xl-9 {
    margin-bottom: 4rem !important;
  }

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

  .lt-ms-xl-0 {
    margin-inline-start: 0 !important;
  }



  .lt-ms-xl-1 {
    margin-inline-start: 0.25rem !important;
  }



  .lt-ms-xl-2 {
    margin-inline-start: 0.5rem !important;
  }



  .lt-ms-xl-3 {
    margin-inline-start: 1rem !important;
  }



  .lt-ms-xl-4 {
    margin-inline-start: 1.5rem !important;
  }



  .lt-ms-xl-5 {
    margin-inline-start: 2rem !important;
  }



  .lt-ms-xl-6 {
    margin-inline-start: 2.5rem !important;
  }



  .lt-ms-xl-7 {
    margin-inline-start: 3rem !important;
  }



  .lt-ms-xl-8 {
    margin-inline-start: 3.5rem !important;
  }



  .lt-ms-xl-9 {
    margin-inline-start: 4rem !important;
  }



  .lt-ms-xl-auto {
    margin-inline-start: auto !important;
  }



  .lt-m-xl-n1 {
    margin: -0.25rem !important;
  }

  .lt-m-xl-n2 {
    margin: -0.5rem !important;
  }

  .lt-m-xl-n3 {
    margin: -1rem !important;
  }

  .lt-m-xl-n4 {
    margin: -1.5rem !important;
  }

  .lt-m-xl-n5 {
    margin: -2rem !important;
  }

  .lt-m-xl-n6 {
    margin: -2.5rem !important;
  }

  .lt-m-xl-n7 {
    margin: -3rem !important;
  }

  .lt-m-xl-n8 {
    margin: -3.5rem !important;
  }

  .lt-m-xl-n9 {
    margin: -4rem !important;
  }

  .lt-mx-xl-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }

  .lt-mx-xl-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }

  .lt-mx-xl-n3 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }

  .lt-mx-xl-n4 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }

  .lt-mx-xl-n5 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }

  .lt-mx-xl-n6 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }

  .lt-mx-xl-n7 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }

  .lt-mx-xl-n8 {
    margin-inline-end: -3.5rem !important;
    margin-inline-start: -3.5rem !important;
  }

  .lt-mx-xl-n9 {
    margin-inline-end: -4rem !important;
    margin-inline-start: -4rem !important;
  }

  .lt-my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-my-xl-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-my-xl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-my-xl-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-my-xl-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-my-xl-n9 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .lt-mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .lt-mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .lt-mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .lt-mt-xl-n5 {
    margin-top: -2rem !important;
  }

  .lt-mt-xl-n6 {
    margin-top: -2.5rem !important;
  }

  .lt-mt-xl-n7 {
    margin-top: -3rem !important;
  }

  .lt-mt-xl-n8 {
    margin-top: -3.5rem !important;
  }

  .lt-mt-xl-n9 {
    margin-top: -4rem !important;
  }

  .lt-me-xl-n1 {
    margin-inline-end: -0.25rem !important;
  }



  .lt-me-xl-n2 {
    margin-inline-end: -0.5rem !important;
  }



  .lt-me-xl-n3 {
    margin-inline-end: -1rem !important;
  }



  .lt-me-xl-n4 {
    margin-inline-end: -1.5rem !important;
  }



  .lt-me-xl-n5 {
    margin-inline-end: -2rem !important;
  }



  .lt-me-xl-n6 {
    margin-inline-end: -2.5rem !important;
  }



  .lt-me-xl-n7 {
    margin-inline-end: -3rem !important;
  }



  .lt-me-xl-n8 {
    margin-inline-end: -3.5rem !important;
  }



  .lt-me-xl-n9 {
    margin-inline-end: -4rem !important;
  }



  .lt-mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .lt-mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .lt-mb-xl-n5 {
    margin-bottom: -2rem !important;
  }

  .lt-mb-xl-n6 {
    margin-bottom: -2.5rem !important;
  }

  .lt-mb-xl-n7 {
    margin-bottom: -3rem !important;
  }

  .lt-mb-xl-n8 {
    margin-bottom: -3.5rem !important;
  }

  .lt-mb-xl-n9 {
    margin-bottom: -4rem !important;
  }

  .lt-ms-xl-n1 {
    margin-inline-start: -0.25rem !important;
  }



  .lt-ms-xl-n2 {
    margin-inline-start: -0.5rem !important;
  }



  .lt-ms-xl-n3 {
    margin-inline-start: -1rem !important;
  }



  .lt-ms-xl-n4 {
    margin-inline-start: -1.5rem !important;
  }



  .lt-ms-xl-n5 {
    margin-inline-start: -2rem !important;
  }



  .lt-ms-xl-n6 {
    margin-inline-start: -2.5rem !important;
  }



  .lt-ms-xl-n7 {
    margin-inline-start: -3rem !important;
  }



  .lt-ms-xl-n8 {
    margin-inline-start: -3.5rem !important;
  }



  .lt-ms-xl-n9 {
    margin-inline-start: -4rem !important;
  }



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

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

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

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

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

  .lt-p-xl-5 {
    padding: 2rem !important;
  }

  .lt-p-xl-6 {
    padding: 2.5rem !important;
  }

  .lt-p-xl-7 {
    padding: 3rem !important;  }

  .lt-p-xl-8 {
    padding: 3.5rem !important;
  }

  .lt-p-xl-9 {
    padding: 4rem !important;  }

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

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

  .lt-px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .lt-px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

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

  .lt-px-xl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .lt-px-xl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .lt-px-xl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;  }

  .lt-px-xl-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .lt-px-xl-9 {    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

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

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

  .lt-py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lt-py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lt-py-xl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-py-xl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-py-xl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-py-xl-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-py-xl-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

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

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

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

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

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

  .lt-pt-xl-5 {
    padding-top: 2rem !important;  }

  .lt-pt-xl-6 {
    padding-top: 2.5rem !important;
  }

  .lt-pt-xl-7 {
    padding-top: 3rem !important;  }

  .lt-pt-xl-8 {
    padding-top: 3.5rem !important;
  }

  .lt-pt-xl-9 {
    padding-top: 4rem !important;  }

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


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



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



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


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


  .lt-pe-xl-5 {
    padding-right: 2rem !important;
  }



  .lt-pe-xl-6 {
    padding-right: 2.5rem !important;  }



  .lt-pe-xl-7 {
    padding-right: 3rem !important;
  }


  .lt-pe-xl-8 {
    padding-right: 3.5rem !important;
  }


  .lt-pe-xl-9 {
    padding-right: 4rem !important;
  }



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

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

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

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

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

  .lt-pb-xl-5 {
    padding-bottom: 2rem !important;
  }

  .lt-pb-xl-6 {
    padding-bottom: 2.5rem !important;
  }

  .lt-pb-xl-7 {
    padding-bottom: 3rem !important;
  }

  .lt-pb-xl-8 {
    padding-bottom: 3.5rem !important;
  }

  .lt-pb-xl-9 {
    padding-bottom: 4rem !important;
  }

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



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



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



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



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



  .lt-ps-xl-5 {
    padding-left: 2rem !important;
  }



  .lt-ps-xl-6 {
    padding-left: 2.5rem !important;
  }



  .lt-ps-xl-7 {
    padding-left: 3rem !important;
  }



  .lt-ps-xl-8 {
    padding-left: 3.5rem !important;
  }



  .lt-ps-xl-9 {
    padding-left: 4rem !important;
  }



  .lt-fs-xl-1 {
    font-size: var(--font-size-h1) !important;
  }

  .lt-fs-xl-2 {
    font-size: var(--font-size-h2) !important;
  }

  .lt-fs-xl-3 {
    font-size: var(--font-size-h3) !important;
  }

  .lt-fs-xl-4 {
    font-size: var(--font-size-h4) !important;
  }

  .lt-fs-xl-5 {
    font-size: var(--font-size-h5) !important;
  }

  .lt-fs-xl-6 {
    font-size: var(--font-size-h6) !important;
  }

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



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



  .lt-text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .lt-float-xxl-start {
    float: left !important;
  }



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



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

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

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

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

  .lt-d-xxl-grid {
    display: grid !important;
  }
  .lt-d-xxl-table {
    display: table !important;
  }

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

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

  .lt-d-xxl-none {
    display: none !important;
  }
  .lt-flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .lt-flex-xxl-row {
    flex-direction: row !important;
  }
  .lt-flex-xxl-column {
    flex-direction: column !important;
  }

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

  .lt-flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .lt-flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .lt-flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .lt-flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

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

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

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

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

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

  .lt-gap-xxl-5 {
    gap: 2rem !important;
  }

  .lt-gap-xxl-6 {
    gap: 2.5rem !important;
  }

  .lt-gap-xxl-7 {
    gap: 3rem !important;
  }

  .lt-gap-xxl-8 {
    gap: 3.5rem !important;
  }
  .lt-gap-xxl-9 {
    gap: 4rem !important;
  }

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

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

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

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

  .lt-align-items-xxl-center {
    align-items: center !important;
  }
  .lt-align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .lt-align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .lt-align-content-xxl-start {
    align-content: flex-start !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lt-m-xxl-5 {
    margin: 2rem !important;
  }

  .lt-m-xxl-6 {
    margin: 2.5rem !important;
  }

  .lt-m-xxl-7 {
    margin: 3rem !important;
  }

  .lt-m-xxl-8 {
    margin: 3.5rem !important;
  }

  .lt-m-xxl-9 {
    margin: 4rem !important;
  }

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

  .lt-mx-xxl-0 {
    margin-inline-end: 0 !important;
    margin-inline-start: 0 !important;
  }

  .lt-mx-xxl-1 {
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }

  .lt-mx-xxl-2 {
    margin-inline-end: 0.5rem !important;
    margin-inline-start: 0.5rem !important;
  }

  .lt-mx-xxl-3 {
    margin-inline-end: 1rem !important;
    margin-inline-start: 1rem !important;
  }

  .lt-mx-xxl-4 {
    margin-inline-end: 1.5rem !important;
    margin-inline-start: 1.5rem !important;
  }

  .lt-mx-xxl-5 {
    margin-inline-end: 2rem !important;
    margin-inline-start: 2rem !important;
  }

  .lt-mx-xxl-6 {
    margin-inline-end: 2.5rem !important;
    margin-inline-start: 2.5rem !important;
  }

  .lt-mx-xxl-7 {
    margin-inline-end: 3rem !important;
    margin-inline-start: 3rem !important;
  }

  .lt-mx-xxl-8 {
    margin-inline-end: 3.5rem !important;
    margin-inline-start: 3.5rem !important;
  }

  .lt-mx-xxl-9 {
    margin-inline-end: 4rem !important;
    margin-inline-start: 4rem !important;
  }

  .lt-mx-xxl-auto {
    margin-inline-end: auto !important;
    margin-inline-start: auto !important;
  }

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

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

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

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

  .lt-my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lt-my-xxl-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .lt-my-xxl-6 {
    margin-top: 2.5rem !important;    margin-bottom: 2.5rem !important;
  }

  .lt-my-xxl-7 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lt-my-xxl-8 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .lt-my-xxl-9 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;  }

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

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

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

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

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

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

  .lt-mt-xxl-5 {
    margin-top: 2rem !important;
  }

  .lt-mt-xxl-6 {    margin-top: 2.5rem !important;
  }

  .lt-mt-xxl-7 {
    margin-top: 3rem !important;
  }

  .lt-mt-xxl-8 {    margin-top: 3.5rem !important;
  }

  .lt-mt-xxl-9 {
    margin-top: 4rem !important;
  }

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

  .lt-me-xxl-0 {
    margin-inline-end: 0 !important;
  }



  .lt-me-xxl-1 {
    margin-inline-end: 0.25rem !important;
  }



  .lt-me-xxl-2 {
    margin-inline-end: 0.5rem !important;
  }



  .lt-me-xxl-3 {
    margin-inline-end: 1rem !important;
  }



  .lt-me-xxl-4 {
    margin-inline-end: 1.5rem !important;
  }



  .lt-me-xxl-5 {
    margin-inline-end: 2rem !important;
  }



  .lt-me-xxl-6 {
    margin-inline-end: 2.5rem !important;
  }



  .lt-me-xxl-7 {
    margin-inline-end: 3rem !important;
  }


  .lt-me-xxl-8 {
    margin-inline-end: 3.5rem !important;
  }


  .lt-me-xxl-9 {
    margin-inline-end: 4rem !important;
  }



  .lt-me-xxl-auto {    margin-inline-end: auto !important;
  }



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

  .lt-mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .lt-mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .lt-mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .lt-mb-xxl-5 {
    margin-bottom: 2rem !important;
  }

  .lt-mb-xxl-6 {
    margin-bottom: 2.5rem !important;
  }
  .lt-mb-xxl-7 {
    margin-bottom: 3rem !important;
  }

  .lt-mb-xxl-8 {
    margin-bottom: 3.5rem !important;
  }
  .lt-mb-xxl-9 {
    margin-bottom: 4rem !important;
  }

  .lt-mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .lt-ms-xxl-0 {
    margin-inline-start: 0 !important;
  }



  .lt-ms-xxl-1 {    margin-inline-start: 0.25rem !important;
  }



  .lt-ms-xxl-2 {
    margin-inline-start: 0.5rem !important;
  }



  .lt-ms-xxl-3 {
    margin-inline-start: 1rem !important;
  }



  .lt-ms-xxl-4 {
    margin-inline-start: 1.5rem !important;
  }



  .lt-ms-xxl-5 {
    margin-inline-start: 2rem !important;
  }



  .lt-ms-xxl-6 {
    margin-inline-start: 2.5rem !important;
  }


  .lt-ms-xxl-7 {
    margin-inline-start: 3rem !important;
  }


  .lt-ms-xxl-8 {
    margin-inline-start: 3.5rem !important;
  }



  .lt-ms-xxl-9 {
    margin-inline-start: 4rem !important;
  }


  .lt-ms-xxl-auto {
    margin-inline-start: auto !important;
  }



  .lt-m-xxl-n1 {
    margin: -0.25rem !important;  }

  .lt-m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .lt-m-xxl-n3 {
    margin: -1rem !important;
  }

  .lt-m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .lt-m-xxl-n5 {
    margin: -2rem !important;
  }

  .lt-m-xxl-n6 {
    margin: -2.5rem !important;
  }

  .lt-m-xxl-n7 {
    margin: -3rem !important;
  }

  .lt-m-xxl-n8 {
    margin: -3.5rem !important;
  }

  .lt-m-xxl-n9 {
    margin: -4rem !important;
  }

  .lt-mx-xxl-n1 {
    margin-inline-end: -0.25rem !important;
    margin-inline-start: -0.25rem !important;
  }

  .lt-mx-xxl-n2 {
    margin-inline-end: -0.5rem !important;
    margin-inline-start: -0.5rem !important;
  }

  .lt-mx-xxl-n3 {
    margin-inline-end: -1rem !important;
    margin-inline-start: -1rem !important;
  }

  .lt-mx-xxl-n4 {
    margin-inline-end: -1.5rem !important;
    margin-inline-start: -1.5rem !important;
  }

  .lt-mx-xxl-n5 {
    margin-inline-end: -2rem !important;
    margin-inline-start: -2rem !important;
  }

  .lt-mx-xxl-n6 {
    margin-inline-end: -2.5rem !important;
    margin-inline-start: -2.5rem !important;
  }

  .lt-mx-xxl-n7 {
    margin-inline-end: -3rem !important;
    margin-inline-start: -3rem !important;
  }

  .lt-mx-xxl-n8 {
    margin-inline-end: -3.5rem !important;
    margin-inline-start: -3.5rem !important;
  }

  .lt-mx-xxl-n9 {
    margin-inline-end: -4rem !important;
    margin-inline-start: -4rem !important;
  }

  .lt-my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .lt-my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .lt-my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .lt-my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .lt-my-xxl-n5 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lt-my-xxl-n6 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .lt-my-xxl-n7 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .lt-my-xxl-n8 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .lt-my-xxl-n9 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .lt-mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .lt-mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .lt-mt-xxl-n3 {
    margin-top: -1rem !important;
  }

  .lt-mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .lt-mt-xxl-n5 {
    margin-top: -2rem !important;
  }

  .lt-mt-xxl-n6 {
    margin-top: -2.5rem !important;
  }

  .lt-mt-xxl-n7 {
    margin-top: -3rem !important;
  }

  .lt-mt-xxl-n8 {
    margin-top: -3.5rem !important;
  }

  .lt-mt-xxl-n9 {
    margin-top: -4rem !important;
  }

  .lt-me-xxl-n1 {
    margin-inline-end: -0.25rem !important;
  }



  .lt-me-xxl-n2 {
    margin-inline-end: -0.5rem !important;
  }



  .lt-me-xxl-n3 {
    margin-inline-end: -1rem !important;
  }



  .lt-me-xxl-n4 {
    margin-inline-end: -1.5rem !important;
  }



  .lt-me-xxl-n5 {
    margin-inline-end: -2rem !important;
  }



  .lt-me-xxl-n6 {
    margin-inline-end: -2.5rem !important;
  }



  .lt-me-xxl-n7 {
    margin-inline-end: -3rem !important;
  }



  .lt-me-xxl-n8 {
    margin-inline-end: -3.5rem !important;
  }



  .lt-me-xxl-n9 {
    margin-inline-end: -4rem !important;
  }



  .lt-mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .lt-mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .lt-mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .lt-mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .lt-mb-xxl-n5 {
    margin-bottom: -2rem !important;
  }

  .lt-mb-xxl-n6 {
    margin-bottom: -2.5rem !important;
  }

  .lt-mb-xxl-n7 {
    margin-bottom: -3rem !important;
  }

  .lt-mb-xxl-n8 {
    margin-bottom: -3.5rem !important;
  }

  .lt-mb-xxl-n9 {
    margin-bottom: -4rem !important;
  }

  .lt-ms-xxl-n1 {
    margin-inline-start: -0.25rem !important;
  }



  .lt-ms-xxl-n2 {
    margin-inline-start: -0.5rem !important;
  }



  .lt-ms-xxl-n3 {
    margin-inline-start: -1rem !important;
  }



  .lt-ms-xxl-n4 {
    margin-inline-start: -1.5rem !important;
  }



  .lt-ms-xxl-n5 {
    margin-inline-start: -2rem !important;
  }



  .lt-ms-xxl-n6 {
    margin-inline-start: -2.5rem !important;
  }



  .lt-ms-xxl-n7 {
    margin-inline-start: -3rem !important;
  }



  .lt-ms-xxl-n8 {
    margin-inline-start: -3.5rem !important;
  }



  .lt-ms-xxl-n9 {
    margin-inline-start: -4rem !important;
  }



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

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

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

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

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

  .lt-p-xxl-5 {
    padding: 2rem !important;
  }

  .lt-p-xxl-6 {
    padding: 2.5rem !important;
  }

  .lt-p-xxl-7 {
    padding: 3rem !important;
  }

  .lt-p-xxl-8 {
    padding: 3.5rem !important;
  }

  .lt-p-xxl-9 {
    padding: 4rem !important;
  }

  .lt-px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .lt-px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .lt-px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .lt-px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .lt-px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .lt-px-xxl-5 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .lt-px-xxl-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .lt-px-xxl-7 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .lt-px-xxl-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .lt-px-xxl-9 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .lt-py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .lt-py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .lt-py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .lt-py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lt-py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .lt-py-xxl-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .lt-py-xxl-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .lt-py-xxl-7 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .lt-py-xxl-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .lt-py-xxl-9 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .lt-pt-xxl-0 {
    padding-top: 0 !important;
  }

  .lt-pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .lt-pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .lt-pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .lt-pt-xxl-4 {
    padding-top: 1.5rem !important;  }

  .lt-pt-xxl-5 {
    padding-top: 2rem !important;
  }

  .lt-pt-xxl-6 {
    padding-top: 2.5rem !important;  }

  .lt-pt-xxl-7 {
    padding-top: 3rem !important;
  }

  .lt-pt-xxl-8 {
    padding-top: 3.5rem !important;  }

  .lt-pt-xxl-9 {
    padding-top: 4rem !important;
  }

  .lt-pe-xxl-0 {
    padding-right: 0 !important;  }



  .lt-pe-xxl-1 {
    padding-right: 0.25rem !important;
  }


  .lt-pe-xxl-2 {
    padding-right: 0.5rem !important;
  }


  .lt-pe-xxl-3 {
    padding-right: 1rem !important;
  }



  .lt-pe-xxl-4 {
    padding-right: 1.5rem !important;  }



  .lt-pe-xxl-5 {
    padding-right: 2rem !important;
  }


  .lt-pe-xxl-6 {
    padding-right: 2.5rem !important;
  }


  .lt-pe-xxl-7 {
    padding-right: 3rem !important;
  }



  .lt-pe-xxl-8 {
    padding-right: 3.5rem !important;  }



  .lt-pe-xxl-9 {
    padding-right: 4rem !important;
  }


  .lt-pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .lt-pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .lt-pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .lt-pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .lt-pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .lt-pb-xxl-5 {
    padding-bottom: 2rem !important;
  }

  .lt-pb-xxl-6 {
    padding-bottom: 2.5rem !important;
  }

  .lt-pb-xxl-7 {
    padding-bottom: 3rem !important;
  }

  .lt-pb-xxl-8 {
    padding-bottom: 3.5rem !important;
  }

  .lt-pb-xxl-9 {
    padding-bottom: 4rem !important;
  }

  .lt-ps-xxl-0 {
    padding-left: 0 !important;
  }



  .lt-ps-xxl-1 {
    padding-left: 0.25rem !important;
  }


  .lt-ps-xxl-2 {
    padding-left: 0.5rem !important;
  }


  .lt-ps-xxl-3 {
    padding-left: 1rem !important;
  }



  .lt-ps-xxl-4 {
    padding-left: 1.5rem !important;  }



  .lt-ps-xxl-5 {
    padding-left: 2rem !important;
  }


  .lt-ps-xxl-6 {
    padding-left: 2.5rem !important;
  }


  .lt-ps-xxl-7 {
    padding-left: 3rem !important;
  }



  .lt-ps-xxl-8 {
    padding-left: 3.5rem !important;  }



  .lt-ps-xxl-9 {
    padding-left: 4rem !important;
  }


  .lt-fs-xxl-1 {
    font-size: var(--font-size-h1) !important;
  }

  .lt-fs-xxl-2 {
    font-size: var(--font-size-h2) !important;  }

  .lt-fs-xxl-3 {
    font-size: var(--font-size-h3) !important;
  }

  .lt-fs-xxl-4 {
    font-size: var(--font-size-h4) !important;  }

  .lt-fs-xxl-5 {
    font-size: var(--font-size-h5) !important;
  }

  .lt-fs-xxl-6 {
    font-size: var(--font-size-h6) !important;  }

  .lt-text-xxl-start {
    text-align: left !important;
  }


  .lt-text-xxl-end {
    text-align: right !important;
  }



  .lt-text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  .lt-d-print-inline {
    display: inline !important;
  }

  .lt-d-print-inline-block {
    display: inline-block !important;
  }

  .lt-d-print-block {
    display: block !important;
  }

  .lt-d-print-grid {
    display: grid !important;
  }

  .lt-d-print-table {
    display: table !important;
  }

  .lt-d-print-table-row {
    display: table-row !important;
  }

  .lt-d-print-table-cell {
    display: table-cell !important;
  }

  .lt-d-print-flex {
    display: flex !important;
  }

  .lt-d-print-inline-flex {
    display: inline-flex !important;
  }

  .lt-d-print-none {
    display: none !important;
  }
}

