

:root {
  --gray: #55595c;
  --gray-light: #818a91;
  --gray-lighter: #eceeef;
  --gray-lightest: #f7f7f9;

  --bacground-gray-color: #eff4f3;

  --meta-text-color: #6b7280;
  --grid-gutter-width: 1rem;

  --padding-base-horizontal: 12px;
  --font-size-small: calc(16px * 0.875);
  --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;
  --border-width: 1px;
  --strong-font-weight: 600;
  --input-border-color: #dee1e3;
  --input-focus-border-color: #9a9a9a;

  --lt-spacer: 1rem;
}
*{ padding:0; margin:0; outline: none;}
ul,ol,li,dl,dd,dt{ list-style-type:none; line-height:normal;}
*,
*:before,
*:after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

html,
body {
  height: 100%;
}
/* Body reset */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body { margin: 0; padding: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: rgba(255, 255, 255, 1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
/* Reset fonts for relevant elements */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/* Links */
a {
  color: #333;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
  margin: 0 0 calc(var(--line-height-computed));
}

h1,
.h1 {
  font-size: var(--font-size-h1);
  /* font-weight: 400; */
}

h2,
.h2 {
  font-size: var(--font-size-h2);
}

h3,
.h3 {
  font-size: var(--font-size-h3);
}

h4,
.h4 {
  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%;
  }
}
/* Blockquotes */
blockquote {
  padding: calc(var(--line-height-computed) / 2)
    calc(var(--line-height-computed));
  margin: 0 0 calc(var(--line-height-computed));
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-style: italic;
  background-color: var(--gray-lightest);
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

[dir="ltr"] blockquote {
  border-left: 5px solid var(--gray-lighter);
}

[dir="ltr"] blockquote.is-colored {
  border-left: 5px solid rgba(187, 139, 98, 1);
}

[dir="rtl"] blockquote {
  border-right: 5px solid var(--gray-lighter);
}

[dir="rtl"] blockquote.is-colored {
  border-right: 5px solid rgba(187, 139, 98, 1);
}
/* Code */
code {
  padding: 20px !important;
  border-radius: 4px !important;
}
/*  Addresses */
address {
  margin-bottom: calc(var(--line-height-computed));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.is-hidden,
.hidden,
[hidden],
[x-cloak] {
  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%);
}
@media (min-width: 992px) {
  .lt-main-content {
    padding-top: 7.5rem;
  }
}
@media (min-width: 768px) {
  .on-footer {
    position: relative;
  }

  .on-footer:after {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 200px;
    content: "";
    background-color: rgba(29, 29, 29, 1);
  }

  [dir="ltr"] .on-footer:after {
    left: 0;
  }

  [dir="rtl"] .on-footer:after {
    right: 0;
  }
}

.lt-start-screen-wrap {
  position: relative;
  z-index: 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #fff;
  background-color:#070e20;
}
@media (min-width: 992px) {
  .lt-start-screen-wrap--pb {
    padding-bottom: 10.5rem;
  }
}

.lt-block {
  background-color: #fff;
  border-radius: 12px;
}

.lt-block--shadow {
  box-shadow: 0 100px 80px rgba(182, 195, 193, 0.1),
    0px 22.3363px 17.869px rgba(182, 195, 193, 0.0596107),
    0px 6.6501px 5.32008px rgba(182, 195, 193, 0.0403893);
}
/* Layout */
/*
Normalize non-controls

Restyle and baseline non-control form elements.
*/
fieldset {
  /*
  Chrome and Firefox set a `min-width: min-content;` on fieldsets,
  so Phronimos Group 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 {
  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: 4px;
  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 {
  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 {
  color: #999;
  opacity: 1;
}

select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
.nesty-input:-ms-input-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 {
  color: #999;
  opacity: 1;
}
/* select {
  height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
} */
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, Phronimos Group
 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 .optional {
  color: #3c6a63;
}

[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: #457b72; /* lighten the text some for contrast */
}

ul[data-hc-pills-container] {
  margin: 0 0 calc(var(--border-width) * -1);
  border: var(--border-width) solid var(--input-border-color);
  border-radius: 12px;
}

ul[data-hc-pills-container][data-hc-focus="true"] {
  position: relative;
  z-index: 2;
  border-color: var(--input-focus-border-color);
}


.lt-container-inner {
  width: 90%; padding: 0 8.22%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .lt-container-inner {
    width: 90%; padding: 0;
  }
}

.lt-layout {
  display: -ms-grid;
  display: grid;
  min-height: 100%;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  -ms-grid-columns: 100%;
  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;
}

.lt-topbar {
  position: absolute;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(29, 29, 29, 1);
}
@media (min-width: 992px) {
  .lt-topbar {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (min-width: 992px) {
  .lt-topbar__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}

.lt-topbar__wrap {
  z-index: 15;
}

.lt-topbar__logo {
  display: block;
  height: 24px;
}

.lt-topbar__link {
  display: block;
  margin-bottom: 1rem;
  color: #fff;
}
@media (min-width: 992px) {
  .lt-topbar__link {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}

.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  color: #172926;
}
@media (min-width: 992px) {
  .lt-topbar__link:hover,
  .lt-topbar__link:focus,
  .lt-topbar__link:active {
    color: #dbdbdb;
  }
}
@media (min-width: 992px) {
  .lt-topbar__right {
    display: flex;
    align-items: center;
  }
}

.lt-dropdown-toggle {
  font-weight: 600;
  color: #172926;
}
@media (min-width: 992px) {
  .lt-dropdown-toggle {
    color: #fff;
  }

  .lt-dropdown-toggle:hover,
  .lt-dropdown-toggle:focus,
  .lt-dropdown-toggle:active {
    color: #fff;
  }
}
@media (max-width: 991px) {
  .lt-topbar__link {
    color: #172926;
  }

  .lt-topbar__controls {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 100;
    width: 80%;
    max-width: 250px;
    padding: 2rem;
    color: #172926;
    background-color: #fff;
    transition: transform 600ms ease;
  }

  [dir="ltr"] .lt-topbar__controls {
    left: 0;
    transform: translateX(-100%);
  }

  [dir="rtl"] .lt-topbar__controls {
    right: 0;
    transform: translateX(100%);
  }

  .lt-topbar__controls > * + * {
    margin-top: 1rem;
  }

  .lt-topbar__controls.is-active {
    transform: translateX(0);
  }

  [dir="ltr"] .lt-topbar__controls.is-active {
    left: 0;
    box-shadow: 5px 0 40px rgb(0 0 0 / 45%);
  }

  [dir="rtl"] .lt-topbar__controls.is-active {
    right: 0;
    box-shadow: -5px 0 40px rgb(0 0 0 / 45%);
  }

  .lt-topbar-open {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  [dir="ltr"] .lt-topbar__controls > * + * {
    margin-left: 2rem;
  }

  [dir="rtl"] .lt-topbar__controls > * + * {
    margin-right: 2rem;
  }
}

.lt-topbar__lang-link {
  width: 32px;
  height: 32px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: inset 0px -2px 4px rgba(231, 232, 236, 0.25);
}

.lt-footer {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(29, 29, 29, 1);
}

.lt-footer__copyright a {
  color: #fff;
}

.lt-footer__copyright a:hover,
.lt-footer__copyright a:focus,
.lt-footer__copyright a:active {
  color: #fff;
}

.lt-footer__copyright p:last-of-type {
  margin-bottom: 0;
}

.lt-footer__social-link {
  padding: calc(16px / 2);
  font-size: 16px !important;
  color: #fff;
  vertical-align: middle;
}

.lt-footer__social-link:hover,
.lt-footer__social-link:focus,
.lt-footer__social-link:active {
  color: #fff;
}

[dir="ltr"] .lt-footer__social-link + [dir="ltr"] .lt-footer__social-link {
  margin-left: 5px;
}

[dir="rtl"] .lt-footer__social-link + [dir="rtl"] .lt-footer__social-link {
  margin-right: 5px;
}
@media (min-width: 768px) {
  .lt-section-on-footer {
    position: relative;
  }

  .lt-section-on-footer:before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    content: "";
    background-color: rgba(29, 29, 29, 1);
  }
}
/* Components */
.lt-hero-unit {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 6.6875rem;
  color: #fff !important;
  background-color: rgba(29, 29, 29, 1) !important;
}
@media (min-width: 992px) {
  .lt-hero-unit {
    padding-top: 10rem;
    padding-bottom: 4.5rem;
  }
}

.lt-hero-unit__bg {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(/hc/theming_assets/01HZKNR9RVN46AW5HYZX48HSC8) 50% 50% no-repeat;
  background-size: cover;
}

.lt-hero-unit__bg:after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(7, 7, 7, 0.7);
}

[dir="ltr"] .lt-hero-unit__bg {
  left: 0;
}

[dir="ltr"] .lt-hero-unit__bg:after {
  left: 0;
}

[dir="rtl"] .lt-hero-unit__bg {
  right: 0;
}

[dir="rtl"] .lt-hero-unit__bg:after {
  right: 0;
}

.lt-hero-unit__content,
.lt-hero-unit__faq-wrapper {
  z-index: 2;
}

.lt-hero-unit__welcome {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  background-color: rgba(187, 139, 98, 1) !important;
  border-radius: 25px;
}

.lt-hero-unit__title {
  font-size: 2.5rem;
  line-height: 3rem;
}

.lt-hero-unit__description {
  font-size: 0.875rem;
  line-height: 1.1;
}


@media (min-width: 992px) {
  .lt-hero-unit__search-box .search {
    width: 568px;
  }

  .lt-hero-unit__search-box .search:before {
    left: 2rem !important;
  }
}

.lt-hero-unit__faq {
  position: absolute;
  width: 100%;
  padding: 1.5rem 0;
  padding-bottom: 0;
  color: #172926;
}

.lt-hero-unit__faq-title {
  line-height: 1.1;
}

.lt-hero-unit__faq-item {
  list-style-type: none;
}

.lt-hero-unit__faq-item:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}

.lt-hero-unit__faq-item:hover:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.lt-hero-unit__faq-item:hover {
  background-color: #f5f5f5;
}

.lt-hero-unit__faq-item:hover .lt-hero-unit__faq-link {
  color: $brand_secondary;
}

.lt-hero-unit__faq-name {
  font-weight: 500;
  line-height: 1.5rem;
}

.lt-hero-unit__faq-link {
  color: #172926;
}

.lt-hero-unit__faq-description {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: #555D5C;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lt-hero-unit__decor {
  position: absolute;
  right: 0;
  bottom: -83px;
  left: 0;
  display: none;
  width: 100%;
}

.lt-hero-unit__decor svg {
  width: 100%;
}

.lt-hero-unit__decor--svg {
  position: absolute;
  bottom: 0;
}

[dir="ltr"] .lt-hero-unit__decor--svg:nth-child(1) {
  right: 0;
}

[dir="ltr"] .lt-hero-unit__decor--svg:nth-child(2) {
  left: 0;
}

[dir="rtl"] .lt-hero-unit__decor--svg:nth-child(1) {
  left: 0;
}

[dir="rtl"] .lt-hero-unit__decor--svg:nth-child(2) {
  right: 0;
}

.lt-hero-unit__decor--path {
  fill: rgba(29, 29, 29, 1);
}
@media (min-width: 992px) {
  .lt-hero-unit__faq-wrapper {
    width: 453px;
  }

  .lt-hero-unit__title {
    max-width: 435px;
    font-size: 3.5rem;
    line-height: 3.625rem;
  }

  .lt-hero-unit__faq {
    position: absolute;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .lt-hero-unit__faq-title {
    padding: 0 2rem;
    margin-bottom: 0, 75rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .lt-hero-unit__faq-item:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
  }

  .lt-hero-unit__faq-description {
    font-size: 1rem;
  }
}

.lt-dropdown {
  position: relative;
  display: inline-block;
}

.lt-dropdown-toggle {
  display: inline-block;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

.lt-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: currentColor;
  content: "\f107";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .lt-dropdown-toggle:after {
  margin-left: 8px;
}

[dir="rtl"] .lt-dropdown-toggle:after {
  margin-right: 8px;
}

.lt-dropdown-toggle--no-icon:after {
  display: none;
}

.lt-dropdown-toggle:hover {
  text-decoration: none;
}

.lt-dropdown-toggle > * {
  display: inline-block;
}

.lt-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 #ebeaeb;
  border-radius: 4px;
  box-shadow: 0 0 2rem rgb(0 0 0 / 10%);
}

[dir="ltr"] .lt-dropdown-menu {
  left: 0;
  text-align: left;
}

[dir="rtl"] .lt-dropdown-menu {
  right: 0;
  text-align: right;
}

[dir="rtl"] .lt-dropdown-menu {
  text-align: right;
}

.lt-dropdown-menu[aria-expanded="true"] {
  display: block;
}

.lt-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;
}

.lt-dropdown-menu [role="menuitem"] {
  display: block;
  width: 100%;
  line-height: inherit;
  color: #333;
  text-align: start;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

[dir="ltr"] .lt-dropdown-menu [role="menuitem"] {
  padding: 7px 40px 7px 20px;
}

[dir="rtl"] .lt-dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

[dir="rtl"] .lt-dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.lt-dropdown-menu [role="menuitem"]:hover,
.lt-dropdown-menu [role="menuitem"]:focus {
  color: #333;
  text-decoration: none;
  background: #f3f3f3;
}

.lt-dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.lt-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"] .lt-dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-left: 10px;
}

[dir="rtl"] .lt-dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-right: 10px;
}

[dir="rtl"] .lt-dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  float: left;
  margin-right: 10px;
  margin-left: 0;
}

.lt-dropdown-menu [role="menuitem"][hidden],
.lt-dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

[dir="ltr"] .lt-dropdown-menu-end {
  right: 0;
  left: auto;
}

[dir="rtl"] .lt-dropdown-menu-end {
  right: auto;
  left: 0;
}

.lt-dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir="rtl"] .lt-dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

[dir="rtl"] .lt-dropdown-menu-end {
  right: auto;
  left: 0;
}

