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

:root {
  --gray: #55595c;
  --gray-light: #818a91;
  --gray-lighter: #eceeef;
  --gray-lightest: #f2f4fa;

  --meta-text-color: #6b7280;
  --grid-gutter-width: 1rem;

  --padding-base-horizontal: 12px;
  --font-size-small: calc(16px * 0.875);

  --font-size-h1: calc(16px * 2.5);
  --font-size-h2: calc(16px * 2.2);
  --font-size-h3: calc(16px * 1.7);
  --font-size-h4: calc(16px * 1.3);
  --font-size-h5: calc(16px * 1.125);
  --font-size-h6: calc(16px * 1);

  @media (max-width: 768px) {
    --font-size-h1: calc(16px * 2.25);
    --font-size-h2: calc(16px * 2);
    --font-size-h3: calc(16px * 1.75);
    --font-size-h4: calc(16px * 1.5);
    --font-size-h5: calc(16px * 1.25);
    --font-size-h6: calc(16px * 1);
  }

  --line-height-computed: 16px * 1.5;
  --strong-font-weight: 600;
  --input-border-color: #dee1e3;
  --input-focus-border-color: #9ed5e7;

  --lt-spacer: 1rem;

  /* Formatting Content */

  --lt-accordion-border: rgba(196, 196, 196, 1);
  --border-width: 1px;
  --border-radius-base-min: 8px;
  --border-radius-base-max: 48px;
  --border-radius-base: min(
    var(--border-radius-base-min),
    var(--border-radius-base-max)
  );
  --border-radius-lg-min: 16px;
  --border-radius-lg-max: 48px;
  --border-radius-lg: min(
    var(--border-radius-lg-min),
    var(--border-radius-lg-max)
  );

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

  --font-weight-bold: 700;
  --font-family-body: 'Helvetica Now Display', sans-serif;

  --body-color-bg: #f6f3ed;
  --color-text-primary: rgba(25, 25, 25, 1);
  --color-brand-primary: #191919;
  --color-bg-secondary: #fff;
  --color-brand-primary-inverse: #fff;

  --info-callout-color: #1B50F7;
  --warning-callout-color: #DB8709;
  --danger-callout-color: #C70606;
  --success-callout-color: #05BB0C;
  --neutral-callout-color: #d6d6d6;

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

  --info-callout-icon: url(/hc/theming_assets/01HZJHYT7J4JB61FNZW9N0TSYE);
  --warning-callout-icon: url(/hc/theming_assets/01HZJHYYEAV3D03JBXFG09W33B);
  --danger-callout-icon: url(/hc/theming_assets/01HZJHYXYKF4M2ZNRJ9G87FJMD);
  --success-callout-icon: url(/hc/theming_assets/01HZJHYYDDE6R22MQN0GJRMY3D);
  --copy-code-icon: url(/hc/theming_assets/01HZJHYV72BAZX4BMJADNZJZGH);
  --anchor-list-icon: url(/hc/theming_assets/01HZJHYXYPETM42KDQFNCXJAKV);
  --anchor-file-icon: url(/hc/theming_assets/01HZJHYY378YE93WWMS7NQR43X);
  --blockqoute-icon: url(/hc/theming_assets/01HZJHYXGG6VDJD0KP9XTY6ZWN);

  --dots-left-bg: url(/hc/theming_assets/01HZJHYXJ3MVWRAJXGK7DJAR2V);

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

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

  --color-table-bg-hover: #d6d6d6;
  --color-border: rgba(196, 196, 196, 1);

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

  /* End of Formatting Content */
}
/* Reset the box-sizing */
*,
*:before,
*:after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :focus {
    outline-offset: 5px;
    transition: outline-offset 0.25s ease;
  }
}

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

body {
  font-family: 'Helvetica Now Display', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(25, 25, 25, 1);
  background-color: #f6f3ed;
  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: rgba(25, 25, 25, 1);
  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(196, 196, 196, 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: 'Helvetica Now Display', 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);
}

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

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%;
  }
}
/*  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],
.powered-by-zendesk {
  display: none !important;
}

.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%);
}
/* Layout */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
/* 
Normalize non-controls

Restyle and baseline non-control form elements. 
*/
fieldset {
  /*  
  Chrome and Firefox set a `min-width: min-content;` on fieldsets, 
  so we reset that to ensure it behaves more like a standard block element
  See https:github.com/twbs/bootstrap/issues/12359. 
  */
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: calc(var(--line-height-computed));
  font-size: calc(16px * 1.5);
  line-height: inherit;
  color: #373a3c;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}
/* 
 Normalize form controls

 While most of our form styles require extra classes, some basic normalization
 is required to ensure optimum display with or without those classes to better
 address browser inconsistencies. 
*/
/*  Override content-box in Normalize (* isn't specific enough) */
input[type="search"] {
  box-sizing: border-box;
}
/*  Position radios and checkboxes better */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
/*  Set the height of file controls to match text inputs */
input[type="file"] {
  display: block;
}
/*  Make range inputs behave like textual form controls */
input[type="range"] {
  display: block;
  width: 100%;
}
/*  Make multiple select elements height not fixed */
select[multiple],
select[size] {
  height: auto;
}
/*  Focus for file, radio, and checkbox */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/*  Adjust output element */
output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
}
/* 
 Common form controls

 Shared size and type resets for form controls. Apply `.form-control` to any
 of the following form controls:
 
*/
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.nesty-input {
  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: 1px solid var(--input-border-color);
  border-radius: 8px;
  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::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;
}

input[type="search"] {
  border-color: #1919194d;
  border-radius: 100px;
}
/* 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: 1px;
}
/*  Search inputs in iOS */
/* 
 This overrides the extra rounded corners on search inputs in iOS so that our
 `.form-control` class can properly style them. Note that this cannot simply
 be added to `.form-control` as it's not specific enough. For details, see
 https:github.com/twbs/bootstrap/issues/11586. */
input[type="search"] {
  -webkit-appearance: none;
}
/*  Special styles for iOS temporal inputs

 In Mobile Safari, setting `display: block` on temporal inputs causes the
 text within the input to become vertically misaligned. As a workaround, we
 set a pixel line-height that matches the given height of the input, but only
 for Safari. */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: calc(16px * 1.5 * 2.5);
  }
}
/*  Form groups

 Designed to help with the organization and spacing of vertical forms. For
 horizontal forms, use the predefined grid classes. */
.form-field {
  margin-bottom: calc(var(--line-height-computed));
}

.form-field .optional {
  color: #4c4c4c;
}

[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: #595959; /* lighten the text some for contrast */
}

ul[data-hc-pills-container],
ul[data-hc-pills-container][data-hc-focus="true"] {
  border-width: 1px;
}

ul[data-hc-pills-container] {
  margin: 0 0 calc(1px * -1);
  border-color: var(--input-border-color);
  border-radius: 8px;
}

ul[data-hc-pills-container][data-hc-focus="true"] {
  position: relative;
  z-index: 2;
  border-color: var(--input-focus-border-color);
}

.lt-comment-form__ccs ul[data-hc-pills-container] {
  border-radius: 8px 8px 0 0;
}

.lt-container {
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
}

@media (min-width: 576px) {
  .lt-container {
    padding-right: calc(var(--grid-gutter-width) * 2);
    padding-left: calc(var(--grid-gutter-width) * 2);
  }
}

.lt-container[data-topics],
.lt-container[data-products] {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 576px) {
  .lt-container[data-topics],
  .lt-container[data-products] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) {
  .lt-container[data-topics],
  .lt-container[data-products] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 768px) {
  .lt-container[data-topics],
  .lt-container[data-products] {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .lt-container[data-topics],
  .lt-container[data-products] {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

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

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

.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-layout__main {
  overflow: hidden;
}

.lt-topbar {
  font-weight: 700;
  color: #191919;
  background-color: #f6f3ed;
}

.lt-topbar__logo {
  display: block;
  max-height: 50px !important;
}

.lt-topbar__link {
  font-weight: 700;
  background-color: transparent;
  border: 0;
}

.lt-topbar__link,
.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  color: #191919;
}

@media (max-width: 991px) {
  .lt-topbar__link {
    color: rgba(25, 25, 25, 1);
  }

  .lt-topbar__link:hover,
  .lt-topbar__link:focus,
  .lt-topbar__link:active {
    color: rgba(25, 25, 25, 1);
  }

  .lt-topbar__controls {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 80%;
    max-width: 250px;
    padding: 2rem;
    color: rgba(25, 25, 25, 1);
    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: 1.5rem;
  }

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

.lt-footer {
  line-height: 1.1;
  color: rgba(25, 25, 25, 1);
  background-color: rgba(246, 243, 237, 1);
}

.lt-footer__copyright a {
  color: rgba(255, 255, 255, 1);
}

.lt-footer__copyright p:last-of-type {
  margin-bottom: 0;
}

.lt-footer__social-link {
  padding: calc(1.5rem / 2);
  font-size: 1.5rem !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;
}
/* Components */
.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: 8px;
  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--topbar {
    width: 100%;
  }

  .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-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.625rem 1rem;
  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;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
  touch-action: manipulation;
  text-decoration: none !important;
}

.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-organization-subscribe button:focus,
.lt-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-organization-subscribe button:hover,
.lt-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: #191919;
  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-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-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-organization-subscribe button,
.lt-subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.recent-activity-controls a {
  color: #191919;
  background-color: transparent;
  border-color: #191919;
}

.lt-btn--default:hover,
.lt-btn--default:focus,
.lt-btn--default:active,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active,
.lt-community-follow button:hover,
.lt-community-follow button:focus,
.lt-community-follow button:active,
.lt-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-organization-subscribe button:hover,
.lt-organization-subscribe button:focus,
.lt-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: #000;
  background-color: transparent;
  border-color: #000;
}

input[type="submit"],
.lt-btn--primary {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

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: #000;
  border-color: #000;
}

.lt-btn--topbar {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.lt-btn--topbar:hover,
.lt-btn--topbar:focus,
.lt-btn--topbar:active {
  color: #000;
  background-color: transparent;
  border-color: #000;
}

@media (max-width: 991px) {
  .lt-btn--topbar {
    display: inline-flex;
    width: 100%;
    padding: 0;
    color: rgba(25, 25, 25, 1);
    border: 0;
    justify-content: space-between;
    align-items: center;
  }

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

  [dir="rtl"] .lt-btn--topbar {
    text-align: right;
  }

  .lt-btn--topbar:active,
  .lt-btn--topbar:hover,
  .lt-btn--topbar:focus {
    color: rgba(25, 25, 25, 1);
    background-color: transparent;
    box-shadow: none;
  }
}

.lt-btn--print {
  padding: 0 !important;
  font-size: var(--font-size-h5) !important;
  color: rgba(25, 25, 25, 1) !important;
  border: 0 !important;
}

.lt-btn--footer {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #191919 !important;
  background: #fff !important;
}

.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;
  font-size: 0.75rem;
  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: #191919;
  border: 2px solid #f6f3ed;
  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: 14px;
  color: var(--meta-text-color);
}

.lt-meta__item {
  display: inline-block;
}

[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.75rem;
  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: 8px;
}

.breadcrumbs > li {
  display: inline-block;
}

.breadcrumbs > li + li:before {
  padding: 0 5px;
  color: #6b7280;
  content: "\00a0";
  content: "› ";
}

.breadcrumbs > li:last-child a {
  color: rgba(25, 25, 25, 1);
}

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

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

.lt-breadcrumbs--search-results {
  padding: 0;
  font-size: var(--font-size-small);
}

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

[dir="ltr"] .lt-menu-toggle {
  margin-right: -0.5rem;
}

[dir="rtl"] .lt-menu-toggle {
  margin-left: -0.5rem;
}

@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: #191919;
  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;
  font-size: 14px;
}

.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 {
  position: relative;
  padding: 2px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: rgba(25, 25, 25, 1);
  border-radius: 8px;
}

.lt-status-label--pending:before,
.lt-status-label--with-ticket:before,
.lt-status-label--solved:before,
.lt-status-label--closed:before,
.lt-status-label--new:before,
.lt-status-label--open:before,
.lt-status-label--answered:before,
.lt-status-label--official:before,
.lt-status-label--completed:before,
.lt-status-label--answered:before,
.lt-status-label--planned:before,
.lt-status-label--not-planned:before,
.lt-post-status--not-planned:before {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 8px;
  opacity: 0.15;
}

[dir="ltr"] .lt-status-label--pending:before,
[dir="ltr"] .lt-status-label--with-ticket:before,
[dir="ltr"] .lt-status-label--solved:before,
[dir="ltr"] .lt-status-label--closed:before,
[dir="ltr"] .lt-status-label--new:before,
[dir="ltr"] .lt-status-label--open:before,
[dir="ltr"] .lt-status-label--answered:before,
[dir="ltr"] .lt-status-label--official:before,
[dir="ltr"] .lt-status-label--completed:before,
[dir="ltr"] .lt-status-label--answered:before,
[dir="ltr"] .lt-status-label--planned:before,
[dir="ltr"] .lt-status-label--not-planned:before,
[dir="ltr"] .lt-post-status--not-planned:before {
  left: 0;
}

[dir="rtl"] .lt-status-label--pending:before,
[dir="rtl"] .lt-status-label--with-ticket:before,
[dir="rtl"] .lt-status-label--solved:before,
[dir="rtl"] .lt-status-label--closed:before,
[dir="rtl"] .lt-status-label--new:before,
[dir="rtl"] .lt-status-label--open:before,
[dir="rtl"] .lt-status-label--answered:before,
[dir="rtl"] .lt-status-label--official:before,
[dir="rtl"] .lt-status-label--completed:before,
[dir="rtl"] .lt-status-label--answered:before,
[dir="rtl"] .lt-status-label--planned:before,
[dir="rtl"] .lt-status-label--not-planned:before,
[dir="rtl"] .lt-post-status--not-planned:before {
  right: 0;
}

.lt-status-label--pending:before {
  background-color: #DB8709;
}

.lt-status-label--with-ticket:before {
  background-color: #191919;
}

.lt-status-label--solved:before,
.lt-status-label--closed:before {
  background-color: #05BB0C;
}

.lt-status-label--new:before,
.lt-status-label--open:before {
  background-color: #C70606;
}

.lt-status-label--official:before {
  background-color: #191919;
}

.lt-status-label--completed:before,
.lt-status-label--answered:before {
  background-color: #05BB0C;
}

.lt-status-label--planned:before {
  background-color: #191919;
}

.lt-status-label--not-planned:before {
  background-color: var(--gray-lighter);
}

.lt-hero-unit {
  position: relative;

  padding-top: 10rem;
  padding-bottom: 10rem;
  color: #fff;
}

@media (min-width: 992px) {
  .lt-hero-unit {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

@media (min-width: 992px) {
  .lt-hero-unit__title {
    text-align: center !important;
  }
}

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

[dir="rtl"] .lt-hero-unit__title {
  text-align: right;
}

.lt-hero-unit__image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem var(--grid-gutter-width);
}

@media (min-width: 576px) {
  .lt-hero-unit__image {
    padding: 1.25rem clamp(1.8rem, 2.22222vw, 2.2rem);
  }
}

.lt-hero-unit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

[dir="ltr"] .lt-hero-unit__image {
  left: 0;
}

[dir="rtl"] .lt-hero-unit__image {
  right: 0;
}

@media (min-width: 992px) {
  .lt-hero-unit__title {
    font-size: calc(var(--font-size-h1) * 1.2);
  }
}

.lt-custom-blocks__items {
  position: relative;
}

@media (min-width: 768px) {
  .lt-custom-blocks__items:before {
    position: absolute;
    top: -64px;
    z-index: -1;
    display: none;
    width: 256px;
    height: 256px;
    content: "";
    background-image: var(--dots-left-bg);
  }

  [dir="ltr"] .lt-custom-blocks__items:before {
    left: -67px;
  }

  [dir="rtl"] .lt-custom-blocks__items:before {
    right: -67px;
  }
}

.lt-custom-block__link {
  width: 100%;
  color: $custom_blocks_text_color;
  background-color: #fff;
  border-radius: 8px;
  transition: color 250ms ease;
}

.lt-custom-block__link:active,
.lt-custom-block__link:hover,
.lt-custom-block__link:focus {
  color: rgba(25, 25, 25, 1);
}

.lt-custom-block__icon {
  width: $icon_height;
  height: $icon_height;
}

.lt-block-list {
  position: relative;
}

.lt-block-list-item__icon {
  padding: 8px;
  color: #fff;
  background-color: #191919;
  border-radius: 8px;
}

.lt-block-list-item__link {
  color: rgba(25, 25, 25, 1);
  text-decoration: none;
  background-color: #fff;
  border-radius: 8px;
  flex-grow: 1;
}
/* .lt-block-list-item__link:active,
.lt-block-list-item__link:focus,
.lt-block-list-item__link:hover {
  background-color: #f2f4fa;
} */
.lt-block-list-item__title {
  margin-bottom: 0;
  word-break: break-word;
}

.lt-block-list-item__desc {
  margin-top: 1rem;
}

.lt-block-list-item__see-all {
  font-weight: bold;
  color: rgba(25, 25, 25, 1);
}

.recent-activity {
  margin-bottom: 4rem;
}

.recent-activity-item-link {
  display: block;
  margin-bottom: 0.5rem;
}

.recent-activity-header {
  margin-bottom: 2rem;
}

.recent-activity-list {
  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: 992px) {
  .recent-activity-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.recent-activity-item {
  display: flex;
  padding: 2.5rem 2rem;
  flex-direction: column;
  border: 2px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
  align-items: flex-start;
}

.recent-activity-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: var(--font-size-small);
  color: var(--meta-text-color);
}

.recent-activity-item-parent {
  padding: 0.25rem 1rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-size-small);
  font-weight: var(--strong-font-weight);
  color: #fff;
  background-color: #191919;
  border-radius: 4rem;
}