.lt-dropdown-toggle--user {
  padding: 0;
  font-size: calc(16px - 5px);
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  text-transform: uppercase;
  border: 0;
}
@media (max-width: 991px) {
  .lt-dropdown-menu--topbar {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .lt-dropdown-menu--topbar .lt-dropdown-toggle {
    width: 100%;
  }

  .lt-dropdown-menu--topbar .lt-dropdown-toggle--user:after {
    display: none;
  }

  .lt-dropdown-menu--topbar [role="menuitem"] {
    padding-right: 0;
    padding-left: 0;
  }
}
/* ==========================================================================
  Buttons
  ========================================================================== */
.lt-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-requests-table-toolbar .organization-subscribe button,
.lt-subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.recent-activity-controls a {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 0;
  border-radius: 58px;
  transition: all 0.3s ease;
  touch-action: manipulation;
}
@media (max-width: 767px) {
  .lt-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-requests-table-toolbar .organization-subscribe button,
  .lt-subscriptions-subscribe button,
  .pagination-next-link,
  .pagination-prev-link,
  .pagination-first-link,
  .pagination-last-link,
  .recent-activity-controls a {
    padding: 0.55rem 1.1rem;
  }
}

.lt-btn:focus,
.lt-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-requests-table-toolbar .organization-subscribe button:focus,
.lt-requests-table-toolbar .organization-subscribe button:active:focus,
.lt-subscriptions-subscribe button:focus,
.lt-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,
.recent-activity-controls a:focus,
.recent-activity-controls a:active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.lt-btn:hover,
.lt-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-requests-table-toolbar .organization-subscribe button:hover,
.lt-requests-table-toolbar .organization-subscribe button:focus,
.lt-subscriptions-subscribe button:hover,
.lt-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,
.recent-activity-controls a:hover,
.recent-activity-controls a:focus {
  color: rgba(29, 29, 29, 1);
  text-decoration: none;
}

.lt-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-requests-table-toolbar .organization-subscribe button:active,
.lt-subscriptions-subscribe button:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active,
.recent-activity-controls a:active {
  background-image: none;
  outline: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.lt-btn--default,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-requests-table-toolbar .organization-subscribe button,
.lt-subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.recent-activity-controls a {
  color: #172926;
  background-color: transparent;
  border: 1px solid #e6e6e6;
}

.lt-btn--default:hover,
.lt-btn--default:focus,
.lt-btn--default: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,
.lt-requests-table-toolbar .organization-subscribe button:hover,
.lt-requests-table-toolbar .organization-subscribe button:focus,
.lt-requests-table-toolbar .organization-subscribe button:active,
.lt-subscriptions-subscribe button:hover,
.lt-subscriptions-subscribe button:focus,
.lt-subscriptions-subscribe button: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,
.recent-activity-controls a:hover,
.recent-activity-controls a:focus,
.recent-activity-controls a:active {
  color:#fcd535;
  background-color: transparent;
  border-color:#fcd535;
}

input[type="submit"],
.lt-btn--primary {
  color: #fff !important;
  background-color: rgba(187, 139, 98, 1) !important;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
.lt-btn--primary:hover,
.lt-btn--primary:focus,
.lt-btn--primary:active {
  color: #fff;
  background-color: #a37147;
  border-color: #a37147;
}

.lt-article-subscribe button {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.lt-btn--topbar {
  color: #172926;
  background-color: transparent;
}
@media (min-width: 992px) {
  .lt-btn--topbar {
    color: #fff;
  }
}

.lt-btn--topbar:hover,
.lt-btn--topbar:focus,
.lt-btn--topbar:active {
  color: #172926;
  background-color: transparent;
}
@media (min-width: 992px) {
  .lt-btn--topbar:hover,
  .lt-btn--topbar:focus,
  .lt-btn--topbar:active {
    color: #e0e0e0;
  }
}

.lt-btn--print {
  padding: 0 !important;
  font-size: var(--font-size-h5) !important;
  border: 0 !important;
}

.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-btn--hero {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.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-btn--hero:hover,
.lt-btn--hero:focus,
.lt-btn--hero:active {
  color: #fcd535;
  background-color: transparent;
  border-color:#fcd535;
}

.lt-avatar {
  position: relative;
  display: inline-block;
}

.lt-avatar__badge {
  position: absolute;
  top: -0.5rem;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: #cc0000;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .lt-avatar__badge {
  right: -0.5rem;
}

[dir="rtl"] .lt-avatar__badge {
  left: -0.5rem;
}

.lt-avatar__badge:not(.is-active) {
  display: none;
}

.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(29, 29, 29, 1);
  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: 100%;
}

.lt-user-avatar--default {
  width: 2.5rem;
  height: 2.5rem;
}

.lt-user-avatar--topbar {
  width: 2rem;
  height: 2rem;
}

.lt-meta {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #555D5C;
}

.lt-meta__item {
  display: inline-block;
  line-height: 1;
}

[dir="ltr"] .lt-meta__item {
  margin-right: 0.25rem;
}

[dir="rtl"] .lt-meta__item {
  margin-left: 0.25rem;
}

.lt-meta__item + .lt-meta__item:before {
  font-size: 0.95rem;
  content: "\2022";
}

[dir="ltr"] .lt-meta__item + .lt-meta__item:before {
  margin-right: 0.25rem;
}

[dir="rtl"] .lt-meta__item + .lt-meta__item:before {
  margin-left: 0.25rem;
}

.lt-meta__link {
  color: inherit;
}

.lt-meta--profile {
  margin-bottom: 0;
}

.breadcrumbs {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
  opacity: 0.7;
}

.breadcrumbs > li {
  display: inline-block;
  color: #fff;
}

.breadcrumbs > li + li:before {
  padding: 0 5px;
  color: #fff;
  content: "\00a0";
  content: "› ";
}

.breadcrumbs > li a {
  color: #fff;
}

.breadcrumbs > li:last-child a {
  color: #fff;
}

[dir="ltr"] .breadcrumbs {
  padding-left: 0;
}

[dir="rtl"] .breadcrumbs {
  padding-right: 0;
}

.lt-breadcrumbs--search-results {
  padding: 0;
  font-size: 0.85rem;
}

.lt-breadcrumbs--search-results > li + li:before {
  position: relative;
  top: 2px;
  font-size: 1.4rem;
  line-height: 0.95rem;
  color: #555D5C;
}

.lt-breadcrumbs--search-results > li a {
  color: #555D5C;
}

.lt-breadcrumbs--search-results > li:last-child a {
  color: #555D5C;
}

.lt-breadcrumbs-wrapper {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.lt-menu-toggle {
  position: relative;
  display: block;
  height: auto;
  padding: 1rem 0.5rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  order: 1;
}
@media (min-width: 992px) {
  .lt-menu-toggle {
    display: none;
  }
}

.lt-menu-toggle span {
  position: relative;
  display: block;
  pointer-events: none;
}

.lt-menu-toggle span,
.lt-menu-toggle span:after,
.lt-menu-toggle span:before {
  width: 26px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition: background-color 0.15s, transform 0.15s;
}

.lt-menu-toggle span:after,
.lt-menu-toggle span:before {
  position: absolute;
  content: "";
}

[dir="ltr"] .lt-menu-toggle span:after,
[dir="ltr"] .lt-menu-toggle span:before {
  left: 0;
}

[dir="rtl"] .lt-menu-toggle span:after,
[dir="rtl"] .lt-menu-toggle span:before {
  right: 0;
}

.lt-menu-toggle span:before {
  top: -7px;
}

.lt-menu-toggle span:after {
  top: 7px;
}

.lt-menu-toggle.is-active {
  outline: 0;
}

.lt-menu-toggle.is-active span {
  background-color: transparent;
}

.lt-menu-toggle.is-active span:after,
.lt-menu-toggle.is-active span:before {
  top: 0;
}

[dir="ltr"] .lt-menu-toggle.is-active span:before {
  transform: rotate(-45deg);
}

[dir="rtl"] .lt-menu-toggle.is-active span:before {
  transform: rotate(45deg);
}

[dir="ltr"] .lt-menu-toggle.is-active span:after {
  transform: rotate(45deg);
}

[dir="rtl"] .lt-menu-toggle.is-active span:after {
  transform: rotate(-45deg);
}

.lt-entry-info {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}
@media (min-width: 992px) {
  .lt-entry-info {
    align-items: center;
  }
}

.lt-entry-info__avatar {
  flex-shrink: 0;
}

[dir="ltr"] .lt-entry-info__avatar {
  padding-right: 1rem;
}

[dir="rtl"] .lt-entry-info__avatar {
  padding-left: 1rem;
}

.lt-status-label {
  padding: 2px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

.lt-status-label--pending {
  background-color: #fad782;
}

.lt-status-label--with-ticket {
  background-color: rgba(187, 139, 98, 1);
}

.lt-status-label--with-ticket:hover,
.lt-status-label--with-ticket:focus,
.lt-status-label--with-ticket:active {
  color: #fff;
}

.lt-status-label--solved,
.lt-status-label--closed {
  background-color: rgba(187, 139, 98, 1);
}

.lt-status-label--new,
.lt-status-label--open {
  background-color: #ff5252;
}

.lt-status-label--answered {
  background-color: #fad782;
}

.lt-status-label--official {
  background-color: rgba(187, 139, 98, 1);
}

.lt-status-label--completed,
.lt-status-label--answered {
  background-color: rgba(187, 139, 98, 1);
}

.lt-status-label--planned {
  background-color: rgba(187, 139, 98, 1);
}

.lt-status-label--not-planned {
  color: #172926;
  background-color: var(--gray-lighter);
}

.lt-category-card__title {
  color: #172926;
}

.lt-category-card__title-link {
  color: #172926;
}

.lt-category-card__title-link:hover,
.lt-category-card__title-link:focus,
.lt-category-card__title-link:active {
  color: #172926;
}

.lt-category-card__item {
  list-style-type: disc;
}

.lt-category-card__item::marker {
  color: #555D5C;
}

.lt-category-card__item:hover::marker {
  color: rgba(29, 29, 29, 1);
}

.lt-category-card__link {
  color: #555D5C;
}

.lt-category-card__link:hover {
  color: rgba(29, 29, 29, 1);
  text-decoration: underline;
}

.lt-contact-info-card__icon {
  width: 32px;
  height: 32px;
}

.lt-contact-info-card__link {
  color: #172926;
}

.lt-contact-info-card__link:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .lt-contact-info-card__link:hover,
  .lt-contact-info-card__link:focus {
    color: rgba(29, 29, 29, 1) !important;
    text-decoration: none;
  }
}

.lt-contact-info-card__title {
  color: #172926;
}

.lt-contact-info-card__descr {
  color: #555D5C;
}

.lt-custom-block-item {
  list-style-type: none;
}
@media (min-width: 768px) {
  .lt-custom-block-item {
    display: flex;
  }
}

.lt-custom-block-item__card {
  min-height: 190px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .lt-custom-block-item__card {
    min-height: 245px;
  }
}

.lt-custom-block-item__icon {
  width: 32px;
  height: 32px;
}

.lt-custom-block-item__link {
  color: #172926;
  transition: color 0.15s ease;
}

.lt-custom-block-item__link:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  .lt-custom-block-item__link:hover,
  .lt-custom-block-item__link:focus {
    color: rgba(29, 29, 29, 1) !important;
    text-decoration: none;
  }
}

.lt-custom-block-item__title {
  line-height: 1.1;
  color: #172926;
  letter-spacing: -0.01em;
}

.lt-custom-block-item__desc {
  line-height: 1.5;
  color: #555D5C;
}

.lt-block-list-item .lt-block-list-item__link {
  background-color: rgba(255, 255, 255, 1);
}

.lt-block-list-item:nth-child(1n) .lt-block-list-item__link {
  background-color: rgba(255, 255, 255, 1);
}

.lt-block-list-item:nth-child(3n + 2) .lt-block-list-item__link {
  background-color: rgba(255, 255, 255, 1);
}

.lt-block-list-item:nth-child(3n) .lt-block-list-item__link {
  background-color: rgba(255, 255, 255, 1);
}

.lt-block-list-item__link {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(255, 255, 255, 1);
}

.lt-block-list-item__link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}

.lt-block-list-item__link:hover,
.lt-block-list-item__link:focus,
.lt-block-list-item__link:active {
  color: rgba(0, 0, 0, 1);
}

.lt-block-list-item__link:hover:after,
.lt-block-list-item__link:focus:after,
.lt-block-list-item__link:active:after {
  display: block;
}

.lt-block-list-item__icon {
  position: relative;
  z-index: 5;
  width: 32px;
  height: 32px;
}

.lt-block-list-item__icon path,
.lt-block-list-item__icon circle {
  transition: all 0.3s ease;
}

.lt-block-list-item__text {
  font-size: 0.875rem;
  opacity: 0.75;
}

.recent-activity-list {
  position: relative;
  z-index: 5;
  padding: 1.5rem !important;
  background: #fff;
  border-radius: 12px;
}

.recent-activity {
  margin-bottom: 4rem;
}

.recent-activity-item-link {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5rem;
  color: #000;
  transition: color 0.15s ease;
}

.recent-activity-item-link:hover {
  color: rgba(29, 29, 29, 1);
}

.recent-activity-header {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #172926;
}

.recent-activity-list {
  position: relative;
  z-index: 2;
  display: grid;
  margin-bottom: 0;
  list-style: none;
  gap: calc(var(--grid-gutter-width) * 2);
}

[dir="ltr"] .recent-activity-list {
  padding-left: 0;
}

[dir="rtl"] .recent-activity-list {
  padding-right: 0;
}
@media (min-width: 768px) {
  .recent-activity-list {
    grid-template-columns: 1fr 1fr;
    padding: 4rem !important;
  }

  .recent-activity-item-link {
    line-height: 1.5rem;
  }

  .recent-activity-item-time {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.recent-activity-item-time {
  position: relative;
}

.recent-activity-item-time:before {
  position: absolute;
  top: 0.025em;
  width: 1em;
  height: 1em;
  font-family: "Font Awesome 5 Free";
  font-size: 0.9rem;
  content: "\f086";
}

[dir="ltr"] .recent-activity-item-time {
  padding-left: 1.5rem;
}

[dir="ltr"] .recent-activity-item-time:before {
  left: 0;
}

[dir="rtl"] .recent-activity-item-time {
  padding-right: 1.5rem;
}

[dir="rtl"] .recent-activity-item-time:before {
  right: 0;
}

.recent-activity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recent-activity-item-meta {
  display: flex;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.3rem;
  color: #555D5C;
  align-items: center;
  justify-content: space-between;
}

.recent-activity-item-parent {
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1rem;
  color: #fff;
  background-color: rgba(29, 29, 29, 1);
  border-radius: 6px;
}

.recent-activity-item-parent:hover,
.recent-activity-item-parent:focus,
.recent-activity-item-parent:active {
  color: #fff;
}

.recent-activity-comment-icon {
  display: none;
}

.recent-activity-controls {
  padding-top: 2rem;
}

.lt-footer-submit-ticket {
  text-align: center;
}
@media (min-width: 768px) {
  .lt-footer-submit-ticket {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .lt-footer-submit-ticket__text {
    width: 40%;
  }
}

.lt-footer-submit-ticket__title {
  line-height: 1.1;
  color: #172926;
}

.lt-footer-submit-ticket__descr {
  line-height: 1.5rem;
  color: #555D5C;
}

.lt-footer-submit-ticket__link {
  display: inline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.lt-footer-submit-ticket__button {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5rem;
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  border-radius: 57px;
  box-shadow: 0px 17px 24px rgba(242, 159, 58, 0.1);
}

.lt-footer-submit-ticket__button:hover,
.lt-footer-submit-ticket__button:focus,
.lt-footer-submit-ticket__button:active {
  color: #fff;
  background-color: #a37147;
}
@media (min-width: 768px) {
  .lt-footer-submit-ticket__illustration {
    width: 60%;
    max-width: 476px;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .lt-footer-submit-ticket__img {
    width: 100%;
  }
}

.share {
  display: flex;
  white-space: nowrap;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .share {
    justify-content: start;
  }
}

[dir="ltr"] .share {
  padding-left: 0;
}

[dir="rtl"] .share {
  padding-right: 0;
}

.share li {
  --size: 3.625rem;
  position: relative;
  display: flex;
  width: var(--size);
  height: var(--size);
  margin: 0px 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  color: #172926;
  text-align: center;
  vertical-align: top;
  list-style-type: none;
  background-color: transparent;
  border: 1px solid rgba(150, 157, 156, 0.25);
  border-radius: var(--size);
  justify-content: center;
  align-items: center;
}

.share a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex !important;
  color: #172926;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.share a:hover,
.share a:focus,
.share a:active {
  color: rgba(29, 29, 29, 1);
  background-color: #fff;
}

.share svg {
  width: 18px;
  height: 18px;
}

.lt-page__heading {
  color: #fff;
}
@media (min-width: 992px) {
  .lt-page__heading {
    order: -1;
  }
}

.lt-page__title {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .lt-page__title {
    font-size: 2rem;
  }
}

.lt-page__desc {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.7;
}

.lt-new-request-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.lt-new-request-title {
  font-size: var(--font-size-h3);
}
@media (min-width: 576px) {
  .lt-new-request-title {
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 768px) {
  .lt-new-request-title {
    font-size: var(--font-size-h1);
  }
}

.lt-new-request-form {
  margin-bottom: calc(var(--line-height-computed));
}

.lt-new-request-tip {
  position: relative;
  background-color: #f3fafc;
  border: 2px solid #50b6d3;
  border-radius: 4px;
}

.lt-new-request-tip__icon {
  position: absolute;
  top: 2rem;
  color: #50b6d3;
}

[dir="ltr"] .lt-new-request-tip__icon {
  left: 1.5rem;
}

[dir="rtl"] .lt-new-request-tip__icon {
  right: 1.5rem;
}

.upload-dropzone {
  padding: calc(var(--line-height-computed)) 16px;
  border-color: var(--input-border-color);
  border-width: var(--border-width);
  border-radius: 12px;
}

.upload-dropzone,
.upload-dropzone a {
  font-size: var(--font-size-small);
}

.upload-dropzone span {
  color: #172926;
}

.lt-error-page {
  max-width: 600px;
}

.lt-error-page__articles {
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.pagination-list {
  list-style: none;
}

[dir="ltr"] .pagination-list {
  padding-left: 0;
  margin-left: 0;
}

[dir="ltr"] .pagination-list li:not(:last-child) {
  margin-right: 0.5rem;
}

[dir="rtl"] .pagination-list {
  padding-right: 0;
  margin-right: 0;
}

[dir="rtl"] .pagination-list li:not(:last-child) {
  margin-left: 0.5rem;
}

.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;
}

.satisfaction-box {
  padding: calc(var(--line-height-computed)) var(--grid-gutter-width);
  margin: 0 0 calc(10px * 2) 0;
  margin-top: 0;
  border-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.satisfaction-box h4:last-child {
  margin-bottom: 0;
}

.satisfaction-box input[type="radio"] ~ label {
  letter-spacing: normal;
}

[dir="ltr"] .satisfaction-box input[type="radio"] ~ label {
  margin-right: 10px;
}

[dir="rtl"] .satisfaction-box input[type="radio"] ~ label {
  margin-left: 10px;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"] {
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  border-color: rgba(187, 139, 98, 1);
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  color: #e0e0e0;
  background-color: #a37147;
  border-color: #9c6c44;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  background-image: none;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"] {
  color: #fff;
  background-color: #ff5252;
  border-color: #ff5252;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  color: #e0e0e0;
  background-color: #ff1f1f;
  border-color: #ff1515;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  background-image: none;
}

.satisfaction-box input[type="radio"][checked="checked"][value="good"] + label {
  color: #fff !important;
  background-color: #9c6c44 !important;
  border-color: #9c6c44 !important;
}

.satisfaction-box input[type="radio"][checked="checked"][value="bad"] + label {
  color: #fff !important;
  background-color: #ff1515 !important;
  border-color: #ff1515 !important;
}

.satisfaction-box label.disabled {
  margin-bottom: calc(var(--line-height-computed)) !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_good"] {
  color: rgba(187, 139, 98, 1) !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_bad"] {
  color: #ff5252 !important;
}

.satisfaction-comment {
  margin-top: 15px;
}

.satisfaction-box .satisfaction-submit {
  font-size: calc(16px - 5px) !important;
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  border-color: rgba(187, 139, 98, 1);
}

.satisfaction-box .satisfaction-submit:hover,
.satisfaction-box .satisfaction-submit:focus,
.satisfaction-box .satisfaction-submit:active {
  color: #e0e0e0;
  background-color: #a37147;
  border-color: #9c6c44;
}

.satisfaction-box .satisfaction-submit:active {
  background-image: none;
}

[dir="ltr"] .satisfaction-box .satisfaction-submit {
  margin-left: 10px !important;
}

[dir="rtl"] .satisfaction-box .satisfaction-submit {
  margin-right: 10px !important;
}

.satisfaction-reason {
  padding-top: calc(var(--line-height-computed));
}

.satisfaction-box .satisfaction-cancel {
  font-size: calc(16px - 5px) !important;
  line-height: 1.5 !important;
}

.lt-scroll-to-top {
  position: fixed;
  bottom: -50px;
  z-index: 3;
  z-index: 30;
  width: 3rem;
  height: 3rem;
  font-size: 2rem !important;
  line-height: 3rem !important;
  color: rgba(29, 29, 29, 1);
  text-align: center;
  background-color: transparent;
  border: var(--border-width) solid rgba(29, 29, 29, 1);
  border-radius: 4px;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lt-scroll-to-top:focus,
.lt-scroll-to-top:active {
  outline: 0;
}

.lt-scroll-to-top.is-active {
  bottom: 30px;
}

.lt-scroll-to-top:hover {
  color: #000;
  border-color: #000;
}

@media (max-width: 575px) {
  .lt-scroll-to-top {
    display: none;
  }
}

[dir="ltr"] .lt-scroll-to-top {
  left: 2rem;
}

[dir="rtl"] .lt-scroll-to-top {
  right: 2rem;
}

.lt-header {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 1);
}

.lt-header__desc {
  margin-top: 1rem;
}

.recent-articles h3,
.related-articles h3 {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

@media (min-width: 576px) {
  .recent-articles h3,
  .related-articles h3 {
    margin-top: calc(var(--line-height-computed) / 2);
  }
}

.recent-articles ul,
.related-articles ul {
  list-style: none;
}

.recent-articles ul > li,
.related-articles ul > li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.recent-articles ul > li a,
.related-articles ul > li a {
  padding-bottom: 1px;
  color: #172926;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

[dir="ltr"] .recent-articles ul,
[dir="ltr"] .related-articles ul {
  padding-left: 0;
}

[dir="rtl"] .recent-articles ul,
[dir="rtl"] .related-articles ul {
  padding-right: 0;
}

.recent-articles h3 {
  font-size: var(--font-size-h4);
}

.lt-user-name {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #172926;
}

.lt-user-name--hero,
.lt-user-name--hero:hover,
.lt-user-name--hero:focus,
.lt-user-name--hero:active {
  color: #fff;
}
@media (max-width: 991px) {
  .lt-user-info {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1rem;
    order: -1;
  }

  .lt-user-info__menu {
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .lt-user-info__menu [role="menuitem"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.lt-status-widget {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  font-weight: 600;
}

.lt-status-widget,
.lt-status-widget:hover,
.lt-status-widget:focus,
.lt-status-widget:active {
  color: #fff;
}

.lt-status-widget-container {
  display: flex;
  align-items: center;
}

.lt-status-widget__indicator {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #aaa;
  border-radius: 50%;
}

.lt-status-widget__indicator--none {
  background-color: #2ecc71;
}

.lt-status-widget__indicator--operational {
  background-color: #2ecc71;
}

.lt-status-widget__indicator--minor {
  background-color: #f1c40f;
}

.lt-status-widget__indicator--major {
  background-color: #e67e22;
}

.lt-status-widget__indicator--critical {
  background-color: #e74c3c;
}

.lt-status-widget__indicator--maintenance {
  background-color: #3498db;
}

[dir="ltr"] .lt-status-widget__indicator__text {
  margin-left: 0.5rem;
}

[dir="rtl"] .lt-status-widget__indicator__text {
  margin-right: 0.5rem;
}

.lt-profile-header {
  padding-top: 8rem;
  text-align: center;
  border-radius: 4px;
}
@media (min-width: 992px) {
  .lt-profile-header {
    padding-top: 6rem;
  }
}

.lt-profile-header__badge .lt-community-badge {
  margin: 0 !important;
}

.lt-profile-header__avatar {
  display: inline-block;
  margin-bottom: 16px;
}

.lt-profile-header__name {
  font-size: var(--font-size-h3);
}

.lt-profile-header__name a:hover,
.lt-profile-header__name a:focus,
.lt-profile-header__name a:active {
  color: rgba(29, 29, 29, 1);
}

.lt-profile-header__private-badge {
  display: inline-block;
  margin-bottom: calc(var(--line-height-computed));
  background-color: rgba(187, 139, 98, 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: 575px) {
  .lt-profile-stats__stat {
    display: block;
  }

  .lt-profile-stats__stat:before {
    display: none;
  }
}

[dir="ltr"] .lt-profile-stats__stat {
  margin-right: var(--padding-base-horizontal);
}

[dir="rtl"] .lt-profile-stats__stat {
  margin-left: var(--padding-base-horizontal);
}

[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: #172926;
}

.lt-profile-nav {
  margin-bottom: calc(var(--line-height-computed));
  overflow: hidden;
  font-size: var(--font-size-small);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 1);
}

.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;
  border-radius: 4px;
}

@media (min-width: 576px) {
  .lt-profile-nav__item {
    display: inline-block;
    vertical-align: middle;
  }
}

.lt-profile-nav__item a {
  display: block;
  color: #172926;
}

.lt-profile-nav__item.is-active {
  color: #fff;
  background-color: rgba(187, 139, 98, 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-section-sorter {
  font-size: var(--font-size-small);
}

.lt-profile-section-sorter .lt-dropdown {
  display: inline-block;
}
@media (min-width: 576px) {
  .lt-profile-section-sorter {
    display: table;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .lt-profile-section-sorter {
    padding-top: 0;
    border-top: 0;
  }
}
@media (min-width: 576px) {
  .lt-profile-section-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}
@media (max-width: 575px) {
  .lt-profile-section-sorter__col--main {
    margin-bottom: calc(var(--line-height-computed) / 2);
  }
}
@media (min-width: 576px) {
  .lt-profile-section-sorter__col--main {
    padding-right: var(--padding-base-horizontal);
  }
}
@media (min-width: 576px) {
  .lt-profile-section-sorter__col--btn {
    text-align: right;
  }
}

.lt-profile-contribution {
  position: relative;
  padding: calc(var(--line-height-computed) / 2) var(--grid-gutter-width);
  word-wrap: break-word;
  border: 1px solid #eceeef;
  border-radius: 4px;
}

.lt-profile-contribution .breadcrumbs > li a {
  color: #555D5C;
}

.lt-profile-contribution .breadcrumbs > li:before {
  color: #555D5C;
}

.lt-profile-contribution .lt-meta {
  font-size: var(--font-size-small);
}

.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 rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.lt-profile-badge {
  width: 40px;
  height: 40px;
}

.lt-profile-badge__image {
  width: 40px;
  height: 40px;
}

.lt-attachment-list {
  margin: 0;
  font-size: var(--font-size-small);
  list-style: none;
}

[dir="ltr"] .lt-attachment-list {
  padding-left: 0;
}

[dir="rtl"] .lt-attachment-list {
  padding-right: 0;
}

.lt-attachment-list__item {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-attachment-list__item:last-child {
  margin-bottom: 0;
}

[dir="ltr"] .lt-attachment-list__item {
  padding-left: calc(var(--padding-base-horizontal) * 1.5);
}

[dir="rtl"] .lt-attachment-list__item {
  padding-right: calc(var(--padding-base-horizontal) * 1.5);
}

.lt-attachment-list__icon {
  position: absolute;
  top: 4px;
}

[dir="ltr"] .lt-attachment-list__icon {
  left: 0;
}

[dir="rtl"] .lt-attachment-list__icon {
  right: 0;
}

.lt-attachment-list__meta {
  font-size: var(--font-size-small);
}

.lt-skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  padding: 20px;
  margin: 20px;
  overflow: hidden;
  font-size: 14px;
  color: white;
  color: #172926;
  background-color: #fff;
  border: 2px solid rgba(29, 29, 29, 1);
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .lt-skip-navigation {
  left: -999px;
}

[dir="rtl"] .lt-skip-navigation {
  right: -999px;
}

.lt-skip-navigation:focus,
.lt-skip-navigation:active {
  top: auto;
  z-index: 999;
  overflow: auto;
  text-align: center;
  text-decoration: none;
}

[dir="ltr"] .lt-skip-navigation:focus,
[dir="ltr"] .lt-skip-navigation:active {
  left: auto;
}

[dir="rtl"] .lt-skip-navigation:focus,
[dir="rtl"] .lt-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;
}

.lt-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}

[dir="ltr"] .lt-backdrop {
  left: 0;
}

[dir="rtl"] .lt-backdrop {
  right: 0;
}
@media (max-width: 991px) {
  .lt-backdrop.is-active {
    display: block;
  }
}
/* List view */
.lt-promoted-articles-item__card {
  position: relative;
  border-bottom: 1px solid #ebebeb;
}
@media (min-width: 768px) {
  .lt-promoted-articles-item__card:hover .lt-promoted-articles-item__icon {
    background-color: rgba(29, 29, 29, 1);
  }

  .lt-promoted-articles-item__card:hover
    .lt-promoted-articles-item__icon:before,
  .lt-promoted-articles-item__card:hover
    .lt-promoted-articles-item__icon:after {
    background-color: #fff;
  }
}

.lt-promoted-articles-item:last-child .lt-promoted-articles-item__card {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .lt-promoted-articles-item:last-child .lt-promoted-articles-item__card {
    border-bottom: 1px solid #ebebeb;
  }
}

.lt-promoted-articles-item__icon {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: rgba(29, 29, 29, 1);
  border-radius: 8px;
  transition: background-color 0.15s ease;
  flex: 0 0 32px;
}

.lt-promoted-articles-item__icon:before,
.lt-promoted-articles-item__icon:after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  border-radius: 9px;
}

[dir="ltr"] .lt-promoted-articles-item__icon:before,
[dir="ltr"] .lt-promoted-articles-item__icon:after {
  left: 8px;
}

[dir="rtl"] .lt-promoted-articles-item__icon:before,
[dir="rtl"] .lt-promoted-articles-item__icon:after {
  right: 8px;
}

.lt-promoted-articles-item__icon:before {
  top: 12px;
  width: 16px;
  height: 2px;
}

.lt-promoted-articles-item__icon:after {
  top: 17px;
  width: 10px;
  height: 2px;
}

.lt-promoted-articles-item__title {
  font-weight: 500;
  line-height: 1.5;
  color: rgba(29, 29, 29, 1);
}

.lt-promoted-articles-item__link {
  color: rgba(29, 29, 29, 1);
  transition: color 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .lt-promoted-articles-item__link:hover,
  .lt-promoted-articles-item__link:focus,
  .lt-promoted-articles-item__link:active {
    color: rgba(29, 29, 29, 1);
  }

  .lt-promoted-articles-item__link:hover,
  .lt-promoted-articles-item__link:focus,
  .lt-promoted-articles-item__link:active + .lt-promoted-articles-item__icon {
    background-color: #fff;
  }
}

.lt-promoted-articles-item__link:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
}

.lt-promoted-articles-item__descr {
  line-height: 1.25rem;
  color: #555D5C;
}
/* Accordion view */
.lt-promoted-articles-accordion-item {
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.lt-promoted-articles-accordion-item__title {
  position: relative;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .lt-promoted-articles-accordion-item__title {
  text-align: left;
}

[dir="rtl"] .lt-promoted-articles-accordion-item__title {
  text-align: right;
}

.lt-promoted-articles-accordion-item__title,
.lt-promoted-articles-accordion-item__title:hover,
.lt-promoted-articles-accordion-item__title:focus,
.lt-promoted-articles-accordion-item__title:active {
  color: #172926;
}

.lt-promoted-articles-accordion-item__title:before {
  position: absolute;
  top: 50%;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  border-bottom: 2px solid rgba(29, 29, 29, 1);
  transition: transform 0.3s;
}

[dir="ltr"] .lt-promoted-articles-accordion-item__title:before {
  right: 1.5rem;
  border-left: 2px solid rgba(29, 29, 29, 1);
  transform: rotate(-45deg) translateY(-50%);
}

[dir="rtl"] .lt-promoted-articles-accordion-item__title:before {
  left: 1.5rem;
  border-right: 2px solid rgba(29, 29, 29, 1);
  transform: rotate(45deg) translateY(-50%);
}

.lt-promoted-articles-accordion-item__content {
  display: none;
}

.lt-popular-searches {
  font-weight: 600;
}

.lt-popular-searches__item,
.lt-popular-searches__item:hover,
.lt-popular-searches__item:active,
.lt-popular-searches__item:focus {
  padding-bottom: 2px;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  color: #fff;
  border-bottom: 2px solid currentColor;
}

.lt-contact-box {
  display: flex;
  padding: 1.5rem 2rem;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
  font-size: 0.875rem;
  color: #172926;
  flex-direction: column;
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  align-items: flex-start;
}

.lt-contact-box__icon {
  width: 2rem;
  height: 2rem;
}

.lt-contact-box__text {
  color: var(--meta-text-color);
}

.lt-info-block {
  position: relative;
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .lt-info-block {
    padding: 4.5rem 5.9375rem;
    text-align: center;
  }
}

.lt-info-block__title {
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #172926;
}

.lt-info-block__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555D5C;
}

.lt-vote__sum {
  display: block;
  width: 100%;
  text-align: center;
}

.lt-vote__control--header {
  padding: 0.5rem 0.9rem;
}

.lt-vote__control--active {
  color: #172926;
  border-color: #172926;
}

.lt-vote__control--down {
  transform: rotateX(180deg);
}

.language-selector {
  display: inline-block;
  padding-bottom: 8px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .language-selector {
    padding-top: 8px;
  }
}

.lt-dropdown a[data-url]:before {
  position: relative;
  top: 0px;
  display: none;
  width: 20px;
  height: 20px;
  vertical-align: text-top;
  content: "";
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-size: auto;
}

@media (max-width: 991px) {
  .lt-dropdown a[data-url]:before {
    top: -1px;
    margin-right: 4px !important;
  }
}

[dir="ltr"] .lt-dropdown a[data-url]:before {
  margin-right: 0;
}

[dir="rtl"] .lt-dropdown a[data-url]:before {
  margin-left: 0;
}
@media (min-width: 992px) {
  .language-selector--flags {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.language-selector--flags.lt-dropdown a[data-url]:before {
  display: inline-block;
}
@media (min-width: 992px) {
  .language-selector--flags > a {
    display: grid;
    padding: 6px;
    font-size: 0;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-shadow: inset 0px -2px 4px rgba(231, 232, 236, 0.25);
  }
}
@media (min-width: 992px) {
  .language-selector--flags .lt-dropdown-menu {
    top: 50px;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .language-selector--flags .lt-dropdown-toggle:after {
    display: none;
  }
}

.lt-dropdown a[data-url]:before {
  background-image: url("/hc/theming_assets/01HZKNR64TP5AP1FDF59XF4PTA") !important;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/af"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/af-za"]:before {
  background-position: 0 0;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/af"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/af-za"]:before {
  background-position: 100% 0;
}

.lt-dropdown a[data-url*="/hc/change_language/am"]:before {
  background-position: -22px 0;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/ar"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/ar-ae"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/ar-ps"]:before {
  background-position: 0 -22px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/ar"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/ar-ae"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/ar-ps"]:before {
  background-position: 100% -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/az"]:before {
  background-position: -22px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/be"]:before {
  background-position: -44px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/bg-bg"]:before,
.lt-dropdown a[data-url*="/hc/change_language/bg"]:before {
  background-position: -44px -22px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/bn"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/bn-in"]:before {
  background-position: 0 -44px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/bn"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/bn-in"]:before {
  background-position: 100% -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/bo"]:before {
  background-position: -22px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/bs"]:before {
  background-position: -44px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/cs"]:before,
.lt-dropdown a[data-url*="/hc/change_language/cs-cz"]:before {
  background-position: -66px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/cy"]:before {
  background-position: -66px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/da"]:before,
.lt-dropdown a[data-url*="/hc/change_language/da-dk"]:before {
  background-position: -66px -44px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-at"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-be"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-ch"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-dk"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-it"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-lu"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/de-ro"]:before {
  background-position: 0 -66px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-at"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-be"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-ch"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-dk"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-it"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-lu"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/de-ro"]:before {
  background-position: 100% -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/el"]:before,
.lt-dropdown a[data-url*="/hc/change_language/el-gr"]:before {
  background-position: -22px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/et"]:before,
.lt-dropdown a[data-url*="/hc/change_language/et-ee"]:before {
  background-position: -44px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/eu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/eu-es"]:before {
  background-position: -66px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/fa"]:before {
  background-position: -88px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/fi"]:before {
  background-position: -88px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/fil"]:before {
  background-position: -88px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/fo"]:before,
.lt-dropdown a[data-url*="/hc/change_language/fo-dk"]:before {
  background-position: -88px -66px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-002"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-be"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-ca"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-ch"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-fr"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-it"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/fr-lu"]:before {
  background-position: 0 -88px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-002"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-be"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-ca"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-ch"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-fr"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-it"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/fr-lu"]:before {
  background-position: 100% -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/ga"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ga-ie"]:before {
  background-position: -22px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/he"]:before {
  background-position: -44px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/hr"]:before {
  background-position: -66px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/hu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hu-hu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hu-ro"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hu-sk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hu-ua"]:before {
  background-position: -88px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/hy"]:before {
  background-position: -110px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/id"]:before,
.lt-dropdown a[data-url*="/hc/change_language/id-id"]:before,
.lt-dropdown a[data-url*="/hc/change_language/jv-id"]:before {
  background-position: -110px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/as-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/gu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/gu-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hi"]:before,
.lt-dropdown a[data-url*="/hc/change_language/hi-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/kn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/kn-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ks-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/or-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pa-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/sa-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/sd-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ta"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ta-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/te"]:before,
.lt-dropdown a[data-url*="/hc/change_language/te-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ur"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ur-in"]:before {
  background-position: -110px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/is"]:before {
  background-position: -110px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/it"]:before,
.lt-dropdown a[data-url*="/hc/change_language/it-ch"]:before,
.lt-dropdown a[data-url*="/hc/change_language/it-it"]:before {
  background-position: -110px -88px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/ja"]:before {
  background-position: 0 -110px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/ja"]:before {
  background-position: 100% -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/ka"]:before {
  background-position: -22px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/kk"]:before {
  background-position: -44px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/kl"]:before {
  background-position: -66px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/km"]:before {
  background-position: -88px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/ko"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ko-kr"]:before {
  background-position: -110px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/ky"]:before {
  background-position: -132px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/lt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/lt-lv"]:before,
.lt-dropdown a[data-url*="/hc/change_language/lt-lt"]:before {
  background-position: -132px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/lv"]:before,
.lt-dropdown a[data-url*="/hc/change_language/lv-lv"]:before {
  background-position: -132px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/mk"]:before {
  background-position: -132px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/mn"]:before {
  background-position: -132px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/ms"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ms-my"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ml"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ml-in"]:before {
  background-position: -132px -110px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/mt"]:before {
  background-position: 0 -132px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/mt"]:before {
  background-position: 100% -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/my"]:before {
  background-position: -22px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/ne"]:before {
  background-position: -44px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/nl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nl-id"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nl-nl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nl-be"]:before {
  background-position: -66px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/no"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nb"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nb-no"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/nn-no"]:before {
  background-position: -88px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/mi-nz"]:before {
  background-position: -110px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/pl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pl-cz"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pl-lt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pl-pl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pl-ua"]:before {
  background-position: -132px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/apc-ps"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ajp-ps"]:before {
  background-position: -154px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/ps"]:before {
  background-position: -154px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/pt-br"]:before {
  background-position: -154px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/pt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/pt-bt"]:before {
  background-position: -154px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/ro"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ro-bg"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ro-sk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ro-ua"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ro-ro"]:before {
  background-position: -154px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/ru"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ru-ee"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ru-kz"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ru-lt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ru-lv"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ru-ua"]:before {
  background-position: -154px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/si"]:before {
  background-position: -154px -132px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/sl"]:before {
  background-position: 0 -154px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/sl"]:before {
  background-position: 100% -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/so"]:before {
  background-position: -22px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/ca"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ca-es"]:before,
.lt-dropdown a[data-url*="/hc/change_language/gl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/gl-es"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-419"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-ar"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-cl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-co"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-es"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-hn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-mx"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-pe"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-pr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-us"]:before,
.lt-dropdown a[data-url*="/hc/change_language/es-ve"]:before {
  background-position: -44px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/sq"]:before {
  background-position: -66px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/sr-me"]:before {
  background-position: -88px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/sr"]:before {
  background-position: -110px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/sv"]:before,
.lt-dropdown a[data-url*="/hc/change_language/sv-se"]:before {
  background-position: -132px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/sw"]:before {
  background-position: -154px -154px;
}

.lt-dropdown a[data-url*="/hc/change_language/tg"]:before {
  background-position: -176px 0;
}

.lt-dropdown a[data-url*="/hc/change_language/th"]:before {
  background-position: -176px -22px;
}

.lt-dropdown a[data-url*="/hc/change_language/tk"]:before {
  background-position: -176px -44px;
}

.lt-dropdown a[data-url*="/hc/change_language/tl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/tl-ph"]:before {
  background-position: -176px -66px;
}

.lt-dropdown a[data-url*="/hc/change_language/tr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/tr-bg"]:before {
  background-position: -176px -88px;
}

.lt-dropdown a[data-url*="/hc/change_language/uk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/uk-sk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/uk-ua"]:before {
  background-position: -176px -110px;
}

.lt-dropdown a[data-url*="/hc/change_language/en-us"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-001"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ae"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-150"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-at"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-au"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-be"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-bg"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-bo"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ca"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ch"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-co"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-cr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-cy"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-cz"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-dk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ec"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ee"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-es"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-gb"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-gr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-gu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-hk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-hn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-hu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-id"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ie"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-il"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-in"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-it"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-kr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-lr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-lt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-lu"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-lv"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-mx"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-my"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-nl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-no"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-nz"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-pe"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ph"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-pl"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-pr"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ps"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-pt"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ro"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-se"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-sg"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-sk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-th"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-ua"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-vn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/en-za"]:before {
  background-position: -176px -132px;
}

.lt-dropdown a[data-url*="/hc/change_language/uz"]:before {
  background-position: -176px -154px;
}

[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/vi"]:before,
[dir="ltr"] .lt-dropdown a[data-url*="/hc/change_language/vi-vn"]:before {
  background-position: 0 -176px;
}

[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/vi"]:before,
[dir="rtl"] .lt-dropdown a[data-url*="/hc/change_language/vi-vn"]:before {
  background-position: 100% -176px;
}

.lt-dropdown a[data-url*="/hc/change_language/nso-za"]:before,
.lt-dropdown a[data-url*="/hc/change_language/st-za"]:before,
.lt-dropdown a[data-url*="/hc/change_language/tz-za"]:before,
.lt-dropdown a[data-url*="/hc/change_language/ts-za"]:before,
.lt-dropdown a[data-url*="/hc/change_language/xh"]:before,
.lt-dropdown a[data-url*="/hc/change_language/xh-za"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zu-za"]:before {
  background-position: -22px -176px;
}

.lt-dropdown a[data-url*="/hc/change_language/zh"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zh-hk"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zh-mo"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zh-sg"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zh-cn"]:before,
.lt-dropdown a[data-url*="/hc/change_language/zh-tw"]:before {
  background-position: -44px -176px;
}

.lt-dropdown a[data-url*="/hc/change_language/es"]:before {
  background-position: -44px -154px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .lt-dropdown a[data-url]:before {
    background-image: url("/hc/theming_assets/01HZKNR611794WBPN0E7XXDPBQ") !important;
    background-size: 198px 198px;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  position: absolute;
  bottom: 110%;
  z-index: 1;
  min-width: 120px;
  max-width: 220px;
  padding: 0.67rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  visibility: hidden;
  background: #172926;
  border-radius: 6px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(23, 41, 38, 0.25);
}

[dir="ltr"] .tooltip .tooltiptext {
  left: 50%;
  margin-left: -60px;
}

[dir="rtl"] .tooltip .tooltiptext {
  right: 50%;
  margin-right: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* Search */
/* Search */
.search {
  position: relative;
  font-size: 1rem;
}


.search input[type="search"] {
  padding:8px 40px; height:46px; line-height:30px;
  font-size:16px;
  background-color: rgba(255, 255, 255, 1) !important;
  border: none !important;
  border-radius: 50px !important;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.03);
}

.search .submit{
  position: absolute;
  top:4px;left:4px;
  display: flex;
  width: 38px;
  height: 38px; padding:9px;
  font-size: 0; z-index: 6;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 992px) {
  .search {
    font-size: 16px;
  }
 .search input[type="search"] { padding:10px 60px;
	  height:56px; line-height:36px;
  }
  .search .submit{
    position: absolute;
    top:4px;left:4px;
    display: flex;
    width: 48px;
    height: 48px; padding:12px;
    font-size: 0; z-index: 6;
    justify-content: space-between;
    align-items: center;
  }
}

.searchbox {
  margin-top: calc(var(--line-height-computed));
}

.searchbox-suggestions ul {
  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;
}

.lt-search-box {
  position: relative;
}


.lt-search-result-heading {
  color: #fff;
  text-align: center;
}

.lt-search-result-heading__title {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media (min-width: 768px) {
  .lt-search-result-heading__title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

.lt-search-result__topic {
  text-align: center;
}

.lt-search-result__search-box {
  max-width: 736px;
  margin: 0 auto;
}

.lt-search-results-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.lt-search-result {
  border-bottom: 1px solid #e6e6e6;
}

.lt-search-result .lt-meta {
  font-size: 0.85rem;
}

.lt-search-result__title {
  font-weight: 600;
  line-height: 1.5;
}

.lt-search-result__description {
  padding: 0.875rem 1rem;
  font-weight: 500;
  color: #555D5C;
  border: 1px solid #e6e6e6;
}

.lt-search-result__description:empty {
  display: none;
}

.lt-search-result__description em {
  padding: 2px 4px;
  font-style: normal;
  font-weight: var(--strong-font-weight);
  color: #fbb752;
  background: rgba(251, 183, 82, 0.3);
  border-radius: 3px;
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.lt-search-results-filters {
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 100px 80px rgba(182, 195, 193, 0.1),
    0px 22.3363px 17.869px rgba(182, 195, 193, 0.0596107),
    0px 6.6501px 5.32008px rgba(182, 195, 193, 0.0403893);
}

.lt-search-results-filters--mt {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
@media (min-width: 992px) {
  .lt-search-results-filters--mt {
    margin-top: -10rem;
  }
}

.lt-search-results__title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .lt-search-results__title {
    font-size: 2rem;
  }
}

.lt-search-results__content {
  position: relative;
  z-index: 10;
  background-color: transparent;
}
@media (min-width: 992px) {
  .lt-search-results__content {
    padding: 3rem 3.5rem;
    margin-top: -10rem;
    background-color: #fff;
  }
}

.lt-search-results-filter__title {
  position: relative;
  margin-bottom: 0;
  font-weight: var(--strong-font-weight);
}
@media (max-width: 991px) {
  .lt-search-results-filter__title {
    cursor: pointer;
  }
}
@media (max-width: 991px) {
  .lt-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"] .lt-search-results-filter__title:after {
    right: 0.5rem;
  }

  [dir="rtl"] .lt-search-results-filter__title:after {
    left: 0.5rem;
  }

  [dir="ltr"] .lt-search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(-180deg);
  }

  [dir="rtl"] .lt-search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (min-width: 992px) {
  .lt-search-results-filter__list {
    display: block !important;
  }
}

.lt-search-results-filter__name {
  font-size: 1rem;
}

.lt-search-results-filter__item--subfilter:nth-child(n + 7) {
  display: none;
}

.search-result__subfilters--all
  .lt-search-results-filter__item:nth-child(n + 7) {
  display: block;
}

.search-result__subfilters--all .search-result__show-more {
  display: none !important;
}

.lt-search-results-filter__link {
  align-items: center;
  color: #172926;
  text-decoration: none;
  border: 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lt-search-results-filter__link:hover,
.lt-search-results-filter__link:focus,
.lt-search-results-filter__link:active {
  background-color: var(--gray-lightest);
  border-color: var(--gray-lightest);
}

.lt-search-results-filter__link:active {
  background-image: none;
  outline: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.lt-search-results-filter__count {
  display: inline-flex;
  display: inline-block;
  min-width: 48px;
  padding: 2px 12px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: center;
  background: rgba(29, 29, 29, 1);
  border-radius: 57px;
}

.search-result__show-more {
  padding: 0;
  color: rgba(29, 29, 29, 1);
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .search-result__show-more {
  margin-left: 8px;
}

[dir="rtl"] .search-result__show-more {
  margin-right: 8px;
}

.lt-search-results__no-result {
  padding: 0;
}

.lt-search-results__no-result p {
  margin-top: -5rem !important;
}
@media (min-width: 576px) {
  .lt-search-results__no-result p {
    margin-top: -6rem !important;
  }
}
@media (min-width: 992px) {
  .lt-search-results__no-result p {
    margin-top: -12rem !important;
  }
}

.lt-search-topic {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #fff;
}

.lt-search-topic__link {
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  opacity: 0.7;
}

.lt-search-topic__link:not(:last-child):after {
  content: ",";
}

.lt-search-topic__link:hover,
.lt-search-topic__link:focus {
  color: #fff;
  text-decoration: underline;
}
/* My Activities */
.lt-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) {
  .lt-my-activities-items {
    table-layout: auto;
  }
}

.lt-my-activities-items__head {
  display: none;
  color: var(--meta-text-color);
}
@media (min-width: 576px) {
  .lt-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) {
  .lt-my-activities-items__body {
    display: table-row-group;
  }
}

.lt-my-activities-items__row {
  display: block;
}
@media (min-width: 576px) {
  .lt-my-activities-items__row {
    display: table-row;
  }
}

.lt-my-activities-items__col {
  display: block;
}
@media (min-width: 576px) {
  .lt-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 rgba(255, 255, 255, 1);
  }

  [dir="ltr"] .lt-my-activities-items__col + .lt-my-activities-items__col {
    padding-left: var(--padding-base-horizontal);
  }

  [dir="rtl"] .lt-my-activities-items__col + .lt-my-activities-items__col {
    padding-right: var(--padding-base-horizontal);
  }
}
@media (max-width: 575px) {
  .lt-my-activities-items__request-id {
    display: inline;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-items__request-id {
    display: none;
  }
}

.lt-my-activities-items__col .requests-link {
  color: var(--meta-text-color);
  white-space: nowrap;
}

.lt-my-activities-items__col
  requests-link[href*="asc"]
  .requests-sort-symbol:after {
  content: "\f0d8";
}
@media (min-width: 576px) {
  [dir="ltr"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-right: 1rem;
  }
}

.lt-my-activities-menu--main {
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 1);
}

.lt-my-activities-menu--main .lt-my-activities-menu-item {
  padding: 0.5rem 1rem;
  font-weight: bold;
  background-color: #eceeef;
  border-radius: 4px;
}

.lt-my-activities-menu-item__link,
.lt-my-activities-menu-item__link:hover,
.lt-my-activities-menu-item__link:focus {
  color: #172926;
}

.lt-my-activities-menu--main .lt-my-activities-menu-item.is-active {
  color: #172926;
  color: #fff;
  background-color: rgba(29, 29, 29, 1);
}

.lt-my-activities-menu--sub .lt-my-activities-menu-item.is-active {
  font-weight: var(--strong-font-weight);
  color: rgba(29, 29, 29, 1);
}

.lt-my-activities-menu-item {
  margin-bottom: 1rem;
}

.lt-my-activities-menu-item a {
  font-weight: bold;
  color: #172926;
}
@media (min-width: 576px) {
  [dir="ltr"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-right: 1rem;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-menu--sub
    .lt-my-activities-menu-item
    + .lt-my-activities-menu-item:before {
    font-size: 10px;
    content: "\2022";
  }

  [dir="ltr"]
    .lt-my-activities-menu--sub
    .lt-my-activities-menu-item
    + .lt-my-activities-menu-item:before {
    margin-right: 1rem;
  }

  [dir="rtl"]
    .lt-my-activities-menu--sub
    .lt-my-activities-menu-item
    + .lt-my-activities-menu-item:before {
    margin-left: 1rem;
  }
}
@media (max-width: 575px) {
  .lt-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 rgba(255, 255, 255, 1);
    border-radius: 4px;
  }
}

.lt-my-activities-item__meta {
  font-size: 14px;
  color: var(--meta-text-color);
}
@media (max-width: 575px) {
  .lt-my-activities-item__meta {
    display: inline-block;
    margin-right: calc(var(--padding-base-horizontal) / 2);
  }
}

.lt-my-activities-item__title {
  font-weight: 400;
}
@media (max-width: 575px) {
  .lt-my-activities-item__title {
    font-size: var(--font-size-h4);
  }
}
@media (max-width: 575px) {
  .lt-my-activities-item__icon {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-item__icon {
    display: none;
  }
}

.subscriptions-subscribe div {
  display: inline-block;
}
/* Comments */
/* ==========================================================================
  Comment Form
  ========================================================================== */
.lt-comment-form {
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .lt-comment-form {
    order: 1;
  }
}

.lt-comment-form__attachments {
  margin-bottom: 1rem;
}

.lt-comment-form__mark-as-solved {
  position: relative;
}

.lt-comment-form__ccs {
  margin-bottom: 0;
}

.lt-comment-form__ccs + textarea {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.lt-comment-form__body {
  margin-bottom: 16px;
}

.lt-comment-form__body textarea {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.lt-comment-form__body textarea:focus {
  border-color: var(--input-focus-border-color);
  outline: 0;
}

.lt-comment-form__controls {
  position: relative;
}

.lt-comment-form__controls input[type="submit"] {
  display: inline-block;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-transform: none;
  border-radius: 57px;
  box-shadow: 0px 17px 24px rgba(242, 159, 58, 0.1);
}
@media (min-width: 768px) {
  .lt-comment-form__controls input[type="submit"] {
    width: auto;
  }
}
/* ==========================================================================
  Comment Sorter
  ========================================================================== */
.lt-comment-sorter {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: var(--border-width) solid var(--gray-lighter);
}
@media (min-width: 576px) {
  .lt-comment-sorter {
    display: table;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .lt-comment-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}
@media (max-width: 575px) {
  .lt-comment-sorter__col--main {
    margin-bottom: 12px;
  }
}
@media (min-width: 576px) {
  .lt-comment-sorter__col--main {
    padding-right: 16px;
  }
}
@media (min-width: 576px) {
  .lt-comment-sorter__col--filters {
    text-align: right;
  }
}

.lt-comment-sorter__item.is-active {
  font-weight: 600;
}

.lt-comment-sorter__item + .lt-comment-sorter__item:before {
  margin: 0 6px;
  font-size: 10px;
  font-weight: 900;
  content: "\2022";
}
/* ==========================================================================
  Comment
  ========================================================================== */
.lt-comment {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--input-border-color);
  border-radius: 12px;
}

.lt-comment:not(:last-child) {
  margin-bottom: 1rem;
}

.lt-comment__inner {
  position: relative;
}

.lt-comment__header {
  position: relative;
  margin-bottom: 24px;
}

.lt-comment__content {
  flex-grow: 1;
}
@media (min-width: 992px) {
  .lt-comment__date {
    margin-left: 2rem;
  }
}

.lt-comment__voting-and-actions button {
  position: relative;
  z-index: 1;
  display: flex;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  justify-content: center;
  align-items: center;
}

.lt-comment__voting-and-actions button path {
  fill: #bcbcbc;
}

.lt-comment__voting-and-actions button:hover,
.lt-comment__voting-and-actions button:focus,
.lt-comment__voting-and-actions button:active {
  z-index: 2;
}

.lt-comment__voting-and-actions button:hover path,
.lt-comment__voting-and-actions button:focus path,
.lt-comment__voting-and-actions button:active path {
  fill: rgba(29, 29, 29, 1);
}
@media (min-width: 992px) {
  .lt-comment__voting-and-actions {
    margin-left: 2rem;
    border-top: 0;
  }

  .lt-comment__voting-and-actions button {
    top: 2px;
  }
}

.lt-comment__voting {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

.lt-comment__voting:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background-color: #e6e6e6;
}

@media (min-width: 992px) {
  .lt-comment__voting:before {
    display: none;
  }
}

@media (min-width: 992px) {
  .lt-comment__voting {
    position: absolute;
    top: 2.8rem;
    right: 1rem;
    display: block;
    border-top: 0;
  }

  .lt-comment__voting > * {
    margin-bottom: 0.2rem;
  }

  .lt-comment__voting > *:first-child {
    margin-bottom: 0.4em;
  }
}

.lt-comment__voting .lt-vote__sum {
  z-index: 5;
  display: flex;
  width: auto;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .lt-comment__voting .lt-vote__sum {
    display: block;
    padding: 0;
    border: 0;
  }
}

[dir="ltr"] .lt-comment__voting:before {
  left: 50%;
}

[dir="rtl"] .lt-comment__voting:before {
  right: 50%;
}

.lt-comment__actions {
  position: absolute;
  top: 0.5rem;
  text-align: center;
}

[dir="ltr"] .lt-comment__actions {
  right: 1rem;
}

[dir="rtl"] .lt-comment__actions {
  left: 1rem;
}

.lt-comment__official-heading {
  position: absolute;
  top: 0;
  width: auto;
  padding: 2px 8px;
  font-size: var(--font-size-small);
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  border-radius: 0 0 4px 4px;
}

[dir="ltr"] .lt-comment__official-heading {
  right: 36px;
}

[dir="rtl"] .lt-comment__official-heading {
  left: 36px;
}

.lt-comment--official .lt-comment__inner {
  position: relative;
  padding: 24px;
  border: var(--border-width) solid rgba(187, 139, 98, 1);
  border-radius: 4px;
}

.lt-comment__body {
  margin-bottom: 2rem;
  word-break: break-word;
}

.lt-comment__body p {
  margin-bottom: 12px;
}

.lt-comment__body ul {
  list-style: disc;
}

.lt-comment__body ul ul,
.lt-comment__body ul ol,
.lt-comment__body ol ul,
.lt-comment__body ol ol {
  margin-top: 12px;
}

.lt-comment__body ul li,
.lt-comment__body ol li {
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .lt-comment__body {
    margin-bottom: 0;
  }
}

[dir="ltr"] .lt-comment__body ul,
[dir="ltr"] .lt-comment__body ol {
  padding-left: 20px;
}

[dir="rtl"] .lt-comment__body ul,
[dir="rtl"] .lt-comment__body ol {
  padding-right: 20px;
}
/* Comment List */
.lt-comments {
  margin-bottom: 48px;
}

.lt-comments-wrap {
  display: flex;
  flex-direction: column;
}

.lt-comments__callout {
  display: block;
  padding: 1rem 2rem;
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
  background: rgba(230, 230, 230, 0.9);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .lt-comments__callout {
    padding: 2rem 2rem;
    order: 1;
  }
}

.lt-comments__callout:empty {
  display: none;
}

.lt-comments__list {
  list-style: none;
}

[dir="ltr"] .lt-comments__list {
  padding-left: 0;
}

[dir="rtl"] .lt-comments__list {
  padding-right: 0;
}
/* Article */
.lt-article-container {
  position: relative;
  display: flex;
  margin-top: -9rem;
  margin-right: calc(var(--grid-gutter-width) * -1);
  margin-left: calc(var(--grid-gutter-width) * -1);
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .lt-article-container {
    margin-top: -12rem;
  }
}

.lt-article-container__column {
  width: 100%;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
}
@media (max-width: 1024px) {
.lt-article-container{margin-top: -7rem;}	
 .lt-article-container__column{ padding-top: 1.5rem;}
}
.lt-article-container__sidenav,
.lt-article-container__toc {
  display: none;
}

html.sidenav-enabled .lt-article-container__sidenav,
html.toc-enabled .lt-article-container__toc {
  display: block;
}

html.sidenav-enabled .lt-article-container__sidenav {
  padding-bottom: 24px;
}

.lt-article-container__sidenav {
  z-index: 5;
  margin-bottom: 40px;
}

html.sidenav-enabled .lt-article-container__sidebar,
html.toc-enabled .lt-article-container__sidebar {
  width: 100%;
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .lt-article-container__sidenav {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .lt-article-container__article {
    width: calc(100% / 12 * 8);
  }

  .lt-article-container__sidebar {
    width: calc(100% / 12 * 4);
  }

  html.toc-enabled .lt-article-container__toc {
    width: calc(100% / 12 * 4);
  }

  html.sidenav-enabled .lt-article-container__sidenav {
    width: calc(100% / 12 * 4);
  }

  html.sidenav-enabled .lt-article-container__sidebar,
  html.toc-enabled .lt-article-container__sidebar {
    margin-top: 0;
  }

  html.sidenav-enabled .lt-article-container__sidebar {
    flex-grow: 1;
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__sidenav,
  html.sidenav-enabled.toc-enabled .lt-article-container__toc {
    width: calc(100% / 12 * 3);
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__article {
    width: calc(100% / 12 * 6);
  }
}

.lt-article-list {
  padding: 0 0 0 15px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}


.lt-article-list-item {
  list-style-type: disc;
}

.lt-article-list-item::marker {
  color: rgba(29, 29, 29, 1);
}

[dir="ltr"] .lt-article-list-item {
  padding-right: 1.7rem;
  padding-left: 0 !important;
}

[dir="rtl"] .lt-article-list-item {
  padding-right: 0 !important;
  padding-left: 1.7rem;
}

.lt-article-list-item:not(:last-child) {
  margin-bottom: 1rem;
}


.lt-article-list-item__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.lt-article-list-item__link:hover,
.lt-article-list-item__link:focus,
.lt-article-list-item__link:active {
  color: rgba(29, 29, 29, 1);
  border-bottom: 1px solid rgba(29, 29, 29, 1);
}

.lt-article-list-item--is-promoted span {
  font-size: 10px;
  color: #fbce0a;
  vertical-align: middle;
}

.see-all-articles {
  display: inline-block;
}

[dir="ltr"] .see-all-articles {
  margin-left: -1rem;
}

[dir="rtl"] .see-all-articles {
  margin-right: -1rem;
}

.lt-article-vote__controls {
  display: block;
}

.lt-article-vote__item {
  --size: 3.625rem;

  width: var(--size);
  height: var(--size);
  font-size: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(150, 157, 156, 0.25);
  border-radius: var(--size);
}

.lt-article-vote__item:hover,
.lt-article-vote__item:focus,
.lt-article-vote__item:active {
  cursor: pointer;

  background-color: #fff;
  border-color: rgba(29, 29, 29, 1);
}

.lt-article-vote__item:active {
  background-image: none;
}

.lt-article-vote__item--down {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9.75H0.75C0.551088 9.75 0.360322 9.67098 0.21967 9.53033C0.0790176 9.38968 0 9.19891 0 9V0.75C0 0.551088 0.0790176 0.360322 0.21967 0.21967C0.360322 0.0790176 0.551088 0 0.75 0L3 0V9.75Z' fill='%23172926'/%3E%3Cpath d='M16.9042 10.2038C16.6223 10.5323 16.2726 10.7959 15.8792 10.9765C15.4858 11.1571 15.0579 11.2504 14.625 11.25H9.75V15C9.75 16.6545 9.1545 18 7.5 18C7.33543 18.0001 7.17542 17.946 7.04463 17.8461C6.91384 17.7462 6.81953 17.6061 6.77625 17.4473L4.5 9.75003V3.23917e-05H13.8195C14.5371 -0.00330939 15.2318 0.252023 15.7765 0.719247C16.3211 1.18647 16.6791 1.8343 16.785 2.54403L17.592 7.79403C17.6579 8.22153 17.6305 8.65822 17.5118 9.07416C17.3931 9.49009 17.1858 9.87544 16.9042 10.2038Z' fill='%23172926'/%3E%3C/svg%3E%0A");
}

.lt-article-vote__item--up {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.25H0.75C0.551088 8.25 0.360322 8.32902 0.21967 8.46967C0.0790176 8.61032 0 8.80109 0 9L0 17.25C0 17.4489 0.0790176 17.6397 0.21967 17.7803C0.360322 17.921 0.551088 18 0.75 18H3V8.25Z' fill='%23172926'/%3E%3Cpath d='M16.9042 7.8C16.6227 7.4708 16.2731 7.20649 15.8797 7.02523C15.4862 6.84398 15.0582 6.75008 14.625 6.75H9.75V3C9.75 1.3455 9.1545 1.56415e-08 7.5 1.56415e-08C7.33543 -3.35833e-05 7.17542 0.0540632 7.04463 0.153951C6.91384 0.253839 6.81953 0.393973 6.77625 0.55275L4.5 8.25V18H13.8195C14.5371 18.0033 15.2318 17.748 15.7765 17.2808C16.3211 16.8136 16.6791 16.1657 16.785 15.456L17.592 10.206C17.6573 9.77909 17.6297 9.34311 17.511 8.92787C17.3923 8.51262 17.1853 8.1279 16.9042 7.8Z' fill='%23172926'/%3E%3C/svg%3E%0A");
}

.lt-article-vote__item:after {
  content: "";
}

.lt-article-vote__item--voted {
  color: #050808;

  border-color: #050808;
}

.lt-article-vote__question {
  display: block;
  font-weight: 500;
  line-height: 1.1;
  color: #172926;
}

.lt-article-vote__count {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
}

.lt-article-share__title {
  font-weight: 500;
  line-height: 1.1;
  color: #172926;
}

.lt-article-page {
  position: relative;
  z-index: 5;
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.lt-article {
  position: relative;
}

.lt-article__header {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .lt-article__heading {
    order: -1;
  }
}
@media (--sccren-sm) {
  .lt-article__search {
    width: 100%;
  }
}

.lt-article__date {
  font-size: 1rem;
  line-height: 1rem;
  opacity: 0.7;
}

.lt-btn--print {
  color: #fff;
  background-color: transparent;
}

[dir="ltr"] .lt-btn--print {
  text-align: left;
}

[dir="rtl"] .lt-btn--print {
  text-align: right;
}

.lt-article__follow {
  width: 100%;
}
@media (min-width: 576px) {
  .lt-article__follow {
    width: auto;
  }
}
@media (min-width: 576px) {
  .lt-article__follow > div {
    text-align: right;
  }
}

.lt-article__callout a,
.lt-article__callout a:hover,
.lt-article__callout a:focus,
.lt-article__callout a:active {
  color: #fff;
  text-decoration: underline;
}

.lt-article__box {
  box-shadow: 0px 100px 80px rgb(182 195 193 / 10%),
    0px 22.3363px 17.869px rgb(182 195 193 / 6%),
    0px 6.6501px 5.32008px rgb(182 195 193 / 4%);
}

.lt-article__body {
  margin-bottom: calc(var(--line-height-computed));
  word-break: break-word;
  background-color: #fff;
}

.lt-article__body h2,
.lt-article__body .wysiwyg-font-size-x-large {
  font-size: var(--font-size-h2);
  line-height: 1.2;
}

.lt-article__body .wysiwyg-font-size-large {
  font-size: var(--font-size-h3);
  line-height: 1.2;
}

.lt-article__body .wysiwyg-font-size-medium {
  font-size: var(--font-size-h4);
  line-height: 1.2;
}

.lt-article__body .wysiwyg-font-size-small {
  font-size: var(--font-size-small);
}

.lt-article__body ul ul,
.lt-article__body ul ol,
.lt-article__body ol ul,
.lt-article__body ol ol {
  margin-top: calc(var(--line-height-computed) / 2);
  margin-bottom: 0;
}

.lt-article__body ul li,
.lt-article__body ol li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-article__body a[target="_blank"]:after {
  display: inline-flex;
  margin: 0px 4px 0px 4px;
  font-family: "Font Awesome 5 Free";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  line-height: 1;
  content: "\f35d";
  -webkit-font-smoothing: antialiased;
  align-self: baseline;
  text-rendering: auto;
}

[dir="ltr"] .lt-article__body ul,
[dir="ltr"] .lt-article__body ol {
  padding-left: 20px;
}

[dir="rtl"] .lt-article__body ul,
[dir="rtl"] .lt-article__body ol {
  padding-right: 20px;
}
@media (max-width: 575px) {
  .lt-article-sidebar {
    padding-top: calc(var(--line-height-computed));

    border-top: var(--border-width) solid rgba(255, 255, 255, 1);
  }
}
/* Category */
.lt-category-tree-item {
  margin-bottom: 4rem;
}

.lt-category-tree-item__sections {
  margin-bottom: calc(var(--line-height-computed));
}

.lt-category-tree-item__title-link {
  color: inherit;
}

.lt-category-accordion__link {
  font-size: 1.2rem;
  background-color: #fff;
  border-color: transparent;
  border-radius: 12px;
}

.lt-category-accordion__link:hover {
  cursor: pointer;
}

.lt-category-accordion__link:active {
  color: #172926;
}

[dir="ltr"] .lt-category-accordion__link {
  text-align: left;
}

[dir="rtl"] .lt-category-accordion__link {
  text-align: right;
}

.lt-category-accordion__link:before {
  position: absolute;
  top: 45%;
  width: 1rem;
  height: 1rem;
  content: "";
  border-bottom: 2px solid rgba(29, 29, 29, 1);
  transition: transform 0.3s;
}

[dir="ltr"] .lt-category-accordion__link:before {
  right: 1.5rem;
  border-left: 2px solid rgba(29, 29, 29, 1);
  transform: rotate(-45deg) translateY(-50%);
}

[dir="rtl"] .lt-category-accordion__link:before {
  left: 1.5rem;
  border-right: 2px solid rgba(29, 29, 29, 1);
  transform: rotate(45deg) translateY(-50%);
}

.lt-category-accordion__link--active:before {
  transition: transform 0.3s;
}

[dir="ltr"] .lt-category-accordion__link--active:before {
  transform: rotate(135deg);
}

[dir="rtl"] .lt-category-accordion__link--active:before {
  transform: rotate(-135deg);
}

.lt-category-accordion__sections {
  display: none;
  border-top: 2px solid var(--gray-lighter);
}
/* Section */
.lt-section-link {
  color: inherit;
}

.lt-section-heading__title {
  line-height: 1.3;
  color: #172926;
}

.lt-section-heading__descr {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555D5C;
}

.lt-section-heading__link {
  color: #172926;
}

.lt-section-heading__link:hover,
.lt-section-heading__link:focus,
.lt-section-heading__link:active {
  color: #172926;
}

.lt-section-articles {
  margin-bottom: calc(var(--line-height-computed));

  /* @media (--screen-lg) { */
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 100px 80px rgba(182, 195, 193, 0.1),
    0px 22.3363px 17.869px rgba(182, 195, 193, 0.0596107),
    0px 6.6501px 5.32008px rgba(182, 195, 193, 0.0403893);
  /* } */
}

.lt-section-articles__title {
  line-height: 1.4;
}

.lt-section-articles__list {
  list-style: none;
}

[dir="ltr"] .lt-section-articles__list {
  padding-left: 0;
}

[dir="rtl"] .lt-section-articles__list {
  padding-right: 0;
}

.lt-section-articles__item .is-active {
  color: rgba(29, 29, 29, 1);
}

.lt-section-articles__link {
  line-height: 1.5;
  color: #172926;
}
.lt-section-articles__item:hover {
    background-color:#070e20;
  }

  .lt-section-articles__item:hover a {
    color: #fff;
  }

/* Community */
.lt-community-nav {
  border-bottom: var(--border-width) solid #eceeef;
}
@media (min-width: 768px) {
  .lt-community-nav-item + .lt-community-nav-item {
    margin-left: 1rem;
  }
}

.lt-community-nav-item {
  margin-bottom: 1rem;
  color: #172926;
}

.lt-community-nav-item a {
  font-weight: bold;
  color: #172926;
}

.lt-community-nav-item.is-active {
  font-weight: bold;
  color: rgba(29, 29, 29, 1);
}

[dir="ltr"] .lt-community-follow > * + * {
  margin-left: 1rem;
}

[dir="rtl"] .lt-community-follow > * + * {
  margin-right: 1rem;
}

.lt-topic-title {
  font-size: var(--font-size-h3);
}
@media (min-width: 576px) {
  .lt-topic-title {
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 768px) {
  .lt-topic-title {
    font-size: var(--font-size-h1);
  }
}
@media (min-width: 576px) {
  .lt-topic-controls {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  .lt-topic-controls__item {
    display: flex;
    align-items: center;
  }
}

.lt-topic-controls__item--subscribe {
  display: flex;
  align-items: center;
}

.lt-post {
  position: relative;
}

.lt-post__title {
  font-size: var(--font-size-h3);
}

@media (min-width: 576px) {
  .lt-post__title {
    font-size: var(--font-size-h2);
  }
}

@media (min-width: 768px) {
  .lt-post__title {
    font-size: var(--font-size-h1);
  }
}

[dir="ltr"] .lt-post__title {
  padding-right: calc(var(--padding-base-horizontal) * 1.5);
}

[dir="rtl"] .lt-post__title {
  padding-left: calc(var(--padding-base-horizontal) * 1.5);
}

.lt-post__text {
  word-wrap: break-word;
}

.lt-post__text ul {
  list-style: disc;
}

.lt-post__text ul ul,
.lt-post__text ul ol,
.lt-post__text ol ul,
.lt-post__text ol ol {
  margin-top: calc(var(--line-height-computed) / 2);
}

.lt-post__text ul li,
.lt-post__text ol li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

[dir="ltr"] .lt-post__text ul,
[dir="ltr"] .lt-post__text ol {
  padding-left: 20px;
}

[dir="rtl"] .lt-post__text ul,
[dir="rtl"] .lt-post__text ol {
  padding-right: 20px;
}

.lt-post__body {
  word-break: break-word;
}

[dir="ltr"] .lt-post__body {
  padding-right: calc(40px + var(--padding-base-horizontal));
}

[dir="rtl"] .lt-post__body {
  padding-left: calc(40px + var(--padding-base-horizontal));
}

.lt-post__voting-and-actions {
  position: absolute;
  top: 0;
  width: 40px;
  text-align: center;
}

.lt-post__voting-and-actions .lt-dropdown-toggle {
  font-size: 0;
}

.lt-post__voting-and-actions .lt-dropdown-toggle:after {
  font-size: 16px;
  content: "\f013";
}

.lt-post__voting-and-actions .lt-vote__control--down {
  transform: rotateX(360deg);
}

[dir="ltr"] .lt-post__voting-and-actions {
  right: 0;
}

[dir="ltr"] .lt-post__voting-and-actions .lt-dropdown-toggle:after {
  margin-left: 0;
}

[dir="rtl"] .lt-post__voting-and-actions {
  left: 0;
}

[dir="rtl"] .lt-post__voting-and-actions .lt-dropdown-toggle:after {
  margin-right: 0;
}

.lt-post__actions {
  padding-top: 8px;
}

.lt-post__actions .lt-dropdown-menu {
  width: auto;
}

.lt-post__actions .lt-dropdown-menu [role="menuitem"] {
  white-space: nowrap;
}

.lt-post__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;
}

.lt-post-callout {
  padding: calc(var(--line-height-computed) / 2) var(--grid-gutter-width);
}

.lt-post-list-item {
  padding-top: 1rem;
  margin-bottom: 1rem;

  border-top: var(--border-width) solid rgba(255, 255, 255, 1);
}

.lt-post-list-item__icon {
  position: relative;
  top: -4px;
  font-size: 50%;
}

.lt-post-list-item__side {
  min-width: 120px;
}

.lt-post-status {
  display: inline-block;
  padding: 1px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

.lt-post-status--completed,
.lt-post-status--answered {
  background-color: rgba(187, 139, 98, 1);
}

.lt-post-status--planned {
  background-color: rgba(187, 139, 98, 1);
}

.lt-post-status--not-planned {
  color: #172926;
  background-color: var(--gray-lighter);
}

.lt-new-post-title {
  font-size: var(--font-size-h3);
}
@media (min-width: 576px) {
  .lt-new-post-title {
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 768px) {
  .lt-new-post-title {
    font-size: var(--font-size-h1);
  }
}

.lt-new-post-form {
  margin-bottom: calc(var(--line-height-computed));
}

.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(187, 139, 98, 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;
}

.hotposts-header {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
@media (min-width: 576px) {
  .hotposts-meta {
    display: flex;
    width: 100%;
  }
}

.hotposts-author,
.hotposts-comments,
.hotposts-date,
.hotposts-img,
.hotposts-votes {
  display: inline-flex;
  align-items: center;
}

.hotposts-img {
  width: 20px;
  height: 20px;
  overflow: hidden;
  vertical-align: bottom;
  border-radius: 50%;
}

[dir="ltr"] .hotposts-img {
  margin-right: 8px;
}

[dir="rtl"] .hotposts-img {
  margin-left: 8px;
}

.hotposts-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.hotposts-name {
  display: inline-block;
  vertical-align: bottom;
}

.hotposts-icon {
  position: relative;
  top: -2px;
  display: inline-flex;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}

[dir="ltr"] .hotposts-icon {
  margin-right: 6px;
}

[dir="rtl"] .hotposts-icon {
  margin-left: 6px;
}

.hotposts-tabs .tab {
  padding: 15px 0 0;
  margin: 0;
  border: none;
}

.hotposts-tabs .tabs-menu {
  border-bottom: 2px solid #eceeef;
}

.hotposts-tabs .tabs-link {
  padding: 0 0 8px;
  margin-bottom: -2px;
  color: #2d7ccc;
  border: none;
  border-bottom: 2px solid #eceeef;
}

[dir="ltr"] .hotposts-tabs .tabs-link {
  margin-right: 20px;
}

[dir="rtl"] .hotposts-tabs .tabs-link {
  margin-left: 20px;
}

.hotposts-tabs .tabs-link:hover,
.hotposts-tabs .tabs-link:focus {
  color: #1f568d;
}

.hotposts-tabs .tabs-link.is-active {
  color: #4e5565;
  border-color: #4e5565;
}
/* Request */
.lt-request-table-toolbar {
  padding-top: var(--padding-base-horizontal);
  padding-bottom: calc(var(--padding-base-horizontal) / 2);
  margin-bottom: calc(var(--line-height-computed));
  background-color: #f9f9f9;
  border-radius: 4px;
}
@media (min-width: 576px) {
  .lt-request-table-toolbar {
    padding-top: calc(var(--padding-base-horizontal) / 2);
    padding-bottom: var(--padding-base-horizontal);
  }
}

.lt-request-table-toolbar label {
  font-size: var(--font-size-small);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .lt-request-table-filters {
    display: table;
    width: 100%;
  }
}

.lt-request-table-filters__item {
  padding-right: var(--padding-base-horizontal);
  padding-left: var(--padding-base-horizontal);
}
@media (max-width: 575px) {
  .lt-request-table-filters__item {
    margin-bottom: calc(var(--line-height-computed) / 2);
  }
}
@media (min-width: 576px) {
  .lt-request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }
}

.lt-request-table-organization {
  display: table;
  width: 100%;
}

.lt-request-table-organization__col {
  display: table-cell;
  vertical-align: middle;
}

.lt-request-table-organization__col--main {
  width: 100%;
}

.lt-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"] .lt-request-table-organization__col--button {
  padding-left: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .lt-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;
  font-weight: 900;
  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;
}

.lt-request-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.lt-request-id {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

.lt-request-follow-up:empty {
  display: none;
}

.lt-request-sidebar {
  font-size: 14px;
}
@media (min-width: 768px) {
  .lt-request-sidebar {
    margin-top: -2rem;
  }
}

.lt-request-sidebar dd {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.request-column {
  margin-top: -2rem;
}

.lt-request-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  white-space: nowrap;
  border-radius: 4px;
}

.lt-request-status--solved,
.lt-request-status--closed {
  background-color: rgba(187, 139, 98, 1);
}

.lt-request-status--new,
.lt-request-status--open {
  background-color: #ff5252;
}

.lt-request-status--answered {
  background-color: #fad782;
}
/* Formatting */
.accordion {
  padding-top: 0;
  margin-bottom: calc(var(--line-height-computed));
  border: 1px solid #ddd;
  border-radius: 4px;
}

.accordion__item-title {
  position: relative;
  display: block;
  width: 100%;
  font-size: var(--font-size-h4);
  cursor: pointer;
  background-color: transparent;
  background-image: none;
  border: 0;
  touch-action: manipulation;
}

.accordion__item-title:not(.accordion__item-title--active) {
  border-bottom: 1px solid #ddd;
}

.accordion__item-title:before {
  position: absolute;
  content: "";
}

[dir="ltr"] .accordion__item-title {
  padding: 15px 20px 15px 52px;
  text-align: left;
}

[dir="rtl"] .accordion__item-title {
  padding: 15px 52px 15px 20px;
  text-align: right;
}

.accordion__item-content {
  display: none;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.accordion__item-content p:last-child {
  margin-bottom: 0;
}

.accordion__item:last-child .accordion__item-title {
  border-bottom: none;
}

.accordion--default .accordion__item-title:before {
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 2px solid rgba(187, 139, 98, 1);
  transition: transform 0.3s;
}

.accordion--default .accordion__item-title--active {
  background-color: #f0f0f0;
}

.accordion--default .accordion__item-title--active:before {
  transition: transform 0.3s;
}

[dir="ltr"] .accordion--default .accordion__item-title:before {
  left: 22px;
  border-left: 2px solid rgba(187, 139, 98, 1);
  transform: rotate(-45deg);
}

[dir="ltr"] .accordion--default .accordion__item-title--active:before {
  transform: rotate(135deg);
}

[dir="rtl"] .accordion--default .accordion__item-title:before {
  right: 22px;
  border-right: 2px solid rgba(187, 139, 98, 1);
  transform: rotate(45deg);
}

[dir="rtl"] .accordion--default .accordion__item-title--active:before {
  transform: rotate(-135deg);
}

.accordion--colored .accordion__item-title {
  transition: background-color 0.3s;
}

.accordion--colored .accordion__item-title:before,
.accordion--colored .accordion__item-title:after {
  top: 50%;
}

.accordion--colored .accordion__item-title:before {
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background-color: var(--gray-light);
}

.accordion--colored .accordion__item-title:after {
  position: absolute;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  content: "";
  background-color: var(--gray-light);
}

.accordion--colored .accordion__item-title--active {
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  transition: background-color 0.3s;
}

.accordion--colored .accordion__item-title--active:before {
  background-color: #fff;
}

.accordion--colored .accordion__item-title--active:after {
  display: none;
}

[dir="ltr"] .accordion--colored .accordion__item-title:before {
  left: 20px;
}

[dir="ltr"] .accordion--colored .accordion__item-title:after {
  left: 24px;
}

[dir="rtl"] .accordion--colored .accordion__item-title:before {
  right: 20px;
}

[dir="rtl"] .accordion--colored .accordion__item-title:after {
  right: 24px;
}

.image-with-border {
  padding: 10px;
  border: 1px solid var(--gray-lighter);
  border-radius: 4px;
}

.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);
}

.callout {
  padding: calc(var(--line-height-computed)) 20px;
  margin-bottom: calc(var(--line-height-computed));
  background-color: var(--gray-lighter);
}

.callout p:last-child {
  margin-bottom: 0;
}

[dir="ltr"] .callout {
  border-left-style: solid;
  border-left-width: 5px;
}

[dir="rtl"] .callout {
  border-right-style: solid;
  border-right-width: 5px;
}

.callout--transparent {
  background-color: transparent;
  border-color: #dedede;
  border-width: 1px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
}

.callout--success {
  color: #172926;
  background-color: #fff;
  border-color: rgba(187, 139, 98, 1);
}

.callout--success .callout__title {
  color: rgba(187, 139, 98, 1);
}

.callout--info {
  color: #172926;
  background-color: #e3f4f9;
  border-color: #5bc0de;
}

.callout--info .callout__title {
  color: #5bc0de;
}

.callout--warning {
  color: #172926;
  background-color: #fffbf3;
  border-color: #fad782;
}

.callout--warning .callout__title {
  color: #fad782;
}

.callout--danger {
  color: #172926;
  background-color: #fff5f5;
  border-color: #ff5252;
}

.callout--danger .callout__title {
  color: #ff5252;
}

.callout--primary {
  color: #172926;
  background-color: #fff;
  border-color: rgba(187, 139, 98, 1);
}

.callout--primary .callout__title {
  color: rgba(187, 139, 98, 1);
}

.callout--dashed {
  border-style: dashed;
  border-width: 1px;
}

.list-colored,
.list-bullet {
  list-style-type: none;
  counter-reset: list;
}

.list-colored > ul,
.list-bullet > ul {
  margin-bottom: 14px;
  list-style: none;
}

.list-colored > ol,
.list-bullet > ol {
  margin-bottom: 14px;
  list-style-type: none;
  counter-reset: list;
}

[dir="ltr"] .list-colored,
[dir="ltr"] .list-bullet {
  padding-left: 0 !important;
}

[dir="rtl"] .list-colored,
[dir="rtl"] .list-bullet {
  padding-right: 0 !important;
}

.list-colored > li {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) / 1.5) !important;
  counter-increment: list;
}

.list-colored > li:before {
  position: absolute;
  top: -3px;
  z-index: 1;
  width: 30px;
  height: 30px;
  font-size: var(--font-size-small);
  line-height: 30px;
  color: #fff;
  text-align: center;
  content: counter(list);
  background-color: rgba(187, 139, 98, 1);
  border-radius: 50%;
}

[dir="ltr"] .list-colored > li {
  padding-left: calc(var(--padding-base-horizontal) + 30px);
}

[dir="ltr"] .list-colored > li:before {
  left: 0;
}

[dir="rtl"] .list-colored > li {
  padding-right: calc(var(--padding-base-horizontal) + 30px);
}

[dir="rtl"] .list-colored > li:before {
  right: 0;
}

.list-bullet > li {
  position: relative;
  margin-bottom: 10px;
}

.list-bullet > li:before {
  position: absolute;
  top: -2px;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: rgba(187, 139, 98, 1);
  content: "\f058";
}

[dir="ltr"] .list-bullet > li {
  padding-left: 30px;
}

[dir="ltr"] .list-bullet > li:before {
  left: 0;
}

[dir="rtl"] .list-bullet > li {
  padding-right: 30px;
}

[dir="rtl"] .list-bullet > li:before {
  right: 0;
}

.note {
  position: relative;
  margin: calc(var(--line-height-computed)) 0;
  color: #3c6a63;
}

.note p:last-child {
  margin-bottom: 0;
}

[dir="ltr"] .note {
  padding-left: var(--padding-base-horizontal);
  border-left: calc(var(--border-width) * 2) solid transparent;
}

[dir="rtl"] .note {
  padding-right: var(--padding-base-horizontal);
  border-right: calc(var(--border-width) * 2) solid transparent;
}

.note-title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

.note-default,
.note--default {
  border-color: var(--gray-light);
}

.note-default .note-title,
.note--default .note-title {
  color: var(--gray-light);
}

.note-info,
.note--info {
  border-color: #5bc0de;
}

.note-info .note-title,
.note--info .note-title {
  color: #5bc0de;
}

.note-warning,
.note--warning {
  border-color: #fad782;
}

.note-warning .note-title,
.note--warning .note-title {
  color: #fad782;
}

.note-success,
.note--success {
  border-color: rgba(187, 139, 98, 1);
}

.note-success .note-title,
.note--success .note-title {
  color: rgba(187, 139, 98, 1);
}

.note-danger,
.note--danger {
  border-color: #ff5252;
}

.note-danger .note-title,
.note--danger .note-title {
  color: #ff5252;
}

.embed,
.embed-responsive {
  position: relative;
  z-index: 1;
  display: block;
  height: 0;
  padding: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
  overflow: hidden;
}

.embed img,
.embed-responsive img {
  width: 100%;
}

.embed iframe,
.embed embed,
.embed object,
.embed video,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed:focus,
.embed-responsive:focus {
  outline: none !important;
}

[dir="ltr"] .embed iframe,
[dir="ltr"] .embed embed,
[dir="ltr"] .embed object,
[dir="ltr"] .embed video,
[dir="ltr"] .embed-responsive iframe,
[dir="ltr"] .embed-responsive embed,
[dir="ltr"] .embed-responsive object,
[dir="ltr"] .embed-responsive video {
  left: 0;
}

[dir="rtl"] .embed iframe,
[dir="rtl"] .embed embed,
[dir="rtl"] .embed object,
[dir="rtl"] .embed video,
[dir="rtl"] .embed-responsive iframe,
[dir="rtl"] .embed-responsive embed,
[dir="rtl"] .embed-responsive object,
[dir="rtl"] .embed-responsive video {
  right: 0;
}

.embed-responsive--16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive--4by3 {
  padding-bottom: 75%;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
  background-color: transparent;
}

caption {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--gray-light);
}

[dir="ltr"] caption {
  text-align: left;
}

[dir="rtl"] caption {
  text-align: right;
}

[dir="ltr"] th {
  text-align: left;
}

[dir="rtl"] th {
  text-align: right;
}

.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 rgba(255, 255, 255, 1);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.table tbody + tbody {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.table .table {
  background-color: #fff;
}

.table--color-header th {
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: #fff;
}

.table--striped tbody tr:nth-child(odd) {
  color: inherit;
  background-color: rgba(255, 255, 255, 1);
}

.table--hover tbody tr:hover {
  color: inherit;
  background-color: rgba(255, 255, 255, 1);
}

.table--bordered {
  border: 1px solid rgba(255, 255, 255, 1);
}

[dir="ltr"] .table--bordered td,
[dir="ltr"] .table--bordered th {
  border-left: 1px solid rgba(255, 255, 255, 1);
}

[dir="rtl"] .table--bordered td,
[dir="rtl"] .table--bordered th {
  border-right: 1px solid rgba(255, 255, 255, 1);
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 575px) {
  .table-responsive {
    width: 100%;
    margin-bottom: calc(var(--line-height-computed) * 0.75);
    overflow-y: hidden;
    border: 1px solid lighten(var(--gray-light), 30%);
    -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;
  }
}

.tabs {
  margin-bottom: calc(var(--line-height-computed));
}

.tab {
  display: block;
  padding: 30px;
  margin-top: -1px;
  border: 1px solid #ddd;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.tab p:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .tab {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

[dir="ltr"] .tab:nth-child(2) {
  border-top-left-radius: 0;
}

[dir="rtl"] .tab:nth-child(2) {
  border-top-right-radius: 0;
}

.tabs-link {
  display: block;
  padding: 8px 30px;
  margin: 0;
  font-weight: var(--strong-font-weight);
  color: #172926;
  cursor: pointer;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0;
}

.tabs-link:hover {
  color: rgba(187, 139, 98, 1);
}
@media (max-width: 575px) {
  .tabs-link {
    border-top-color: #ddd;
    border-right-color: #ddd;
    border-left-color: #ddd;
  }

  .tabs-link:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}
@media (min-width: 576px) {
  .tabs-link {
    display: inline-block;
  }
}

.is-hidden {
  display: none;
}

.tabs-link.is-active {
  color: rgba(187, 139, 98, 1);
  cursor: pointer;
  border-color: #ddd;
}

.tabs-link.is-active:hover {
  color: rgba(187, 139, 98, 1);
  cursor: default;
}
@media (min-width: 576px) {
  .tabs-link.is-active {
    border-bottom: 1px solid #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.tabs--colored-1 .tab {
  background-color: var(--gray-lightest) !important;
}

.tabs--colored-1 .tabs-link.is-active {
  background-color: var(--gray-lightest);
  border-bottom-color: var(--gray-lightest);
}

.tabs--colored-2 .tabs-link:hover {
  color: rgba(187, 139, 98, 1);
}

.tabs--colored-2 .tabs-link.is-active {
  color: #fff;
  background-color: rgba(187, 139, 98, 1);
  border-color: rgba(187, 139, 98, 1);
}

.tabs--colored-2 .tabs-link.is-active:hover {
  color: #fff;
}

.tabs--colored-2 .tab {
  background-color: var(--gray-lightest) !important;
}

[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: #e9dacd;
}

.text-info {
  background-color: #5bc0de;
}

.text-warning {
  background-color: #fad782;
}

.text-danger {
  background-color: #ff5252;
}

.text-success {
  background-color: rgba(187, 139, 98, 1);
}
/* Extensions */
.sidenav {
  z-index: 10;
}
@media (min-width: 992px) {
  .sidenav {
    padding: 2rem;
  }
}

.sidenav ul {
  list-style-type: none;
}

.sidenav__categories-list {
  margin-top: 10px;
}

@media (min-width: 992px) {
  .sidenav__categories-list {
    padding: 0 !important;
  }
}

.sidenav__categories-list a {
  color: #172926;
}

.sidenav__categories-list a:hover,
.sidenav__categories-list a:focus,
.sidenav__categories-list a:active {
  color: rgba(29, 29, 29, 1);
}

[dir="ltr"] .sidenav__categories-list {
  padding-right: 1rem;
  padding-left: 0;
}

[dir="rtl"] .sidenav__categories-list {
  padding-right: 0;
  padding-left: 1rem;
}

.sidenav__category-name,
.sidenav__section-name,
.sidenav__home {
  font-weight: 700;
}

.sidenav-btn {
  display: block;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  color: #172926;
  text-align: center;
}

.sidenav__home {
  margin-bottom: 1rem;
}

.sidenav__category,
.sidenav__section,
.sidenav__article {
  margin-top: 0.8rem;
}

[dir="ltr"] .sidenav__sections-list,
[dir="ltr"] .sidenav__articles-list {
  padding-left: 1rem;
}

[dir="rtl"] .sidenav__sections-list,
[dir="rtl"] .sidenav__articles-list {
  padding-right: 1rem;
}
/* Mobile */
.sidenav-mobile {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 85%;
  max-width: 300px;
  height: 100%;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

[dir="ltr"] .sidenav-mobile {
  left: 0;
  transform: translateX(-100%);
}

[dir="rtl"] .sidenav-mobile {
  right: 0;
  transform: translateX(100%);
}

.sidenav-mobile.is-active {
  padding-top: 32px;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);

  transition: all 0.3s;
  transform: translateX(0);
}

[dir="ltr"] .sidenav-mobile.is-active {
  padding-left: 32px;
}

[dir="rtl"] .sidenav-mobile.is-active {
  padding-right: 32px;
}

[dir="ltr"] .sidenav-mobile .sidenav__category-name:after,
[dir="ltr"] .sidenav-mobile .sidenav__section-name:after {
  right: 10px;
}

[dir="rtl"] .sidenav-mobile .sidenav__category-name:after,
[dir="rtl"] .sidenav-mobile .sidenav__section-name:after {
  left: 10px;
}

.lt-toc {
  z-index: 10;
}

.lt-toc * {
  box-sizing: border-box;
}

.lt-toc--list {
  margin: 0;
  overflow-y: auto;

  list-style: none;
}

[dir="ltr"] .lt-toc--list {
  padding-left: 0;
}

[dir="rtl"] .lt-toc--list {
  padding-right: 0;
}

.lt-toc--link {
  display: block;
  padding: 6px 12px;

  text-decoration: none;
}

.lt-toc--link.is-active {
  background: currentColor;
}

.lt-toc--link.is-active span {
  color: #ffffff;
}
@media (min-width: 992px) {
  .lt-toc--container {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 100px 80px rgba(182, 195, 193, 0.1),
      0px 22.3363px 17.869px rgba(182, 195, 193, 0.0596107),
      0px 6.6501px 5.32008px rgba(182, 195, 193, 0.0403893);
  }
}

.lt-toc--current {
  padding: 6px 12px;
}
/* Desktop version */
.lt-toc_is-desktop {
  position: relative;
}

.lt-toc_is-desktop .lt-toc--title {
  margin: 0 0 12px;

  font-size: 20px;
}

.lt-toc_is-desktop .lt-toc--current {
  display: none;
}

.lt-toc_is-desktop .lt-toc--item {
  margin-bottom: 6px;
}

.lt-toc_is-desktop .lt-toc--list {
  display: block !important;
}

.lt-toc_is-desktop .lt-toc--link {
  border-radius: 4px;
}
/* Mobile version */
.lt-toc-mobile {
  display: none;
}

.lt-toc-mobile.is-active {
  display: block;
}

.lt-toc-mobile,
.lt-toc_is-mobile {
  width: 100%;
}

.lt-toc-mobile_end {
  margin-top: 24px;
}

.lt-toc_is-mobile {
  position: absolute;
  z-index: 99;
}

.lt-toc_is-mobile.lt-toc_is-bottom {
  top: 0 !important;
}

.lt-toc_is-mobile .lt-toc--container {
  position: relative;

  width: 100%;

  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.lt-toc_is-mobile .lt-toc--title {
  position: absolute;
  top: 0;

  display: block;
  padding: 2px 4px;
  margin: 0;
  font-size: 14px;

  font-weight: normal;
  line-height: 16px;

  background: #eee;
  border-radius: 4px;
  transform: translateY(-50%);
}

.lt-toc_is-mobile .lt-toc--list {
  display: none;

  border-top: 1px solid #e8e8e8;
}

.lt-toc_is-mobile .lt-toc--current,
.lt-toc_is-mobile .lt-toc--link {
  padding: 12px;

  font-size: 16px;
  line-height: 1.5;
}

.lt-toc_is-mobile .lt-toc--current {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;

  white-space: nowrap;

  cursor: pointer;
}

.lt-toc_is-mobile .lt-toc--current:before,
.lt-toc_is-mobile .lt-toc--current:after {
  position: absolute;
  bottom: 50%;

  display: block;

  content: "";

  background: #4e5565;
  border-radius: 1px;

  transition: all 0.3s;
}

.lt-toc_is-mobile .lt-toc--current:before {
  width: 2px;
  height: 12px;
}

.lt-toc_is-mobile .lt-toc--current:after {
  width: 12px;
  height: 2px;
}

.lt-toc_is-mobile .lt-toc--container.is-active .lt-toc--current:after {
  opacity: 0;
}

.lt-toc_is-mobile .lt-toc--item:last-child a {
  border-radius: 0 0 4px 4px;
}

[dir="ltr"] .lt-toc_is-mobile .lt-toc--title {
  left: 12px;
}

[dir="ltr"] .lt-toc_is-mobile .lt-toc--current {
  padding-right: 36px;
}

[dir="ltr"] .lt-toc_is-mobile .lt-toc--current:before,
[dir="ltr"] .lt-toc_is-mobile .lt-toc--current:after {
  right: 22px;
  transform: translate(50%, 50%);
}

[dir="ltr"]
  .lt-toc_is-mobile
  .lt-toc--container.is-active
  .lt-toc--current:before {
  transform: translate(50%, 50%) rotate(-90deg);
}

[dir="ltr"]
  .lt-toc_is-mobile
  .lt-toc--container.is-active
  .lt-toc--current:after {
  transform: translate(50%, 50%) rotate(-90deg);
}

[dir="rtl"] .lt-toc_is-mobile .lt-toc--title {
  right: 12px;
}

[dir="rtl"] .lt-toc_is-mobile .lt-toc--current {
  padding-left: 36px;
}

[dir="rtl"] .lt-toc_is-mobile .lt-toc--current:before,
[dir="rtl"] .lt-toc_is-mobile .lt-toc--current:after {
  left: 22px;
  transform: translate(-50%, 50%);
}

[dir="rtl"]
  .lt-toc_is-mobile
  .lt-toc--container.is-active
  .lt-toc--current:before {
  transform: translate(-50%, 50%) rotate(90deg);
}

[dir="rtl"]
  .lt-toc_is-mobile
  .lt-toc--container.is-active
  .lt-toc--current:after {
  transform: translate(-50%, 50%) rotate(90deg);
}

[dir="ltr"] .hotposts .meta__item:not(:last-child) {
  margin-right: 1rem;
}

[dir="rtl"] .hotposts .meta__item:not(:last-child) {
  margin-left: 1rem;
}

.prevnext {
  grid-template-columns: 1fr 1fr !important;
}

.prevnext__btn {
  position: relative;
  padding: 1rem !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: 12px !important;
}
@media (min-width: 768px) {
  .prevnext__btn {
    padding: 1.1rem 2rem !important;
  }
}

.prevnext__btn:before {
  position: absolute;
  top: 1rem;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .prevnext__btn:before {
    top: 40%;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.prevnext__btn--prev {
  padding-top: 3rem !important;
}

@media (min-width: 768px) {
  .prevnext__btn--prev {
    padding-top: 1rem !important;
    padding-left: 4rem !important;
  }
}

.prevnext__btn--prev:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.25 11.25L0.75 11.25' stroke='%23555D5C' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.25 18.75L0.750001 11.25L8.25 3.75' stroke='%23555D5C' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

[dir="ltr"] .prevnext__btn--prev:before {
  left: 1.5rem;
}

[dir="rtl"] .prevnext__btn--prev:before {
  right: 1.5rem;
}

.prevnext__btn--next {
  padding-top: 3rem !important;
}

@media (min-width: 768px) {
  .prevnext__btn--next {
    padding-top: 1rem !important;
    padding-right: 4rem !important;
  }
}

.prevnext__btn--next:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 12.75H23.25' stroke='%23555D5C' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.75 5.25L23.25 12.75L15.75 20.25' stroke='%23555D5C' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

[dir="ltr"] .prevnext__btn--next:before {
  right: 1.5rem;
}

[dir="rtl"] .prevnext__btn--next:before {
  left: 1.5rem;
}

.prevnext__icon {
  display: none !important;
}

.prevnext__name {
  font-size: 1rem !important;
  font-weight: normal !important;
  color: #555D5C !important;
  text-transform: none !important;
}

.prevnext__title {
  font-weight: bold !important;
}

.riskwarning {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0.5rem;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.fixed {
  position: fixed;
}


.lt-row {
  --lt-gutter-x: 0;
  --lt-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--lt-gutter-y) * -1);
}



.lt-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right:2rem;
  padding-left:5px;
  margin-top: var(--lt-gutter-y);
}
@media (max-width: 992px) {
.lt-row > * {
	  padding-right:0;
	  padding-left:2px;
	}
}
.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-left: 8.3333333333%;
}

[dir="rtl"] .lt-offset-1 {
  margin-right: 8.3333333333%;
}

[dir="ltr"] .lt-offset-2 {
  margin-left: 16.6666666667%;
}

[dir="rtl"] .lt-offset-2 {
  margin-right: 16.6666666667%;
}

[dir="ltr"] .lt-offset-3 {
  margin-left: 25%;
}

[dir="rtl"] .lt-offset-3 {
  margin-right: 25%;
}

[dir="ltr"] .lt-offset-4 {
  margin-left: 33.3333333333%;
}

[dir="rtl"] .lt-offset-4 {
  margin-right: 33.3333333333%;
}

[dir="ltr"] .lt-offset-5 {
  margin-left: 41.6666666667%;
}

[dir="rtl"] .lt-offset-5 {
  margin-right: 41.6666666667%;
}

[dir="ltr"] .lt-offset-6 {
  margin-left: 50%;
}

[dir="rtl"] .lt-offset-6 {
  margin-right: 50%;
}

[dir="ltr"] .lt-offset-7 {
  margin-left: 58.3333333333%;
}

[dir="rtl"] .lt-offset-7 {
  margin-right: 58.3333333333%;
}

[dir="ltr"] .lt-offset-8 {
  margin-left: 66.6666666667%;
}

[dir="rtl"] .lt-offset-8 {
  margin-right: 66.6666666667%;
}

[dir="ltr"] .lt-offset-9 {
  margin-left: 75%;
}

[dir="rtl"] .lt-offset-9 {
  margin-right: 75%;
}

[dir="ltr"] .lt-offset-10 {
  margin-left: 83.3333333333%;
}

[dir="rtl"] .lt-offset-10 {
  margin-right: 83.3333333333%;
}

[dir="ltr"] .lt-offset-11 {
  margin-left: 91.6666666667%;
}

[dir="rtl"] .lt-offset-11 {
  margin-right: 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%;
  }

  [dir="ltr"] .lt-offset-sm-0 {
    margin-left: 0;
  }

  [dir="rtl"] .lt-offset-sm-0 {
    margin-right: 0;
  }

  [dir="ltr"] .lt-offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  [dir="rtl"] .lt-offset-sm-1 {
    margin-right: 8.3333333333%;
  }

  [dir="ltr"] .lt-offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  [dir="rtl"] .lt-offset-sm-2 {
    margin-right: 16.6666666667%;
  }

  [dir="ltr"] .lt-offset-sm-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .lt-offset-sm-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .lt-offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  [dir="rtl"] .lt-offset-sm-4 {
    margin-right: 33.3333333333%;
  }

  [dir="ltr"] .lt-offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  [dir="rtl"] .lt-offset-sm-5 {
    margin-right: 41.6666666667%;
  }

  [dir="ltr"] .lt-offset-sm-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .lt-offset-sm-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .lt-offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  [dir="rtl"] .lt-offset-sm-7 {
    margin-right: 58.3333333333%;
  }

  [dir="ltr"] .lt-offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  [dir="rtl"] .lt-offset-sm-8 {
    margin-right: 66.6666666667%;
  }

  [dir="ltr"] .lt-offset-sm-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .lt-offset-sm-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .lt-offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  [dir="rtl"] .lt-offset-sm-10 {
    margin-right: 83.3333333333%;
  }

  [dir="ltr"] .lt-offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  [dir="rtl"] .lt-offset-sm-11 {
    margin-right: 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%;
  }

  [dir="ltr"] .lt-offset-md-0 {
    margin-left: 0;
  }

  [dir="rtl"] .lt-offset-md-0 {
    margin-right: 0;
  }

  [dir="ltr"] .lt-offset-md-1 {
    margin-left: 8.3333333333%;
  }

  [dir="rtl"] .lt-offset-md-1 {
    margin-right: 8.3333333333%;
  }

  [dir="ltr"] .lt-offset-md-2 {
    margin-left: 16.6666666667%;
  }

  [dir="rtl"] .lt-offset-md-2 {
    margin-right: 16.6666666667%;
  }

  [dir="ltr"] .lt-offset-md-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .lt-offset-md-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .lt-offset-md-4 {
    margin-left: 33.3333333333%;
  }

  [dir="rtl"] .lt-offset-md-4 {
    margin-right: 33.3333333333%;
  }

  [dir="ltr"] .lt-offset-md-5 {
    margin-left: 41.6666666667%;
  }

  [dir="rtl"] .lt-offset-md-5 {
    margin-right: 41.6666666667%;
  }

  [dir="ltr"] .lt-offset-md-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .lt-offset-md-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .lt-offset-md-7 {
    margin-left: 58.3333333333%;
  }

  [dir="rtl"] .lt-offset-md-7 {
    margin-right: 58.3333333333%;
  }

  [dir="ltr"] .lt-offset-md-8 {
    margin-left: 66.6666666667%;
  }

  [dir="rtl"] .lt-offset-md-8 {
    margin-right: 66.6666666667%;
  }

  [dir="ltr"] .lt-offset-md-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .lt-offset-md-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .lt-offset-md-10 {
    margin-left: 83.3333333333%;
  }

  [dir="rtl"] .lt-offset-md-10 {
    margin-right: 83.3333333333%;
  }

  [dir="ltr"] .lt-offset-md-11 {
    margin-left: 91.6666666667%;
  }

  [dir="rtl"] .lt-offset-md-11 {
    margin-right: 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%;
  }

  [dir="ltr"] .lt-offset-lg-0 {
    margin-left: 0;
  }

  [dir="rtl"] .lt-offset-lg-0 {
    margin-right: 0;
  }

  [dir="ltr"] .lt-offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  [dir="rtl"] .lt-offset-lg-1 {
    margin-right: 8.3333333333%;
  }

  [dir="ltr"] .lt-offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  [dir="rtl"] .lt-offset-lg-2 {
    margin-right: 16.6666666667%;
  }

  [dir="ltr"] .lt-offset-lg-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .lt-offset-lg-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .lt-offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  [dir="rtl"] .lt-offset-lg-4 {
    margin-right: 33.3333333333%;
  }

  [dir="ltr"] .lt-offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  [dir="rtl"] .lt-offset-lg-5 {
    margin-right: 41.6666666667%;
  }

  [dir="ltr"] .lt-offset-lg-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .lt-offset-lg-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .lt-offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  [dir="rtl"] .lt-offset-lg-7 {
    margin-right: 58.3333333333%;
  }

  [dir="ltr"] .lt-offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  [dir="rtl"] .lt-offset-lg-8 {
    margin-right: 66.6666666667%;
  }

  [dir="ltr"] .lt-offset-lg-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .lt-offset-lg-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .lt-offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  [dir="rtl"] .lt-offset-lg-10 {
    margin-right: 83.3333333333%;
  }

  [dir="ltr"] .lt-offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  [dir="rtl"] .lt-offset-lg-11 {
    margin-right: 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%;
  }

  [dir="ltr"] .lt-offset-xl-0 {
    margin-left: 0;
  }

  [dir="rtl"] .lt-offset-xl-0 {
    margin-right: 0;
  }

  [dir="ltr"] .lt-offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  [dir="rtl"] .lt-offset-xl-1 {
    margin-right: 8.3333333333%;
  }

  [dir="ltr"] .lt-offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  [dir="rtl"] .lt-offset-xl-2 {
    margin-right: 16.6666666667%;
  }

  [dir="ltr"] .lt-offset-xl-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .lt-offset-xl-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .lt-offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  [dir="rtl"] .lt-offset-xl-4 {
    margin-right: 33.3333333333%;
  }

  [dir="ltr"] .lt-offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  [dir="rtl"] .lt-offset-xl-5 {
    margin-right: 41.6666666667%;
  }

  [dir="ltr"] .lt-offset-xl-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .lt-offset-xl-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .lt-offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  [dir="rtl"] .lt-offset-xl-7 {
    margin-right: 58.3333333333%;
  }

  [dir="ltr"] .lt-offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  [dir="rtl"] .lt-offset-xl-8 {
    margin-right: 66.6666666667%;
  }

  [dir="ltr"] .lt-offset-xl-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .lt-offset-xl-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .lt-offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  [dir="rtl"] .lt-offset-xl-10 {
    margin-right: 83.3333333333%;
  }

  [dir="ltr"] .lt-offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  [dir="rtl"] .lt-offset-xl-11 {
    margin-right: 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%;
  }

  [dir="ltr"] .lt-offset-xxl-0 {
    margin-left: 0;
  }

  [dir="rtl"] .lt-offset-xxl-0 {
    margin-right: 0;
  }

  [dir="ltr"] .lt-offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  [dir="rtl"] .lt-offset-xxl-1 {
    margin-right: 8.3333333333%;
  }

  [dir="ltr"] .lt-offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  [dir="rtl"] .lt-offset-xxl-2 {
    margin-right: 16.6666666667%;
  }

  [dir="ltr"] .lt-offset-xxl-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .lt-offset-xxl-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .lt-offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  [dir="rtl"] .lt-offset-xxl-4 {
    margin-right: 33.3333333333%;
  }

  [dir="ltr"] .lt-offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  [dir="rtl"] .lt-offset-xxl-5 {
    margin-right: 41.6666666667%;
  }

  [dir="ltr"] .lt-offset-xxl-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .lt-offset-xxl-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .lt-offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  [dir="rtl"] .lt-offset-xxl-7 {
    margin-right: 58.3333333333%;
  }

  [dir="ltr"] .lt-offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  [dir="rtl"] .lt-offset-xxl-8 {
    margin-right: 66.6666666667%;
  }

  [dir="ltr"] .lt-offset-xxl-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .lt-offset-xxl-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .lt-offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  [dir="rtl"] .lt-offset-xxl-10 {
    margin-right: 83.3333333333%;
  }

  [dir="ltr"] .lt-offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  [dir="rtl"] .lt-offset-xxl-11 {
    margin-right: 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: 1px 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-right: 0 !important;
  margin-left: 0 !important;
}

.lt-mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.lt-mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.lt-mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.lt-mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.lt-mx-5 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.lt-mx-6 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.lt-mx-7 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.lt-mx-8 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.lt-mx-9 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.lt-mx-auto {
  margin-right: auto !important;
  margin-left: 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-right: 0 !important;
}

[dir="rtl"] .lt-me-0 {
  margin-left: 0 !important;
}

[dir="ltr"] .lt-me-1 {
  margin-right: 0.25rem !important;
}

[dir="rtl"] .lt-me-1 {
  margin-left: 0.25rem !important;
}

[dir="ltr"] .lt-me-2 {
  margin-right: 0.5rem !important;
}

[dir="rtl"] .lt-me-2 {
  margin-left: 0.5rem !important;
}

[dir="ltr"] .lt-me-3 {
  margin-right: 1rem !important;
}

[dir="rtl"] .lt-me-3 {
  margin-left: 1rem !important;
}

[dir="ltr"] .lt-me-4 {
  margin-right: 1.5rem !important;
}

[dir="rtl"] .lt-me-4 {
  margin-left: 1.5rem !important;
}

[dir="ltr"] .lt-me-5 {
  margin-right: 2rem !important;
}

[dir="rtl"] .lt-me-5 {
  margin-left: 2rem !important;
}

[dir="ltr"] .lt-me-6 {
  margin-right: 2.5rem !important;
}

[dir="rtl"] .lt-me-6 {
  margin-left: 2.5rem !important;
}

[dir="ltr"] .lt-me-7 {
  margin-right: 3rem !important;
}

[dir="rtl"] .lt-me-7 {
  margin-left: 3rem !important;
}

[dir="ltr"] .lt-me-8 {
  margin-right: 3.5rem !important;
}

[dir="rtl"] .lt-me-8 {
  margin-left: 3.5rem !important;
}

[dir="ltr"] .lt-me-9 {
  margin-right: 4rem !important;
}

[dir="rtl"] .lt-me-9 {
  margin-left: 4rem !important;
}

[dir="ltr"] .lt-me-auto {
  margin-right: auto !important;
}

[dir="rtl"] .lt-me-auto {
  margin-left: 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-left: 0 !important;
}

[dir="rtl"] .lt-ms-0 {
  margin-right: 0 !important;
}

[dir="ltr"] .lt-ms-1 {
  margin-left: 0.25rem !important;
}

[dir="rtl"] .lt-ms-1 {
  margin-right: 0.25rem !important;
}

[dir="ltr"] .lt-ms-2 {
  margin-left: 0.5rem !important;
}

[dir="rtl"] .lt-ms-2 {
  margin-right: 0.5rem !important;
}

[dir="ltr"] .lt-ms-3 {
  margin-left: 1rem !important;
}

[dir="rtl"] .lt-ms-3 {
  margin-right: 1rem !important;
}

[dir="ltr"] .lt-ms-4 {
  margin-left: 1.5rem !important;
}

[dir="rtl"] .lt-ms-4 {
  margin-right: 1.5rem !important;
}

[dir="ltr"] .lt-ms-5 {
  margin-left: 2rem !important;
}

[dir="rtl"] .lt-ms-5 {
  margin-right: 2rem !important;
}

[dir="ltr"] .lt-ms-6 {
  margin-left: 2.5rem !important;
}

[dir="rtl"] .lt-ms-6 {
  margin-right: 2.5rem !important;
}

[dir="ltr"] .lt-ms-7 {
  margin-left: 3rem !important;
}

[dir="rtl"] .lt-ms-7 {
  margin-right: 3rem !important;
}

[dir="ltr"] .lt-ms-8 {
  margin-left: 3.5rem !important;
}

[dir="rtl"] .lt-ms-8 {
  margin-right: 3.5rem !important;
}

[dir="ltr"] .lt-ms-9 {
  margin-left: 4rem !important;
}

[dir="rtl"] .lt-ms-9 {
  margin-right: 4rem !important;
}

[dir="ltr"] .lt-ms-auto {
  margin-left: auto !important;
}

[dir="rtl"] .lt-ms-auto {
  margin-right: 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-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.lt-mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.lt-mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.lt-mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.lt-mx-n5 {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}

.lt-mx-n6 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

.lt-mx-n7 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.lt-mx-n8 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

.lt-mx-n9 {
  margin-right: -4rem !important;
  margin-left: -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-right: -0.25rem !important;
}

[dir="rtl"] .lt-me-n1 {
  margin-left: -0.25rem !important;
}

[dir="ltr"] .lt-me-n2 {
  margin-right: -0.5rem !important;
}

[dir="rtl"] .lt-me-n2 {
  margin-left: -0.5rem !important;
}

[dir="ltr"] .lt-me-n3 {
  margin-right: -1rem !important;
}

[dir="rtl"] .lt-me-n3 {
  margin-left: -1rem !important;
}

[dir="ltr"] .lt-me-n4 {
  margin-right: -1.5rem !important;
}

[dir="rtl"] .lt-me-n4 {
  margin-left: -1.5rem !important;
}

[dir="ltr"] .lt-me-n5 {
  margin-right: -2rem !important;
}

[dir="rtl"] .lt-me-n5 {
  margin-left: -2rem !important;
}

[dir="ltr"] .lt-me-n6 {
  margin-right: -2.5rem !important;
}

[dir="rtl"] .lt-me-n6 {
  margin-left: -2.5rem !important;
}

[dir="ltr"] .lt-me-n7 {
  margin-right: -3rem !important;
}

[dir="rtl"] .lt-me-n7 {
  margin-left: -3rem !important;
}

[dir="ltr"] .lt-me-n8 {
  margin-right: -3.5rem !important;
}

[dir="rtl"] .lt-me-n8 {
  margin-left: -3.5rem !important;
}

[dir="ltr"] .lt-me-n9 {
  margin-right: -4rem !important;
}

[dir="rtl"] .lt-me-n9 {
  margin-left: -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-left: -0.25rem !important;
}

[dir="rtl"] .lt-ms-n1 {
  margin-right: -0.25rem !important;
}

[dir="ltr"] .lt-ms-n2 {
  margin-left: -0.5rem !important;
}

[dir="rtl"] .lt-ms-n2 {
  margin-right: -0.5rem !important;
}

[dir="ltr"] .lt-ms-n3 {
  margin-left: -1rem !important;
}

[dir="rtl"] .lt-ms-n3 {
  margin-right: -1rem !important;
}

[dir="ltr"] .lt-ms-n4 {
  margin-left: -1.5rem !important;
}

[dir="rtl"] .lt-ms-n4 {
  margin-right: -1.5rem !important;
}

[dir="ltr"] .lt-ms-n5 {
  margin-left: -2rem !important;
}

[dir="rtl"] .lt-ms-n5 {
  margin-right: -2rem !important;
}

[dir="ltr"] .lt-ms-n6 {
  margin-left: -2.5rem !important;
}

[dir="rtl"] .lt-ms-n6 {
  margin-right: -2.5rem !important;
}

[dir="ltr"] .lt-ms-n7 {
  margin-left: -3rem !important;
}

[dir="rtl"] .lt-ms-n7 {
  margin-right: -3rem !important;
}

[dir="ltr"] .lt-ms-n8 {
  margin-left: -3.5rem !important;
}

[dir="rtl"] .lt-ms-n8 {
  margin-right: -3.5rem !important;
}

[dir="ltr"] .lt-ms-n9 {
  margin-left: -4rem !important;
}

[dir="rtl"] .lt-ms-n9 {
  margin-right: -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;
}
@media (max-width: 1024px) {
 .lt-px-6 {
   padding-right: 1.5rem !important;
   padding-left: 1.5rem !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-break: break-word !important;
  word-wrap: break-word !important;
}

/* rtl:end:remove */
.lt-text-primary {
  color: #0d6efd !important;
}

.lt-text-secondary {
  color: #6c757d !important;
}

.lt-text-success {
  color: #198754 !important;
}

.lt-text-info {
  color: #0dcaf0 !important;
}

.lt-text-warning {
  color: #ffc107 !important;
}

.lt-text-danger {
  color: #dc3545 !important;
}

.lt-text-light {
  color: #f8f9fa !important;
}

.lt-text-dark {
  color: #212529 !important;
}

.lt-text-white {
  color: #fff !important;
}

.lt-text-body {
  color: #212529 !important;
}

.lt-text-muted {
  color: #6c757d !important;
}

.lt-text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.lt-text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.lt-text-reset {
  color: inherit !important;
}

.lt-bg-primary {
  background-color: #0d6efd !important;
}

.lt-bg-secondary {
  background-color: #6c757d !important;
}

.lt-bg-success {
  background-color: #198754 !important;
}

.lt-bg-info {
  background-color: #0dcaf0 !important;
}

.lt-bg-warning {
  background-color: #ffc107 !important;
}

.lt-bg-danger {
  background-color: #dc3545 !important;
}

.lt-bg-light {
  background-color: #f8f9fa !important;
}

.lt-bg-dark {
  background-color: #212529 !important;
}

.lt-bg-body {
  background-color: #fff !important;
}

.lt-bg-white {
  background-color: #fff !important;
}

.lt-bg-transparent {
  background-color: transparent !important;
}

.lt-user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.lt-user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.lt-user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.lt-pe-none {
  pointer-events: none !important;
}

.lt-pe-auto {
  pointer-events: auto !important;
}

.lt-rounded {
  border-radius: 0.25rem !important;
}

.lt-rounded-0 {
  border-radius: 0 !important;
}

.lt-rounded-1 {
  border-radius: 0.2rem !important;
}

.lt-rounded-2 {
  border-radius: 0.25rem !important;
}

.lt-rounded-3 {
  border-radius: 0.3rem !important;
}

.lt-rounded-circle {
  border-radius: 50% !important;
}

.lt-rounded-pill {
  border-radius: 50rem !important;
}

.lt-rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

[dir="ltr"] .lt-rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

[dir="rtl"] .lt-rounded-end {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.lt-rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

[dir="ltr"] .lt-rounded-start {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

[dir="rtl"] .lt-rounded-start {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.lt-visible {
  visibility: visible !important;
}

.lt-invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  [dir="ltr"] .lt-float-sm-start {
    float: left !important;
  }

  [dir="rtl"] .lt-float-sm-start {
    float: right !important;
  }

  [dir="ltr"] .lt-float-sm-end {
    float: right !important;
  }

  [dir="rtl"] .lt-float-sm-end {
    float: left !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-right: 0 !important;
    margin-left: 0 !important;
  }

  .lt-mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .lt-mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .lt-mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .lt-mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .lt-mx-sm-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .lt-mx-sm-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .lt-mx-sm-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .lt-mx-sm-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .lt-mx-sm-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .lt-mx-sm-auto {
    margin-right: auto !important;
    margin-left: 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;
  }

  [dir="ltr"] .lt-me-sm-0 {
    margin-right: 0 !important;
  }

  [dir="rtl"] .lt-me-sm-0 {
    margin-left: 0 !important;
  }

  [dir="ltr"] .lt-me-sm-1 {
    margin-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-me-sm-1 {
    margin-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-me-sm-2 {
    margin-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-2 {
    margin-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-3 {
    margin-right: 1rem !important;
  }

  [dir="rtl"] .lt-me-sm-3 {
    margin-left: 1rem !important;
  }

  [dir="ltr"] .lt-me-sm-4 {
    margin-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-4 {
    margin-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-5 {
    margin-right: 2rem !important;
  }

  [dir="rtl"] .lt-me-sm-5 {
    margin-left: 2rem !important;
  }

  [dir="ltr"] .lt-me-sm-6 {
    margin-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-6 {
    margin-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-7 {
    margin-right: 3rem !important;
  }

  [dir="rtl"] .lt-me-sm-7 {
    margin-left: 3rem !important;
  }

  [dir="ltr"] .lt-me-sm-8 {
    margin-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-8 {
    margin-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-9 {
    margin-right: 4rem !important;
  }

  [dir="rtl"] .lt-me-sm-9 {
    margin-left: 4rem !important;
  }

  [dir="ltr"] .lt-me-sm-auto {
    margin-right: auto !important;
  }

  [dir="rtl"] .lt-me-sm-auto {
    margin-left: 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;
  }

  [dir="ltr"] .lt-ms-sm-0 {
    margin-left: 0 !important;
  }

  [dir="rtl"] .lt-ms-sm-0 {
    margin-right: 0 !important;
  }

  [dir="ltr"] .lt-ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ms-sm-1 {
    margin-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-2 {
    margin-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-3 {
    margin-left: 1rem !important;
  }

  [dir="rtl"] .lt-ms-sm-3 {
    margin-right: 1rem !important;
  }

  [dir="ltr"] .lt-ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-4 {
    margin-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-5 {
    margin-left: 2rem !important;
  }

  [dir="rtl"] .lt-ms-sm-5 {
    margin-right: 2rem !important;
  }

  [dir="ltr"] .lt-ms-sm-6 {
    margin-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-6 {
    margin-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-7 {
    margin-left: 3rem !important;
  }

  [dir="rtl"] .lt-ms-sm-7 {
    margin-right: 3rem !important;
  }

  [dir="ltr"] .lt-ms-sm-8 {
    margin-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-8 {
    margin-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-9 {
    margin-left: 4rem !important;
  }

  [dir="rtl"] .lt-ms-sm-9 {
    margin-right: 4rem !important;
  }

  [dir="ltr"] .lt-ms-sm-auto {
    margin-left: auto !important;
  }

  [dir="rtl"] .lt-ms-sm-auto {
    margin-right: 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-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .lt-mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .lt-mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .lt-mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .lt-mx-sm-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .lt-mx-sm-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .lt-mx-sm-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .lt-mx-sm-n8 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .lt-mx-sm-n9 {
    margin-right: -4rem !important;
    margin-left: -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;
  }

  [dir="ltr"] .lt-me-sm-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="rtl"] .lt-me-sm-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="ltr"] .lt-me-sm-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-n3 {
    margin-right: -1rem !important;
  }

  [dir="rtl"] .lt-me-sm-n3 {
    margin-left: -1rem !important;
  }

  [dir="ltr"] .lt-me-sm-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-n5 {
    margin-right: -2rem !important;
  }

  [dir="rtl"] .lt-me-sm-n5 {
    margin-left: -2rem !important;
  }

  [dir="ltr"] .lt-me-sm-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-n7 {
    margin-right: -3rem !important;
  }

  [dir="rtl"] .lt-me-sm-n7 {
    margin-left: -3rem !important;
  }

  [dir="ltr"] .lt-me-sm-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="rtl"] .lt-me-sm-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="ltr"] .lt-me-sm-n9 {
    margin-right: -4rem !important;
  }

  [dir="rtl"] .lt-me-sm-n9 {
    margin-left: -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;
  }

  [dir="ltr"] .lt-ms-sm-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n3 {
    margin-left: -1rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n3 {
    margin-right: -1rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n5 {
    margin-left: -2rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n5 {
    margin-right: -2rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n7 {
    margin-left: -3rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n7 {
    margin-right: -3rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="ltr"] .lt-ms-sm-n9 {
    margin-left: -4rem !important;
  }

  [dir="rtl"] .lt-ms-sm-n9 {
    margin-right: -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;
  }

  [dir="ltr"] .lt-pe-sm-0 {
    padding-right: 0 !important;
  }

  [dir="rtl"] .lt-pe-sm-0 {
    padding-left: 0 !important;
  }

  [dir="ltr"] .lt-pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-pe-sm-1 {
    padding-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-pe-sm-2 {
    padding-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-pe-sm-3 {
    padding-right: 1rem !important;
  }

  [dir="rtl"] .lt-pe-sm-3 {
    padding-left: 1rem !important;
  }

  [dir="ltr"] .lt-pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-pe-sm-4 {
    padding-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-pe-sm-5 {
    padding-right: 2rem !important;
  }

  [dir="rtl"] .lt-pe-sm-5 {
    padding-left: 2rem !important;
  }

  [dir="ltr"] .lt-pe-sm-6 {
    padding-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-pe-sm-6 {
    padding-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-pe-sm-7 {
    padding-right: 3rem !important;
  }

  [dir="rtl"] .lt-pe-sm-7 {
    padding-left: 3rem !important;
  }

  [dir="ltr"] .lt-pe-sm-8 {
    padding-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-pe-sm-8 {
    padding-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-pe-sm-9 {
    padding-right: 4rem !important;
  }

  [dir="rtl"] .lt-pe-sm-9 {
    padding-left: 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;
  }

  [dir="ltr"] .lt-ps-sm-0 {
    padding-left: 0 !important;
  }

  [dir="rtl"] .lt-ps-sm-0 {
    padding-right: 0 !important;
  }

  [dir="ltr"] .lt-ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ps-sm-1 {
    padding-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ps-sm-2 {
    padding-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ps-sm-3 {
    padding-left: 1rem !important;
  }

  [dir="rtl"] .lt-ps-sm-3 {
    padding-right: 1rem !important;
  }

  [dir="ltr"] .lt-ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ps-sm-4 {
    padding-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ps-sm-5 {
    padding-left: 2rem !important;
  }

  [dir="rtl"] .lt-ps-sm-5 {
    padding-right: 2rem !important;
  }

  [dir="ltr"] .lt-ps-sm-6 {
    padding-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ps-sm-6 {
    padding-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ps-sm-7 {
    padding-left: 3rem !important;
  }

  [dir="rtl"] .lt-ps-sm-7 {
    padding-right: 3rem !important;
  }

  [dir="ltr"] .lt-ps-sm-8 {
    padding-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ps-sm-8 {
    padding-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ps-sm-9 {
    padding-left: 4rem !important;
  }

  [dir="rtl"] .lt-ps-sm-9 {
    padding-right: 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;
  }

  [dir="ltr"] .lt-text-sm-start {
    text-align: left !important;
  }

  [dir="rtl"] .lt-text-sm-start {
    text-align: right !important;
  }

  [dir="ltr"] .lt-text-sm-end {
    text-align: right !important;
  }

  [dir="rtl"] .lt-text-sm-end {
    text-align: left !important;
  }

  .lt-text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  [dir="ltr"] .lt-float-md-start {
    float: left !important;
  }

  [dir="rtl"] .lt-float-md-start {
    float: right !important;
  }

  [dir="ltr"] .lt-float-md-end {
    float: right !important;
  }

  [dir="rtl"] .lt-float-md-end {
    float: left !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-right: 0 !important;
    margin-left: 0 !important;
  }

  .lt-mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .lt-mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .lt-mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .lt-mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .lt-mx-md-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .lt-mx-md-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .lt-mx-md-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .lt-mx-md-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .lt-mx-md-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .lt-mx-md-auto {
    margin-right: auto !important;
    margin-left: 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;
  }

  [dir="ltr"] .lt-me-md-0 {
    margin-right: 0 !important;
  }

  [dir="rtl"] .lt-me-md-0 {
    margin-left: 0 !important;
  }

  [dir="ltr"] .lt-me-md-1 {
    margin-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-me-md-1 {
    margin-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-me-md-2 {
    margin-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-me-md-2 {
    margin-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-me-md-3 {
    margin-right: 1rem !important;
  }

  [dir="rtl"] .lt-me-md-3 {
    margin-left: 1rem !important;
  }

  [dir="ltr"] .lt-me-md-4 {
    margin-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-me-md-4 {
    margin-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-me-md-5 {
    margin-right: 2rem !important;
  }

  [dir="rtl"] .lt-me-md-5 {
    margin-left: 2rem !important;
  }

  [dir="ltr"] .lt-me-md-6 {
    margin-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-me-md-6 {
    margin-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-me-md-7 {
    margin-right: 3rem !important;
  }

  [dir="rtl"] .lt-me-md-7 {
    margin-left: 3rem !important;
  }

  [dir="ltr"] .lt-me-md-8 {
    margin-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-me-md-8 {
    margin-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-me-md-9 {
    margin-right: 4rem !important;
  }

  [dir="rtl"] .lt-me-md-9 {
    margin-left: 4rem !important;
  }

  [dir="ltr"] .lt-me-md-auto {
    margin-right: auto !important;
  }

  [dir="rtl"] .lt-me-md-auto {
    margin-left: 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;
  }

  [dir="ltr"] .lt-ms-md-0 {
    margin-left: 0 !important;
  }

  [dir="rtl"] .lt-ms-md-0 {
    margin-right: 0 !important;
  }

  [dir="ltr"] .lt-ms-md-1 {
    margin-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ms-md-1 {
    margin-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ms-md-2 {
    margin-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-2 {
    margin-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-3 {
    margin-left: 1rem !important;
  }

  [dir="rtl"] .lt-ms-md-3 {
    margin-right: 1rem !important;
  }

  [dir="ltr"] .lt-ms-md-4 {
    margin-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-4 {
    margin-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-5 {
    margin-left: 2rem !important;
  }

  [dir="rtl"] .lt-ms-md-5 {
    margin-right: 2rem !important;
  }

  [dir="ltr"] .lt-ms-md-6 {
    margin-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-6 {
    margin-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-7 {
    margin-left: 3rem !important;
  }

  [dir="rtl"] .lt-ms-md-7 {
    margin-right: 3rem !important;
  }

  [dir="ltr"] .lt-ms-md-8 {
    margin-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-8 {
    margin-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-9 {
    margin-left: 4rem !important;
  }

  [dir="rtl"] .lt-ms-md-9 {
    margin-right: 4rem !important;
  }

  [dir="ltr"] .lt-ms-md-auto {
    margin-left: auto !important;
  }

  [dir="rtl"] .lt-ms-md-auto {
    margin-right: 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-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .lt-mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .lt-mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .lt-mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .lt-mx-md-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .lt-mx-md-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .lt-mx-md-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .lt-mx-md-n8 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .lt-mx-md-n9 {
    margin-right: -4rem !important;
    margin-left: -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;
  }

  [dir="ltr"] .lt-me-md-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="rtl"] .lt-me-md-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="ltr"] .lt-me-md-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="rtl"] .lt-me-md-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="ltr"] .lt-me-md-n3 {
    margin-right: -1rem !important;
  }

  [dir="rtl"] .lt-me-md-n3 {
    margin-left: -1rem !important;
  }

  [dir="ltr"] .lt-me-md-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="rtl"] .lt-me-md-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="ltr"] .lt-me-md-n5 {
    margin-right: -2rem !important;
  }

  [dir="rtl"] .lt-me-md-n5 {
    margin-left: -2rem !important;
  }

  [dir="ltr"] .lt-me-md-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="rtl"] .lt-me-md-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="ltr"] .lt-me-md-n7 {
    margin-right: -3rem !important;
  }

  [dir="rtl"] .lt-me-md-n7 {
    margin-left: -3rem !important;
  }

  [dir="ltr"] .lt-me-md-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="rtl"] .lt-me-md-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="ltr"] .lt-me-md-n9 {
    margin-right: -4rem !important;
  }

  [dir="rtl"] .lt-me-md-n9 {
    margin-left: -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;
  }

  [dir="ltr"] .lt-ms-md-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="rtl"] .lt-ms-md-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="ltr"] .lt-ms-md-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-n3 {
    margin-left: -1rem !important;
  }

  [dir="rtl"] .lt-ms-md-n3 {
    margin-right: -1rem !important;
  }

  [dir="ltr"] .lt-ms-md-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-n5 {
    margin-left: -2rem !important;
  }

  [dir="rtl"] .lt-ms-md-n5 {
    margin-right: -2rem !important;
  }

  [dir="ltr"] .lt-ms-md-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-n7 {
    margin-left: -3rem !important;
  }

  [dir="rtl"] .lt-ms-md-n7 {
    margin-right: -3rem !important;
  }

  [dir="ltr"] .lt-ms-md-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="rtl"] .lt-ms-md-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="ltr"] .lt-ms-md-n9 {
    margin-left: -4rem !important;
  }

  [dir="rtl"] .lt-ms-md-n9 {
    margin-right: -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;
  }

  [dir="ltr"] .lt-pe-md-0 {
    padding-right: 0 !important;
  }

  [dir="rtl"] .lt-pe-md-0 {
    padding-left: 0 !important;
  }

  [dir="ltr"] .lt-pe-md-1 {
    padding-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-pe-md-1 {
    padding-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-pe-md-2 {
    padding-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-pe-md-2 {
    padding-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-pe-md-3 {
    padding-right: 1rem !important;
  }

  [dir="rtl"] .lt-pe-md-3 {
    padding-left: 1rem !important;
  }

  [dir="ltr"] .lt-pe-md-4 {
    padding-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-pe-md-4 {
    padding-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-pe-md-5 {
    padding-right: 2rem !important;
  }

  [dir="rtl"] .lt-pe-md-5 {
    padding-left: 2rem !important;
  }

  [dir="ltr"] .lt-pe-md-6 {
    padding-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-pe-md-6 {
    padding-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-pe-md-7 {
    padding-right: 3rem !important;
  }

  [dir="rtl"] .lt-pe-md-7 {
    padding-left: 3rem !important;
  }

  [dir="ltr"] .lt-pe-md-8 {
    padding-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-pe-md-8 {
    padding-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-pe-md-9 {
    padding-right: 4rem !important;
  }

  [dir="rtl"] .lt-pe-md-9 {
    padding-left: 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;
  }

  [dir="ltr"] .lt-ps-md-0 {
    padding-left: 0 !important;
  }

  [dir="rtl"] .lt-ps-md-0 {
    padding-right: 0 !important;
  }

  [dir="ltr"] .lt-ps-md-1 {
    padding-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ps-md-1 {
    padding-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ps-md-2 {
    padding-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ps-md-2 {
    padding-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ps-md-3 {
    padding-left: 1rem !important;
  }

  [dir="rtl"] .lt-ps-md-3 {
    padding-right: 1rem !important;
  }

  [dir="ltr"] .lt-ps-md-4 {
    padding-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ps-md-4 {
    padding-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ps-md-5 {
    padding-left: 2rem !important;
  }

  [dir="rtl"] .lt-ps-md-5 {
    padding-right: 2rem !important;
  }

  [dir="ltr"] .lt-ps-md-6 {
    padding-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ps-md-6 {
    padding-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ps-md-7 {
    padding-left: 3rem !important;
  }

  [dir="rtl"] .lt-ps-md-7 {
    padding-right: 3rem !important;
  }

  [dir="ltr"] .lt-ps-md-8 {
    padding-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ps-md-8 {
    padding-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ps-md-9 {
    padding-left: 4rem !important;
  }

  [dir="rtl"] .lt-ps-md-9 {
    padding-right: 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;
  }

  [dir="ltr"] .lt-text-md-start {
    text-align: left !important;
  }

  [dir="rtl"] .lt-text-md-start {
    text-align: right !important;
  }

  [dir="ltr"] .lt-text-md-end {
    text-align: right !important;
  }

  [dir="rtl"] .lt-text-md-end {
    text-align: left !important;
  }

  .lt-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  [dir="ltr"] .lt-float-lg-start {
    float: left !important;
  }

  [dir="rtl"] .lt-float-lg-start {
    float: right !important;
  }

  [dir="ltr"] .lt-float-lg-end {
    float: right !important;
  }

  [dir="rtl"] .lt-float-lg-end {
    float: left !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-right: 0 !important;
    margin-left: 0 !important;
  }

  .lt-mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .lt-mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .lt-mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .lt-mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .lt-mx-lg-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .lt-mx-lg-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .lt-mx-lg-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .lt-mx-lg-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .lt-mx-lg-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .lt-mx-lg-auto {
    margin-right: auto !important;
    margin-left: 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;
  }

  [dir="ltr"] .lt-me-lg-0 {
    margin-right: 0 !important;
  }

  [dir="rtl"] .lt-me-lg-0 {
    margin-left: 0 !important;
  }

  [dir="ltr"] .lt-me-lg-1 {
    margin-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-me-lg-1 {
    margin-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-me-lg-2 {
    margin-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-2 {
    margin-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-3 {
    margin-right: 1rem !important;
  }

  [dir="rtl"] .lt-me-lg-3 {
    margin-left: 1rem !important;
  }

  [dir="ltr"] .lt-me-lg-4 {
    margin-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-4 {
    margin-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-5 {
    margin-right: 2rem !important;
  }

  [dir="rtl"] .lt-me-lg-5 {
    margin-left: 2rem !important;
  }

  [dir="ltr"] .lt-me-lg-6 {
    margin-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-6 {
    margin-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-7 {
    margin-right: 3rem !important;
  }

  [dir="rtl"] .lt-me-lg-7 {
    margin-left: 3rem !important;
  }

  [dir="ltr"] .lt-me-lg-8 {
    margin-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-8 {
    margin-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-9 {
    margin-right: 4rem !important;
  }

  [dir="rtl"] .lt-me-lg-9 {
    margin-left: 4rem !important;
  }

  [dir="ltr"] .lt-me-lg-auto {
    margin-right: auto !important;
  }

  [dir="rtl"] .lt-me-lg-auto {
    margin-left: 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;
  }

  [dir="ltr"] .lt-ms-lg-0 {
    margin-left: 0 !important;
  }

  [dir="rtl"] .lt-ms-lg-0 {
    margin-right: 0 !important;
  }

  [dir="ltr"] .lt-ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ms-lg-1 {
    margin-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-2 {
    margin-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-3 {
    margin-left: 1rem !important;
  }

  [dir="rtl"] .lt-ms-lg-3 {
    margin-right: 1rem !important;
  }

  [dir="ltr"] .lt-ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-4 {
    margin-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-5 {
    margin-left: 2rem !important;
  }

  [dir="rtl"] .lt-ms-lg-5 {
    margin-right: 2rem !important;
  }

  [dir="ltr"] .lt-ms-lg-6 {
    margin-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-6 {
    margin-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-7 {
    margin-left: 3rem !important;
  }

  [dir="rtl"] .lt-ms-lg-7 {
    margin-right: 3rem !important;
  }

  [dir="ltr"] .lt-ms-lg-8 {
    margin-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-8 {
    margin-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-9 {
    margin-left: 4rem !important;
  }

  [dir="rtl"] .lt-ms-lg-9 {
    margin-right: 4rem !important;
  }

  [dir="ltr"] .lt-ms-lg-auto {
    margin-left: auto !important;
  }

  [dir="rtl"] .lt-ms-lg-auto {
    margin-right: 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-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .lt-mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .lt-mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .lt-mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .lt-mx-lg-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .lt-mx-lg-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .lt-mx-lg-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .lt-mx-lg-n8 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .lt-mx-lg-n9 {
    margin-right: -4rem !important;
    margin-left: -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;
  }

  [dir="ltr"] .lt-me-lg-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="rtl"] .lt-me-lg-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="ltr"] .lt-me-lg-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-n3 {
    margin-right: -1rem !important;
  }

  [dir="rtl"] .lt-me-lg-n3 {
    margin-left: -1rem !important;
  }

  [dir="ltr"] .lt-me-lg-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-n5 {
    margin-right: -2rem !important;
  }

  [dir="rtl"] .lt-me-lg-n5 {
    margin-left: -2rem !important;
  }

  [dir="ltr"] .lt-me-lg-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-n7 {
    margin-right: -3rem !important;
  }

  [dir="rtl"] .lt-me-lg-n7 {
    margin-left: -3rem !important;
  }

  [dir="ltr"] .lt-me-lg-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="rtl"] .lt-me-lg-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="ltr"] .lt-me-lg-n9 {
    margin-right: -4rem !important;
  }

  [dir="rtl"] .lt-me-lg-n9 {
    margin-left: -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;
  }

  [dir="ltr"] .lt-ms-lg-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n3 {
    margin-left: -1rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n3 {
    margin-right: -1rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n5 {
    margin-left: -2rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n5 {
    margin-right: -2rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n7 {
    margin-left: -3rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n7 {
    margin-right: -3rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="ltr"] .lt-ms-lg-n9 {
    margin-left: -4rem !important;
  }

  [dir="rtl"] .lt-ms-lg-n9 {
    margin-right: -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;
  }

  [dir="ltr"] .lt-pe-lg-0 {
    padding-right: 0 !important;
  }

  [dir="rtl"] .lt-pe-lg-0 {
    padding-left: 0 !important;
  }

  [dir="ltr"] .lt-pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-pe-lg-1 {
    padding-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-pe-lg-2 {
    padding-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-pe-lg-3 {
    padding-right: 1rem !important;
  }

  [dir="rtl"] .lt-pe-lg-3 {
    padding-left: 1rem !important;
  }

  [dir="ltr"] .lt-pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-pe-lg-4 {
    padding-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-pe-lg-5 {
    padding-right: 2rem !important;
  }

  [dir="rtl"] .lt-pe-lg-5 {
    padding-left: 2rem !important;
  }

  [dir="ltr"] .lt-pe-lg-6 {
    padding-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-pe-lg-6 {
    padding-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-pe-lg-7 {
    padding-right: 3rem !important;
  }

  [dir="rtl"] .lt-pe-lg-7 {
    padding-left: 3rem !important;
  }

  [dir="ltr"] .lt-pe-lg-8 {
    padding-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-pe-lg-8 {
    padding-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-pe-lg-9 {
    padding-right: 4rem !important;
  }

  [dir="rtl"] .lt-pe-lg-9 {
    padding-left: 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;
  }

  [dir="ltr"] .lt-ps-lg-0 {
    padding-left: 0 !important;
  }

  [dir="rtl"] .lt-ps-lg-0 {
    padding-right: 0 !important;
  }

  [dir="ltr"] .lt-ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ps-lg-1 {
    padding-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ps-lg-2 {
    padding-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ps-lg-3 {
    padding-left: 1rem !important;
  }

  [dir="rtl"] .lt-ps-lg-3 {
    padding-right: 1rem !important;
  }

  [dir="ltr"] .lt-ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ps-lg-4 {
    padding-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ps-lg-5 {
    padding-left: 2rem !important;
  }

  [dir="rtl"] .lt-ps-lg-5 {
    padding-right: 2rem !important;
  }

  [dir="ltr"] .lt-ps-lg-6 {
    padding-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ps-lg-6 {
    padding-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ps-lg-7 {
    padding-left: 3rem !important;
  }

  [dir="rtl"] .lt-ps-lg-7 {
    padding-right: 3rem !important;
  }

  [dir="ltr"] .lt-ps-lg-8 {
    padding-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ps-lg-8 {
    padding-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ps-lg-9 {
    padding-left: 4rem !important;
  }

  [dir="rtl"] .lt-ps-lg-9 {
    padding-right: 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;
  }

  [dir="ltr"] .lt-text-lg-start {
    text-align: left !important;
  }

  [dir="rtl"] .lt-text-lg-start {
    text-align: right !important;
  }

  [dir="ltr"] .lt-text-lg-end {
    text-align: right !important;
  }

  [dir="rtl"] .lt-text-lg-end {
    text-align: left !important;
  }

  .lt-text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  [dir="ltr"] .lt-float-xl-start {
    float: left !important;
  }

  [dir="rtl"] .lt-float-xl-start {
    float: right !important;
  }

  [dir="ltr"] .lt-float-xl-end {
    float: right !important;
  }

  [dir="rtl"] .lt-float-xl-end {
    float: left !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-right: 0 !important;
    margin-left: 0 !important;
  }

  .lt-mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .lt-mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .lt-mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .lt-mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .lt-mx-xl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .lt-mx-xl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .lt-mx-xl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .lt-mx-xl-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .lt-mx-xl-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .lt-mx-xl-auto {
    margin-right: auto !important;
    margin-left: 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;
  }

  [dir="ltr"] .lt-me-xl-0 {
    margin-right: 0 !important;
  }

  [dir="rtl"] .lt-me-xl-0 {
    margin-left: 0 !important;
  }

  [dir="ltr"] .lt-me-xl-1 {
    margin-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-me-xl-1 {
    margin-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-me-xl-2 {
    margin-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-2 {
    margin-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-3 {
    margin-right: 1rem !important;
  }

  [dir="rtl"] .lt-me-xl-3 {
    margin-left: 1rem !important;
  }

  [dir="ltr"] .lt-me-xl-4 {
    margin-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-4 {
    margin-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-5 {
    margin-right: 2rem !important;
  }

  [dir="rtl"] .lt-me-xl-5 {
    margin-left: 2rem !important;
  }

  [dir="ltr"] .lt-me-xl-6 {
    margin-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-6 {
    margin-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-7 {
    margin-right: 3rem !important;
  }

  [dir="rtl"] .lt-me-xl-7 {
    margin-left: 3rem !important;
  }

  [dir="ltr"] .lt-me-xl-8 {
    margin-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-8 {
    margin-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-9 {
    margin-right: 4rem !important;
  }

  [dir="rtl"] .lt-me-xl-9 {
    margin-left: 4rem !important;
  }

  [dir="ltr"] .lt-me-xl-auto {
    margin-right: auto !important;
  }

  [dir="rtl"] .lt-me-xl-auto {
    margin-left: 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;
  }

  [dir="ltr"] .lt-ms-xl-0 {
    margin-left: 0 !important;
  }

  [dir="rtl"] .lt-ms-xl-0 {
    margin-right: 0 !important;
  }

  [dir="ltr"] .lt-ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ms-xl-1 {
    margin-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-2 {
    margin-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-3 {
    margin-left: 1rem !important;
  }

  [dir="rtl"] .lt-ms-xl-3 {
    margin-right: 1rem !important;
  }

  [dir="ltr"] .lt-ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-4 {
    margin-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-5 {
    margin-left: 2rem !important;
  }

  [dir="rtl"] .lt-ms-xl-5 {
    margin-right: 2rem !important;
  }

  [dir="ltr"] .lt-ms-xl-6 {
    margin-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-6 {
    margin-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-7 {
    margin-left: 3rem !important;
  }

  [dir="rtl"] .lt-ms-xl-7 {
    margin-right: 3rem !important;
  }

  [dir="ltr"] .lt-ms-xl-8 {
    margin-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-8 {
    margin-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-9 {
    margin-left: 4rem !important;
  }

  [dir="rtl"] .lt-ms-xl-9 {
    margin-right: 4rem !important;
  }

  [dir="ltr"] .lt-ms-xl-auto {
    margin-left: auto !important;
  }

  [dir="rtl"] .lt-ms-xl-auto {
    margin-right: 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-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .lt-mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .lt-mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .lt-mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .lt-mx-xl-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .lt-mx-xl-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .lt-mx-xl-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .lt-mx-xl-n8 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .lt-mx-xl-n9 {
    margin-right: -4rem !important;
    margin-left: -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;
  }

  [dir="ltr"] .lt-me-xl-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="rtl"] .lt-me-xl-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="ltr"] .lt-me-xl-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-n3 {
    margin-right: -1rem !important;
  }

  [dir="rtl"] .lt-me-xl-n3 {
    margin-left: -1rem !important;
  }

  [dir="ltr"] .lt-me-xl-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-n5 {
    margin-right: -2rem !important;
  }

  [dir="rtl"] .lt-me-xl-n5 {
    margin-left: -2rem !important;
  }

  [dir="ltr"] .lt-me-xl-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-n7 {
    margin-right: -3rem !important;
  }

  [dir="rtl"] .lt-me-xl-n7 {
    margin-left: -3rem !important;
  }

  [dir="ltr"] .lt-me-xl-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="rtl"] .lt-me-xl-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="ltr"] .lt-me-xl-n9 {
    margin-right: -4rem !important;
  }

  [dir="rtl"] .lt-me-xl-n9 {
    margin-left: -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;
  }

  [dir="ltr"] .lt-ms-xl-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n3 {
    margin-left: -1rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n3 {
    margin-right: -1rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n5 {
    margin-left: -2rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n5 {
    margin-right: -2rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n7 {
    margin-left: -3rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n7 {
    margin-right: -3rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="ltr"] .lt-ms-xl-n9 {
    margin-left: -4rem !important;
  }

  [dir="rtl"] .lt-ms-xl-n9 {
    margin-right: -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;
  }

  [dir="ltr"] .lt-pe-xl-0 {
    padding-right: 0 !important;
  }

  [dir="rtl"] .lt-pe-xl-0 {
    padding-left: 0 !important;
  }

  [dir="ltr"] .lt-pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-pe-xl-1 {
    padding-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-pe-xl-2 {
    padding-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-pe-xl-3 {
    padding-right: 1rem !important;
  }

  [dir="rtl"] .lt-pe-xl-3 {
    padding-left: 1rem !important;
  }

  [dir="ltr"] .lt-pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-pe-xl-4 {
    padding-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-pe-xl-5 {
    padding-right: 2rem !important;
  }

  [dir="rtl"] .lt-pe-xl-5 {
    padding-left: 2rem !important;
  }

  [dir="ltr"] .lt-pe-xl-6 {
    padding-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-pe-xl-6 {
    padding-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-pe-xl-7 {
    padding-right: 3rem !important;
  }

  [dir="rtl"] .lt-pe-xl-7 {
    padding-left: 3rem !important;
  }

  [dir="ltr"] .lt-pe-xl-8 {
    padding-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-pe-xl-8 {
    padding-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-pe-xl-9 {
    padding-right: 4rem !important;
  }

  [dir="rtl"] .lt-pe-xl-9 {
    padding-left: 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;
  }

  [dir="ltr"] .lt-ps-xl-0 {
    padding-left: 0 !important;
  }

  [dir="rtl"] .lt-ps-xl-0 {
    padding-right: 0 !important;
  }

  [dir="ltr"] .lt-ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ps-xl-1 {
    padding-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ps-xl-2 {
    padding-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ps-xl-3 {
    padding-left: 1rem !important;
  }

  [dir="rtl"] .lt-ps-xl-3 {
    padding-right: 1rem !important;
  }

  [dir="ltr"] .lt-ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ps-xl-4 {
    padding-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ps-xl-5 {
    padding-left: 2rem !important;
  }

  [dir="rtl"] .lt-ps-xl-5 {
    padding-right: 2rem !important;
  }

  [dir="ltr"] .lt-ps-xl-6 {
    padding-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ps-xl-6 {
    padding-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ps-xl-7 {
    padding-left: 3rem !important;
  }

  [dir="rtl"] .lt-ps-xl-7 {
    padding-right: 3rem !important;
  }

  [dir="ltr"] .lt-ps-xl-8 {
    padding-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ps-xl-8 {
    padding-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ps-xl-9 {
    padding-left: 4rem !important;
  }

  [dir="rtl"] .lt-ps-xl-9 {
    padding-right: 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;
  }

  [dir="ltr"] .lt-text-xl-start {
    text-align: left !important;
  }

  [dir="rtl"] .lt-text-xl-start {
    text-align: right !important;
  }

  [dir="ltr"] .lt-text-xl-end {
    text-align: right !important;
  }

  [dir="rtl"] .lt-text-xl-end {
    text-align: left !important;
  }

  .lt-text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  [dir="ltr"] .lt-float-xxl-start {
    float: left !important;
  }

  [dir="rtl"] .lt-float-xxl-start {
    float: right !important;
  }

  [dir="ltr"] .lt-float-xxl-end {
    float: right !important;
  }

  [dir="rtl"] .lt-float-xxl-end {
    float: left !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-right: 0 !important;
    margin-left: 0 !important;
  }

  .lt-mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .lt-mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .lt-mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .lt-mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .lt-mx-xxl-5 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .lt-mx-xxl-6 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .lt-mx-xxl-7 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .lt-mx-xxl-8 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .lt-mx-xxl-9 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .lt-mx-xxl-auto {
    margin-right: auto !important;
    margin-left: 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;
  }

  [dir="ltr"] .lt-me-xxl-0 {
    margin-right: 0 !important;
  }

  [dir="rtl"] .lt-me-xxl-0 {
    margin-left: 0 !important;
  }

  [dir="ltr"] .lt-me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-me-xxl-1 {
    margin-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-2 {
    margin-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-3 {
    margin-right: 1rem !important;
  }

  [dir="rtl"] .lt-me-xxl-3 {
    margin-left: 1rem !important;
  }

  [dir="ltr"] .lt-me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-4 {
    margin-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-5 {
    margin-right: 2rem !important;
  }

  [dir="rtl"] .lt-me-xxl-5 {
    margin-left: 2rem !important;
  }

  [dir="ltr"] .lt-me-xxl-6 {
    margin-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-6 {
    margin-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-7 {
    margin-right: 3rem !important;
  }

  [dir="rtl"] .lt-me-xxl-7 {
    margin-left: 3rem !important;
  }

  [dir="ltr"] .lt-me-xxl-8 {
    margin-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-8 {
    margin-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-9 {
    margin-right: 4rem !important;
  }

  [dir="rtl"] .lt-me-xxl-9 {
    margin-left: 4rem !important;
  }

  [dir="ltr"] .lt-me-xxl-auto {
    margin-right: auto !important;
  }

  [dir="rtl"] .lt-me-xxl-auto {
    margin-left: 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;
  }

  [dir="ltr"] .lt-ms-xxl-0 {
    margin-left: 0 !important;
  }

  [dir="rtl"] .lt-ms-xxl-0 {
    margin-right: 0 !important;
  }

  [dir="ltr"] .lt-ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-1 {
    margin-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-2 {
    margin-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-3 {
    margin-left: 1rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-3 {
    margin-right: 1rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-4 {
    margin-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-5 {
    margin-left: 2rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-5 {
    margin-right: 2rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-6 {
    margin-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-6 {
    margin-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-7 {
    margin-left: 3rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-7 {
    margin-right: 3rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-8 {
    margin-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-8 {
    margin-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-9 {
    margin-left: 4rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-9 {
    margin-right: 4rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-auto {
    margin-left: auto !important;
  }

  [dir="rtl"] .lt-ms-xxl-auto {
    margin-right: 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-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .lt-mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .lt-mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .lt-mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .lt-mx-xxl-n5 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .lt-mx-xxl-n6 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .lt-mx-xxl-n7 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .lt-mx-xxl-n8 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .lt-mx-xxl-n9 {
    margin-right: -4rem !important;
    margin-left: -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;
  }

  [dir="ltr"] .lt-me-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n3 {
    margin-right: -1rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n3 {
    margin-left: -1rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n5 {
    margin-right: -2rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n5 {
    margin-left: -2rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n7 {
    margin-right: -3rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n7 {
    margin-left: -3rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="ltr"] .lt-me-xxl-n9 {
    margin-right: -4rem !important;
  }

  [dir="rtl"] .lt-me-xxl-n9 {
    margin-left: -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;
  }

  [dir="ltr"] .lt-ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n3 {
    margin-left: -1rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n3 {
    margin-right: -1rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n5 {
    margin-left: -2rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n5 {
    margin-right: -2rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n6 {
    margin-left: -2.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n6 {
    margin-right: -2.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n7 {
    margin-left: -3rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n7 {
    margin-right: -3rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n8 {
    margin-left: -3.5rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n8 {
    margin-right: -3.5rem !important;
  }

  [dir="ltr"] .lt-ms-xxl-n9 {
    margin-left: -4rem !important;
  }

  [dir="rtl"] .lt-ms-xxl-n9 {
    margin-right: -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;
  }

  [dir="ltr"] .lt-pe-xxl-0 {
    padding-right: 0 !important;
  }

  [dir="rtl"] .lt-pe-xxl-0 {
    padding-left: 0 !important;
  }

  [dir="ltr"] .lt-pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-1 {
    padding-left: 0.25rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-2 {
    padding-left: 0.5rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-3 {
    padding-right: 1rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-3 {
    padding-left: 1rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-4 {
    padding-left: 1.5rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-5 {
    padding-right: 2rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-5 {
    padding-left: 2rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-6 {
    padding-right: 2.5rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-6 {
    padding-left: 2.5rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-7 {
    padding-right: 3rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-7 {
    padding-left: 3rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-8 {
    padding-right: 3.5rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-8 {
    padding-left: 3.5rem !important;
  }

  [dir="ltr"] .lt-pe-xxl-9 {
    padding-right: 4rem !important;
  }

  [dir="rtl"] .lt-pe-xxl-9 {
    padding-left: 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;
  }

  [dir="ltr"] .lt-ps-xxl-0 {
    padding-left: 0 !important;
  }

  [dir="rtl"] .lt-ps-xxl-0 {
    padding-right: 0 !important;
  }

  [dir="ltr"] .lt-ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-1 {
    padding-right: 0.25rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-2 {
    padding-right: 0.5rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-3 {
    padding-left: 1rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-3 {
    padding-right: 1rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-4 {
    padding-right: 1.5rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-5 {
    padding-left: 2rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-5 {
    padding-right: 2rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-6 {
    padding-left: 2.5rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-6 {
    padding-right: 2.5rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-7 {
    padding-left: 3rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-7 {
    padding-right: 3rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-8 {
    padding-left: 3.5rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-8 {
    padding-right: 3.5rem !important;
  }

  [dir="ltr"] .lt-ps-xxl-9 {
    padding-left: 4rem !important;
  }

  [dir="rtl"] .lt-ps-xxl-9 {
    padding-right: 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;
  }

  [dir="ltr"] .lt-text-xxl-start {
    text-align: left !important;
  }

  [dir="rtl"] .lt-text-xxl-start {
    text-align: right !important;
  }

  [dir="ltr"] .lt-text-xxl-end {
    text-align: right !important;
  }

  [dir="rtl"] .lt-text-xxl-end {
    text-align: left !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;
  }
}

.gXs {
  --gapM: var(--u8);
  --gapD: var(--u8);
}
.gI {
  --gapD: 0;
  display: inline-grid;
  justify-content: start;
  vertical-align: top;
  grid-auto-flow: column;
  justify-content: start;
  gap: var(--gapD);
  word-break: break-word;
}