.recent-activity-item-parent:hover,
.recent-activity-item-parent:active,
.recent-activity-item-parent:focus {
  color: #fff;
  background-color: rgba(25, 25, 25, 1);
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
}

[dir="ltr"] .recent-activity-comment-icon:after {
  margin-left: 4px;
}

[dir="rtl"] .recent-activity-comment-icon:after {
  margin-right: 4px;
}

.recent-activity-controls {
  padding-top: 2rem;
}

.lt-footer-submit-ticket {
  background: #f6f3ed;
  background-color: #f6f3ed;
  border-radius: 8px;
}

.lt-footer-submit-ticket__title {
  color: #000;
}

.lt-footer-submit-ticket__subtitle {
  color: #000;
}

.lt-footer-submit-ticket__btn {
  padding-right: 4rem;
  padding-left: 4rem;
  margin-top: 1rem;
  font-size: 20px;
  font-weight: 700;
  background-color: #000;
  border-color: #000;
  border-radius: 100px;
  text-decoration: none !important;
}

.share {
  white-space: nowrap;
  list-style: none;
}

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

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

.share li {
  position: relative;
  display: inline-flex;
  margin-bottom: 5px;
  vertical-align: top;
}

.share a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  touch-action: manipulation;
  color: rgba(25, 25, 25, 1);
}

.share a:active {
  background-image: none;
}

.share svg {
  width: 20px;
  height: 20px;
}

.lt-new-request-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.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: 8px;
}

.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: 1px;
  border-radius: 8px;
}

.upload-dropzone,
.upload-dropzone a {
  font-size: var(--font-size-small);
}

.upload-dropzone span {
  color: rgba(25, 25, 25, 1);
}

.lt-error-page {
  max-width: 600px;
}

.lt-error-page__articles {
  border: 2px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
}

.pagination-list {
  margin-top: 0;
  list-style: none;
}

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

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

.pagination-next,
.pagination-prev,
.pagination-first,
.pagination-last {
  display: inline-block;
}

[dir="ltr"] .pagination-next-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="ltr"] .pagination-prev-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

.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(196, 196, 196, 1);
  border-radius: 8px;
}

.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: #05BB0C;
  border-color: #05BB0C;
}

.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: #048909;
  border-color: #037f08;
}

.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: #C70606;
  border-color: #C70606;
}

.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: #950505;
  border-color: #8c0404;
}

.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: #037f08 !important;
  border-color: #037f08 !important;
}

.satisfaction-box input[type="radio"][checked="checked"][value="bad"] + label {
  color: #fff !important;
  background-color: #8c0404 !important;
  border-color: #8c0404 !important;
}

.satisfaction-box label.disabled {
  margin-bottom: calc(var(--line-height-computed)) !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_good"] {
  color: #05BB0C !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_bad"] {
  color: #C70606 !important;
}

.satisfaction-comment {
  margin-top: 15px;
}

.satisfaction-box .satisfaction-submit {
  font-size: calc(16px - 5px) !important;
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.satisfaction-box .satisfaction-submit:hover,
.satisfaction-box .satisfaction-submit:focus,
.satisfaction-box .satisfaction-submit:active {
  color: #e0e0e0;
  background-color: #000;
  border-color: #000;
}

.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;
  width: 3rem;
  height: 3rem;
  font-size: 2rem !important;
  color: rgba(25, 25, 25, 1);
  text-align: center;
  cursor: pointer;
  background-color: #f6f3ed;
  border: 1px solid rgba(25, 25, 25, 1);
  border-radius: 8px;
  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: 1px solid rgba(196, 196, 196, 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: rgba(25, 25, 25, 1);
  border-bottom: 1px solid rgba(196, 196, 196, 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);
}

@media (max-width: 991px) {
  .lt-user-info {
    width: 100%;
    padding-bottom: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(196, 196, 196, 1);
    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 {
  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 {
  text-align: center;
  border-radius: 8px;
}

.lt-profile-header__avatar {
  display: inline-block;
  margin-bottom: 16px;
}

.lt-profile-header__private-badge {
  display: inline-block;
  margin-bottom: calc(var(--line-height-computed));
  background-color: #191919;
}

.lt-profile-header__description {
  word-break: break-all;
  word-break: break-word;
}

[dir="ltr"] .lt-profile__buttons > * + *,
[dir="ltr"] [data-action="userProfileActions"] > * + * {
  margin-left: var(--grid-gutter-width);
}

[dir="rtl"] .lt-profile__buttons > * + *,
[dir="rtl"] [data-action="userProfileActions"] > * + * {
  margin-right: var(--grid-gutter-width);
}

.lt-profile-stats {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: calc(16px - 2px);
  color: var(--meta-text-color);
  list-style: none;
}

[dir="ltr"] .lt-profile-stats {
  padding-left: 0;
}

[dir="rtl"] .lt-profile-stats {
  padding-right: 0;
}

.lt-profile-stats__stat {
  margin-bottom: calc(var(--line-height-computed) / 4);
}

@media (max-width: 767px) {
  .lt-profile-stats__stat {
    display: block;
  }

  .lt-profile-stats__stat:before {
    display: none;
  }
}

[dir="ltr"] .lt-profile-stats__label {
  margin-right: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .lt-profile-stats__label {
  margin-left: calc(var(--padding-base-horizontal) / 2);
}

.lt-profile-stats__value {
  color: rgba(25, 25, 25, 1);
}

.lt-profile-nav {
  margin-bottom: calc(var(--line-height-computed));
  overflow: hidden;
  font-size: var(--font-size-small);
  font-weight: 600;
  background-color: var(--gray-lightest);
  border-radius: 8px;
}

.lt-profile-nav__items {
  margin: 0;
  list-style: none;
}

[dir="ltr"] .lt-profile-nav__items {
  padding-left: 0;
}

[dir="rtl"] .lt-profile-nav__items {
  padding-right: 0;
}

.lt-profile-nav__item {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .lt-profile-nav__item {
    display: inline-block;
    vertical-align: middle;
  }
}

.lt-profile-nav__item a {
  display: block;
  color: rgba(25, 25, 25, 1);
}

.lt-profile-nav__item.is-active {
  color: #fff;
  background-color: #191919;
}

.lt-profile-nav__item.is-active,
.lt-profile-nav__item a {
  padding: calc(var(--line-height-computed) / 1.5)
    var(--padding-base-horizontal);
  line-height: 1;
}

[dir="ltr"] .lt-profile-nav__item:after {
  right: var(--padding-base-horizontal) !important;
}

[dir="rtl"] .lt-profile-nav__item:after {
  left: var(--padding-base-horizontal) !important;
}

.lt-profile-section {
  width: 100%;
}

.lt-profile-section__header {
  margin-bottom: calc(var(--line-height-computed));
}

.lt-profile-section__title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-h3);
}

.lt-profile-section__description {
  font-size: var(--font-size-small);
  color: var(--meta-text-color);
}

@media (min-width: 576px) {
  .lt-profile-section__description {
    padding-bottom: 0;
  }
}

.lt-profile-contribution {
  position: relative;
  padding: calc(var(--line-height-computed) / 2) var(--grid-gutter-width);

  word-wrap: break-word;
  background-color: var(--gray-lightest);

  border-radius: 8px;
}

.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: 1px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
}

.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-skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  padding: 20px;
  margin: 20px;
  overflow: hidden;
  font-size: 14px;
  color: white;
  color: rgba(25, 25, 25, 1);
  background-color: #fff;
  border: 1px solid rgba(25, 25, 25, 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;
  }
}

.lt-promoted-articles-accordion {
  border: 2px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
}

.lt-promoted-articles-accordion-item + .lt-promoted-articles-accordion-item {
  border-top: 2px solid rgba(196, 196, 196, 1);
}

.lt-promoted-articles-item:nth-child(n + 9) {
  display: none;
}

.lt-promoted-articles-accordion-item__title {
  position: relative;
  font-weight: bold;
  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: rgba(25, 25, 25, 1);
}

.lt-promoted-articles-accordion-item__title:before {
  position: absolute;
  top: 50%;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  border-bottom: 2px solid #191919;
  transition: transform 0.3s;
}

[dir="ltr"] .lt-promoted-articles-accordion-item__title:before {
  right: 1.5rem;
  border-left: 2px solid #191919;
  transform: rotate(-45deg) translateY(-50%);
}

[dir="rtl"] .lt-promoted-articles-accordion-item__title:before {
  left: 1.5rem;
  border-right: 2px solid #191919;
  transform: rotate(45deg) translateY(-50%);
}

.lt-promoted-articles-accordion-item__content {
  display: none;
}

.lt-popular-searches__item {
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}

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

.lt-contact-box {
  display: flex;
  padding: 2.5rem 2rem;
  font-size: 0.875rem;
  color: rgba(25, 25, 25, 1);
  flex-direction: column;
  border: 2px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
  align-items: flex-start;
}

.lt-contact-box__icon {
  width: 2rem;
  height: 2rem;
}

.lt-contact-box__text {
  color: var(--meta-text-color);
}

.lt-info-block {
  color: #fff;
  background-color: #191919;
  /* border: 1px solid rgba(25, 25, 25, 1); */
  border-radius: 8px;
}

.lt-info-block-container + .lt-home-container,
.lt-home-container:first-child {
  padding-top: 4rem;
}

.lt-info-block-container + .lt-footer-submit-ticket {
  margin-top: 4rem;
}

.lt-vote {
  width: 100%;
}

.lt-vote [aria-selected="true"] {
  z-index: 2;
}

.lt-vote__sum {
  display: block;
  width: 100%;
  padding-top: calc(var(--line-height-computed) / 4);
  padding-bottom: calc(var(--line-height-computed) / 4);
  font-weight: var(--strong-font-weight);
  text-align: center;
}

.lt-vote__control {
  position: relative;
  z-index: 1;
  display: block !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: rgba(25, 25, 25, 1);
  border-color: rgba(196, 196, 196, 1);
}

.lt-vote__control:hover,
.lt-vote__control:active {
  z-index: 2;
}

.lt-vote__control--active {
  color: rgba(25, 25, 25, 1);
  border-color: rgba(25, 25, 25, 1);
}

.custom-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

@media all {
  .custom-header aside,
  .custom-header header,
  .custom-header nav {
    display: block;
  }

  .custom-header a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
  }

  .custom-header a:active,
  .custom-header a:hover {
    outline-width: 0;
  }

  .custom-header svg:not(:root) {
    overflow: hidden;
  }

  .custom-header button,
  .custom-header input {
    margin: 0;
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
  }

  .custom-header button {
    overflow: visible;
  }

  .custom-header button {
    text-transform: none;
  }

  .custom-header button,
  .custom-header html [type="button"] {
    -webkit-appearance: button;
  }

  .custom-header input {
    overflow: visible;
  }

  .custom-header [type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }

  .custom-header *,
  .custom-header *:before,
  .custom-header *:after {
    box-sizing: inherit;
  }

  .custom-header button {
    padding: 0;
    line-height: 1;
    background: transparent;
    border: 0;
    border-radius: 0.25em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-header [type="search"] {
    display: block;
    width: 100%;
    height: 2.4375rem;
    box-sizing: border-box;
    padding: 0.5rem;
    margin: 0 0 1rem;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #303030;
    background-color: #fff;
    border: 0.125rem solid #dddedc;
    border-radius: 0.25em;
    box-shadow: none;
    transition: border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-header [type="search"]:focus {
    background-color: #fff;
    border: 0.125rem solid #a3a3a3;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease-in-out;
  }

  .custom-header input::-moz-placeholder {
    color: #bfbebe;
  }

  .custom-header input::placeholder {
    color: #bfbebe;
  }

  .custom-header input:disabled {
    cursor: not-allowed;
    background-color: #efefef;
  }

  .custom-header [type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25em;
  }

  .custom-header input[type="search"] {
    box-sizing: border-box;
  }

  .custom-header h2 {
    margin: 0;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 1.9444444444vw, 1.925rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.005em;
  }

  .custom-header h3 {
    margin: 0;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 1.6666666667vw, 1.65rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.0125em;
  }

  .custom-header .h4 {
    margin: 0;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.25rem, 1.3888888889vw, 1.375rem);
    font-weight: 700;
    letter-spacing: -0.0125em;
  }

  .custom-header .h5 {
    margin: 0;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.1111111111vw, 1.1rem);
    font-weight: 700;
    line-height: 1.2;
  }

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

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

  .custom-header p {
    margin-top: 0;
    font-size: clamp(1rem, 1.1111111111vw, 1.1rem);
  }

  .custom-header p:last-child {
    margin-bottom: 0;
  }

  .custom-header a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }

  .custom-header button {
    cursor: pointer;
  }

  .custom-header .o-link {
    position: relative;
    display: inline-block;
    color: #191919;
    vertical-align: middle;
    transition: color 0.5s ease-out;
  }

  .custom-header .o-link:hover,
  .custom-header .o-link:focus {
    color: #191919;
  }

  .custom-header .o-link:before {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 0.3s;
    transform: scaleZ(1);
  }

  [dir="ltr"] .custom-header .o-link:before {
    left: 0;
    transform-origin: 0% 50%;
  }

  [dir="rtl"] .custom-header .o-link:before {
    right: 0;
    transform-origin: 100% 50%;
  }

  .custom-header .o-link:hover:before {
    transform: scale3d(0, 1, 1);
  }

  [dir="ltr"] .custom-header .o-link:hover:before {
    transform-origin: 100% 50%;
  }

  [dir="rtl"] .custom-header .o-link:hover:before {
    transform-origin: 0% 50%;
  }

  .custom-header .o-link--reversed:before {
    transform: scale3d(0, 1, 1);
  }

  [dir="ltr"] .custom-header .o-link--reversed:before {
    transform-origin: 100% 50%;
  }

  [dir="rtl"] .custom-header .o-link--reversed:before {
    transform-origin: 0% 50%;
  }

  .custom-header .o-link--reversed:hover:before {
    transform: scaleZ(1);
  }

  [dir="ltr"] .custom-header .o-link--reversed:hover:before {
    transform-origin: 0% 50%;
  }

  [dir="rtl"] .custom-header .o-link--reversed:hover:before {
    transform-origin: 100% 50%;
  }
}

@media print, screen and (min-width: 64em) {
  .custom-header h2 {
    font-size: clamp(2.25rem, 2.7777777778vw, 2.75rem);
  }

  .custom-header h3 {
    font-size: clamp(1.8rem, 2.2222222222vw, 2.2rem);
  }

  .custom-header .h4 {
    font-size: clamp(1.35rem, 1.6666666667vw, 1.65rem);
  }

  .custom-header .h5 {
    font-size: clamp(1.125rem, 1.3888888889vw, 1.375rem);
  }

  .custom-header p {
    font-size: clamp(0.9rem, 1.1111111111vw, 1.1rem);
  }
}

.custom-header .mod_header_new_f4Z8ra_Header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: transform 0.2s;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header {
  left: 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header {
  right: 0;
}

.custom-header .mod_header_new_f4Z8ra_Header,
.custom-header .mod_header_new_f4Z8ra_Header * {
  box-sizing: border-box;
}

.custom-header .mod_header_new_f4Z8ra_Header__inner {
  position: relative;
  display: flex;
  padding: 0 clamp(1.25rem, 1.38889vw, 1.375rem);
  background-color: #fdfaf4;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.25rem, 1.38889vw, 1.375rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__inner:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
  content: "";
  background: rgba(25, 25, 25, 0.2);
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header__inner:after {
  left: 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header__inner:after {
  right: 0;
}

.custom-header .mod_header_new_f4Z8ra_Header__logo {
  position: relative;
  z-index: 1;
  display: block;
  display: flex;
  width: clamp(3.4375rem, 3.81944vw, 3.78125rem);
  text-decoration: none;
  align-self: stretch;
}

.custom-header .mod_header_new_f4Z8ra_Header__logo__full {
  position: absolute;
  top: 0;
  display: none;
  width: 100%;
  color: #fff;
  background: #2c2e33;
  transition: opacity 0.2s, visibility 0.2s;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header__logo__full {
  left: 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header__logo__full {
  right: 0;
}

.custom-header .mod_header_new_f4Z8ra_Header__logo__full svg {
  display: inline-block;
  width: clamp(4.8125rem, 5.34722vw, 5.29375rem);
  height: clamp(3.4375rem, 3.81944vw, 3.78125rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__logo__scroll {
  display: flex;
  width: 100%;
  height: clamp(3.4375rem, 3.81944vw, 3.78125rem);
  justify-content: center;
  align-items: center;
}

.custom-header .mod_header_new_f4Z8ra_Header__logo__scroll svg {
  display: inline-block;
  width: clamp(3.4375rem, 3.81944vw, 3.78125rem);
  height: clamp(2rem, 2.22222vw, 2.2rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__nav {
  align-self: stretch;
  display: none;
}

.custom-header .mod_header_new_f4Z8ra_Header__nav__list {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: clamp(1.8rem, 2.22222vw, 2.2rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button,
.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > a {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: clamp(0.3125rem, 0.347222vw, 0.34375rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button:after,
.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > a:after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: currentColor;
  transition: transform 0.3s;
  transform: scaleX(0);
}

[dir="ltr"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li
  > button:after,
[dir="ltr"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li
  > a:after {
  left: 0;
  transform-origin: 100%;
}

[dir="rtl"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li
  > button:after,
[dir="rtl"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li
  > a:after {
  right: 0;
  transform-origin: 0%;
}

.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button svg {
  width: clamp(0.875rem, 0.972222vw, 0.9625rem);
  height: clamp(0.5rem, 0.555556vw, 0.55rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button path {
  fill: currentColor;
}

.custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > button:after,
.custom-header .mod_header_new_f4Z8ra_Header__nav__list > li:hover > a:after {
  transform: scale(1);
}

[dir="ltr"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > button:after,
[dir="ltr"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > a:after {
  transform-origin: 0%;
}

[dir="rtl"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > button:after,
[dir="rtl"]
  .custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > a:after {
  transform-origin: 100%;
}

.custom-header
  .mod_header_new_f4Z8ra_Header__nav__list
  > li:hover
  > .mod_header_new_f4Z8ra_Dropdown {
  visibility: visible;
  opacity: 1;
}

.custom-header .mod_header_new_f4Z8ra_Header__actions {
  display: flex;
  align-items: center;
  gap: clamp(1.125rem, 1.38889vw, 1.375rem);
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header__actions {
  margin-left: auto;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header__actions {
  margin-right: auto;
}

.custom-header .mod_header_new_f4Z8ra_Header__search {
  display: none;
}

.custom-header .mod_header_new_f4Z8ra_Header__wishlist,
.custom-header .mod_header_new_f4Z8ra_Header__account,
.custom-header .mod_header_new_f4Z8ra_Header__cart {
  position: relative;
  display: inline-block;
  width: clamp(1.875rem, 2.08333vw, 2.0625rem);
  height: clamp(1.875rem, 2.08333vw, 2.0625rem);
}

.custom-header .mod_header_new_f4Z8ra_Header__wishlist svg,
.custom-header .mod_header_new_f4Z8ra_Header__account svg,
.custom-header .mod_header_new_f4Z8ra_Header__cart svg {
  width: 100%;
  height: 100%;
}

.custom-header .mod_header_new_f4Z8ra_Header__wishlist:before {
  position: absolute;
  top: 0;
  width: clamp(0.625rem, 0.694444vw, 0.6875rem);
  height: clamp(0.625rem, 0.694444vw, 0.6875rem);
  visibility: hidden;
  content: "";
  background: #c65f5f;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header__wishlist:before {
  right: 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header__wishlist:before {
  left: 0;
}

.custom-header .mod_header_new_f4Z8ra_Header__cart__count {
  position: absolute;
  top: 0;
  display: flex;
  width: clamp(1.375rem, 1.52778vw, 1.5125rem);
  height: clamp(1.375rem, 1.52778vw, 1.5125rem);
  overflow: hidden;
  font-size: clamp(0.625rem, 0.694444vw, 0.6875rem);
  font-weight: 700;
  color: #fff;
  background: #c65f5f;
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Header__cart__count {
  right: 0;
  transform: translate(33%, -33%);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Header__cart__count {
  left: 0;
  transform: translate(-33%, -33%);
}

.custom-header .mod_header_new_f4Z8ra_Header__cart__count[data-item-count="0"] {
  visibility: hidden;
  opacity: 0;
}

.custom-header .mod_header_new_f4Z8ra_Header__hamburger path {
  fill: #191919;
}

.custom-header .mod_header_new_f4Z8ra_SearchForm {
  position: relative;
  z-index: 1;
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__inner {
  position: relative;
  display: block;
  width: 100%;
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__inner:before {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: clamp(1rem, 1.11111vw, 1.1rem);
  height: clamp(1rem, 1.11111vw, 1.1rem);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='17' viewBox='0 0 18 17' fill='none'%3E%3Cpath d='M16.4855 16.6539L10.224 10.3924C9.72399 10.818 9.14899 11.1475 8.49899 11.3808C7.84899 11.6142 7.19579 11.7308 6.53937 11.7308C4.9377 11.7308 3.58216 11.1764 2.47274 10.0676C1.36331 8.9588 0.808594 7.60399 0.808594 6.00319C0.808594 4.40239 1.363 3.04654 2.47182 1.93564C3.58064 0.824737 4.93544 0.269287 6.53624 0.269287C8.13706 0.269287 9.49291 0.823996 10.6038 1.93341C11.7147 3.04283 12.2701 4.39838 12.2701 6.00006C12.2701 6.69493 12.1471 7.36736 11.9009 8.01736C11.6548 8.66736 11.3317 9.22314 10.9317 9.68469L17.1932 15.9462L16.4855 16.6539ZM6.53937 10.7308C7.8663 10.7308 8.98649 10.2741 9.89994 9.36064C10.8134 8.44717 11.2701 7.32698 11.2701 6.00006C11.2701 4.67314 10.8134 3.55295 9.89994 2.63949C8.98649 1.72602 7.8663 1.26929 6.53937 1.26929C5.21245 1.26929 4.09226 1.72602 3.17879 2.63949C2.26534 3.55295 1.80862 4.67314 1.80862 6.00006C1.80862 7.32698 2.26534 8.44717 3.17879 9.36064C4.09226 10.2741 5.21245 10.7308 6.53937 10.7308Z' fill='%23191919'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transform: translateY(-50%);
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_SearchForm__inner:before {
  left: clamp(1rem, 1.11111vw, 1.1rem);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_SearchForm__inner:before {
  right: clamp(1rem, 1.11111vw, 1.1rem);
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(2.5rem, 2.77778vw, 2.75rem);
  padding: 0 clamp(2.625rem, 2.91667vw, 2.8875rem);
  margin: 0;
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  background: #fff;
  border: 1px solid rgba(25, 25, 25, 0.3019607843);
  border-radius: clamp(6.25rem, 6.94444vw, 6.875rem);
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__input::-moz-placeholder {
  color: #707378;
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__input::placeholder {
  color: #707378;
}

.custom-header .mod_header_new_f4Z8ra_SearchForm__input:focus {
  border-color: rgba(25, 25, 25, 0.3019607843);
  border-width: 1px;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  overflow: hidden;
  visibility: hidden;
  background-color: #fdfaf4;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 28px rgba(16, 17, 19, 0.1607843137);
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Dropdown {
  left: 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Dropdown {
  right: 0;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__close {
  position: absolute;
  top: clamp(0.625rem, 0.694444vw, 0.6875rem);
  opacity: 0;
  transition: opacity 0.15s;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Dropdown__close {
  right: clamp(0.625rem, 0.694444vw, 0.6875rem);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Dropdown__close {
  left: clamp(0.625rem, 0.694444vw, 0.6875rem);
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__close:focus {
  opacity: 1;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__close svg {
  width: clamp(0.875rem, 0.972222vw, 0.9625rem);
  height: clamp(0.875rem, 0.972222vw, 0.9625rem);
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__close path {
  fill: currentColor;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__inner {
  display: flex;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__content {
  display: grid;
  width: 100%;
  padding: clamp(2.7rem, 3.33333vw, 3.3rem) clamp(4.5rem, 5.55556vw, 5.5rem);
  flex: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 2.22222vw, 2.2rem) clamp(3.6rem, 4.44444vw, 4.4rem);
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__link__title {
  display: inline-flex;
  font-size: clamp(1.125rem, 1.38889vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  align-items: center;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__link__title svg {
  display: inline-block;
  width: clamp(1.18125rem, 1.45833vw, 1.44375rem);
  height: clamp(1.18125rem, 1.45833vw, 1.44375rem);
  margin-bottom: calc(-1 * clamp(0.1125rem, 0.138889vw, 0.1375rem));
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__link__description {
  font-size: clamp(0.9rem, 1.11111vw, 1.1rem);
  line-height: 1.45;
  color: #707378;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__aside {
  width: clamp(21.5rem, 23.8889vw, 23.65rem);
  padding: clamp(2.7rem, 3.33333vw, 3.3rem) clamp(3.15rem, 3.88889vw, 3.85rem);
  background-color: #f6f3ed;
  flex-shrink: 0;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__aside__title {
  margin-bottom: clamp(0.9rem, 1.11111vw, 1.1rem);
  font-size: clamp(1.125rem, 1.38889vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__list {
  display: flex;
  padding: 0;
  margin: 0;
  font-size: clamp(0.9rem, 1.11111vw, 1.1rem);
  list-style-type: none;
  flex-direction: column;
  gap: clamp(0.675rem, 0.833333vw, 0.825rem);
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__footer {
  display: flex;
  padding: clamp(1.35rem, 1.66667vw, 1.65rem) clamp(1.8rem, 2.22222vw, 2.2rem);
  background: #d9dec6;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1.575rem, 1.94444vw, 1.925rem);
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__footer__link {
  display: inline-flex;
  font-size: clamp(1.0125rem, 1.25vw, 1.2375rem);
  font-weight: 700;
  color: #2c2e33;
  align-items: center;
  gap: clamp(0.5rem, 0.555556vw, 0.55rem);
}

[dir="ltr"]
  .custom-header
  .mod_header_new_f4Z8ra_Dropdown__footer__link:last-child {
  margin-left: auto;
}

[dir="rtl"]
  .custom-header
  .mod_header_new_f4Z8ra_Dropdown__footer__link:last-child {
  margin-right: auto;
}

.custom-header .mod_header_new_f4Z8ra_Dropdown__footer__link svg {
  display: inline-block;
  width: clamp(1.5rem, 1.66667vw, 1.65rem);
  height: clamp(1.5rem, 1.66667vw, 1.65rem);
}

.custom-header .mod_header_new_f4Z8ra_Offcanvas {
  position: fixed;
  top: 0;
  z-index: 101;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background-color: #fdfaf4;
  transition: transform 0.3s, visibility 0s 0.3s;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Offcanvas {
  left: 0;
  transform: translate(100%);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Offcanvas {
  right: 0;
  transform: translate(-100%);
}

.custom-header .mod_header_new_f4Z8ra_Menu__header {
  display: flex;
  padding: clamp(0.75rem, 0.833333vw, 0.825rem)
    clamp(1.25rem, 1.38889vw, 1.375rem);
  border-bottom: 1px solid rgba(25, 25, 25, 0.2);
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.75rem, 0.833333vw, 0.825rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Menu__logo {
  margin-right: auto;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Menu__logo {
  margin-left: auto;
}

.custom-header .mod_header_new_f4Z8ra_Menu__logo svg {
  display: inline-block;
  width: clamp(3.4375rem, 3.81944vw, 3.78125rem);
  height: clamp(2rem, 2.22222vw, 2.2rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__search {
  padding: clamp(0.75rem, 0.833333vw, 0.825rem)
    clamp(1.25rem, 1.38889vw, 1.375rem);
  background: #f6f3ed;
}

.custom-header .mod_header_new_f4Z8ra_Menu__cart {
  position: relative;
  display: inline-block;
  width: clamp(1.875rem, 2.08333vw, 2.0625rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__cart__count {
  position: absolute;
  top: 0;
  display: flex;
  width: clamp(1.375rem, 1.52778vw, 1.5125rem);
  height: clamp(1.375rem, 1.52778vw, 1.5125rem);
  overflow: hidden;
  font-size: clamp(0.625rem, 0.694444vw, 0.6875rem);
  font-weight: 700;
  color: #fff;
  background: #c65f5f;
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Menu__cart__count {
  right: 0;
  transform: translate(33%, -50%);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Menu__cart__count {
  left: 0;
  transform: translate(-33%, -50%);
}

.custom-header .mod_header_new_f4Z8ra_Menu__cart__count[data-item-count="0"] {
  visibility: hidden;
  opacity: 0;
}

.custom-header .mod_header_new_f4Z8ra_Menu__close path {
  fill: #191919;
}

.custom-header .mod_header_new_f4Z8ra_Menu__body {
  height: calc(100vh - var(--menu-header-height) - var(--menu-search-height));
  overflow-y: auto;
}

.custom-header .mod_header_new_f4Z8ra_Menu__nav {
  padding: clamp(0.75rem, 0.833333vw, 0.825rem)
    clamp(1.25rem, 1.38889vw, 1.375rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__nav__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.custom-header .mod_header_new_f4Z8ra_Menu__nav__list > li + li {
  border-top: 1px solid #c4c4c4;
}

.custom-header .mod_header_new_f4Z8ra_Menu__link {
  display: flex;
  width: 100%;
  padding: clamp(1.25rem, 1.38889vw, 1.375rem) 0;
  font-size: clamp(1.5rem, 1.66667vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  color: #191919;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: space-between;
  align-items: center;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Menu__link {
  background: 0 0;
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Menu__link {
  background: 100% 0;
}

.custom-header .mod_header_new_f4Z8ra_Menu__link svg {
  display: inline-block;
  width: clamp(1.3125rem, 1.45833vw, 1.44375rem);
  height: clamp(1.3125rem, 1.45833vw, 1.44375rem);
  pointer-events: none;
}

.custom-header .mod_header_new_f4Z8ra_Menu__footer {
  display: flex;
  padding: clamp(2rem, 2.22222vw, 2.2rem) clamp(1.25rem, 1.38889vw, 1.375rem);
  flex-direction: column;
  background: #d9dec6;
  gap: clamp(1.75rem, 1.94444vw, 1.925rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__footer__link {
  display: inline-flex;
  font-size: clamp(1.125rem, 1.25vw, 1.2375rem);
  font-weight: 700;
  align-items: center;
  gap: clamp(0.5rem, 0.555556vw, 0.55rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__footer__link svg {
  display: inline-block;
  width: clamp(1.875rem, 2.08333vw, 2.0625rem);
  height: clamp(1.875rem, 2.08333vw, 2.0625rem);
}

.custom-header .mod_header_new_f4Z8ra_Menu__footer__aside {
  padding-top: clamp(1.75rem, 1.94444vw, 1.925rem);
  border-top: 1px solid #c4c4c4;
}

.custom-header .mod_header_new_f4Z8ra_Submenu {
  position: absolute;
  top: var(--menu-header-height);
  z-index: 1;
  width: 100%;
  height: calc(100vh - var(--menu-header-height));
  background-color: #fdfaf4;
  transition: transform 0.3s;
}

[dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Submenu {
  left: 0;
  transform: translate(100%);
}

[dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Submenu {
  right: 0;
  transform: translate(-100%);
}

.custom-header .mod_header_new_f4Z8ra_Submenu__header {
  padding: clamp(1.25rem, 1.38889vw, 1.375rem)
    clamp(1.25rem, 1.38889vw, 1.375rem) 0;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__title {
  padding-bottom: clamp(0.25rem, 0.277778vw, 0.275rem);
  margin-top: clamp(1.25rem, 1.38889vw, 1.375rem);
  font-size: clamp(1.125rem, 1.25vw, 1.2375rem);
  color: #707378;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__back {
  display: inline-flex;
  color: #707378;
  align-items: center;
  gap: clamp(0.5rem, 0.555556vw, 0.55rem);
}

.custom-header .mod_header_new_f4Z8ra_Submenu__body {
  height: calc(
    100vh - var(--menu-header-height) - var(--submenu-header-height)
  );
  overflow-y: auto;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__links {
  padding: 0 clamp(1.25rem, 1.38889vw, 1.375rem)
    clamp(1.25rem, 1.38889vw, 1.375rem);
  margin: 0;
  list-style-type: none;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__links > li + li {
  border-top: 1px solid #c4c4c4;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__link {
  padding: clamp(1.25rem, 1.38889vw, 1.375rem) 0;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__link__title {
  display: inline-flex;
  font-size: clamp(1.25rem, 1.38889vw, 1.375rem);
  font-weight: 700;
  line-height: 1.2;
  align-items: center;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__link__title svg {
  display: inline-block;
  width: clamp(1.18125rem, 1.45833vw, 1.44375rem);
  height: clamp(1.18125rem, 1.45833vw, 1.44375rem);
  margin-bottom: calc(-1 * clamp(0.1125rem, 0.138889vw, 0.1375rem));
}

.custom-header .mod_header_new_f4Z8ra_Submenu__link__description {
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  line-height: 1.45;
  color: #707378;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__aside {
  padding: clamp(3rem, 3.33333vw, 3.3rem) clamp(1.25rem, 1.38889vw, 1.375rem);
  background-color: #f6f3ed;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__aside__title {
  margin-bottom: clamp(1.75rem, 1.94444vw, 1.925rem);
  font-size: clamp(1.25rem, 1.38889vw, 1.375rem);
  font-weight: 700;
  color: #2c2e33;
}

.custom-header .mod_header_new_f4Z8ra_Submenu__aside__links {
  display: flex;
  padding: 0;
  margin: 0;
  font-size: clamp(1.125rem, 1.25vw, 1.2375rem);
  color: #191919;
  list-style-type: none;
  flex-direction: column;
  gap: clamp(1.5rem, 1.66667vw, 1.65rem);
}

.custom-header .mod_header_new_f4Z8ra_Submenu__aside__links a {
  color: inherit;
}

@media print, screen and (min-width: 40em) {
  .custom-header .mod_header_new_f4Z8ra_Header__logo {
    width: clamp(5.625rem, 6.94444vw, 6.875rem);
  }

  .custom-header .mod_header_new_f4Z8ra_SearchForm__inner {
    width: clamp(27.5rem, 30.5556vw, 30.25rem);
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 64em) {
  .custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button,
  .custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > a {
    gap: clamp(0.28125rem, 0.347222vw, 0.34375rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button svg {
    width: clamp(0.7875rem, 0.972222vw, 0.9625rem);
    height: clamp(0.45rem, 0.555556vw, 0.55rem);
  }

  .custom-header .mod_header_new_f4Z8ra_SearchForm__input {
    height: clamp(2.25rem, 2.77778vw, 2.75rem);
    padding: 0 clamp(2.3625rem, 2.91667vw, 2.8875rem);
    font-size: clamp(0.9rem, 1.11111vw, 1.1rem);
    border-radius: clamp(5.625rem, 6.94444vw, 6.875rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Dropdown__close {
    top: clamp(0.5625rem, 0.694444vw, 0.6875rem);
  }

  [dir="ltr"] .custom-header .mod_header_new_f4Z8ra_Dropdown__close {
    right: clamp(0.5625rem, 0.694444vw, 0.6875rem);
  }

  [dir="rtl"] .custom-header .mod_header_new_f4Z8ra_Dropdown__close {
    left: clamp(0.5625rem, 0.694444vw, 0.6875rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Dropdown__close svg {
    width: clamp(0.7875rem, 0.972222vw, 0.9625rem);
    height: clamp(0.7875rem, 0.972222vw, 0.9625rem);
  }
}

@media print, screen and (min-width: 75em) {
  .custom-header .mod_header_new_f4Z8ra_Header__inner {
    gap: clamp(2.25rem, 2.77778vw, 2.75rem);
    padding: 0 clamp(1.8rem, 2.22222vw, 2.2rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__logo {
    width: clamp(7.59375rem, 9.375vw, 9.28125rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__logo__full {
    display: flex;
    height: clamp(6.525rem, 8.05556vw, 7.975rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__logo__full svg {
    width: clamp(5.75rem, 6.38889vw, 6.325rem);
    height: clamp(4.125rem, 4.58333vw, 4.5375rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__logo__scroll {
    height: clamp(5.85rem, 7.22222vw, 7.15rem);
    visibility: hidden;
    opacity: 0;
    transition: height 0.2s, opacity 0.2s, visibility 0.2s;
  }

  .custom-header .mod_header_new_f4Z8ra_Header__logo__scroll svg {
    width: clamp(4.21875rem, 5.20833vw, 5.15625rem);
    height: clamp(2.475rem, 3.05556vw, 3.025rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__nav {
    display: block;
  }

  .custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > button,
  .custom-header .mod_header_new_f4Z8ra_Header__nav__list > li > a {
    font-size: clamp(1.0125rem, 1.25vw, 1.2375rem);
  }

  .custom-header .mod_header_new_f4Z8ra_Header__search {
    display: block;
  }

  .custom-header .mod_header_new_f4Z8ra_Header__hamburger {
    display: none;
  }

  .custom-header .mod_header_new_f4Z8ra_SearchForm__inner {
    width: 100%;
    margin: unset;
  }

  .custom-header .mod_header_new_f4Z8ra_Offcanvas {
    display: none;
  }
}

@media print {
  .custom-header .mod_header_new_f4Z8ra_Header {
    display: none;
  }
}

.custom-header .mod_header_new_f4Z8ra_Offcanvas.is-expanded {
  visibility: visible;
  transition: transform 0.3s;
  transform: translate(0%);
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 300;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Light.woff2?v=68251987370488495701712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Light.woff?v=161382177512534277871712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 300;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-LightIta.woff2?v=111556552337389031941712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-LightIta.woff?v=139400273936174768151712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 400;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Regular.woff2?v=16282260948166282851712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Regular.woff?v=24770329576139987461712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 400;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-RegIta.woff2?v=123980858171104196171712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-RegIta.woff?v=82551437799093691191712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 500;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Medium.woff2?v=83728179519001674581712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Medium.woff?v=1836316644000152461712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 500;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-MedIta.woff2?v=21226782350661731181712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-MedIta.woff?v=30134819472965034511712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 700;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Bold.woff2?v=122035215417094612081712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Bold.woff?v=163599815407755102191712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 700;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-BoldIta.woff2?v=175501956258866009291712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-BoldIta.woff?v=169187750220648780971712013650")
      format("woff");
}

#shopify-section-header-new {
  transition: transform 0.25s;
}

.condensed .mod_header_new_f4Z8ra_Header__logo__full {
  visibility: hidden;
  opacity: 0;
}

.condensed .mod_header_new_f4Z8ra_Header__logo__scroll {
  visibility: visible;
  opacity: 1;
  align-self: center;
}

.js-header-inner {
  transition: height 0.25s;
}

@media (min-width: 1200px) {
  .js-header-inner {
    height: 114px;
  }
}

@media (min-width: 992px) {
  .condensed .js-header-inner {
    height: 77px !important;
  }
}

.hide-on-scroll {
  transform: translateY(-100%);
}

.js-cart-icon-empty svg {
  width: 30px;
  height: 30px;
}
@charset "UTF-8";

.custom-footer {
  color: #fff;
  background: #191919;
}

.custom-footer select {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox=%220%200%2072%2027%22%20xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d=%22M18%200h36L36%2027z%22%20style=%22fill:%20%23a3a3a3;%20fill:%20;%22%20fill-rule=%22evenodd%22%20/%3E%3C/svg%3E");
}

@media all {
  .custom-footer footer {
    display: block;
  }

  .custom-footer a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
  }

  .custom-footer a:active,
  .custom-footer a:hover {
    outline-width: 0;
  }

  .custom-footer svg:not(:root) {
    overflow: hidden;
  }

  .custom-footer button,
  .custom-footer input,
  .custom-footer select {
    margin: 0;
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
  }

  .custom-footer button {
    overflow: visible;
  }

  .custom-footer button,
  .custom-footer select {
    text-transform: none;
  }

  .custom-footer button,
  .custom-footer [type="submit"] {
    -webkit-appearance: button;
  }

  .custom-footer input {
    overflow: visible;
  }

  .custom-footer *,
  .custom-footer *:before,
  .custom-footer *:after {
    box-sizing: inherit;
  }

  .custom-footer select {
    width: 100%;
    border-radius: 0.25em;
  }

  .custom-footer button {
    padding: 0;
    line-height: 1;
    background: transparent;
    border: 0;
    border-radius: 0.25em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-footer [type="email"] {
    display: block;
    width: 100%;
    height: 2.4375rem;
    box-sizing: border-box;
    padding: 0.5rem;
    margin: 0 0 1rem;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #303030;
    background-color: #fff;
    border: 0.125rem solid #dddedc;
    border-radius: 0.25em;
    box-shadow: none;
    transition: border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-footer [type="email"]:focus {
    background-color: #fff;
    border: 0.125rem solid #a3a3a3;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease-in-out;
  }

  .custom-footer input::-moz-placeholder {
    color: #bfbebe;
  }

  .custom-footer input::placeholder {
    color: #bfbebe;
  }

  .custom-footer input:disabled {
    cursor: not-allowed;
    background-color: #efefef;
  }

  .custom-footer [type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25em;
  }

  .custom-footer label {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
    color: #303030;
  }

  .custom-footer select {
    height: 2.4375rem;
    padding: 0.5rem;
    margin: 0 0 1rem;
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: normal;
    color: #303030;
    background-color: #fff;
    border: 0.125rem solid #dddedc;
    border-radius: 0.25em;
    transition: border-color 0.25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .custom-footer select:focus {
    background-color: #fff;
    border: 0.125rem solid #a3a3a3;
    outline: none;
    box-shadow: none;
    transition: border-color 0.25s ease-in-out;
  }

  .custom-footer select:disabled {
    cursor: not-allowed;
    background-color: #efefef;
  }

  .custom-footer select {
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-origin: padding-box;
    background-size: 1.25rem 0.475rem;
  }

  [dir="ltr"] .custom-footer select {
    padding-right: 1.25rem;
    background-position: right center;
  }

  [dir="rtl"] .custom-footer select {
    padding-left: 1.25rem;
    background-position: left center;
  }

  .custom-footer .u-vhide {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

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

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

  .custom-footer p {
    margin-top: 0;
    font-size: clamp(1rem, 1.1111111111vw, 1.1rem);
  }

  .custom-footer a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }

  .custom-footer button {
    cursor: pointer;
  }

  .custom-footer .o-button--inverse {
    display: inline-flex;
    min-width: clamp(7.5rem, 8.3333333333vw, 8.25rem);
    min-height: clamp(2.75rem, 3.0555555556vw, 3.025rem);
    box-sizing: border-box;
    padding: clamp(0.25rem, 0.2777777778vw, 0.275rem)
      clamp(1.25rem, 1.3888888889vw, 1.375rem);
    font-family: Helvetica Now Display, Helvetica Neue, Helvetica, Arial,
      -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.1111111111vw, 1.1rem);
    font-weight: 700;
    line-height: 1.5;
    color: #191919;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: clamp(6.25rem, 6.9444444444vw, 6.25rem);
    transition: all 0.5s;
    justify-content: center;
    align-items: center;
  }

  .custom-footer .o-button--inverse:disabled {
    cursor: not-allowed;
  }

  .custom-footer .o-button--inverse:hover,
  .custom-footer .o-button--inverse:focus {
    color: #191919;
    box-shadow: 0 10px 18px rgba(16, 17, 19, 0.1215686275);
  }

  .custom-footer .o-button--inverse:target {
    outline: max(0.25rem, 0.2777777778vw) solid #94b5d7;
  }

  .custom-footer .o-button--inverse:disabled {
    color: #191919;
    background: #c4c4c4;
  }

  .custom-footer .o-link {
    position: relative;
    display: inline-block;
    color: #191919;
    vertical-align: middle;
    transition: color 0.5s ease-out;
  }

  .custom-footer .o-link:hover,
  .custom-footer .o-link:focus {
    color: #191919;
  }

  .custom-footer .o-link:before {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 0.3s;
    transform: scaleZ(1);
  }

  [dir="ltr"] .custom-footer .o-link:before {
    left: 0;
    transform-origin: 0% 50%;
  }

  [dir="rtl"] .custom-footer .o-link:before {
    right: 0;
    transform-origin: 100% 50%;
  }

  .custom-footer .o-link:hover:before {
    transform: scale3d(0, 1, 1);
  }

  [dir="ltr"] .custom-footer .o-link:hover:before {
    transform-origin: 100% 50%;
  }

  [dir="rtl"] .custom-footer .o-link:hover:before {
    transform-origin: 0% 50%;
  }

  .custom-footer .o-link--reversed:before {
    transform: scale3d(0, 1, 1);
  }

  [dir="ltr"] .custom-footer .o-link--reversed:before {
    transform-origin: 100% 50%;
  }

  [dir="rtl"] .custom-footer .o-link--reversed:before {
    transform-origin: 0% 50%;
  }

  .custom-footer .o-link--reversed:hover:before {
    transform: scaleZ(1);
  }

  [dir="ltr"] .custom-footer .o-link--reversed:hover:before {
    transform-origin: 0% 50%;
  }

  [dir="rtl"] .custom-footer .o-link--reversed:hover:before {
    transform-origin: 100% 50%;
  }
}

@media print, screen and (min-width: 64em) {
  .custom-footer p {
    font-size: clamp(0.9rem, 1.1111111111vw, 1.1rem);
  }

  .custom-footer .o-button--inverse {
    min-width: clamp(6.75rem, 8.3333333333vw, 8.25rem);
    min-height: clamp(2.19375rem, 2.7083333333vw, 2.68125rem);
    padding: clamp(0.45rem, 0.5555555556vw, 0.55rem)
      clamp(2.25rem, 2.7777777778vw, 2.75rem);
    font-size: clamp(0.9rem, 1.1111111111vw, 1.1rem);
  }
}

@media screen and (min-width: 0) {
  .custom-footer select {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAOCAYAAABHN77IAAAABGdBTUEAALGPC/xhBQAAAH1JREFUOBHF0bsNgDAMhOHU9IzGkozGEuSuQycEieOHpTSIWH/0tTY2J367Fw93uM2OTReONYp3ucN1DmyzBvFuyFjoXKn0VbN0IVQaNUMXRqVRI3ShVBr0R5dCpVFfdGlUGvVGl0qlQUpXQqVRT7oyKo0iUymVBm34wLM8HdIBePF+AXZdAAAAAElFTkSuQmCC);
  }
}

.custom-footer .mod_footer_jwX0la_Footer {
  color: #fff;
  background: #191919;
}

.custom-footer .mod_footer_jwX0la_Footer_container {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 5.55556vw, 5.5rem) clamp(2rem, 2.22222vw, 2.2rem)
    clamp(2rem, 2.22222vw, 2.2rem);
}

.custom-footer .mod_footer_jwX0la_Footer_top {
  display: flex;
  max-width: clamp(28.125rem, 31.25vw, 30.9375rem);
  padding-bottom: clamp(0.45rem, 0.555556vw, 0.55rem);
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.custom-footer .mod_footer_jwX0la_Footer_logo {
  margin-bottom: clamp(4rem, 4.44444vw, 4.4rem);
  text-align: center;
  order: 1;
}

.custom-footer .mod_footer_jwX0la_Footer_logo svg {
  width: clamp(7.875rem, 8.75vw, 8.6625rem);
  height: clamp(5.64375rem, 6.27083vw, 6.20813rem);
}

.custom-footer .mod_footer_jwX0la_Footer_newsletter {
  order: 2;
  width: 100%;
  margin-bottom: clamp(3rem, 3.33333vw, 3.3rem);
}

.custom-footer .mod_footer_jwX0la_Footer_newsletter_label {
  font-size: clamp(1.5rem, 1.66667vw, 1.65rem);
  font-weight: 500;
}

.custom-footer .mod_footer_jwX0la_Footer_newsletter_message {
  margin-top: clamp(0.25rem, 0.277778vw, 0.275rem);
  font-size: clamp(0.75rem, 0.833333vw, 0.825rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
}

.custom-footer .mod_footer_jwX0la_Footer_navDiv {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  order: 3;
}

.custom-footer .mod_footer_jwX0la_Footer_label {
  display: flex;
  padding: clamp(1rem, 1.11111vw, 1.1rem) 0;
  margin: 0;
  font-size: clamp(1.25rem, 1.38889vw, 1.375rem);
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}

.custom-footer .mod_footer_jwX0la_Footer_label svg {
  width: clamp(0.9125rem, 1.01389vw, 1.00375rem);
  height: clamp(0.516875rem, 0.574306vw, 0.568563rem);
  transition: all 0.5s;
}

.custom-footer .mod_footer_jwX0la_Footer_label svg path {
  fill: #fff;
}

.custom-footer .mod_footer_jwX0la_Footer_list {
  display: none;
  padding-top: clamp(0.5rem, 0.555556vw, 0.55rem);
  padding-bottom: clamp(1.25rem, 1.38889vw, 1.375rem);
  margin: 0;
  list-style: none;
  grid-gap: clamp(0.5rem, 0.555556vw, 0.55rem);
  grid-template-columns: minmax(0, 1fr);
}

.custom-footer .mod_footer_jwX0la_Footer_list li a,
.custom-footer .mod_footer_jwX0la_Footer_list li a:hover,
.custom-footer .mod_footer_jwX0la_Footer_list li a:focus,
.custom-footer .mod_footer_jwX0la_Footer_list li a:visited {
  display: block;
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  font-weight: 400;
  line-height: 200%;
  color: #c4c4c4;
}

.custom-footer .mod_footer_jwX0la_Footer_list li a:before,
.custom-footer .mod_footer_jwX0la_Footer_list li a:hover:before,
.custom-footer .mod_footer_jwX0la_Footer_list li a:focus:before,
.custom-footer .mod_footer_jwX0la_Footer_list li a:visited:before {
  display: none;
}

.custom-footer .mod_footer_jwX0la_Footer_newsletterInputContainer {
  position: relative;
}

.custom-footer .mod_footer_jwX0la_Footer_input,
.custom-footer .mod_footer_jwX0la_Footer_input:focus,
.custom-footer .mod_footer_jwX0la_Footer_input:active {
  width: 100%;
  height: clamp(2.75rem, 3.05556vw, 3.025rem);
  box-sizing: border-box;
  padding: 0 clamp(1.25rem, 1.38889vw, 1.375rem);
  margin-bottom: clamp(0.75rem, 0.833333vw, 0.825rem);
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  color: #fff;
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-radius: clamp(6.25rem, 6.94444vw, 6.25rem);
}

[dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input,
[dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input:focus,
[dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input:active {
  text-align: left;
}

[dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input,
[dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input:focus,
[dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input:active {
  text-align: right;
}

.custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
}

.custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
}

.custom-footer .mod_footer_jwX0la_Footer_input::placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:focus::placeholder,
.custom-footer .mod_footer_jwX0la_Footer_input:active::placeholder {
  font-size: clamp(1rem, 1.11111vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5019607843);
  text-align: center;
}

.custom-footer .mod_footer_jwX0la_Footer_btn {
  position: relative;
  width: 100%;
  min-width: 100%;
  padding: 0;
}

.custom-footer .mod_footer_jwX0la_Footer_btn:disabled {
  background: #fff;
}

.custom-footer .mod_footer_jwX0la_Footer_bottom {
  display: grid;
  padding: clamp(2rem, 2.22222vw, 2.2rem) 0;
  grid-template-columns: minmax(0, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 2.22222vw, 2.2rem);
}

.custom-footer .mod_footer_jwX0la_Footer_socialMedia {
  justify-content: center;
  gap: clamp(1.75rem, 1.94444vw, 1.925rem);
  display: flex;
}

.custom-footer .mod_footer_jwX0la_Footer_icon {
  align-items: center;
  display: flex;
}

.custom-footer .mod_footer_jwX0la_Footer_icon path {
  fill: #fff;
}

.custom-footer .mod_footer_jwX0la_Footer_youtube svg {
  width: clamp(1.53125rem, 1.70139vw, 1.68438rem);
  height: clamp(1.07188rem, 1.19097vw, 1.17906rem);
}

.custom-footer .mod_footer_jwX0la_Footer_instagram svg {
  width: clamp(1.45813rem, 1.62014vw, 1.60394rem);
  height: clamp(1.45813rem, 1.62014vw, 1.60394rem);
}

.custom-footer .mod_footer_jwX0la_Footer_twitter svg {
  width: clamp(1.52563rem, 1.69514vw, 1.67819rem);
  height: clamp(1.23938rem, 1.37708vw, 1.36331rem);
}

.custom-footer .mod_footer_jwX0la_Footer_facebook svg {
  width: clamp(0.765625rem, 0.850694vw, 0.842188rem);
  height: clamp(1.45813rem, 1.62014vw, 1.60394rem);
}

.custom-footer .mod_footer_jwX0la_Footer_payments {
  justify-content: center;
  align-items: flex-end;
  gap: clamp(1.5rem, 1.66667vw, 1.65rem);
  display: flex;
}

.custom-footer .mod_footer_jwX0la_Footer_paymentIcon {
  align-items: center;
  display: flex;
}

.custom-footer .mod_footer_jwX0la_Footer_paymentIcon svg path {
  fill: rgba(255, 255, 255, 0.5019607843);
}

.custom-footer .mod_footer_jwX0la_Footer_visa svg {
  width: clamp(2.5rem, 2.77778vw, 2.75rem);
  height: clamp(0.8075rem, 0.897222vw, 0.88825rem);
}

.custom-footer .mod_footer_jwX0la_Footer_mastercard svg {
  width: clamp(1.5rem, 1.66667vw, 1.65rem);
  height: clamp(0.875rem, 0.972222vw, 0.9625rem);
}

.custom-footer .mod_footer_jwX0la_Footer_affirm svg {
  width: clamp(3.29063rem, 3.65625vw, 3.61969rem);
  height: clamp(1.31313rem, 1.45903vw, 1.44444rem);
}

.custom-footer .mod_footer_jwX0la_Footer_middle {
  display: flex;
  padding-top: clamp(1.5rem, 1.66667vw, 1.65rem);
  padding-bottom: clamp(1.5rem, 1.66667vw, 1.65rem);
  justify-content: center;
}

.custom-footer .mod_footer_jwX0la_Footer_selector {
  margin: 0;
  font-size: clamp(1.125rem, 1.25vw, 1.2375rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26' fill='none'%3E%3Cpath d='M6.46973 11.9362L7.45184 10.9541L13.8355 17.3377L20.2191 10.9541L21.2012 11.9362L13.8355 19.3019L6.46973 11.9362Z' fill='white'/%3E%3C/svg%3E");
  background-size: clamp(1.5625rem, 1.73611vw, 1.71875rem)
    clamp(1.5625rem, 1.73611vw, 1.71875rem);
  border: 1px solid #707378;
  border-radius: clamp(6.25rem, 6.94444vw, 6.25rem);
}

[dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_selector {
  padding: clamp(0.4375rem, 0.486111vw, 0.48125rem)
    clamp(2.1875rem, 2.43056vw, 2.40625rem)
    clamp(0.4375rem, 0.486111vw, 0.48125rem) clamp(1rem, 1.11111vw, 1.1rem);
  background-position: right clamp(0.5rem, 0.555556vw, 0.55rem) center;
}

[dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_selector {
  padding: clamp(0.4375rem, 0.486111vw, 0.48125rem)
    clamp(1rem, 1.11111vw, 1.1rem) clamp(0.4375rem, 0.486111vw, 0.48125rem)
    clamp(2.1875rem, 2.43056vw, 2.40625rem);
  background-position: left clamp(0.5rem, 0.555556vw, 0.55rem) center;
}

.custom-footer .mod_footer_jwX0la_Footer_selector:focus {
  border: 1px solid #707378;
  outline: none;
}

.custom-footer .mod_footer_jwX0la_Footer_selector option {
  color: #191919;
}

@media print {
  .custom-footer .mod_footer_jwX0la_Footer {
    display: none;
  }
}

@media print, screen and (min-width: 64em) {
  .custom-footer .mod_footer_jwX0la_Footer_container {
    padding: clamp(3.6rem, 4.44444vw, 4.4rem) clamp(1.8rem, 2.22222vw, 2.2rem) 0;
    margin: auto;
  }

  .custom-footer .mod_footer_jwX0la_Footer_top {
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(1.125rem, 1.38889vw, 1.375rem);
  }

  .custom-footer .mod_footer_jwX0la_Footer_newsletter {
    order: 3;
    max-width: clamp(21.0938rem, 26.0417vw, 25.7813rem);
  }

  .custom-footer .mod_footer_jwX0la_Footer_newsletter_label {
    font-size: clamp(1.125rem, 1.38889vw, 1.375rem);
    font-weight: 700;
  }

  .custom-footer .mod_footer_jwX0la_Footer_newsletter_message {
    margin-top: clamp(0.225rem, 0.277778vw, 0.275rem);
    font-size: clamp(0.675rem, 0.833333vw, 0.825rem);
  }

  .custom-footer .mod_footer_jwX0la_Footer_navDiv {
    width: auto;
    border-bottom: 0;
  }

  .custom-footer .mod_footer_jwX0la_Footer_label {
    padding-top: 0;
    font-size: clamp(1.125rem, 1.38889vw, 1.375rem);
    font-weight: 700;
    cursor: default;
  }

  .custom-footer .mod_footer_jwX0la_Footer_label svg {
    display: none;
  }

  .custom-footer .mod_footer_jwX0la_Footer_list {
    display: grid;
    padding-bottom: 0;
  }

  .custom-footer .mod_footer_jwX0la_Footer_list li a,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:hover,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:focus,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:visited {
    display: inline;
    font-size: clamp(0.9rem, 1.11111vw, 1.1rem);
    line-height: 145%;
    color: #fff;
  }

  .custom-footer .mod_footer_jwX0la_Footer_list li a:before,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:hover:before,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:focus:before,
  .custom-footer .mod_footer_jwX0la_Footer_list li a:visited:before {
    display: block;
  }

  .custom-footer .mod_footer_jwX0la_Footer_input,
  .custom-footer .mod_footer_jwX0la_Footer_input:focus,
  .custom-footer .mod_footer_jwX0la_Footer_input:active {
    height: clamp(2.8125rem, 3.47222vw, 3.4375rem);
    margin-bottom: 0;
  }

  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input,
  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input:focus,
  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input:active {
    padding: clamp(0.675rem, 0.833333vw, 0.825rem)
      clamp(5.625rem, 6.94444vw, 6.875rem) clamp(0.675rem, 0.833333vw, 0.825rem)
      clamp(1.9125rem, 2.36111vw, 2.3375rem);
  }

  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input,
  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input:focus,
  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input:active {
    padding: clamp(0.675rem, 0.833333vw, 0.825rem)
      clamp(1.9125rem, 2.36111vw, 2.3375rem)
      clamp(0.675rem, 0.833333vw, 0.825rem) clamp(5.625rem, 6.94444vw, 6.875rem);
  }

  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
  [dir="ltr"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
  [dir="ltr"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
    text-align: left;
  }

  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
  [dir="rtl"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
  [dir="rtl"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
    text-align: right;
  }

  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
  [dir="ltr"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
  [dir="ltr"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
    text-align: left;
  }

  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input::placeholder,
  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_input:focus::placeholder,
  [dir="ltr"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::placeholder {
    text-align: left;
  }

  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input::-moz-placeholder,
  [dir="rtl"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:focus::-moz-placeholder,
  [dir="rtl"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::-moz-placeholder {
    text-align: right;
  }

  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input::placeholder,
  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_input:focus::placeholder,
  [dir="rtl"]
    .custom-footer
    .mod_footer_jwX0la_Footer_input:active::placeholder {
    text-align: right;
  }

  .custom-footer .mod_footer_jwX0la_Footer_btn {
    position: absolute;
    top: 50%;
    width: clamp(6.25rem, 6.94444vw, 6.875rem);
    min-width: clamp(6.25rem, 6.94444vw, 6.875rem);
    font-size: clamp(0.7875rem, 0.972222vw, 0.9625rem);
    transform: translateY(-50%);
  }

  [dir="ltr"] .custom-footer .mod_footer_jwX0la_Footer_btn {
    right: clamp(0.41875rem, 0.465278vw, 0.460625rem);
  }

  [dir="rtl"] .custom-footer .mod_footer_jwX0la_Footer_btn {
    left: clamp(0.41875rem, 0.465278vw, 0.460625rem);
  }

  .custom-footer .mod_footer_jwX0la_Footer_bottom {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .custom-footer .mod_footer_jwX0la_Footer_socialMedia {
    justify-content: left;
  }

  .custom-footer .mod_footer_jwX0la_Footer_payments {
    justify-content: right;
  }

  .custom-footer .mod_footer_jwX0la_Footer_middle {
    justify-content: end;
    padding-top: 0;
  }
}

@media print, screen and (min-width: 75em) {
  .custom-footer .mod_footer_jwX0la_Footer_container {
    max-width: clamp(84.375rem, 104.167vw, 103.125rem);
    padding: clamp(4.5rem, 5.55556vw, 5.5rem) clamp(3.6rem, 4.44444vw, 4.4rem) 0;
  }
}

@media print, screen and (max-width: 75em) {
  .custom-footer .mod_footer_jwX0la_Footer_logo {
    width: clamp(7.875rem, 8.75vw, 8.6625rem);
  }
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 300;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Light.woff2?v=68251987370488495701712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Light.woff?v=161382177512534277871712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 300;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-LightIta.woff2?v=111556552337389031941712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-LightIta.woff?v=139400273936174768151712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 400;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Regular.woff2?v=16282260948166282851712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Regular.woff?v=24770329576139987461712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 400;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-RegIta.woff2?v=123980858171104196171712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-RegIta.woff?v=82551437799093691191712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 500;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Medium.woff2?v=83728179519001674581712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Medium.woff?v=1836316644000152461712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 500;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-MedIta.woff2?v=21226782350661731181712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-MedIta.woff?v=30134819472965034511712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: normal;
  font-weight: 700;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Bold.woff2?v=122035215417094612081712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-Bold.woff?v=163599815407755102191712013650")
      format("woff");
}

@font-face {
  font-family: "Helvetica Now Display";
  font-style: italic;
  font-weight: 700;
  src: url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-BoldIta.woff2?v=175501956258866009291712013650")
      format("woff2"),
    url("https://uaudio-vaan-dev.myshopify.com/cdn/shop/t/623/assets/HelveticaNowDisplay-BoldIta.woff?v=169187750220648780971712013650")
      format("woff");
}

.lt-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lt-products-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.lt-product-item {
  background-color: #fff;
  border-radius: 8px;

  transition: box-shadow 250ms ease;
}

.lt-product-item:hover {
  box-shadow: 0px 10px 18px 0px rgba(16, 17, 19, 0.12);
}

.lt-product-item__link {
  display: block;
  height: 100%;
  text-decoration: none !important;
}

.lt-product-item__title {
  padding: 1rem 1.25rem 0;

  font-size: 1rem;
  font-weight: 700 !important;
  color: rgba(25, 25, 25, 1);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

@media (min-width: 768px) {
  .lt-product-item__title {
    font-size: 1.25rem;
  }
}

.lt-product-item__img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.lt-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(25, 25, 25, 1);
  opacity: 20%;
}

.lt-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lt-topics-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .lt-topics-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.lt-topic-item {
  min-height: 200px;
  background-color: #fff;
  border: 1px solid rgba(196, 196, 196, 1);
  border-radius: 14px;

  transition: box-shadow 250ms ease, border-color 250ms ease;
}

.lt-topic-item:hover {
  border-color: rgba(25, 25, 25, 1);
  box-shadow: 0px 10px 18px 0px rgba(16, 17, 19, 0.12);
}

.lt-topic-item__link {
  display: flex;
  height: 100%;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none !important;
}

.lt-topic-item__img {
  width: 48px;
  height: 48px;
}

.lt-topic-item__title {
  margin-top: auto;
  margin-bottom: 0rem;
  font-size: 1rem;
  font-weight: 700 !important;
  color: rgba(25, 25, 25, 1);
}

@media (min-width: 768px) {
  .lt-topic-item__title {
    font-size: 1.25rem;
  }
}
/* Search */
/* Search */
.search {
  position: relative;
  display: flex;
}

.search:before {
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: rgba(25, 25, 25, 1);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='search' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-search fa-w-16 fa-3x'%3E%3Cpath fill='currentColor' d='M508.5 468.9L387.1 347.5c-2.3-2.3-5.3-3.5-8.5-3.5h-13.2c31.5-36.5 50.6-84 50.6-136C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c52 0 99.5-19.1 136-50.6v13.2c0 3.2 1.3 6.2 3.5 8.5l121.4 121.4c4.7 4.7 12.3 4.7 17 0l22.6-22.6c4.7-4.7 4.7-12.3 0-17zM208 368c-88.4 0-160-71.6-160-160S119.6 48 208 48s160 71.6 160 160-71.6 160-160 160z' class=''%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .search:before {
  left: 1rem;
}

[dir="rtl"] .search:before {
  right: 1rem;
}

.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-box #query {
  height: 50px;
  padding: 0.875rem 2.5rem;
  font-size: 20px;
  transition: border 0.3s ease;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.lt-search-box--small {
  background-color: $hero_unit_bg;
}

.lt-search-box--hero-unit {
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  transition: top 0.3s ease;
}

.lt-search-box--hero-unit .search:before {
  width: 1.5rem;
  height: 1.5rem;
}

.lt-search-box--hero-unit #query {
  padding: 0 3.5rem;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 100px;
}

@media (min-width: 768px) {
  .lt-search-box--hero-unit #query {
    height: 60px;
  }
}

.lt-search-box--hero-unit input[type="submit"] {
  display: inline-block;
  height: 60px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  flex-shrink: 0;
  background: #5aca93;
  border-color: #5aca93;
}

@media (max-width: 767px) {
  .lt-search-box--hero-unit input[type="submit"] {
    display: none;
  }
}

[dir="ltr"] .lt-search-box--hero-unit .search:before {
  left: 20px;
}

[dir="ltr"] .lt-search-box--hero-unit input[type="submit"] {
  margin-left: 1rem;
}

[dir="rtl"] .lt-search-box--hero-unit .search:before {
  right: 20px;
}

[dir="rtl"] .lt-search-box--hero-unit input[type="submit"] {
  margin-right: 1rem;
}

[data-hero-unit] .lt-search-box--hero-unit {
  display: none;
}

@media (min-width: 992px) {
  [data-hero-unit] .lt-search-box--hero-unit {
    display: block;
  }
}

[data-mobile-hero] .lt-search-box--hero-unit {
  display: block;
  width: 100%;
  max-width: unset;
}

@media (min-width: 992px) {
  [data-mobile-hero] .lt-search-box--hero-unit {
    display: none;
  }
}

.lt-search-results-page {
  margin-bottom: calc(var(--line-height-computed) * 2);
}

.lt-search-result {
  border-bottom: 1px solid rgba(196, 196, 196, 1);
}

.lt-search-result__text em {
  padding: 0 3px;
  font-style: normal;
  font-weight: var(--strong-font-weight);
  background-color: #fff3ca;
  border-radius: 3px;
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.lt-search-filters {
  font-size: 0.875rem;
  background-color: #fff;
  border-radius: 8px;
}

.lt-search-filter__btn {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 0;
}

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

[dir="rtl"] .lt-search-filter__btn {
  text-align: right;
}

.lt-search-filter__btn: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-filter__btn:after {
  right: 0.5rem;
}

[dir="rtl"] .lt-search-filter__btn:after {
  left: 0.5rem;
}

[dir="ltr"] .lt-search-filter__btn.is-active:after {
  transform: translateY(-50%) rotate(-180deg);
}

[dir="rtl"] .lt-search-filter__btn.is-active:after {
  transform: translateY(-50%) rotate(180deg);
}

.lt-search-filter__item.is-active .lt-search-filter__link {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.lt-search-filter__link {
  align-items: center;
  color: rgba(25, 25, 25, 1);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lt-search-filter__link:hover,
.lt-search-filter__link:focus,
.lt-search-filter__link:active {
  background-color: var(--gray-lightest);
  border-color: var(--gray-lightest);
}

.lt-search-filter__link:active {
  background-image: none;
  outline: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.lt-search-filter__count {
  display: inline-flex;
  font-size: var(--font-size-small);
}
/* 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(196, 196, 196, 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: 1px solid rgba(196, 196, 196, 1);
}

.lt-my-activities-menu--main .lt-my-activities-menu-item {
  padding: 0.5rem 1rem;
  background-color: rgba(25, 25, 25, 1);
  border-radius: 8px;
}

.lt-my-activities-menu-item__link,
.lt-my-activities-menu-item__link:hover,
.lt-my-activities-menu-item__link:focus {
  color: #fff;
}

.lt-my-activities-menu--main .lt-my-activities-menu-item.is-active {
  font-weight: var(--strong-font-weight);
  color: #fff;
  background-color: rgba(25, 25, 25, 1);
}

.lt-my-activities-menu--sub .lt-my-activities-menu-item.is-active {
  font-weight: var(--strong-font-weight);
}

.lt-my-activities-menu-item {
  margin-bottom: 1rem;
}

@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: 1px solid rgba(196, 196, 196, 1);
    border-radius: 8px;
  }
}

.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: 576px) {
  .lt-comment-form {
    padding-left: 3.5rem;
  }
}

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

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

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

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

.lt-comment-form__attachments {
  margin-bottom: 24px;
}

.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;
}
/* ==========================================================================
  Comment Sorter
  ========================================================================== */
.lt-comment-sorter {
  border-bottom: 1px solid var(--gray-lighter);
}

.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 {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(196, 196, 196, 1);
}

.lt-comment__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.lt-comment__header {
  position: relative;
  margin-bottom: 24px;
}

.lt-comment__content {
  flex-grow: 1;
}

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

[dir="ltr"] .lt-comment__voting-and-actions {
  margin-left: 16px;
}

[dir="rtl"] .lt-comment__voting-and-actions {
  margin-right: 16px;
}

.lt-comment__official-heading {
  position: absolute;
  top: 0;
  width: auto;
  padding: 2px 8px;
  font-size: var(--font-size-small);
  color: #fff;
  background-color: #191919;
  border-radius: 0 0 8px 8px;
}

[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: 1px solid #191919;
  border-radius: 8px;
}

.lt-comment__body {
  margin-bottom: 24px;
  word-break: break-word;
}

.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 [dir="auto"] {
    margin-bottom: 0;
  }
}

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

.lt-comment__actions {
  padding-top: 8px;
}

.lt-comment__actions button {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}
/* Comment List */
.lt-comments {
  margin-bottom: 48px;
}

.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-box {
  display: flex;
  padding: 2rem;
  font-size: 0.875rem;
  color: rgba(25, 25, 25, 1);
  flex-direction: column;
  background-color: var(--gray-lightest);
  border-radius: 8px;
  align-items: flex-start;
}

.lt-article-box__icon {
  width: 2rem;
  height: 2rem;
}

.lt-article-box__text {
  color: var(--meta-text-color);
}

.lt-article-boxes {
  display: grid;
  grid-gap: 1rem;
}

@media (min-width: 992px) {
  .sidenav-enabled .lt-article-boxes,
  .toc-enabled .lt-article-boxes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

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

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

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

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

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

@media (max-width: 575px) {
  .lt-article-container__sidebar {
    padding-top: calc(var(--line-height-computed));

    border-top: 1px solid rgba(196, 196, 196, 1);
  }
}

.lt-article-container__article {
  flex: 1;
}

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

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

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

  .toc-enabled .lt-article-container__sidebar {
    width: 100%;
  }

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

  html.sidenav-enabled .lt-article-container__sidebar {
    flex-grow: 1;
  }

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

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

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

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

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

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

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

.lt-article-list {
  margin-top: 0;
  margin-bottom: 0;
}

[dir="ltr"] .lt-article-list {
  padding-left: 40px;
}

[dir="rtl"] .lt-article-list {
  padding-right: 40px;
}

.lt-article-list-item + .lt-article-list-item {
  margin-top: 1rem;
}

.lt-article-list-item--promoted {
  font-weight: bold;
}

.lt-article-vote {
  position: relative;
  border: 1px solid rgba(25, 25, 25, 1);
  border-radius: 8px;
}

.lt-article-vote__controls {
  display: block;
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-article-vote__item {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.lt-article-vote__item:hover,
.lt-article-vote__item:focus,
.lt-article-vote__item:active {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.lt-article-vote__item:active {
  background-image: none;
}

.lt-article-vote__item:after {
  content: "";
}

.lt-article-vote__item--voted {
  color: #fff;
  background-color: #191919;
  border-color: #191919;
}

.lt-article-vote__question {
  display: block;
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-article-vote__count {
  display: block;
  color: var(--meta-text-color);
}

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

.lt-article {
  position: relative;
}

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

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

.lt-article__body {
  margin-bottom: calc(var(--line-height-computed));
  word-break: break-word;
}

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

.lt-article__body a {
  font-weight: 700;
  text-decoration: underline;
}

[dir="ltr"] .lt-article__body ul,
[dir="ltr"] .lt-article__body ol {
  padding-left: 40px !important;

  @media (max-width: 768px) {
    padding-left: 20px !important;
  }
}

[dir="rtl"] .lt-article__body ul,
[dir="rtl"] .lt-article__body ol {
  padding-right: 40px !important;

  @media (max-width: 768px) {
    padding-right: 20px !important;
  }
}

[dir="ltr"] .lt-article__body ul li::marker,
[dir="ltr"] .lt-article__body ol li::marker,
[dir="rtl"] .lt-article__body ul li::marker,
[dir="rtl"] .lt-article__body ol li::marker {
  color: #191919 !important;
}

@media (max-width: 575px) {
  .lt-article-sidebar {
    padding-top: calc(var(--line-height-computed));

    border-top: 1px solid rgba(196, 196, 196, 1);
  }
}

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

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

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

.content-tags__item {
  padding: 4px 12px;
  color: rgba(25, 25, 25, 1);
  background-color: transparent;
  border: 1px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.content-tags__item:hover,
.content-tags__item:active,
.content-tags__item:focus {
  color: rgba(25, 25, 25, 1);
  background-color: rgba(196, 196, 196, 1);
}

.content-tags__item--search {
  display: inline-flex;
  color: #fff;
  background-color: #191919;
}

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

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

.content-tags__item--search:hover,
.content-tags__item--search:active,
.content-tags__item--search:focus {
  color: #fff;
  background-color: #191919;
}

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

[dir="rtl"] .content-tags__item--search .label {
  margin-left: 3px;
}
/* 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 {
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
}

.lt-category-accordion__link {
  font-weight: bold;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

[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: 50%;
  width: 1rem;
  height: 1rem;
  content: "";
  border-bottom: 2px solid #191919;
  transition: transform 0.3s;
}

[dir="ltr"] .lt-category-accordion__link:before {
  right: 1.5rem;
  border-left: 2px solid #191919;
  transform: rotate(-45deg) translateY(-50%);
}

[dir="rtl"] .lt-category-accordion__link:before {
  left: 1.5rem;
  border-right: 2px solid #191919;
  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: 1px solid var(--gray-lighter);
}
/* Section */
.lt-section-link {
  color: inherit;
  text-decoration: none !important;
}

.lt-section-articles {
  margin-bottom: calc(var(--line-height-computed));
}

.lt-section-articles__title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-h4);
}

.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 {
  margin-bottom: calc(var(--line-height-computed) / 2);
}
/* Community */
.lt-community-nav {
  border-bottom: 1px solid rgba(196, 196, 196, 1);
}

.lt-community-nav-item {
  display: block;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  [dir="ltr"] .lt-community-nav-item + .lt-community-nav-item {
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-community-nav-item + .lt-community-nav-item {
    margin-right: 1rem;
  }
}

.lt-community-nav-item.is-active {
  font-weight: var(--strong-font-weight);
}

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

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

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

[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 {
  background-color: var(--gray-lightest);
}

@media (max-width: 767px) {
  .lt-post-callout {
    text-align: center;
  }
}

.lt-post-list-item {
  padding-top: 1rem;
  margin-bottom: 1rem;

  border-top: 1px solid rgba(196, 196, 196, 1);
}

.lt-post-list-item__icon {
  position: relative;
  top: -4px;
  font-size: 50%;
}

.lt-post-list-item__side {
  min-width: 120px;
}

.lt-post-status {
  position: relative;
  display: inline-block;
  padding: 1px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: rgba(25, 25, 25, 1);
  border-radius: 8px;
}

.lt-post-status--completed:before,
.lt-post-status--answered:before,
.lt-post-status--planned:before,
.lt-post-status--not-planned:before {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 8px;
  opacity: 0.15;
}

[dir="ltr"] .lt-post-status--completed:before,
[dir="ltr"] .lt-post-status--answered:before,
[dir="ltr"] .lt-post-status--planned:before,
[dir="ltr"] .lt-post-status--not-planned:before {
  left: 0;
}

[dir="rtl"] .lt-post-status--completed:before,
[dir="rtl"] .lt-post-status--answered:before,
[dir="rtl"] .lt-post-status--planned:before,
[dir="rtl"] .lt-post-status--not-planned:before {
  right: 0;
}

.lt-post-status--planned:before {
  background-color: #191919;
}

.lt-post-status--not-planned:before {
  background-color: var(--gray-lighter);
}

.lt-post-status--completed:before,
.lt-post-status--answered:before {
  background-color: #05BB0C;
}

.community-badge {
  margin: 2px;
}

.community-badge-titles {
  display: inline-flex;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #191919;
  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;
}

.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 {
  display: inline-flex;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}

[dir="ltr"] .hotposts-icon {
  margin-right: 4px;
}

[dir="rtl"] .hotposts-icon {
  margin-left: 4px;
}

.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: 8px;
}
@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 {
  padding: calc(var(--line-height-computed)) var(--padding-base-horizontal) 0;
  margin-bottom: calc(var(--line-height-computed));
  font-size: 14px;
  border: 1px solid rgba(196, 196, 196, 1);
  border-radius: 8px;
}

.lt-request-sidebar dd {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-request-status {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: rgba(25, 25, 25, 1);
  white-space: nowrap;
  border-radius: 8px;
}

.lt-request-status--solved:before,
.lt-request-status--closed:before,
.lt-request-status--new:before,
.lt-request-status--open:before,
.lt-request-status--answered:before {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 8px;
  opacity: 0.15;
}

[dir="ltr"] .lt-request-status--solved:before,
[dir="ltr"] .lt-request-status--closed:before,
[dir="ltr"] .lt-request-status--new:before,
[dir="ltr"] .lt-request-status--open:before,
[dir="ltr"] .lt-request-status--answered:before {
  left: 0;
}

[dir="rtl"] .lt-request-status--solved:before,
[dir="rtl"] .lt-request-status--closed:before,
[dir="rtl"] .lt-request-status--new:before,
[dir="rtl"] .lt-request-status--open:before,
[dir="rtl"] .lt-request-status--answered:before {
  right: 0;
}

.lt-request-status--solved:before,
.lt-request-status--closed:before {
  background-color: #05BB0C;
}

.lt-request-status--new:before,
.lt-request-status--open:before {
  background-color: #C70606;
}

.lt-request-status--answered:before {
  background-color: #DB8709;
}
/* Formatting */
.accordion {
  padding-top: 0;
  overflow: hidden;
  border: var(--border-width) solid var(--lt-accordion-border);
  border-radius: var(--border-radius-base);
}

.accordion__summary {
  position: relative;
  display: block;
  width: 100%;
  padding: var(--lt-accordion-padding-vertical)
    var(--lt-accordion-padding-horizontal);
  font-weight: var(--font-weight-bold);
  color: var(--accordion-color-text, var(--color-text-primary));
  list-style: none;
  cursor: pointer;
  background-color: transparent;
  background-image: none;
  border: 0;
  touch-action: manipulation;
}

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

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

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

.accordion__item + .accordion__item summary {
  border-top: var(--border-width) solid var(--lt-accordion-border);
}

.stroke .accordion__item + .accordion__item summary {
  border-top: var(--border-width) solid var(--color-brand-primary);
}

.accordion__content {
  padding-top: var(--lt-accordion-padding-vertical);
  padding-bottom: var(--lt-accordion-padding-vertical);
  margin-right: var(--lt-accordion-padding-horizontal);
  margin-left: var(--lt-accordion-padding-horizontal);
  overflow: hidden;
  border-top: var(--border-width) solid var(--lt-accordion-border);
}

.accordion__content *:last-child {
  margin-bottom: 0;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary-wrapper > .lt-icon {
  transition: transform 0.3s;
  margin-inline-start: 1rem;
}

[dir="ltr"] details[open] .accordion__summary-wrapper > .lt-icon {
  transform: rotate(180deg);
}

[dir="rtl"] details[open] .accordion__summary-wrapper > .lt-icon {
  transform: rotate(-180deg);
}

.accordion--large {
  border-radius: var(--border-radius-lg);
}

.accordion--large .accordion__summary {
  font-weight: 400;
}

.lt-icon {
  width: 1rem;
  height: 1rem;
}

.accordion--large .accordion__summary-wrapper .lt-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.accordion--large:hover,
.accordion--large:focus,
.accordion[open] {
  border-color: var(--color-brand-primary);
}

.stroke.accordion {
  border: var(--border-width) solid var(--color-brand-primary);
}

.colored-title.accordion details[open] .accordion__summary-wrapper {
  color: var(--color-brand-primary);
}

.colored.accordion details[open] .accordion__summary-wrapper {
  color: var(--color-brand-primary-inverse);
}

.colored.accordion details[open] .accordion__summary {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.neutral.accordion .accordion__summary {
  background-color: rgba(214, 214, 214, 0.2);
}

.neutral.accordion details[open] .accordion__summary {
  border-bottom: var(--border-width) solid var(--lt-accordion-border);
}

.neutral.accordion details[open] .accordion__content {
  border-top: none;
}

.image-with-border {
  padding: var(--image-padding, 1rem);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.image-with-shadow {
  box-shadow: 0 5px 15px 2px var(--gray);
}

.image-with-lightbox {
  cursor: pointer;
}

.image-overlay {
  position: relative;
}

.image-overlay:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
}

.image-with-video-icon {
  position: relative;
  display: block;
}

.image-with-video-icon img {
  width: 100%;
}

.image-with-video-icon:before {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  font-size: 0;
  content: "";
  border-style: solid;
  transition: transform 0.6s ease;
}

.image-with-video-icon:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
}

[dir="ltr"] .image-with-video-icon:before {
  left: 50%;
  border-color: transparent transparent transparent #fff;
  border-width: 30px 0 30px 60px;
  transform: translate(-50%, -50%);
}

[dir="ltr"] .image-with-video-icon:active:before,
[dir="ltr"] .image-with-video-icon:hover:before {
  transform: translate(-50%, -50%) scale(1.1);
}

[dir="rtl"] .image-with-video-icon:before {
  right: 50%;
  border-color: transparent #fff transparent transparent;
  border-width: 30px 60px 30px 0;
  transform: translate(50%, -50%);
}

[dir="rtl"] .image-with-video-icon:active:before,
[dir="rtl"] .image-with-video-icon:hover:before {
  transform: translate(50%, -50%) scale(1.1);
}

.image-with-background {
  padding: var(--image-padding, 2rem);
  background-color: var(--image-bg, var(--light-gray));
  border-radius: var(--border-radius-base);
}
/* Blockquotes */
blockquote {
  position: relative;
  padding: 1rem 3rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-family-body);
  font-size: var(--text-xl);
  line-height: 2rem;
  color: var(--color-text-primary);
  text-align: center;
}

blockquote > *:last-child {
  margin-bottom: 0;
}

blockquote:after,
blockquote:before {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--color-text-primary);
  content: "";
  background-color: var(--color-text-primary);
  -webkit-mask: var(--blockqoute-icon) center/contain no-repeat;
  mask: var(--blockqoute-icon) center/contain no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

blockquote:before {
  top: 0;
}

[dir="ltr"] blockquote:before {
  left: 0;
}

[dir="rtl"] blockquote:before {
  right: 0;
}

blockquote:after {
  bottom: 0;
}

[dir="ltr"] blockquote:after {
  right: 0;
  transform: scaleY(-1) rotate(180deg);
}

[dir="rtl"] blockquote:after {
  left: 0;
  transform: scaleY(-1) rotate(-180deg);
}

.callout,
.note,
.warning,
.danger,
.success {
  position: relative;
  z-index: 1;
  overflow: hidden;
  list-style: none;
  border-radius: var(--border-radius-base);
}

[dir="ltr"] .callout,
[dir="ltr"] .note,
[dir="ltr"] .warning,
[dir="ltr"] .danger,
[dir="ltr"] .success {
  padding: var(--callout-padding) var(--callout-padding) var(--callout-padding)
    calc(var(--callout-padding) * 2);
}

[dir="rtl"] .callout,
[dir="rtl"] .note,
[dir="rtl"] .warning,
[dir="rtl"] .danger,
[dir="rtl"] .success {
  padding: var(--callout-padding) calc(var(--callout-padding) * 2)
    var(--callout-padding) var(--callout-padding);
}

.callout > * + *,
.note > * + *,
.warning > * + *,
.danger > * + *,
.success > * + * {
  margin-top: var(--flow-space, 1rem);
}

.callout:after,
.note:after,
.warning:after,
.danger:after,
.success:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--callout-color);
  border-radius: var(--border-radius-base);
  opacity: 0.15;
}

[dir="ltr"] .callout:after,
[dir="ltr"] .note:after,
[dir="ltr"] .warning:after,
[dir="ltr"] .danger:after,
[dir="ltr"] .success:after {
  left: 0;
}

[dir="rtl"] .callout:after,
[dir="rtl"] .note:after,
[dir="rtl"] .warning:after,
[dir="rtl"] .danger:after,
[dir="rtl"] .success:after {
  right: 0;
}

.callout:before,
.note:before,
.note--default:before,
.callout--info:before,
.note--warning:before,
.warning:before,
.callout--warning:before,
.note--danger:before,
.danger:before,
.callout--danger:before,
.note--success:before,
.success:before,
.callout--success:before {
  position: absolute;
  top: 2rem;
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask-size: cover;
  mask-size: cover;
}

[dir="ltr"] .callout:before,
[dir="ltr"] .note:before,
[dir="ltr"] .note--default:before,
[dir="ltr"] .callout--info:before,
[dir="ltr"] .note--warning:before,
[dir="ltr"] .warning:before,
[dir="ltr"] .callout--warning:before,
[dir="ltr"] .note--danger:before,
[dir="ltr"] .danger:before,
[dir="ltr"] .callout--danger:before,
[dir="ltr"] .note--success:before,
[dir="ltr"] .success:before,
[dir="ltr"] .callout--success:before {
  left: 2rem;
}

[dir="rtl"] .callout:before,
[dir="rtl"] .note:before,
[dir="rtl"] .note--default:before,
[dir="rtl"] .callout--info:before,
[dir="rtl"] .note--warning:before,
[dir="rtl"] .warning:before,
[dir="rtl"] .callout--warning:before,
[dir="rtl"] .note--danger:before,
[dir="rtl"] .danger:before,
[dir="rtl"] .callout--danger:before,
[dir="rtl"] .note--success:before,
[dir="rtl"] .success:before,
[dir="rtl"] .callout--success:before {
  right: 2rem;
}

.note:before,
.note--default:before,
.callout:before,
.callout--info:before {
  background-color: var(--info-callout-color);
  -webkit-mask: var(--info-callout-icon) center/contain no-repeat;
  mask: var(--info-callout-icon) center/contain no-repeat;
}

.note--success:before,
.success:before,
.callout--success:before {
  background-color: var(--success-callout-color);
  -webkit-mask: var(--success-callout-icon) center/contain no-repeat;
  mask: var(--success-callout-icon) center/contain no-repeat;
}

.note--danger:before,
.danger:before,
.callout--danger:before {
  background-color: var(--danger-callout-color);

  -webkit-mask: var(--danger-callout-icon) center/contain no-repeat;
  mask: var(--danger-callout-icon) center/contain no-repeat;
}

.note--warning:before,
.warning:before,
.callout--warning:before {
  background-color: var(--warning-callout-color);
  -webkit-mask: var(--warning-callout-icon) center/contain no-repeat;
  mask: var(--warning-callout-icon) center/contain no-repeat;
}

.shadow.callout,
.shadow.note,
.shadow.warning,
.shadow.danger,
.shadow.success {
  box-shadow: var(--callout-box-shadow);
}

[dir="ltr"] .minimal.callout,
[dir="ltr"] .minimal.note,
[dir="ltr"] .minimal.warning,
[dir="ltr"] .minimal.danger,
[dir="ltr"] .minimal.success {
  border-left: none;
}

[dir="rtl"] .minimal.callout,
[dir="rtl"] .minimal.note,
[dir="rtl"] .minimal.warning,
[dir="rtl"] .minimal.danger,
[dir="rtl"] .minimal.success {
  border-right: none;
}

.stroke.note,
.minimal.stroke.note,
.minimal.stroke.callout--info,
.stroke.callout--info {
  border: 1px solid var(--info-callout-color);
}

.minimal.stroke.warning,
.minimal.stroke.callout--warning,
.stroke.callout--warning,
.stroke.warning {
  border: 1px solid var(--warning-callout-color);
}

.minimal.stroke.callout--danger,
.minimal.stroke.danger,
.stroke.callout--danger,
.stroke.danger {
  border: 1px solid var(--danger-callout-color);
}

.minimal.stroke.callout--success,
.minimal.stroke.success,
.stroke.callout--success,
.stroke.success {
  border: 1px solid var(--success-callout-color);
}

.note,
.note--default,
.callout,
.callout--info,
.callout--primary {
  --callout-color: var(--info-callout-color);
}

[dir="ltr"] .note,
[dir="ltr"] .note--default,
[dir="ltr"] .callout,
[dir="ltr"] .callout--info,
[dir="ltr"] .callout--primary {
  border-left: var(--callout-border-width) solid var(--info-callout-color);
}

[dir="rtl"] .note,
[dir="rtl"] .note--default,
[dir="rtl"] .callout,
[dir="rtl"] .callout--info,
[dir="rtl"] .callout--primary {
  border-right: var(--callout-border-width) solid var(--info-callout-color);
}

.warning,
.note--warning,
.callout--warning {
  --callout-color: var(--warning-callout-color);
}

[dir="ltr"] .warning,
[dir="ltr"] .note--warning,
[dir="ltr"] .callout--warning {
  border-left: var(--callout-border-width) solid var(--warning-callout-color);
}

[dir="rtl"] .warning,
[dir="rtl"] .note--warning,
[dir="rtl"] .callout--warning {
  border-right: var(--callout-border-width) solid var(--warning-callout-color);
}

.danger,
.note--danger,
.callout--danger {
  --callout-color: var(--danger-callout-color);
}

[dir="ltr"] .danger,
[dir="ltr"] .note--danger,
[dir="ltr"] .callout--danger {
  border-left: var(--callout-border-width) solid var(--danger-callout-color);
}

[dir="rtl"] .danger,
[dir="rtl"] .note--danger,
[dir="rtl"] .callout--danger {
  border-right: var(--callout-border-width) solid var(--danger-callout-color);
}

.success,
.note--success,
.callout--success {
  --callout-color: var(--success-callout-color);
}

[dir="ltr"] .success,
[dir="ltr"] .note--success,
[dir="ltr"] .callout--success {
  border-left: var(--callout-border-width) solid var(--success-callout-color);
}

[dir="rtl"] .success,
[dir="rtl"] .note--success,
[dir="rtl"] .callout--success {
  border-right: var(--callout-border-width) solid var(--success-callout-color);
}

.no-icon.callout,
.no-icon.note,
.no-icon.warning,
.no-icon.danger,
.no-icon.success {
  padding: var(--callout-padding);
}

.no-icon.callout:before,
.no-icon.note:before,
.no-icon.warning:before,
.no-icon.danger:before,
.no-icon.success:before {
  display: none;
}

.transparent.callout:after,
.transparent.note:after,
.transparent.warning:after,
.transparent.danger:after,
.transparent.success:after {
  background-color: transparent;
}

.neutral.callout:after,
.neutral.note:after,
.neutral.warning:after,
.neutral.danger:after,
.neutral.success:after {
  background-color: var(--neutral-callout-color);
  opacity: 0.2;
}

code {
  font-size: 0.875em;
  word-wrap: break-word;
}

.rte code:not([class]) {
  padding: 0.25em;
  background-color: var(--code-bg);
  border-radius: var(--border-radius-base);
}

.rte pre code {
  padding: 1.25rem;
  border-radius: var(--border-radius-base);
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

pre {
  position: relative;
}

.lt-copy-code {
  position: absolute;
  top: 22px;
  z-index: 2;
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-theme-text, var(--color-text-primary));
  cursor: pointer;
}

.lt-copy-code:before {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  content: "";
}

[dir="ltr"] .lt-copy-code {
  right: 22px;
}

[dir="ltr"] .lt-copy-code:before {
  margin-right: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir="rtl"] .lt-copy-code {
  left: 22px;
}

[dir="rtl"] .lt-copy-code:before {
  margin-left: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir] .lt-copy-code:before {
  background-size: 18px auto;
}

.list-check ul:not([class]),
.list-bullet ul:not([class]),
.list-number ul:not([class]),
.list-colored ul:not([class]),
.list-anchor ul:not([class]),
.list-dash ul:not([class]),
.list-file ul:not([class]),
.rte ul:not([class]) {
  list-style-type: disc;
}

[dir="ltr"] .list-check ul:not([class]),
[dir="ltr"] .list-bullet ul:not([class]),
[dir="ltr"] .list-number ul:not([class]),
[dir="ltr"] .list-colored ul:not([class]),
[dir="ltr"] .list-anchor ul:not([class]),
[dir="ltr"] .list-dash ul:not([class]),
[dir="ltr"] .list-file ul:not([class]),
[dir="ltr"] .rte ul:not([class]) {
  padding-left: 1rem;
}

[dir="rtl"] .list-check ul:not([class]),
[dir="rtl"] .list-bullet ul:not([class]),
[dir="rtl"] .list-number ul:not([class]),
[dir="rtl"] .list-colored ul:not([class]),
[dir="rtl"] .list-anchor ul:not([class]),
[dir="rtl"] .list-dash ul:not([class]),
[dir="rtl"] .list-file ul:not([class]),
[dir="rtl"] .rte ul:not([class]) {
  padding-right: 1rem;
}

.list-check ul:not([class]) > li,
.list-bullet ul:not([class]) > li,
.list-number ul:not([class]) > li,
.list-colored ul:not([class]) > li,
.list-anchor ul:not([class]) > li,
.list-dash ul:not([class]) > li,
.list-file ul:not([class]) > li,
.rte ul:not([class]) > li {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check ul:not([class]) > li,
[dir="ltr"] .list-bullet ul:not([class]) > li,
[dir="ltr"] .list-number ul:not([class]) > li,
[dir="ltr"] .list-colored ul:not([class]) > li,
[dir="ltr"] .list-anchor ul:not([class]) > li,
[dir="ltr"] .list-dash ul:not([class]) > li,
[dir="ltr"] .list-file ul:not([class]) > li,
[dir="ltr"] .rte ul:not([class]) > li {
  padding-left: 0.5rem;
}

[dir="rtl"] .list-check ul:not([class]) > li,
[dir="rtl"] .list-bullet ul:not([class]) > li,
[dir="rtl"] .list-number ul:not([class]) > li,
[dir="rtl"] .list-colored ul:not([class]) > li,
[dir="rtl"] .list-anchor ul:not([class]) > li,
[dir="rtl"] .list-dash ul:not([class]) > li,
[dir="rtl"] .list-file ul:not([class]) > li,
[dir="rtl"] .rte ul:not([class]) > li {
  padding-right: 0.5rem;
}

.list-check ul:not([class]) > li::marker,
.list-bullet ul:not([class]) > li::marker,
.list-number ul:not([class]) > li::marker,
.list-colored ul:not([class]) > li::marker,
.list-anchor ul:not([class]) > li::marker,
.list-dash ul:not([class]) > li::marker,
.list-file ul:not([class]) > li::marker,
.rte ul:not([class]) > li::marker {
  color: var(--rte-bullet-color);
}

.rte-enhanced ol {
  list-style: none;
}

.list-check,
.list-bullet,
.list-number,
.rte-enhanced ol,
.rte ol,
.list-colored,
.list-anchor,
.list-dash,
.list-file {
  list-style-position: inside;
}

[dir="ltr"] .list-check,
[dir="ltr"] .list-bullet,
[dir="ltr"] .list-number,
[dir="ltr"] .rte-enhanced ol,
[dir="ltr"] .rte ol,
[dir="ltr"] .list-colored,
[dir="ltr"] .list-anchor,
[dir="ltr"] .list-dash,
[dir="ltr"] .list-file {
  padding-left: 0;
}

[dir="rtl"] .list-check,
[dir="rtl"] .list-bullet,
[dir="rtl"] .list-number,
[dir="rtl"] .rte-enhanced ol,
[dir="rtl"] .rte ol,
[dir="rtl"] .list-colored,
[dir="rtl"] .list-anchor,
[dir="rtl"] .list-dash,
[dir="rtl"] .list-file {
  padding-right: 0;
}

.list-number li,
.rte-enhanced ol li,
.list-colored li,
.list-file li,
.rte li {
  list-style: inherit;
}

.list-number li:last-child,
.rte-enhanced ol li:last-child,
.list-colored li:last-child,
.rte li:last-child {
  margin-bottom: 0;
}

.lt-article__body .list-check,
.lt-article__body .list-bullet,
.lt-article__body .list-number,
.lt-article__body .rte-enhanced ol,
.lt-article__body .list-colored,
.lt-article__body .list-anchor,
.lt-article__body .list-task,
.lt-article__body .list-dash,
.lt-article__body .list-file {
  list-style: none;
}

[dir="ltr"] .lt-article__body .list-check,
[dir="ltr"] .lt-article__body .list-bullet,
[dir="ltr"] .lt-article__body .list-number,
[dir="ltr"] .lt-article__body .rte-enhanced ol,
[dir="ltr"] .lt-article__body .list-colored,
[dir="ltr"] .lt-article__body .list-anchor,
[dir="ltr"] .lt-article__body .list-task,
[dir="ltr"] .lt-article__body .list-dash,
[dir="ltr"] .lt-article__body .list-file {
  padding-left: 0;
}

[dir="rtl"] .lt-article__body .list-check,
[dir="rtl"] .lt-article__body .list-bullet,
[dir="rtl"] .lt-article__body .list-number,
[dir="rtl"] .lt-article__body .rte-enhanced ol,
[dir="rtl"] .lt-article__body .list-colored,
[dir="rtl"] .lt-article__body .list-anchor,
[dir="rtl"] .lt-article__body .list-task,
[dir="rtl"] .lt-article__body .list-dash,
[dir="rtl"] .lt-article__body .list-file {
  padding-right: 0;
}

.list-check > li,
.list-bullet > li,
.list-number > li,
.rte-enhanced ol > li,
.list-colored > li,
.list-task > div,
.list-task > li,
.list-dash > li,
.list-anchor > li,
.list-file > li {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check > li,
[dir="ltr"] .list-bullet > li,
[dir="ltr"] .list-number > li,
[dir="ltr"] .rte-enhanced ol > li,
[dir="ltr"] .list-colored > li,
[dir="ltr"] .list-task > div,
[dir="ltr"] .list-task > li,
[dir="ltr"] .list-dash > li,
[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 2.5rem;
}

[dir="rtl"] .list-check > li,
[dir="rtl"] .list-bullet > li,
[dir="rtl"] .list-number > li,
[dir="rtl"] .rte-enhanced ol > li,
[dir="rtl"] .list-colored > li,
[dir="rtl"] .list-task > div,
[dir="rtl"] .list-task > li,
[dir="rtl"] .list-dash > li,
[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 2.5rem;
}

[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 1.5rem;
}

[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 1.5rem;
}

[dir="ltr"] .list-dash > li {
  padding-left: 1.75rem;
}

[dir="rtl"] .list-dash > li {
  padding-right: 1.75rem;
}

[dir="ltr"] .rte li + ul,
[dir="ltr"] .rte li + ol {
  margin-left: 2.5rem;
}

[dir="rtl"] .rte li + ul,
[dir="rtl"] .rte li + ol {
  margin-right: 2.5rem;
}

.list-check > li:before,
.list-bullet > li:before,
.list-number > li:before,
.list-anchor > li:before,
.list-file > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before,
.list-dash > li:before {
  position: absolute;
  top: 0.15em;
  display: inline-block;
  width: 1.725em;
  height: 1.725em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.725em;
  text-align: center;
  border-radius: 50%;
}

[dir="ltr"] .list-check > li:before,
[dir="ltr"] .list-bullet > li:before,
[dir="ltr"] .list-number > li:before,
[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before,
[dir="ltr"] .rte-enhanced ol > li:before,
[dir="ltr"] .list-colored > li:before,
[dir="ltr"] .list-dash > li:before {
  left: 0;
}

[dir="rtl"] .list-check > li:before,
[dir="rtl"] .list-bullet > li:before,
[dir="rtl"] .list-number > li:before,
[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before,
[dir="rtl"] .rte-enhanced ol > li:before,
[dir="rtl"] .list-colored > li:before,
[dir="rtl"] .list-dash > li:before {
  right: 0;
}

.list-anchor > li:before,
.list-file > li:before {
  width: 1rem;
  height: 1rem;
  content: "";
}

[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before {
  left: 0;
}

[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before {
  right: 0;
}

.list-anchor > li:before {
  top: 0.4rem;
  background: var(--anchor-list-icon) center/contain no-repeat;
}

.list-file > li:before {
  top: 0.5rem;
  background: var(--anchor-file-icon) center/contain no-repeat;
}

.list-bullet > li:before,
.list-check > li:before {
  color: var(--list-bullet-text, var(--color-brand-primary-inverse));
  content: "✓";
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.list-number,
.rte-enhanced ol,
.list-colored {
  counter-reset: list;
}

.list-number > li,
.rte-enhanced ol > li,
.list-colored > li {
  counter-increment: list;
}

.list-number > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before {
  color: var(--list-bullet-bg, var(--color-brand-primary-inverse));
  content: counter(list);
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.task-wrapper {
  display: flex;
  align-items: center;
}

.task-wrapper label {
  display: flex;
  font-weight: normal;
  cursor: pointer;
  align-items: center;
}

[dir="ltr"] .task-wrapper label {
  margin-left: -2rem;
}

[dir="rtl"] .task-wrapper label {
  margin-right: -2rem;
}

.task-wrapper label:before {
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-color: var(--body-color-bg);
  border: 0.05em solid var(--color-text-primary);
  border-radius: 0.15em;
}

[dir="ltr"] .task-wrapper label:before {
  margin-right: 0.5em;
}

[dir="rtl"] .task-wrapper label:before {
  margin-left: 0.5em;
}

.task-wrapper input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}

.task-wrapper label:hover:before,
.task-wrapper input[type="checkbox"]:hover + label:before {
  background-color: var(--color-bg-secondary);
}

.task-wrapper label:focus:before,
.task-wrapper input[type="checkbox"]:focus + label:before {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-brand-primary);
}

.task-wrapper input[type="checkbox"]:checked + label:before {
  display: flex;
  color: var(--color-brand-primary-inverse);
  content: "✓";
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  justify-content: center;
  align-items: center;
}

.list-dash > li:before {
  content: "—";
}

.list-step {
  position: relative;
}

.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: 10px;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-step > li:not(:last-child):after {
  left: calc(1.5rem + 1px);
}

[dir="rtl"] .list-step > li:not(:last-child):after {
  right: calc(1.5rem + 1px);
}

.list-number.list-step > li:not(:last-child):after,
.list-colored.list-step > li:not(:last-child):after,
.list-file.list-step > li:not(:last-child):after,
.list-task.list-step > .task-wrapper:not(:last-child):after,
.list-task.list-step > li:not(:last-child):after,
.list-dash.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: -1.5rem;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-number.list-step > li:not(:last-child):after,
[dir="ltr"] .list-colored.list-step > li:not(:last-child):after,
[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-dash.list-step > li:not(:last-child):after {
  left: calc(1rem - 4px);
}

[dir="rtl"] .list-number.list-step > li:not(:last-child):after,
[dir="rtl"] .list-colored.list-step > li:not(:last-child):after,
[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-dash.list-step > li:not(:last-child):after {
  right: calc(1rem - 4px);
}

[dir="ltr"] .list-file.list-step > li:not(:last-child):after {
  left: 1.5rem;
}

[dir="rtl"] .list-file.list-step > li:not(:last-child):after {
  right: 1.5rem;
}

.list-task.list-step > li {
  position: relative;
}

.list-task.list-step > li:before {
  position: absolute;
  top: calc(1rem - 6px);
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--body-color-bg);
  border: 1px solid var(--color-text-primary);
  border-radius: 50%;
}

[dir="ltr"] .list-task.list-step > li:before {
  left: calc(1rem - 2px);
}

[dir="rtl"] .list-task.list-step > li:before {
  right: calc(1rem - 2px);
}

[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-task.list-step > li:not(:last-child):after {
  left: calc(1rem + 2px);
}

[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-task.list-step > li:not(:last-child):after {
  right: calc(1rem + 2px);
}

.img-magnifier-glass {
  position: absolute;
  width: 150px;
  height: 150px;
  cursor: none;
  border: 1px solid rgb(121, 121, 121);
  border-radius: 50%;
}

.rte iframe,
.rte embed,
.rte object,
.rte video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.rte {
  line-height: 1.8;
  word-break: break-word;
}

.rte * {
  margin-bottom: 0;
}

.rte > *:not([hidden]) + *:not([hidden]) {
  margin-top: var(--flow-space, 1rem);
}

.rte > * {
  margin-bottom: 0;
}

.rte h1,
.rte h2,
.rte h3 {
  --flow-space: 3rem;
}

.rte h4,
.rte h5,
.rte h6 {
  --flow-space: 2rem;
}

.rte:after {
  display: block;
  clear: both;
  content: "";
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte figcaption {
  margin-top: 1rem;
  opacity: 0.75;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
  background-color: transparent;
}

.rte table:not([class*="table"]) {
  width: 100%;
  table-layout: auto;
}

[dir="ltr"] .rte table:not([class*="table"]) {
  text-align: left;
}

[dir="rtl"] .rte table:not([class*="table"]) {
  text-align: right;
}

.rte table:not([class*="table"]) thead {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) th,
.rte table:not([class*="table"]) td {
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}

[dir="ltr"] .rte table:not([class*="table"]) th:first-child,
[dir="ltr"] .rte table:not([class*="table"]) td:first-child {
  padding-left: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:first-child,
[dir="rtl"] .rte table:not([class*="table"]) td:first-child {
  padding-right: 0;
}

[dir="ltr"] .rte table:not([class*="table"]) th:last-child,
[dir="ltr"] .rte table:not([class*="table"]) td:last-child {
  padding-right: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:last-child,
[dir="rtl"] .rte table:not([class*="table"]) td:last-child {
  padding-left: 0;
}

.rte table:not([class*="table"]) th {
  font-weight: 600;
  vertical-align: bottom;
}

.rte table:not([class*="table"]) tbody tr {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) tbody td {
  padding-top: 0.5rem;
  vertical-align: baseline;
}

.rte table:not([class*="table"]) tbody tr:last-child {
  border-bottom-width: 0;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 575px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    border: var(--border-width) solid var(--color-border);
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .table-responsive > table > thead > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}

.rte table.hover td,
.rte table.hover th,
.rte table.border td,
.rte table.border th,
.rte table.striped td,
.rte table.striped th,
.rte table.colored td,
.rte table.colored th {
  padding: 1rem !important;
}

table.striped tbody tr:nth-child(odd) {
  color: inherit;
}

.rte table.colored:not([class*="table"]) thead {
  border-bottom: none;
}

[dir="ltr"] .table--color-header thead th:first-child,
[dir="ltr"] table.colored thead th:first-child {
  border-top-left-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:first-child,
[dir="rtl"] table.colored thead th:first-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--color-header thead th:last-child,
[dir="ltr"] table.colored thead th:last-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:last-child,
[dir="rtl"] table.colored thead th:last-child {
  border-top-left-radius: var(--border-radius-base-min);
}

table.table--color-header th,
table.colored th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

table.border {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

table.border tbody tr:not(:last-child) td,
table.border th {
  border-bottom: 1px solid var(--color-border);
}

[dir="ltr"] table.border td:not(:first-child),
[dir="ltr"] table.border th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] table.border td:not(:first-child),
[dir="rtl"] table.border th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: calc(var(--line-height-computed));
}

.table th,
.table td {
  padding: 12px;
  vertical-align: top;
}

.table td {
  border-top: 1px solid var(--color-border);
}

.table--color-header tbody tr:first-child td {
  border-top: none;
}

.table thead th {
  vertical-align: bottom;
}

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

[dir="rtl"] .table thead th {
  text-align: right;
}

.table tbody + tbody {
  border-top: 1px solid var(--color-border);
}

.table .table {
  background-color: var(--color-brand-primary-inverse);
}

.table--color-header th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: var(--color-brand-primary-inverse);
}

.table--striped tbody tr:nth-child(odd) {
  color: inherit;
}

.table--hover tbody tr:hover {
  color: inherit;
}

.table--bordered {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--bordered td:not(:first-child),
[dir="ltr"] .table--bordered th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] .table--bordered td:not(:first-child),
[dir="rtl"] .table--bordered th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

.table--striped tbody tr:nth-child(odd),
table.striped tbody tr:nth-child(odd),
.table--hover tbody tr,
.rte table.hover tr {
  position: relative;
}

.table--striped tbody tr:nth-child(odd) td,
table.striped tbody tr:nth-child(odd) td,
.table--hover tbody tr td,
.rte table.hover tr td {
  position: relative;
  z-index: 1;
}

.table--striped th,
.table--striped td,
table.striped th,
.table--striped td {
  position: relative;
}

.table--striped tbody td:after,
table.striped tbody td:after,
.table--hover tbody td:after,
.rte table.hover tbody td:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  opacity: 0.3;
}

[dir="ltr"] .table--striped tbody td:after,
[dir="ltr"] table.striped tbody td:after,
[dir="ltr"] .table--hover tbody td:after,
[dir="ltr"] .rte table.hover tbody td:after {
  left: 0;
}

[dir="rtl"] .table--striped tbody td:after,
[dir="rtl"] table.striped tbody td:after,
[dir="rtl"] .table--hover tbody td:after,
[dir="rtl"] .rte table.hover tbody td:after {
  right: 0;
}

.table--hover tbody td:after,
.rte table.hover tbody td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--striped tbody td:after,
table.striped tbody td:after {
  background-color: var(--color-table-bg-hover);
}

.table--striped tbody tr:nth-child(even) td:after,
table.striped tbody tr:nth-child(even) td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--hover tbody tr:hover td:after,
.rte table.hover tbody tr:hover td:after {
  background-color: var(--color-table-bg-hover);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 576px) {
  .tabs {
    flex-direction: row;
  }
}

.tab {
  flex-basis: 100%;
  padding: 1rem;
  border: var(--border-width) solid var(--color-border);
  border-bottom-right-radius: var(--border-radius-base);
  border-bottom-left-radius: var(--border-radius-base);
}

.tab > *:last-child {
  margin-bottom: 0;
}

.tabs-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  cursor: pointer;
  border-color: var(--color-border);
  border-style: solid;
  border-width: var(--border-width) var(--border-width) 0 var(--border-width);
}

@media (min-width: 576px) {
  .tabs-link {
    margin-bottom: calc(-1 * var(--border-width));
  }

  .tabs-link:not([aria-selected="true"]) {
    border-color: transparent;
  }
}

.tabs-link:first-child {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base);
}

@media (min-width: 576px) {
  .tabs-link {
    border-top-left-radius: var(--border-radius-base);
    border-top-right-radius: var(--border-radius-base);
  }
}

.tabs-link[aria-selected="true"] {
  color: var(--color-brand-primary);
  cursor: pointer;
  background-color: var(--tabs-bg, var(--color-bg));
  border-color: var(--color-border);
}

.underline .tabs-link[aria-selected="true"] {
  border-color: var(--color-brand-primary);
  border-width: 0 0 var(--border-width) 0;
}

.background .tabs-link[aria-selected="true"],
.background .tab {
  position: relative;
  overflow: hidden;
  color: var(--color-text-primary);
  border-width: 0 0 0 0;
}

.background .tab:after,
.background .tabs-link[aria-selected="true"]:after {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-brand-primary);
  opacity: 0.15;
}

[dir="ltr"] .background .tab:after,
[dir="ltr"] .background .tabs-link[aria-selected="true"]:after {
  left: 0;
}

[dir="rtl"] .background .tab:after,
[dir="rtl"] .background .tabs-link[aria-selected="true"]:after {
  right: 0;
}

slider-component {
  position: relative;
  display: block;
}

.slider-grid {
  display: flex;
  padding: 0;
  margin-bottom: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.slider-grid:last-child {
  margin-bottom: 0;
}

.slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
  width: 0.4rem;
  height: 0.4rem;
}

.slider::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 0.4rem;
}

.slider::-webkit-scrollbar-track {
  border-radius: 0.4rem;
}

.slider.slider--tablet {
  position: relative;
  margin-bottom: 1rem;
  overflow-x: auto;
  flex-wrap: inherit;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

[dir="ltr"] .slider.slider--tablet {
  scroll-padding-left: 1.5rem;
}

[dir="rtl"] .slider.slider--tablet {
  scroll-padding-right: 1.5rem;
}

.slider--tablet.smooth {
  scroll-behavior: smooth;
}

.slider--tablet:after {
  width: 0;
  content: "";
}

[dir="ltr"] .slider--tablet:after {
  padding-left: 1.5rem;
}

[dir="rtl"] .slider--tablet:after {
  padding-right: 1.5rem;
}

.slider.slider--tablet .slider__slide {
  margin-bottom: 0;
}

.slider-grid__item {
  flex-grow: 1;
  flex-shrink: 0;
}

.slider-grid__item.slider__slide--full-width {
  width: 100%;
  max-width: none;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  padding-bottom: 0;
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-btn.slider-button {
  display: flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  align-items: center;
  justify-content: center;
}

.slider-button .icon {
  height: 0.6rem;
}

.slider-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.slider-button[disabled] .icon {
  cursor: not-allowed;
}

[dir="ltr"] .slider-button--next .icon {
  transform: rotate(-90deg);
}

[dir="rtl"] .slider-button--next .icon {
  transform: rotate(90deg);
}

[dir="ltr"] .slider-button--prev .icon {
  transform: rotate(90deg);
}

[dir="rtl"] .slider-button--prev .icon {
  transform: rotate(-90deg);
}

[dir="ltr"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

[dir="rtl"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="ltr"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="rtl"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

.slider-counter {
  display: flex;
  justify-content: center;
  min-width: 4.4rem;
}

.lt-section-articles__link {
  text-decoration: underline;
  font-weight: 700;
}

.lt-section-articles__link:hover {
  text-decoration: underline;
}

a {
  color: #191919;
  font-weight: bold;
  text-decoration: underline;
}
.breadcrumbs a {
  font-weight: normal;
}

nav ul li a {font-weight: normal !important;}