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

:root {
  --color-bg: #fff;
  --color-bg-secondary: #F2F2F2;
  --color-bg-tertiary: #ddd;
  --color-bg-cta: #fff;

  --color-text-primary: #0F0F10;
  --color-text-secondary: #56595D;
  --color-border: #E4E5E7;
  --color-link: #1C14FF;
  --color-link-hover: #1C14FF;
  --color-info: rgba(229, 235, 255, 1);
  --color-warning: rgba(255, 246, 235, 1);
  --color-danger: rgba(253, 247, 247, 1);
  --color-success: rgba(235, 255, 245, 1);

  --color-ui-danger-text: #b42318;
  --color-ui-danger-bg: #fef3f2;
  --color-service-warning: #f79009;

  --color-brand-primary: #80E5A7;
  --color-brand-primary-inverse: rgba(255, 255, 255, 1);
  --color-brand-primary-hover: #003311;
  --color-brand-primary-pressed: #003311;

  --link-decoration-hover: none;

  --button-color-primary: var(--color-brand-primary);
  --button-color-primary-text: var(--color-brand-primary-inverse);

  --button-color-secondary: #0D6E3F;
  --button-color-tertiary: #003311;

  --button-font-weight: 600;
  --block-bg: rgba(255, 255, 255, 1);
  --block-text-color: rgba(42, 44, 49, 1);

  --input-color-border: #E4E5E7;
  --input-color-border-hover: #0F0F10;
  --input-color-border-focus: #80E5A7;

  --font-body-scale: 1;
  --font-size-base: 16px;
  --font-family-body: 'Figtree', sans-serif;
  --font-family-heading: 'Figtree', sans-serif;
  --font-weight-bold: 600;
  --font-weight-heading: 600;

  --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.4rem * var(--font-body-scale));
  --text-3xl: calc(1.8rem * var(--font-body-scale));
  --text-4xl: calc(2rem * var(--font-body-scale));
  --text-5xl: calc(3rem * var(--font-body-scale));

  --font-size-h1: var(--text-5xl);
  --font-size-h2: var(--text-4xl);
  --font-size-h3: var(--text-3xl);
  --font-size-h4: var(--text-2xl);
  --font-size-h5: var(--text-xl);
  --font-size-h6: var(--text-lg);

  --line-height-body: 1.5;
  --line-height-heading: 1.2;

  --text-margin-bottom: 2rem;

  --grid-gutter-width: 1rem;

  --padding-base-horizontal: 12px;
  --topbar-bg: #fff;
  --topbar-color-text: #003311;
  --topbar-color-text-hover: #003311;
  --topbar-logo-height: 24px;
  --topbar-font-weight: var(--font-weight-bold);

  --footer-bg: #1C1C1C;
  --footer-color-text: #fff;
  --footer-color-link: #fff;

  --hero-bg: #003311;
  --hero-bg-mask: rgba(0, 0, 0, 0);
  --hero-color-text: #fff;
  --hero-image-url: url(/hc/theming_assets/01JWGYHP7VBW0ZG9CBMCTPYG61);

  --custom-block-icon-size: 64px;
  --custom-block-icon-color: #2863F6;

  --contact-box-icon-size: 96px;
  --article-box-icon-size: $article_boxes_icon_size;

  --card-padding: 2rem;

  --border-width: 1px;

  --info-callout-color: rgba(229, 235, 255, 1);
  --warning-callout-color: rgba(255, 246, 235, 1);
  --danger-callout-color: rgba(253, 247, 247, 1);
  --success-callout-color: rgba(235, 255, 245, 1);

  --border-radius-base-min: 4px;
  --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)
  );

  --border-radius-pill: calc(4px * 50);
  --border-radius-menu-max: 24px;
  --border-radius-menu-item-max: 8px;

  --border-radius-input-max: 16px;

  --form-pill-bg: #d6d6d6;
  --form-pill-text: #1c1c1c;

  --lt-accordion-border: #E4E5E7;
  --lt-accordion-padding-vertical: 1rem;
  --lt-accordion-padding-horizontal: 1.5rem;

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

  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
  --duration-extra-long: 800ms;

  --animate-duration: 1.5s;
  --animate-delay: 1s;
  --animate-repeat: 1;
  --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);

  --animation-slide-in: slideIn var(--duration-long) var(--ease-out-slow)
    forwards;
  --animation-fade-in: fadeIn var(--duration-long) var(--ease-out-slow);

  --gray: #55595c;
  --gray-light: #818a91;
  --gray-lighter: #eceeef;
  --gray-lightest: #f7f7f9;
}
@media (max-width: 767px) {
  :root {
    --font-body-scale: 0.875;
  }
}
/* Reset the box-sizing */
*,
*:before,
*:after {
  box-sizing: border-box;
}

*:focus-visible {
  outline-offset: 5px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@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: var(--font-family-body);
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  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: var(--color-link);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-link-hover);
  -webkit-text-decoration: var(--link-decoration-hover);
  text-decoration: var(--link-decoration-hover);
}

figure {
  margin: 0;
}

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

hr {
  border-top: var(--border-width) solid var(--color-border);
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-heading);
  letter-spacing: -0.025em;
  word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
  margin: 0 0 24px;
}

h1,
.h1 {
  font-size: var(--text-4xl);
}
@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: var(--text-5xl);
  }
}

h2,
.h2 {
  font-size: var(--text-3xl);
}
@media only screen and (min-width: 768px) {
  h2,
  .h2 {
    font-size: var(--text-4xl);
  }
}

h3,
.h3 {
  font-size: var(--text-2xl);
}
@media only screen and (min-width: 768px) {
  h3,
  .h3 {
    font-size: var(--text-3xl);
  }
}

h4,
.h4 {
  font-size: var(--text-xl);
}
@media only screen and (min-width: 768px) {
  h4,
  .h4 {
    font-size: var(--text-2xl);
  }
}

h5,
.h5 {
  font-size: var(--text-lg);
}
@media only screen and (min-width: 768px) {
  h5,
  .h5 {
    font-size: var(--text-xl);
  }
}

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

b,
strong {
  font-weight: bold;
}

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

dt,
dd {
  margin-bottom: 1rem;
  line-height: var(--line-height-body);
}

dt {
  font-weight: var(--font-weight-bold);
}

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

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

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

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

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .dl-horizontal dd {
    float: right;
    width: 70%;
  }
}
/* Blockquotes */
blockquote {
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-family-body);
  font-style: italic;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

[dir="ltr"] blockquote {
  border-left: 5px solid var(--color-brand-primary);
}

[dir="rtl"] blockquote {
  border-right: 5px solid var(--color-brand-primary);
}
/*  Addresses */
address {
  margin-bottom: 1.5rem;
}

.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%);
}
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll.animate--fade-in,
  .animate-on-scroll.animate--slide-in {
    opacity: 0.01;
  }

  .animate-on-scroll.animate--slide-in {
    transform: translateY(2rem);
  }

  .animate-on-scroll:not(.animate-on-scroll--offscreen).animate--fade-in {
    opacity: 1;
    -webkit-animation: var(--animation-fade-in);
    animation: var(--animation-fade-in);
  }

  .animate-on-scroll:not(.animate-on-scroll--offscreen).animate--slide-in {
    -webkit-animation: var(--animation-slide-in);
    animation: var(--animation-slide-in);
    -webkit-animation-delay: calc(var(--animation-order) * 75ms);
    animation-delay: calc(var(--animation-order) * 75ms);
  }

  .animate-on-scroll:not(
      .animate-on-scroll--offscreen
    ).animate-on-scroll--cancel {
    opacity: 1;
    transition: none;
    -webkit-animation: none;
    animation: none;
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0.01;
    transform: translateY(3rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0.01;
    transform: translateY(3rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0.01;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0.01;
  }

  to {
    opacity: 1;
  }
}

.lt-flow > * {
  margin-bottom: 0;
}

.lt-flow > *:not([hidden]) + *:not([hidden]) {
  margin-top: var(--flow-space, 1rem);
}

.lt-icon {
  position: relative;
  display: inline-flex;
  width: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

summary {
  position: relative;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details-accordion {
  display: block;
}
/* Some overrides for default extension styles */
.lt-toc_is-mobile .lt-toc--container {
  border-color: var(--color-border) !important;
  border-width: var(--border-width) !important;
  border-radius: var(--border-radius-base) !important;
}

.lt-toc_is-mobile .lt-toc--current {
  font-weight: var(--font-weight-bold) !important;
}

[dir="ltr"] .lt-toc_is-mobile .lt-toc--current {
  padding: 1rem 2.5rem 1rem 1rem !important;
}

[dir="rtl"] .lt-toc_is-mobile .lt-toc--current {
  padding: 1rem 1rem 1rem 2.5rem !important;
}

[dir="ltr"] .lt-toc_is-mobile .lt-toc--current:after,
[dir="ltr"] .lt-toc_is-mobile .lt-toc--current:before {
  right: 2rem !important;
}

[dir="rtl"] .lt-toc_is-mobile .lt-toc--current:after,
[dir="rtl"] .lt-toc_is-mobile .lt-toc--current:before {
  left: 2rem !important;
}

.sidenav__toggle {
  padding: var(--lt-accordion-padding-vertical)
    var(--lt-accordion-padding-horizontal);
  border: var(--border-width) solid var(--lt-accordion-border);
  border-radius: var(--border-radius-base);
}
/* 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;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-bold);
}
/* 
 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;
}
/*  Adjust output element */
output {
  display: block;
  padding-top: 0.5rem;
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-text-secondary);
}
/* 
 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: 0.75rem 1rem;
  font-size: var(--text-base);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  background-image: none;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  border: var(--border-width) solid var(--input-color-border);
  border-radius: var(--border-radius-base);
  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,
select:focus:hover,
textarea:focus,
textarea:focus:hover,
input[type="text"]:focus,
input[type="text"]:focus:hover,
input[type="password"]:focus,
input[type="password"]:focus:hover,
input[type="datetime"]:focus,
input[type="datetime"]:focus:hover,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:focus:hover,
input[type="date"]:focus,
input[type="date"]:focus:hover,
input[type="month"]:focus,
input[type="month"]:focus:hover,
input[type="time"]:focus,
input[type="time"]:focus:hover,
input[type="week"]:focus,
input[type="week"]:focus:hover,
input[type="number"]:focus,
input[type="number"]:focus:hover,
input[type="email"]:focus,
input[type="email"]:focus:hover,
input[type="url"]:focus,
input[type="url"]:focus:hover,
input[type="search"]:focus,
input[type="search"]:focus:hover,
input[type="tel"]:focus,
input[type="tel"]:focus:hover,
input[type="color"]:focus,
input[type="color"]:focus:hover,
.nesty-input:focus,
.nesty-input:focus:hover {
  border-color: var(--input-color-border-focus);
  outline: 0;
}

select:hover,
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover,
.nesty-input:hover {
  border-color: var(--input-color-border-hover);
}
/*  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: var(--color-text-primary);
  opacity: 0.85;
}

select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
.nesty-input:-ms-input-placeholder {
  color: var(--color-text-primary);
  opacity: 0.85;
}

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: var(--color-text-primary);
  opacity: 0.85;
}

select {
  width: 100%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
}

[dir="ltr"] select {
  padding-right: 36px;
  background-position: right 1rem center;
}

[dir="rtl"] select {
  padding-left: 36px;
  background-position: left 1rem center;
}

.form-field .nesty-input:after,
.form-field .hc-multiselect-toggle:after {
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  content: "";
  transform: translateY(-50%);
}

[dir="ltr"] .form-field .nesty-input:after,
[dir="ltr"] .form-field .hc-multiselect-toggle:after {
  right: 1rem;
}

[dir="rtl"] .form-field .nesty-input:after,
[dir="rtl"] .form-field .hc-multiselect-toggle:after {
  left: 1rem;
}

select,
.form-field .nesty-input:after,
.form-field .hc-multiselect-toggle:after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
}

select::-ms-expand {
  display: none;
}
/*  Reset height for `textarea`s */
textarea {
  height: auto;
  height: calc((1rem + var(--padding-base-horizontal) + 2px) * 3);
  resize: vertical;
}

textarea,
.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners,
.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
  border-radius: min(
    var(--border-radius-base),
    var(--border-radius-input-max)
  ) !important;
}

.hc-multiselect-toggle,
#hc-wysiwyg {
  border-color: var(--input-color-border);
  border-width: var(--border-width);
  border-radius: var(--border-radius-base);
}
/*  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;
}
/*  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: 1.5rem;
}

.form-field .optional {
  opacity: 0.75;
}

[dir="ltr"] .form-field .optional {
  margin-left: 0.2rem;
}

[dir="rtl"] .form-field .optional {
  margin-right: 0.2rem;
}

.form-field.boolean {
  position: relative;
}

[dir="ltr"] .form-field.boolean {
  padding-left: 1.5rem;
}

[dir="rtl"] .form-field.boolean {
  padding-right: 1.5rem;
}

.form-field.boolean input[type="checkbox"] {
  position: absolute;
}

[dir="ltr"] .form-field.boolean input[type="checkbox"] {
  left: 0;
}

[dir="rtl"] .form-field.boolean input[type="checkbox"] {
  right: 0;
}

.form-field.boolean label {
  min-height: 1.5rem;
  /* Ensure the input doesn't jump when there is no text */
  margin-bottom: 0;
  cursor: pointer;
}

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: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.75;
}

.hc-multiselect-toggle,
.nesty-input,
ul[data-hc-pills-container] {
  --custom-select-height: calc(3rem - 4px - 2px);

  min-height: var(--custom-select-height);
}

.hc-multiselect-toggle,
ul[data-hc-pills-container] {
  background-color: var(--color-bg);
}

.hc-multiselect-toggle,
ul[data-hc-pills-container] {
  padding: 4px;
}

ul[data-hc-pills-container] li:first-child input {
  padding: 0 12px;
}

ul[data-hc-pills-container] li:has(input) {
  background-color: transparent;
}

.hc-multiselect-toggle li {
  margin: 4px;
}

.hc-multiselect-toggle ul li,
ul[data-hc-pills-container] li,
ul[data-hc-pills-container] li:last-child input,
ul[data-hc-pills-container] li[data-hc-pill="true"] {
  height: var(--custom-select-height);
  line-height: var(--custom-select-height);
}

ul[data-hc-pills-container],
ul[data-hc-pills-container][data-hc-focus="true"] {
  border-width: var(--border-width);
}

ul[data-hc-pills-container]:hover,
.hc-multiselect-toggle:hover {
  border-color: var(--color-text-primary);
}

ul[data-hc-pills-container][data-hc-focus="true"] input {
  border: none;
  box-shadow: none;
}

.hc-multiselect-toggle[aria-expanded="true"],
ul[data-hc-pills-container][data-hc-focus="true"] {
  border-color: var(--input-color-border-focus);
}

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

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

.lt-comment-form__ccs ul[data-hc-pills-container] {
  border-radius: var(--border-radius-base) var(--border-radius-base) 0 0;
}

.upload-dropzone {
  padding: 2rem;
  border-color: var(--input-color-border);
  border-style: dashed;
  border-width: var(--border-width);
  border-radius: var(--border-radius-base);
}

.upload-dropzone div {
  margin-bottom: 0.5rem;
}

.upload-dropzone span,
.upload-dropzone a {
  font-size: var(--text-base);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.upload-dropzone span {
  color: var(--color-text-primary);
}

.upload-dropzone:hover {
  border-color: var(--color-text-primary);
}

.upload-item .upload-remove {
  color: currentColor !important;
}

.upload-item .upload-link {
  color: currentColor;
}

.upload-item:hover {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.ck.ck-toolbar,
.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  --ck-color-toolbar-border: var(--input-color-border);
  --ck-color-base-border: var(--input-color-border);
  border-width: var(--border-width);
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.ck.ck-toolbar {
  border-width: 2px !important;
  border-bottom: none !important;
}

.lt-comment-form__ccs ~ .ck .ck.ck-toolbar {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.ck.ck-button:focus-visible,
.ck.ck-content.ck-editor__editable.ck-editor__editable_inline.ck-focused,
.ck.ck-content.ck-editor__editable.ck-focused,
.ck.ck-toolbar:focus-visible {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--input-color-border-focus) !important;
}

.nesty-input:hover,
.nesty-input:focus {
  color: var(--color-text-primary);
  text-decoration: none;
}

.form-field:has(.notification-error) input,
.form-field:has(.notification-error) textarea,
.form-field:has(.notification-error) .nesty-input {
  border-color: var(--color-ui-danger-text);
}

.form-field:has(.notification-error) .ck.ck-content {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px var(--color-ui-danger-text) !important;
}

.hc-multiselect-toggle ul li,
ul[data-hc-pills-container] li,
ul[data-hc-pills-container] li[data-hc-pill="true"] {
  font-size: var(--text-sm);
  color: var(--form-pill-text);

  background-color: var(--form-pill-bg);
  border-radius: var(--border-radius-base);
}

ul[data-hc-pills-container]
  li[data-hc-pill="true"]
  > span:not([aria-label="close"]) {
  font-size: var(--text-sm);
}

.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-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

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

.lt-topbar {
  font-size: var(--text-sm);
  font-weight: var(--topbar-font-weight);
  color: var(--topbar-color-text);
  background-color: var(--topbar-bg);
  border-bottom: 1px solid #E4E5E7;
}

.lt-topbar__logo {
  display: block;
  height: var(--topbar-logo-height);
  width: auto;
}

.lt-topbar__link,
.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  color: var(--topbar-color-text);
}

.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  text-decoration: none;
  opacity: 0.6;
}

@media (max-width: 1200px) {
  .sidenav__toggle {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .lt-topbar__link {
    color: var(--topbar-color-text);
  }

  .lt-topbar__link:hover,
  .lt-topbar__link:focus,
  .lt-topbar__link:active {
    color: var(--topbar-color-text);
  }

  body .lt-article-page .lt-search-wrap {
    -webkit-margin-start: 0 !important;
    margin-inline-start: 0 !important;
    -webkit-margin-end: 0 !important;
    margin-inline-end: 0 !important;
    margin-top: 16px;
  }

  .lt-topbar__controls {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    max-width: 20rem;
    padding: var(--grid-gutter-width);
    background-color: var(--topbar-bg);
    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: 1rem;
  }

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

.topbar__close {
  width: 2rem;
  height: 2rem;
  stroke: var(--topbar-color-text);
}

.lt-footer {
  font-size: var(--text-sm);
  color: var(--footer-color-text);
  background-color: var(--footer-bg);
}

.lt-footer__copyright a {
  color: var(--footer-color-link);
}

.lt-footer__social-link {
  padding: 0.5rem;
  font-size: var(--text-base);
  color: var(--footer-color-link);
  text-decoration: none;
  vertical-align: middle;
}

[dir="ltr"] .lt-footer__social-link + .lt-footer__social-link {
  margin-left: 0.5rem;
}

[dir="rtl"] .lt-footer__social-link + .lt-footer__social-link {
  margin-right: 0.5rem;
}

.lt-footer__social-link:hover,
.lt-footer__social-link:focus,
.lt-footer__social-link:active {
  color: var(--footer-color-link);
  text-decoration: none;
  opacity: 0.6;
}
/* Formatting */
.rte {
  line-height: 1.8;
  word-break: break-word;
}

.rte > *:not([hidden]) + *:not([hidden]) {
  margin-top: var(--flow-space, 1rem);
}

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

.lt-accordion {
  padding-top: 0;
  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 {
  border-top: var(--border-width) solid var(--lt-accordion-border);
}

.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;
  -webkit-margin-start: 1rem;
  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;
}

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

.image-with-border {
  border: var(--border-width) solid var(--color-border);
}

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

.image-overlay {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.callout,
.note,
.warning,
.danger,
.success {
  position: relative;
  z-index: 1;
  padding: 12px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  font-size: 14px;

  border-radius: 4px;
}

.callout > * + *,
.note > * + *,
.warning > * + *,
.danger > * + *,
.success > * + * {
  margin-top: 8px;
}

.callout:after,
.note:after,
.warning:after,
.danger:after,
.success:after {
  position: absolute;
  top: 0;
  z-index: -1;

  width: 100%;
  height: 100%;
  content: "";
  border-radius: var(--border-radius-base);
}

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

.note,
.note--default,
.callout,
.callout--info,
.callout--primary {
  --callout-color: var(--info-callout-color);
  border-color: #002ccc;
}

.callout:after,
.note:after,
.warning:after,
.danger:after,
.success:after {
  background-color: var(--callout-color);
}

.warning,
.note--warning,
.callout--warning {
  --callout-color: var(--warning-callout-color);
  border-color: #bd6e00;
}

.danger,
.note--danger,
.callout--danger {
  --callout-color: var(--danger-callout-color);
  border-color: #a91919;
}

.success,
.note--success,
.callout--success {
  --callout-color: var(--success-callout-color);
  border-color: #00572b;
}

.list-check ul:not([class]),
.list-bullet ul:not([class]),
.list-number ul:not([class]),
.list-colored 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"] .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"] .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,
.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"] .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"] .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,
.rte ul:not([class]) > li::marker {
  color: var(--rte-bullet-color);
}

.list-check,
.list-bullet,
.list-number,
.list-colored,
.rte ol {
  list-style-position: inside;
}

.itemizedlist {
  list-style-position: initial;
  padding-left: 8px;
}

[dir="ltr"] .list-check,
[dir="ltr"] .list-bullet,
[dir="ltr"] .list-number,
[dir="ltr"] .list-colored,
[dir="ltr"] .rte ol,
.procedure ol {
  padding-left: 0;
}

[dir="rtl"] .list-check,
[dir="rtl"] .list-bullet,
[dir="rtl"] .list-number,
[dir="rtl"] .list-colored,
[dir="rtl"] .rte ol {
  padding-right: 0;
}

.list-number li,
.list-colored li,
.rte li,
.procedure li {
  list-style: inherit;
}

.list-number li:last-child,
.list-colored li:last-child,
.rte li:last-child .procedure li:last-child {
  margin-bottom: 0;
}

.list-check,
.list-bullet,
.list-number,
.list-colored,
.procedure {
  list-style: none;
}

[dir="ltr"] .list-check,
[dir="ltr"] .list-bullet,
[dir="ltr"] .list-number,
[dir="ltr"] .list-colored,
.procedure {
  padding-left: 0;
}

[dir="rtl"] .list-check,
[dir="rtl"] .list-bullet,
[dir="rtl"] .list-number,
[dir="rtl"] .list-colored {
  padding-right: 0;
}

.list-check > li,
.list-bullet > li,
.list-number > li,
.list-colored > li,
.procedure > 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"] .list-colored > li,
.procedure > li {
  padding-left: 2.5rem;
}

[dir="rtl"] .list-check > li,
[dir="rtl"] .list-bullet > li,
[dir="rtl"] .list-number > li,
[dir="rtl"] .list-colored > li {
  padding-right: 2.5rem;
}

[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-colored > li:before,
.procedure > li:before {
  position: absolute;
  top: 0.15em;

  display: inline-block;

  width: 1.725em;
  height: 1.725em;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.725em;
  text-align: center;

  border-radius: 4px;
}

[dir="ltr"] .list-check > li:before,
[dir="ltr"] .list-bullet > li:before,
[dir="ltr"] .list-number > li:before,
[dir="ltr"] .list-colored > li:before,
.procedure > 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-colored > li:before {
  right: 0;
}

.list-bullet > li:before,
.list-check > li:before {
  color: #2a2c31;
  content: "✓";
  background-color: #d3e8f3;
}

.list-number,
.list-colored,
.procedure {
  counter-reset: list;
}

.list-number > li,
.list-colored > li,
.procedure > li {
  counter-increment: list;
}

.list-number > li:before,
.list-colored > li:before,
.procedure > li:before {
  color: #fff;
  content: counter(list);
  background-color: #003311;
}

.rte iframe,
.rte embed,
.rte object,
.rte video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
  background-color: transparent;
}

.lt-article table {
  background-color: #fff;
}

.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 {
  padding: 10px 12px;
}
.rte table:not([class*="table"]) td {
  padding: 8px 12px;
}

.rte table:not([class*="table"]) th {
  font-weight: 600;
  vertical-align: bottom;
  white-space: nowrap;
}

.rte table:not([class*="table"]) th {
  white-space: unset;
}

#UUID-5d930989-6c77-99ee-fb86-6f7798e441dd_body table:not([class*="table"]) th {
  white-space: nowrap;
}

.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;
  /* white-space: nowrap; */
}

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

.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;
}
/* @media (--screen-sm) {
  .tab {
    border-top-left-radius: var(--border-radius-base);
    border-top-right-radius: var(--border-radius-base);
  }
} */
.tabs-link {
  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-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);
}

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: 2rem;
  border-radius: var(--border-radius-base);
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
/* Components */
.lt-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .lt-dropdown--language-selector {
    margin-bottom: 1rem; 
  }

  .lt-topbar__right .login-btn {
    padding: 0;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .lt-dropdown--language-selector {
    border-radius: 4px;
    border: 1px solid #E4E5E7;
    padding: 4px 8px;
  }
}

.lt-dropdown-toggle {
  display: inline-block;
  padding: 0;
  font-weight: var(--button-font-weight, 600);
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

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

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

.lt-dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 200px;
  padding: 0.75rem;
  margin-top: 1px;
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: normal;
  background: var(--color-bg);
  border: var(--border-width) solid var(--color-bg-tertiary);
  border-radius: min(var(--border-radius-base), var(--border-radius-menu-max));
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
}

[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;
  margin: 0.5rem 0.75rem;
  font-weight: normal;
  color: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.lt-dropdown-menu [role="menuitem"] {
  display: block;
  width: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  -webkit-padding-start: 0.75rem;
  padding-inline-start: 0.75rem;
  -webkit-padding-end: 2rem;
  padding-inline-end: 2rem;
  line-height: inherit;
  color: var(--color-text-primary);
  text-align: start;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.lt-dropdown-menu [role="menuitem"]:hover,
.lt-dropdown-menu [role="menuitem"]:focus {
  color: var(--color-text-primary);
  text-decoration: none;
  background: var(--color-bg-secondary);
  border-radius: min(
    var(--border-radius-base),
    var(--border-radius-menu-item-max)
  );
}

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

.lt-dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E%0A");
}

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

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

[dir="rtl"] .lt-dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  float: left;
  margin-right: 05rem;
  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: 15px;
  font-weight: var(--font-weight-bold);
  color: inherit;
  border: 0;
}
@media (max-width: 991px) {
  
.lt-dropdown-toggle--user {
  padding: 0px;
  font-weight: var(--font-weight-bold);
  color: inherit;
  border: 0;
}
  .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 [role="menuitem"] {
    padding-right: 0;
    padding-left: 0;
  }
}
/* ==========================================================================
  Buttons
  ========================================================================== */
.lt-btn,
input[type="submit"],
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-vote button,
.lt-request-table-filters button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-button-text);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--color-button);
  background-image: none;
  border: var(--button-border-width, var(--border-width)) solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.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-follow button:hover,
.lt-follow button:focus,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons a:hover,
.lt-profile__buttons a:focus,
.lt-vote button:hover,
.lt-vote button:focus,
.lt-request-table-filters button:hover,
.lt-request-table-filters 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 {
  color: var(--color-button-text);
  text-decoration: none;
  background-color: var(--color-button);
}

.lt-btn:active,
input[type="submit"]:active,
.lt-section-subscribe button:active,
.lt-article-subscribe button:active,
.lt-follow button:active,
.lt-profile__buttons button:active,
.lt-profile__buttons a:active,
.lt-vote button:active,
.lt-request-table-filters button:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active {
  color: var(--color-button-text);
  background-color: var(--color-button);
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

input[type="submit"],
.lt-btn--primary {
  --color-button-text: #003311;
  --color-button: var(--button-color-primary);
}

input[type="submit"]:hover,
input[type="submit"]:focus,
.lt-btn--primary:hover,
.lt-btn--primary:focus {
  --color-button-text: var(--color-brand-primary-inverse);
  --color-button: var(--color-brand-primary-hover);
}

input[type="submit"]:active,
.lt-btn--primary:active {
  --color-button-text: var(--color-brand-primary-inverse);
  --color-button: var(--color-brand-primary-pressed);
}

.lt-btn--secondary,
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  color: var(--button-color-secondary);
  background-color: transparent;
  border-color: var(--button-color-secondary);
}

.lt-btn--secondary:hover,
.lt-btn--secondary:focus,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-follow button:hover,
.lt-follow button:focus,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons a:hover,
.lt-profile__buttons a: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 {
  background-color: #f7f7f8;
}

.lt-btn--secondary:active,
.lt-section-subscribe button:active,
.lt-article-subscribe button:active,
.lt-follow button:active,
.lt-profile__buttons button:active,
.lt-profile__buttons a:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active {
  color: var(--button-color-secondary);
  background-color: #f7f7f8;
  border-color: var(--button-color-secondary);
}

.lt-btn--tertiary,
.lt-subscriptions-subscribe button,
.lt-request-table-filters button,
.lt-underlined-link,
.recent-activity-controls a {
  padding: 0;
  font-weight: var(--button-font-weight, 600);
  --color-button-text: var(--button-color-tertiary);
  text-decoration: underline;
  --color-button: transparent;
  border: 0;
  border-radius: 0;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.lt-btn--tertiary:hover,
.lt-btn--tertiary:focus,
.lt-subscriptions-subscribe button:hover,
.lt-subscriptions-subscribe button:focus,
.lt-request-table-filters button:hover,
.lt-request-table-filters button:focus,
.lt-underlined-link:hover,
.lt-underlined-link:focus,
.recent-activity-controls a:hover,
.recent-activity-controls a:focus {
  --color-button-text: var(--button-color-tertiary);
  -webkit-text-decoration: var(--link-decoration-hover);
  text-decoration: var(--link-decoration-hover);
  --color-button: #f1f2f3;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.lt-btn--tertiary:active,
.lt-subscriptions-subscribe button:active,
.lt-request-table-filters button:active,
.lt-underlined-link:active,
.recent-activity-controls a:active {
  --color-button-text: var(--button-color-tertiary);
  -webkit-text-decoration: var(--link-decoration-hover);
  text-decoration: var(--link-decoration-hover);
  --color-button: #e4e5e7;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.lt-btn--icon,
.lt-vote button {
  display: flex;
  padding: 0 !important;
  color: var(--color-text-primary) !important;
  background-color: transparent;
  border: 0 !important;
  justify-content: center;
  align-items: center;
}

.lt-btn--icon:hover,
.lt-btn--icon:focus,
.lt-btn--icon:active,
.lt-vote button:hover,
.lt-vote button:focus,
.lt-vote button:active {
  color: var(--topbar-color-text-hover);
  background-color: transparent;
  border-color: var(--topbar-color-text-hover);
  opacity: 0.6;
}

.lt-btn--icon[aria-pressed="true"] svg {
  fill: var(--color-text-primary);
}

.lt-btn--topbar {
  color: var(--topbar-color-text);
  background-color: transparent;
  border-color: var(--topbar-color-text);
}

.lt-btn--topbar:hover,
.lt-btn--topbar:focus,
.lt-btn--topbar:active {
  color: var(--topbar-color-text-hover);
  background-color: transparent;
  border-color: var(--topbar-color-text-hover);
  opacity: 0.6;
}
@media (max-width: 991px) {
  .lt-btn--topbar {
    padding: 0.5rem;
  }
}

.lt-pill {
  z-index: 1;
  display: inline-flex;
}

.lt-pill,
.recent-activity-item-parent {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  letter-spacing: 0;
  background-color: var(--color-bg-secondary);
  border-radius: calc(var(--border-radius-base) * 5);
}

.lt-pill--sm {
  padding: 0.25rem 0.75rem;
}

.recent-activity-item-parent {
  background-color: var(--color-info);
}

.lt-pill--info,
.lt-pill--success,
.lt-pill--danger,
.lt-pill--warning,
.lt-pill--open,
.lt-pill--answered,
.lt-pill--solved,
.lt-pill--closed {
  background-color: transparent;
}

.lt-pill--info:after,
.lt-pill--success:after,
.lt-pill--danger:after,
.lt-pill--warning:after,
.lt-pill--open:after,
.lt-pill--solved:after,
.lt-pill--closed:after,
.lt-pill--answered:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  border-radius: calc(var(--border-radius-base) * 5);
}

.lt-pill--info:after {
  background-color: var(--color-info);
}

.lt-pill--success:after,
.lt-pill--solved:after,
.lt-pill--closed:after {
  background-color: var(--color-success);
}

.lt-pill--danger:after,
.lt-pill--open:after {
  background-color: var(--color-danger);
}

.lt-pill--warning:after,
.lt-pill--answered:after {
  background-color: var(--color-warning);
}

a.lt-pill:hover,
a.lt-pill:active,
a.lt-pill:focus,
.recent-activity-item-parent:hover,
.recent-activity-item-parent:active,
.recent-activity-item-parent:focus {
  color: #fff;
  text-decoration: none;
  background-color: var(--color-brand-primary-hover);
}

a.lt-pill:hover:after,
a.lt-pill:active:after,
a.lt-pill:focus:after {
  background-color: var(--color-brand-primary-hover);
}

.lt-avatar {
  position: relative;
  display: inline-block;
  border-radius: 100%;
}

.lt-avatar svg {
  position: absolute;
  bottom: -0.25rem;
  z-index: 2;
  display: flex;
  width: 1.125rem;
  height: 1.125rem;
  fill: var(--color-brand-primary);
  background-color: var(--avatar-icon-bg, var(--color-bg));
  border-radius: 100%;
}

[dir="ltr"] .lt-avatar svg {
  right: -0.25rem;
}

[dir="rtl"] .lt-avatar svg {
  left: -0.25rem;
}

.lt-avatar:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 100%;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.15) inset;
}

.lt-avatar__badge {
  position: absolute;
  top: -0.5rem;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  padding: 4px;
  font-size: var(--text-xxs);
  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-user-avatar {
  position: relative;
  border-radius: 100%;
}

.lt-user-avatar--default {
  width: 3rem;
  height: 3rem;
}

.lt-user-avatar--topbar {
  width: 2rem;
  height: 2rem;
}

.lt-user-avatar--profile {
  width: 3rem;
  height: 3rem;
}

.lt-meta {
  font-size: 14px;
  color: gray;
}

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

.lt-meta--search {
  font-size: var(--text-base);
}

[dir="ltr"] .lt-meta--search .lt-meta__item {
  margin-right: 1.5rem;
}

[dir="rtl"] .lt-meta--search .lt-meta__item {
  margin-left: 1.5rem;
}

.lt-meta--search .lt-meta__item:before {
  display: none;
}

.lt-meta--search .lt-meta__item {
  font-size: 12px;
}

.breadcrumbs {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: var(--border-radius-base);
}

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

.breadcrumbs > li + li:before {
  padding: 0 5px;
  color: var(--breadcrumbs-color, var(--color-text-secondary));
  content: "\00a0";
  content: "› ";
}

.breadcrumbs > li a {
  color: var(--breadcrumbs-color, var(--color-text-secondary));
}

.breadcrumbs > li:first-child a {
  color: var(--color-link);
}

.breadcrumbs > li:last-child a {
  color: var(--color-text-primary);
}

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

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

.lt-breadcrumbs--search-results {
  padding: 0;
}

.search-results-list .lt-breadcrumbs--search-results li:first-of-type,
.search-results-list .lt-breadcrumbs--search-results li:nth-of-type(2) {
  display: none;
}

.search-results-list .lt-breadcrumbs--search-results li:first-of-type + li::before,
.search-results-list .lt-breadcrumbs--search-results li:nth-of-type(2) + li::before {
  content: none;
}

.lt-breadcrumbs-wrapper {
  padding-top: 2rem;
}

.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: var(--topbar-color-text);
  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-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-entry-info .author a {
  color: var(--color-text-primary);
}

.lt-hero-unit {
  position: relative;
  display: flex;

  color: var(--hero-color-text);
  background-color: var(--hero-bg);
  align-items: center;
}

.lt-hero-unit input[type="search"] {
  font-size: var(--text-xl);
}

.lt-hero-unit__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  transition: top 0.3s ease;
}

.lt-hero-unit--large {
  padding-top: 32px;
  padding-bottom: 128px;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.lt-hero-unit > * {
  width: 100%;
}

.lt-hero-unit--center,
.lt-hero-unit--center .lt-popular-searches {
  justify-content: center;
  text-align: center;
}

.lt-hero-unit--center .lt-hero-unit__content,
.lt-hero-unit--text-start .lt-hero-unit__content {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.lt-hero-unit--text-start {
  justify-content: center;
  text-align: start;
}

.lt-hero-unit--text-start .lt-popular-searches {
  justify-content: start;
}

.lt-hero-unit--start,
.lt-hero-unit--start .lt-popular-searches {
  justify-content: flex-start;
}

.lt-hero-unit--with-image:after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  /*   background: linear-gradient(0deg, var(--hero-bg-mask), transparent); */
  background: var(--hero-bg-mask);
}

[dir="ltr"] .lt-hero-unit--with-image:after {
  left: 0;
}

[dir="rtl"] .lt-hero-unit--with-image:after {
  right: 0;
}

.lt-hero-unit__bg {
  position: absolute;
  top: 0;
  z-index: 1;
  /* width: 100%; */
  height: 100%;
  background: var(--hero-image-url) 50% 50% no-repeat;
  background-size: cover;
}

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

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

.lt-hero-unit--large {
  z-index: 2;
  width: 100%;
  transition: top 0.3s ease;
  border-top: 1px solid rgba(26, 158, 255, 0.15);
}

.lt-hero-unit--large input[type="search"] {
  height: 3.125rem;
  transition: border 0.3s ease;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.lt-hero-unit--large input[type="submit"] {
  padding: 0.5rem 1rem;
  flex-shrink: 0;
  text-transform: capitalize;
  font-weight: 500;
}
@media (max-width: 767px) {
  .lt-hero-unit--large input[type="submit"] {
    display: none;
  }
}
@media (min-width: 768px) {
  .lt-hero-unit--large input[type="submit"],
  .lt-hero-unit--large input[type="search"] {
    height: 3.75rem;
  }
}
@media only screen and (min-width: 576px) {
  .lt-hero-unit--large {
    min-height: 352px;
  }
}

.lt-card {
  --flow-space: 0.5rem;
  position: relative;
  display: flex;
  width: 100%;
  word-break: break-word;
  flex-direction: column;
}

.lt-card__link {
  display: block;
  color: currentColor;
}

.lt-card__link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.lt-card__content {
  /*   max-width: 40ch; */
}

.lt-card__heading,
.lt-card__text {
  margin-bottom: 10px;
  text-wrap: balance;
}

.lt-card--center {
  align-items: center;
  text-align: center;
}

.lt-card--start {
  align-items: flex-start;
  text-align: start;
}

.lt-card-wrapper {
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .lt-custom-blocks--center .lt-card {
    align-items: center;
    text-align: center;
  }

  .lt-custom-blocks--start .lt-card {
    align-items: flex-start;
    text-align: start;
  }
}

.lt-custom-block__icon {
  width: var(--custom-block-icon-size);
  height: var(--custom-block-icon-size);
}

.lt-custom-block__icon path,
.lt-custom-block__icon circle {
  stroke: var(--custom-block-icon-color);
  transition: all 0.3s ease;
}

.lt-text-secondary {
  color: var(--color-text-secondary);
}

.lt-block-list-item {
  padding: 24px;
  color: var(--block-text-color);
}

.lt-block-list-item:hover {
  border: 1px solid #0073bf;
}

.lt-block-list-item__link:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background-color: var(--block-bg);

  border-radius: var(--border-radius-lg);
  transition: background-color 0.3s ease;
}

.lt-block-list-item__link:hover,
.lt-block-list-item__link:focus {
  color: currentColor;
  text-decoration: none;
}

.lt-block-list-item__link:focus:before,
.lt-block-list-item__link:hover:before {
  filter: brightness(90%);
}

.lt-block-list-item__link:active:before {
  filter: brightness(85%);
}

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

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

.recent-activity-header {
  margin-bottom: var(--text-margin-bottom);
  font-size: var(--text-3xl);
}
@media only screen and (min-width: 768px) {
  .recent-activity-header {
    font-size: var(--text-4xl);
  }
}

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

.recent-activity-item {
  display: flex;
  padding: 2rem;
  flex-direction: column;

  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-lg);
  align-items: flex-start;
}

.recent-activity-item h3 {
  font-family: var(--font-family-body);
}

.recent-activity-item > * + * {
  margin-top: 1rem;
}

.recent-activity-item > * {
  margin-bottom: 0;
}

.recent-activity-item > *:not([hidden]) + *:not([hidden]) {
  margin-top: var(--flow-space, 1rem);
}

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

.recent-activity-item-parent {
  display: block;
}

.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: 1.5rem;
}

.cta-box {
  text-align: center;
  background-color: var(--color-bg-cta);
  -webkit-padding-start: 2rem;
  padding-inline-start: 2rem;
  -webkit-padding-end: 2rem;
  padding-inline-end: 2rem;
  border-radius: 4px;
  padding: 24px;
  border: 1px solid #e4e5e7;
}

.cta-box__title {
  font-size: 16px;
}

.cta-box__subtitle {
  font-size: 14px;
}

.cta-box--large {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.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: var(--color-text-primary);
}

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

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

.lt-new-request-page {
  width: 100%;
  margin-bottom: 3rem;
}

.lt-new-request-form {
  margin-bottom: 1.5rem;
}

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

.lt-error-page__articles {
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.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: 1rem;
}

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

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

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

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

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

.lt-scroll-to-top {
  position: fixed;
  bottom: -50px;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  font-size: 2rem !important;
  color: #0D6E3F;
  text-align: center;
  cursor: pointer;
  background-color: #FFFFFF99;
  border: var(--border-width) solid #0D6E3F;
  border-radius: 4px;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lt-scroll-to-top.is-active {
  bottom: 30px;
}

.lt-scroll-to-top:hover {
  color: var(--color-link-hover);
  border-color: var(--color-link-hover);
}

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

.recent-articles h3,
.related-articles h3 {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .recent-articles h3,
  .related-articles h3 {
    margin-top: 1rem;
  }
}

.recent-articles ul,
.related-articles ul {
  list-style: none;
}

.recent-articles ul > li,
.related-articles ul > li {
  margin-bottom: 1rem;
}

.recent-articles ul > li a,
.related-articles ul > li a {
  padding-bottom: 1px;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
}

[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;
    border-bottom: var(--border-width) solid var(--color-border);
    order: -1;
  }

  .lt-user-info__menu {
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .lt-user-info__menu [role="menuitem"] {
    padding-top: 0.5rem;
    padding-right: 0;
    padding-bottom: 0.5rem;
    padding-left: 0;
    font-weight: var(--topbar-font-weight);
  }
}

.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: var(--border-radius-base);
}

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

.lt-profile-header__private-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  background-color: var(--color-brand-primary);
}

.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: 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  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: 0.5rem;
}
@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: var(--color-text-primary);
}

.lt-profile-nav {
  margin-bottom: 1.5rem;
  overflow: hidden;
  font-size: var(--text-sm);
  font-weight: 600;
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius-base);
}

.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: var(--color-text-primary);
}

.lt-profile-nav__item.is-active {
  color: #fff;
  background-color: var(--color-brand-primary);
}

.lt-profile-nav__item.is-active,
.lt-profile-nav__item a {
  padding: 1rem 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: 1.5rem;
}

.lt-profile-section__title {
  margin-bottom: 1rem;
  font-size: var(--font-size-h3);
}

.lt-profile-section__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
@media (min-width: 576px) {
  .lt-profile-section__description {
    padding-bottom: 0;
  }
}

.lt-profile-contribution {
  position: relative;
  padding: 1rem var(--grid-gutter-width);

  word-wrap: break-word;
  background-color: var(--color-bg-secondary);

  border-radius: var(--border-radius-base);
}

.lt-profile-contribution__header {
  margin-bottom: 0.5rem;
}

.lt-profile-contribution__status {
  margin-bottom: 0.5rem;
}

.lt-profile-contribution__title {
  margin-bottom: 0.5rem;
  font-size: var(--text-base);
  font-weight: 600;
}

.lt-profile-contribution__body {
  margin-bottom: 1rem;
}

.lt-profile-contribution__breadcrumbs {
  padding: 0;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
}

.lt-profile__no-activity,
.lt-profile__private-activity {
  color: var(--color-text-secondary);
  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: 2rem;
}

.lt-profile-activity__header {
  margin-bottom: 1rem;

  font-size: var(--text-sm);
  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);
}

[dir="ltr"] .lt-profile-contribution__title:before {
  margin-right: 4px;
}

[dir="rtl"] .lt-profile-contribution__title:before {
  margin-left: 4px;
}

.user-subscribe {
  display: inline-block;
}

.lt-profile-badge-item {
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-base);
}

.lt-profile-badge {
  width: 40px;
  height: 40px;
}

.lt-profile-badge__image {
  width: 40px;
  height: 40px;
}

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

.lt-attachment-list {
  margin: 0;

  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: 0.5rem;
}

[dir="ltr"] .lt-attachment-list__item {
  padding-left: 1.5rem;
}

[dir="rtl"] .lt-attachment-list__item {
  padding-right: 1.5rem;
}

.lt-attachment-list__item:last-child {
  margin-bottom: 0;
}

.lt-attachment-list__icon {
  position: absolute;
  top: 4px;
  width: 1rem;
  height: 1rem;
}

[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: var(--color-text-primary);
  background-color: var(--color-bg);
  border: var(--border-width) solid var(--color-link);
  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: 0.75rem 1rem;
  font-family: sans-serif;
  font-size: var(--text-sm);
  color: #555;
  border: var(--border-width) 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: var(--color-ui-danger-text);
  background: var(--color-ui-danger-bg);
  border-color: var(--color-ui-danger-bg);
}

.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: 0.25rem 0.5rem;
  margin-top: 0.5rem;
  vertical-align: middle;
  border-radius: var(--border-radius-base);
}

[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 {
  padding: 0;
  color: var(--color-ui-danger-text);
  background-color: transparent;
  border: 0;
}

.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-popular-searches {
  font-weight: var(--button-font-weight, 600);
  font-size: 14px;
}

.lt-popular-searches__item {
  color: var(--color-text-primary);
  padding: 4px 8px;
  background: #d8ffeb;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}

.lt-popular-searches__item:hover,
.lt-popular-searches__item:active,
.lt-popular-searches__item:focus {
  color: var(--color-text-primary);
  text-decoration: none;
  opacity: 0.85;
}

.lt-contact-box__icon {
  width: var(--contact-box-icon-size);
  height: var(--contact-box-icon-size);
}

.lt-card--border {
  padding: 2rem;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-lg);
}

.lt-info-block {
  border-radius: var(--border-radius-base);
}

.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 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.lt-vote svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
}
/* Search */
/* Search */
.search {
  display: flex;
  /*   gap: 1rem; */
}

.searchbox {
  margin-top: 1.5rem;
}

.searchbox h2 {
  margin-bottom: 0.5rem;
  font-size: var(--text-base);
}

.searchbox-suggestions ul {
  margin-bottom: 1.5rem;
  list-style: none;
}

.searchbox-suggestions li {
  margin-bottom: 0.5rem;
}

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

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

.lt-search-wrap {
  position: relative;
  max-width: 720px;
  overflow: hidden;
}

.lt-search-wrap:not(.lt-search-wrap--hero):not(.lt-search-wrap--requests) {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.lt-search-wrap input[type="search"] {
  -webkit-padding-start: 3rem;
  padding-inline-start: 3rem;
}

.lt-search-wrap svg {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
}

[dir="ltr"] .lt-search-wrap svg {
  left: 1rem;
}

[dir="rtl"] .lt-search-wrap svg {
  right: 1rem;
}

.lt-search-wrap--requests {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  max-width: 100%;
}

.lt-search-results-page {
  margin-bottom: 3rem;
}

.lt-search-result {
  border-top: var(--border-width) solid var(--color-border);
}

.lt-search-result__text em {
  /*   padding: 0 3px; */
  font-style: normal;
  font-weight: var(--font-weight-bold);
  /*   background-color: var(--color-warning); */
  border-radius: 3px;
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.lt-search-filters {
  /*   background-color: var(--color-bg-secondary); */
  border-radius: var(--border-radius-base);
}

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

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

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

.lt-search-filter__btn-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.lt-search-filter__item.is-active .lt-search-filter__link {
  font-weight: var(--font-weight-bold);
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

.lt-search-filter__link {
  align-items: center;
  color: var(--color-text-primary);
  text-decoration: none;
  border: var(--border-width) solid transparent;
  border-radius: var(--border-radius-base);
}

.lt-search-filter__link:active {
  background-image: none;
}

.lt-search-filter__link a,
.lt-search-filter__link svg {
  color: currentColor;
}

.lt-search-filter__count {
  display: inline-flex;
  font-size: var(--text-sm);
}
/* My Activities */
.lt-my-activities-items {
  width: 100%;
  margin-bottom: 3rem;
  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(--color-text-secondary);
}
@media (min-width: 576px) {
  .lt-my-activities-items__head {
    display: table-header-group;
    font-weight: var(--font-weight-bold);
  }
}
@media (min-width: 576px) {
  .lt-my-activities-items__body {
    display: table-row-group;
  }
}

.lt-my-activities-items__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 576px) {
  .lt-my-activities-items__row {
    display: table-row;
  }
}

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

.lt-my-activities-items__col--activity {
  display: none;
}
@media (min-width: 576px) {
  .lt-my-activities-items__col {
    display: table-cell;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: var(--border-width) solid var(--color-border);
  }

  [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 {
  position: relative;
  color: var(--color-text-secondary);
  white-space: nowrap;
}
@media (min-width: 576px) {
  [dir="ltr"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-right: 1rem;
  }
}

.lt-my-activities-menu--main {
  border-bottom: var(--border-width) solid var(--color-border);
}

.lt-my-activities-menu--main .lt-my-activities-menu-item {
  padding: 0.5rem 1rem;
  background-color: var(--color-link);
  border-radius: var(--border-radius-base);
}

.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(--font-weight-bold);
  color: var(--color-text-primary);
  background-color: var(--color-bg-secondary);
}

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

.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 (max-width: 575px) {
  .lt-my-activities-item {
    padding: 1rem var(--padding-base-horizontal);
    margin-bottom: 1.5rem;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius-base);
  }
}
/* Comments */
/* ==========================================================================
  Comment Form
  ========================================================================== */
.lt-comment-form {
  position: relative;
}
@media (min-width: 576px) {
  .lt-comment-form {
    padding-left: 4rem;
  }
}

.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: 1.5rem;
}

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

.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: var(--border-width) solid var(--color-border);
}

.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 {
  display: block;
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
}

.lt-comment--official .lt-comment__inner {
  position: relative;
  padding: 1.5rem;
  background-color: var(--info-callout-color);
  border-radius: var(--border-radius-base);
}

.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 {
    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;
}
/* Comment List */
.lt-comments {
  margin-bottom: 3rem;
}

.lt-comments__callout:empty {
  display: none;
}

.lt-comments__list {
  list-style: none;
}

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

[dir="rtl"] .lt-comments__list {
  padding-right: 0;
}
/* Article */
.lt-article-container {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  .lt-article-container {
    grid-template-columns: 1fr 680px 1fr;
  }
}

.lt-article-container__article {
  min-width: 0; /* Preventing a Grid Blowout https://css-tricks.com/preventing-a-grid-blowout/ */
}

html.sidenav-enabled .lt-section-articles {
  display: none;
}

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

.toc-enabled .lt-article-container__sidebar {
  padding-bottom: 24px;
}
@media (max-width: 575px) {
  .lt-article-container__sidebar {
    padding-top: 1.5rem;

    border-top: var(--border-width) solid var(--color-border);
  }
}

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

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

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

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

.lt-star-icon {
  position: relative;
  top: -0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  vertical-align: middle;
  fill: var(--color-service-warning);
}

.lt-article-vote {
  position: relative;
}

.lt-article-vote__controls {
  display: flex;
  gap: 0.5rem;
}

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

.lt-article-vote__item--voted {
  color: var(--color-bg);
  background-color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.lt-article-vote__item--voted:hover,
.lt-article-vote__item--voted:focus {
  color: var(--color-bg);
  background-color: var(--button-color-secondary);
  border-color: var(--button-color-secondary);
  opacity: 0.6;
}

.lt-article-vote__label {
  display: block;

  color: var(--color-text-secondary);
}

.lt-article-page {
  margin-bottom: 2rem;
}

.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: 1.5rem;
  word-break: break-word;
}

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

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

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

.lt-article__body .wysiwyg-font-size-small {
  font-size: var(--text-sm);
}
@media (max-width: 575px) {
  .lt-article-sidebar {
    padding-top: 1.5rem;

    border-top: var(--border-width) solid var(--color-border);
  }
}
/* Category */
.lt-category-tree-item {
  margin-bottom: 2rem;
}

.lt-category-tree-item__sections {
  margin-bottom: 1.5rem;
}

.lt-category-tree-item__title-link {
  color: inherit;
}

.lt-category-tree-item + .lt-category-tree-item {
  padding-top: 2rem;
  border-top: var(--border-width) solid var(--color-border);
}
/* Section */
.lt-section-link {
  color: inherit;
}

.lt-section-articles summary {
  font-size: var(--text-lg);
}
@media (min-width: 1200px) {
  .lt-section-articles .accordion {
    border: 0;
  }

  .lt-section-articles summary {
    padding: 0 !important;
    margin-bottom: 1rem;
    font-size: var(--text-xl);
  }

  .lt-section-articles .accordion__content {
    padding: 0;
    margin: 0;
    overflow: visible;
    border: 0;
  }

  .lt-section-articles .accordion__summary-wrapper > .lt-icon {
    display: none;
  }
}
/* Community */
.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(--font-weight-bold);
}

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

[dir="rtl"] .lt-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 {
  margin-bottom: 2rem;
  word-wrap: break-word;
}

.lt-post__actions {
  padding-top: 0.5rem;
}

.lt-post__actions svg {
  width: 1.5rem;
  height: 1.5rem;
}

.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 {
  border-radius: var(--border-radius-lg);
}

.lt-post-list-item {
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: var(--border-width) solid var(--color-border);
}

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

.community-badge-achievements img {
  width: 1rem;
  height: 1rem;
}

.community-badge-titles img {
  width: 1rem;
  height: 1rem;
}

.profile-info .community-badge-achievements img {
  width: 2.5rem;
  height: 2.5rem;
}

.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: var(--border-width) solid #eceeef;
}

.hotposts-tabs .tabs-link {
  padding: 0 0 8px;
  margin-bottom: -2px;
  color: #2d7ccc;
  border: none;
  border-bottom: var(--border-width) 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-filters {
  display: flex;
  padding: 1rem;
  margin-bottom: 1.5rem;
  flex-direction: column;
  background-color: var(--color-bg-secondary);
  border-radius: var(--border-radius-lg);
  gap: 1rem;
}
@media (min-width: 768px) {
  .lt-request-table-filters {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;

    align-items: flex-end;
  }
}

.lt-request-table-filters__item--search {
  flex: 1;
}

.lt-request-table-organization__col--button [role="button"] {
  height: calc(1rem + var(--padding-base-horizontal) + 2px);
  padding-top: 0;
  padding-bottom: 0;
  line-height: calc(1rem + 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 {
  position: absolute;
  bottom: 0;
  font-size: var(--text-xxs);
}

[dir="ltr"] .requests-sort-symbol {
  left: calc(100% + 0.25rem);
}

[dir="rtl"] .requests-sort-symbol {
  right: calc(100% + 0.25rem);
}

.lt-request-page {
  margin-bottom: 3rem;
}

.lt-request-id {
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
}

.lt-request-follow-up:empty {
  display: none;
}

.lt-request-sidebar {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: var(--text-sm);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--border-radius-base);
}

@media all {
  .dropdown-item {
    line-height: 1.2;
    padding-bottom: 0.313rem;
    padding-top: 0.313rem;
  }
  .dropdown-menu {
    min-width: 12.5rem;
  }
  .dropdown-menu .dropdown-item {
    white-space: normal;
    background: transparent;
    line-height: 1.6;
  }
  .dropdown-menu .dropdown-item:hover {
    background: transparent;
  }
  @media screen and (max-width: 991px) {
    .dropdown-menu li a {
      padding: 0;
    }
  }
  .site-header:before,
  .site-header:after {
    content: "";
    display: table;
    table-layout: fixed;
  }
  .site-header:after {
    clear: both;
  }
  .container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }

  .site-header .container {
    max-width: unset;
    margin: 16px 0;
  }

  .btn {
    --color-button-text: #003311;
    display: inline-block;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-button-text);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--color-button);
    background-image: none;
    border: var(--button-border-width, var(--border-width)) solid transparent;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    -webkit-transition: color 0.15s ease-in-out,
      background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
      -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
      -webkit-box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      -webkit-transition: none;
      transition: none;
    }
  }
  .collapse:not(.show) {
    display: none;
  }
  .dropdown {
    position: relative;
  }
  .dropdown-toggle {
    white-space: nowrap;
  }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
  .dropdown-toggle:empty::after {
    margin-left: 0;
  }
  .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
  }
  .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
  }
  .dropdown-item:focus,
  .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
  }
  .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
  }
  .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
  }
  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out,
      background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      -webkit-transition: none;
      transition: none;
    }
  }
  .nav-link:focus,
  .nav-link:hover {
    color: #0a58ca;
  }
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .navbar {
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out,
      -webkit-box-shadow 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      -webkit-transition: none;
      transition: none;
    }
  }
  .navbar-toggler:hover {
    text-decoration: none;
  }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem;
    box-shadow: 0 0 0 0.25rem;
  }
  @media (min-width: 768px) {
    .navbar-expand-md {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
    .navbar-expand-md .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
      display: none;
    }
  }
  .d-none {
    display: none !important;
  }
  .text-decoration-none {
    text-decoration: none !important;
  }
  @media (min-width: 768px) {
    .d-md-block {
      display: block !important;
    }
    .d-md-none {
      display: none !important;
    }
  }
}

@media all {
  header p {
    font-size: 1.6rem;
    font-weight: 400;
  }
  header p {
    line-height: 1.5;
    margin: 0 0 2rem;
  }
  header a {
    color: inherit;
  }
  .main-header nav.navbar ul.main-nav > li a {
    text-decoration: none;
  }
  header ul li {
    margin-bottom: 10px;
  }
  header ul li {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 300;
  }
  @media all and (max-width: 767px) {
    header ul li {
      font-size: 1.6rem;
    }
  }
  @media all and (max-width: 575px) {
    header ul li {
      font-size: 1.5rem;
    }
  }
  .btn:hover,
  a.btn:hover,
  input[type="submit"]:hover,
  .btn:focus,
  a.btn:focus,
  input[type="submit"]:focus {
    color: var(--color-button-text);
    text-decoration: none;
    background-color: var(--color-button);
  }

  .btn:active,
  a.btn:active,
  header input[type="submit"]:active {
    color: var(--color-button-text);
    background-color: var(--color-button);
  }
  .btn.btn--red,
  a.btn.btn--red {
    color: #fff;
    background-color: #de101f;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .btn.btn--red:hover,
  a.btn.btn--red:hover {
    background-color: #b30c0c;
    border-color: #de101f;
  }
  .btn.btn--red:visited,
  a.btn.btn--red:visited {
    color: #fff;
  }
  .btn.btn--red:active,
  a.btn.btn--red:active {
    background-color: #fff;
    color: #b30c0c;
    border-color: #b30c0c;
  }
  .btn.btn--blue,
  a.btn.btn--blue,
  input[type="submit"].btn--blue {
    background-color: #0073bf;
  }
  .btn.btn--blue:hover,
  a.btn.btn--blue:hover,
  input[type="submit"].btn--blue:hover {
    background-color: #00467f;
  }
  .btn.btn--blue:visited,
  a.btn.btn--blue:visited,
  input[type="submit"].btn--blue:visited {
    background-color: #fff;
    color: #00467f !important;
    border-color: #00467f;
  }
  .btn.btn--blue:active,
  a.btn.btn--blue:active,
  input[type="submit"].btn--blue:active {
    background-color: #fff;
    border-color: #00467f;
    color: #00467f;
  }
  .container {
    padding: 0 15px;
  }
  @media all and (max-width: 767px) {
    .site-header .container {
      max-width: 100%;
      padding: 0 !important;
    }
  }
  @media all and (min-width: 1200px) {
    .site-header .container {
      padding: 0 110px;
    }
  }
  @media all and (min-width: 1400px) {
    .site-header .container {
      padding: 0 125px;
    }
  }
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  form input[type="text"] {
    width: 100%;
    height: 46px;
    padding: 5px 12px;
    background-color: #fff;
    border: 1px solid #696f7a;
    font-size: 16px;
    font-weight: 600;
  }
  form input[type="text"]:hover {
    cursor: pointer;
    border: 1px solid #2a2c31;
    background-color: #fff;
  }
  form input[type="text"]:focus {
    padding: 12px 12px 0;
    border: 2px solid #2a2c31;
    background-color: #fff;
  }
  .main-header nav.navbar .dropdown-menu li {
    margin-bottom: 0;
  }
  .main-header,
  .main-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-header {
    background-color: #ffffff;
    color: var(--color-text-secondary);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e4e5e7;
  }
  .main-header nav.navbar .dropdown-menu a:visited {
    color: #839ebf;
  }
  .main-header nav.navbar .dropdown-menu a:hover {
    color: #fff;
    background-color: #0073bf;
  }
  .main-header .main-nav .menu-item.xs-show {
    display: none;
  }
  @media all and (max-width: 767px) {
    .main-header .main-nav .menu-item.xs-show {
      display: block;
    }
  }
  .main-header__inner {
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 32px;
  }
  @media all and (max-width: 767px) {
    .main-header__inner {
      width: 100%;
      max-width: 100%;
      height: auto;
      padding: 0;
    }
  }
  .main-header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  @media all and (max-width: 767px) {
    .main-header__left {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
    }
  }
  .main-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    padding-left: 50px;
    min-height: 32px;
    overflow: hidden;
  }
  @media all and (max-width: 767px) {
    .main-header__right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      padding: 0 44px 0 15px;
      overflow: visible;
    }
  }
  .main-header__right .btns-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  @media all and (max-width: 767px) {
    .main-header__right .btns-wrapper {
      height: 100%;
    }
  }
  .main-header__right .promocode-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    text-align: right;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper {
      width: 100%;
      position: absolute;
      z-index: 10;
      top: 100%;
      right: 0;
      padding: 0;
      background-color: #2a2c31;
    }
    .main-header__right .promocode-wrapper__left {
      display: none;
    }
  }
  @media all and (min-width: 768px) {
    .main-header__right .promocode-wrapper__left {
      position: relative;
      right: 0;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      opacity: 1;
      -webkit-transition: 0.5s;
      transition: 0.5s;
    }
  }
  .main-header__right .promocode-wrapper__right {
    position: relative;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper__right {
      width: 100%;
    }
  }
  @media all and (min-width: 768px) {
    .main-header__right .promocode-wrapper__right {
      position: absolute;
      right: 0;
      width: 30px;
      -webkit-transition: 0.5s;
      transition: 0.5s;
    }
    .main-header__right .promocode-wrapper__right:after {
      content: "";
      position: absolute;
      height: 40px;
      width: 30px;
      top: -15px;
      left: 0;
      background-image: url(https://www.stamps.com/wp-content/themes/stamps/assets/dist/img/mic-icon.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }
  }
  .main-header__right .promocode-wrapper__right form {
    position: relative;
    padding-left: 30px;
    overflow: hidden;
    width: 100%;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper__right form {
      display: none;
      width: 100%;
      padding-left: 0;
    }
  }
  .main-header__right .promocode-wrapper p {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper p {
      font-size: 12px;
      font-weight: 700;
    }
  }
  .main-header__right .promocode-wrapper label {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper label {
      color: #8e949e;
    }
  }
  .main-header__right .promocode-wrapper .message {
    position: relative;
    margin-left: 10px;
    padding-right: 30px;
  }
  .main-header__right .promocode-wrapper .message:hover {
    cursor: pointer;
  }
  .main-header__right .promocode-wrapper .open-promocode-input {
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: underline;
    border: 0;
    background-color: transparent;
    color: #fff;
  }
  .main-header__right .promocode-wrapper .promocode {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper .promocode {
      padding: 10px;
    }
  }
  .main-header__right .promocode-wrapper .promocode label {
    position: absolute;
    color: #839ebf;
    top: 3px;
    font-size: 16px;
    font-weight: 600;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper .promocode label {
      top: 12px;
      left: 15px;
      color: #8e949e;
    }
  }
  .main-header__right .promocode-wrapper .promocode-value {
    position: relative;
    width: 200px;
    height: 23px;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 0 25px 0 5px;
    background-color: transparent;
    border: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper .promocode-value {
      top: 2px;
      min-width: auto;
      height: 23px;
      padding: 0 5px;
      border-left: none;
      background-color: transparent;
      color: #fff;
    }
  }
  .main-header__right .promocode-wrapper .promocode-value::placeholder {
    color: #dcddde;
    opacity: 0.4;
  }
  .main-header__right .promocode-wrapper .promocode-value:focus {
    border-bottom: 1px solid #fff;
  }
  .main-header__right .promocode-wrapper .submit-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 3px 9px;
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 700;
  }
  @media all and (max-width: 767px) {
    .main-header__right .promocode-wrapper .submit-btn {
      min-width: 60px;
      background-color: #0073bf;
      margin-left: 10px;
    }
  }
  .main-header__right .promocode-wrapper .submit-btn:focus {
    outline: 1px solid #fff;
  }
  .main-header__right .promocode-wrapper .close {
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 2;
    opacity: 0;
    top: 0;
    right: -25px;
    font-size: 20px;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    border-radius: 50%;
    background-color: transparent;
    border: 0;
  }
  .main-header__right .promocode-wrapper .close:hover {
    cursor: pointer;
  }
  .main-header__right .promocode-wrapper .close:after,
  .main-header__right .promocode-wrapper .close:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    top: calc(50% - 1px);
    left: 0;
  }
  .main-header__right .promocode-wrapper .close:after {
    width: 2px;
    height: 100%;
    top: 0;
    left: calc(50% - 1px);
  }
  .main-header__right .mobile-promo-trigger {
    position: relative;
    width: 40px;
    height: 100%;
    background-color: #092452;
    background-image: url(https://www.stamps.com/wp-content/themes/stamps/assets/dist/img/mic.svg);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    border: 0;
  }
  .main-header__right p {
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
  }
  .main-header__right .btn {
    margin: 0;
    font-size: 14px;
    padding: 4px 12px;
  }

  @media all and (max-width: 991px) {
    .main-header__right .btn {
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
  }
  @media all and (max-width: 767px) {
    .main-header__right .btn {
      padding: 2px 4px;
    }
  }
  .main-header nav.navbar ul.main-nav > li a i {
    display: none;
  }
  .main-header .site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
  .main-header .site-logo img {
    width: auto;
    height: 20px;
  }
  .lt-topbar .navbar-brand {
    padding: 0;
    margin-right: 12px;
    margin-left: 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #56595d;
  }

  @media all and (max-width: 767px) {
    .lt-topbar .navbar-brand {
      float: left;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-right: auto;
      margin-left: auto;
      width: 84px;
    }
  }
  .main-header .navbar-toggler {
    display: none;
    position: absolute;
    z-index: 10;
    height: 50px;
    width: 44px;
    top: 0;
    right: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  @media all and (max-width: 767px) {
    .main-header .navbar-toggler {
      border-left: 2px solid #4f7196;
    }
    .main-header .navbar-toggler {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-line-pack: center;
      align-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  .main-header .navbar-toggler:focus {
    outline: 0;
  }
  .main-header .navbar-toggler[aria-expanded="false"] {
    background-color: #092452;
  }
  .main-header .navbar-toggler span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 4px;
  }
  .main-header .navbar-toggler span:last-child {
    margin-bottom: 0;
  }
  .main-header nav.navbar {
    width: 100%;
    height: 100%;
    padding: 0;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar {
      position: static;
      -webkit-box-align: initial;
      -ms-flex-align: initial;
      align-items: initial;
    }
  }
  .main-header nav.navbar ul.main-nav {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: none;
    height: 100%;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar ul.main-nav {
      display: block;
      background-color: #2a2c31;
      padding: 3px 0 0;
      border-bottom: 1px solid #dcddde;
    }
  }
  .main-header nav.navbar ul.main-nav > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar ul.main-nav > li {
      display: block;
      border-bottom: 1px solid #f0f5f8;
    }
  }
  .main-header nav.navbar ul.main-nav > li:last-child {
    border-bottom: none;
  }
  .main-header nav.navbar ul.main-nav > li a.nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar ul.main-nav > li a.nav-link {
      height: auto;
      padding: 11px 15px;
      color: #f0f5f8;
      text-transform: initial;
      font-weight: 700;
      font-size: 14px;
    }
  }
  .main-header nav.navbar ul.main-nav > li a.nav-link.dropdown-toggle {
    padding-right: 25px;
  }
  @media all and (min-width: 992px) {
    .main-header nav.navbar ul.main-nav a.dropdown-toggle:after {
      content: "";
      position: absolute;
      right: 13px;
      top: calc(50% - 2px);
      -webkit-transform: translateY(-50%) rotateZ(45deg);
      transform: translateY(-50%) rotateZ(45deg);
      width: 7px;
      height: 7px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      -webkit-transition: 0.3s;
      transition: 0.3s;
    }
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar ul.main-nav li.dropdown {
      position: relative;
      background-color: #2a2c31;
    }
  }
  .main-header nav.navbar ul.main-nav li.dropdown:after,
  .main-header nav.navbar ul.main-nav li.dropdown:before {
    position: absolute;
    top: 17px;
    right: 20px;
    width: 10px;
    height: 2px;
    background-color: #4e4e50;
  }
  @media all and (min-width: 768px) {
    .main-header nav.navbar ul.main-nav li.dropdown:hover > .dropdown-menu {
      display: block;
    }
  }
  @media all and (max-width: 767px) {
    .main-header
      nav.navbar
      ul.main-nav
      li.dropdown
      a[aria-expanded="false"]:after {
      -webkit-transform: rotateZ(90deg);
      transform: rotateZ(90deg);
    }
  }
  .main-header nav.navbar ul.main-nav li.dropdown a.dropdown-toggle {
    position: relative;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar ul.main-nav li.dropdown a.dropdown-toggle:after,
    .main-header nav.navbar ul.main-nav li.dropdown a.dropdown-toggle:before {
      content: "";
      position: absolute;
      top: 17px;
      right: 20px;
      width: 16px;
      height: 3px;
      background-color: #fff;
      border: 0;
    }
  }
  .main-header nav.navbar .dropdown-menu {
    top: 100%;
    float: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: #092452;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu {
      position: static;
      width: 100%;
      max-height: 100vh;
      overflow-y: auto;
      background-color: #f0f5f8;
    }
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu li {
      padding-left: 20px;
      background-color: #f0f5f8;
      border-bottom: 1px solid #849fbe;
    }
  }
  .main-header nav.navbar .dropdown-menu li:hover {
    background-color: #0073bf;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu li:hover {
      background-color: transparent;
    }
  }
  .main-header nav.navbar .dropdown-menu li:active {
    background-color: #005c99;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu li:active {
      background-color: #f0f5f8;
    }
  }
  .main-header nav.navbar .dropdown-menu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .main-header nav.navbar .dropdown-menu a {
    padding: 7px 20px;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    background-color: transparent;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu a {
      padding: 14px 15px;
      font-size: 14px;
      line-height: 16px;
      font-weight: 700;
      color: #2a2c31;
    }
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu a:hover {
      background-color: transparent;
      color: #04327c;
    }
  }
  .main-header nav.navbar .dropdown-menu a:active {
    background-color: #005c99;
  }
  @media all and (max-width: 767px) {
    .main-header nav.navbar .dropdown-menu a:active {
      background-color: #f0f5f8;
    }
    .main-header .login-btn {
      display: none;
    }
  }
}

.lt-topbar {
  margin-bottom: 56px;
}

/* custom header */

.lt-topbar__right .btn + .btn {
  margin-left: 8px;
}
@media all and (max-width: 991px) {
  .lt-topbar__right .btn + .btn {
    margin-left: 0;
  }
}

.lt-topbar__right .get-started-btn,
.lt-topbar__right .login-btn {
  border-radius: 100px;
}

.lt-topbar__wrap {
  z-index: 15;
}

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

.lt-topbar__link {
  display: block;
  color: var(--topbar-color-text);
}

.lt-topbar__link:not(:last-of-type) {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .lt-topbar__link {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0 !important;
  }
}

.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  /* color: #172926; */
}
@media (min-width: 992px) {
  .lt-topbar__link:hover,
  .lt-topbar__link:focus,
  .lt-topbar__link:active {
    /* color: #dcdcdc; */
  }
}
@media (min-width: 992px) {
  .lt-topbar__right {
    display: flex;
    align-items: center;
  }
}

.lt-dropdown-toggle {
  font-weight: 600;
  color: #003311;
}
@media (min-width: 992px) {
  .lt-dropdown-toggle {
    color: #003311;
  }

  .lt-dropdown-toggle:hover,
  .lt-dropdown-toggle:focus,
  .lt-dropdown-toggle:active {
    color: #003311;
  }
}
@media (max-width: 991px) {
  .lt-topbar__link {
    color: #172926;
  }

  .lt-topbar__controls {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 100;
    width: 80%;
    max-width: 250px;
    padding: 2rem;
    color: #172926;
    background-color: #fff;
    transition: transform 600ms ease;
  }

  [dir="ltr"] .lt-topbar__controls {
    left: 0;
    transform: translateX(-100%);
  }

  [dir="rtl"] .lt-topbar__controls {
    right: 0;
    transform: translateX(100%);
  }

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

  .lt-topbar__controls.is-active {
    transform: translateX(0);
  }

  [dir="ltr"] .lt-topbar__controls.is-active {
    left: 0;
    box-shadow: 5px 0 40px rgb(0 0 0 / 45%);
  }

  [dir="rtl"] .lt-topbar__controls.is-active {
    right: 0;
    box-shadow: -5px 0 40px rgb(0 0 0 / 45%);
  }

  .lt-topbar-open {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  [dir="ltr"] .lt-topbar__controls > * + * {
    margin-left: 2rem;
  }

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

.copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
  text-align: center;
}
.copyright a {
  color: inherit;
}

@media all {
  .container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out,
      background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
      border-color 0.15s ease-in-out;
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      -webkit-transition: none;
      transition: none;
    }
  }
  .nav-link:focus,
  .nav-link:hover {
    color: #0a58ca;
  }
  .d-block {
    display: block !important;
  }
  .d-none {
    display: none !important;
  }
  @media (min-width: 768px) {
    .d-md-block {
      display: block !important;
    }
    .d-md-none {
      display: none !important;
    }
  }
}
@media all {
  footer h2 {
    font-weight: 700;
  }
  footer h2 {
    font-family: "Open Sans", sans-serif;
    padding: 0;
  }
  footer h2 {
    color: #04327c;
  }
  footer h2 {
    font-size: 3.8rem;
    line-height: 4.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
  }
  @media all and (max-width: 991px) {
    footer h2 {
      font-size: 3.1rem;
      line-height: 4rem;
    }
  }
  @media all and (max-width: 575px) {
    footer h2 {
      font-size: 2.2rem;
      line-height: 2.9rem;
    }
  }
  footer p {
    font-size: 1.6rem;
    font-weight: 400;
  }
  footer p {
    line-height: 1.5;
    margin: 0 0 2rem;
  }
  footer a {
    color: inherit;
  }
  footer ul li {
    margin-bottom: 10px;
  }
  footer ul li {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 300;
  }
  @media all and (max-width: 767px) {
    footer ul li {
      font-size: 1.6rem;
    }
  }
  @media all and (max-width: 575px) {
    footer ul li {
      font-size: 1.5rem;
    }
  }
  .container {
    padding: 0 15px;
  }
  @media all and (max-width: 767px) {
    .container {
      max-width: 100%;
    }
  }
  @media all and (min-width: 1200px) {
    .container {
      padding: 0 110px;
    }
  }
  @media all and (min-width: 1400px) {
    .container {
      padding: 0 125px;
    }
  }
  
  @media all and (max-width: 767px) {
    .accordion-mobile {
      border-bottom: 1px solid #696f7a;
    }

    .accordion-mobile .menu {
      padding-bottom: 8px !important;
    }
  }
 
}

.lt-hero-unit--large input[type="submit"],
.lt-hero-unit--large input[type="search"] {
  border-radius: 0;
  height: 3.3rem;
  font-size: 16px;
}

.search input[type="submit"] {
  border-radius: 0 4px 4px 0;
  font-size: 16px;
}

.search input[type="search"] {
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}

.promoted-articles {
  background: #f7f7f8;
}

.lt-promoted-articles-item__article {
  background-color: #fff;
  border-radius: 4px;
}

.lt-card__img {
  height: 96px;
  margin-bottom: 24px;
}

.lt-card__img img {
  max-height: 100%;
}

.lt-block-list-item {
  border-radius: 4px;
  border: 1px solid #e4e5e7;
}

.lt-block-list-item__link:hover,
.lt-block-list-item__link:focus {
  background-color: #fff;
}

.lt-block-list-item__link:focus::before,
.lt-block-list-item__link:hover::before {
  filter: none;
}

.lt-homepage-header,
.lt-block-list-item__link {
  color: var(--color-text-primary);
}

.lt-promoted-articles-item__section {
  display: inline-block;
  align-self: start;
  padding: 4px 8px;
  border-radius: 2px;
  background: #d8ffeb;
  color: #0f0f10;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.lt-promoted-articles-item__article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e4e5e7;
}

.lt-promoted-articles-item__article a,
.lt-search-result__title a {
  color: #0F0F10;
}

.lt-promoted-articles .lt-homepage-header {
  font-size: 24px;
}

.lt-breadcrumbs--search-results.breadcrumbs > li a {
  color: #56595d;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
}

.lt-breadcrumbs--search-results.breadcrumbs > li:first-child a {
  text-decoration: underline;
}

.lt-breadcrumbs--search-results.breadcrumbs > li:last-child a {
  color: #0f0f10;
}

.breadcrumbs > li + li::before {
  color: #56595d;
  font-size: 20px;
}

.lt-meta__item {
  color: #56595d;
  font-size: 14px;
}

.lt-card--border {
  border-radius: 4px;
}

.contact-boxes .lt-card {
  padding: 0;
}

.contact-boxes .lt-card__image {
  padding: 24px;
  text-align: center;
  border-bottom: var(--border-width) solid var(--color-border);
}

.contact-boxes .lt-card__content {
  padding: 24px;
  margin: 0 !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #2a2c31;
}

.contact-boxes .lt-card__text {
  margin-bottom: 16px;
}

.contact-boxes .lt-card__link {
  display: inline-block;
  color: var(--button-color-secondary);
}

.lt-popular-searches__item:hover,
.lt-popular-searches__item:active {
  color: #0073bf;
}

zd-autocomplete-multibrand {
  border-bottom: 1px solid #e4e5e7;
  color: #56595d;
  font-size: 14px;
  padding: 16px;
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: #0f0f10;
  font-size: 16px;
  line-height: 24px;
}
zd-autocomplete-multibrand zd-autocomplete-breadcrumbs-multibrand {
  color: #56595d;
  font-size: 14px;
  margin-top: 8px;
}

zd-autocomplete-multibrand[aria-selected="true"] {
  background-color: #f7f7f8;
}

zd-autocomplete-header {
  padding: 10px 20px;
  color: #0f0f10;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  border-bottom: 1px solid #e4e5e7;
}

.lt-search-result {
  border: var(--border-width) solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 32px;
}

.lt-search-results-page h1 {
  color: #0f0f10;
}

.lt-search-filter__link {
  color: #56595d;
  border-radius: 4px;
  border: 1px solid #e4e5e7;
  margin-bottom: 8px;
}

.lt-search-filter__item.is-active .lt-search-filter__link {
  color: #0f0f10;
  border-color: transparent;
  background: #f7f7f8;
}

.breadcrumbs > li a {
  color: #56595d;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 155.556% */
}

.breadcrumbs > li:last-child a {
  color: #0f0f10;
  text-decoration: none;
}

.breadcrumbs > li a:hover {
  color: #1c14ff;
  text-decoration: none;
}

.breadcrumbs > li a:focus {
  color: #0f0f10;
  text-decoration: none;
}

.accordion--section {
  justify-self: flex-start;
}

.accordion--section .accordion__content {
  border-top: 0;
  padding-top: 0;
}

.accordion--section .lt-icon {
  color: #0f0f10;
  stroke-width: 2px;
}

.lt-article-meta {
  margin-top: 8px;
  margin-bottom: 16px;
  color: #56595d;
  text-transform: lowercase;
}

.lt-article-list i {
  font-size: 12px;
  line-height: 22px;
  margin-right: 6px;
  color: #11003a;
}

.lt-article-list {
  font-size: 14px;
}

.lt-article-list-item--is-promoted i {
  color: #f2c300;
}

.lt-article-list-item__link {
  color: #0f0f10;
}

.accordion--section .lt-article-list-item__link {
  text-decoration: underline;
}

h1 {
  color: #0f0f10;
}

@media (min-width: 876px) {
  .lt-article-list--section {
    column-count: 2;
  }
}

.lt-article-page .lt-search-wrap {
  -webkit-margin-start: 8.334% !important;
  margin-inline-start: 8.334% !important;
  -webkit-margin-end: inherit !important;
  margin-inline-end: inherit !important;
}

[dir="ltr"] .lt-article-page .lt-search-wrap svg {
  left: 28px;
  top: 15px;
  transform: none;
}

.border-b {
  border-bottom: 1px solid #e4e5e7;
}

.lt-article__body h1,
.lt-article__body h2,
.lt-article__body h3,
.lt-article__body h4,
.lt-article__body h5,
.lt-article__body h6,
.lt-article__body .h1,
.lt-article__body .h2,
.lt-article__body .h3,
.lt-article__body .h4,
.lt-article__body .h5,
.lt-article__body .h6,
.cta-box__title {
  color: #0f0f10;
}

.lt-toc--title {
  color: #2a2c31;
  font-size: 16px;
  font-weight: 600;
}

.lt-toc--link {
  color: #56595d;
  font-size: 14px;
  border-radius: 2px;
}

body .lt-toc--link.is-active {
  background: #f7f7f8;
}

body .lt-toc--link.is-active span {
  color: #0f0f10;
}

.sidenav__category summary:after,
.sidenav__section summary:after {
  position: absolute;
  top: 5px;
  font-size: 11px;
  transition: all 0.3s;
  content: "\f105";
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  transform: rotate(90deg);
  right: 0;
  color: #0f0f10;
}

summary[aria-expanded="true"]:after {
  transform: rotate(-90deg);
}

.sidenav__label {
  font-weight: 600 !important;
  color: #56595d;
}

.sidenav__list > * + *,
.sidenav__list + .sidenav__articles {
  margin-top: 16px;
}

.sidenav__content {
  padding-left: 0 !important;
  padding-top: 0 !important;
}

.sidenav__content > .sidenav__list {
  border-left: 1px solid #e4e5e7;
  margin-left: 15px;
}

/* .sidenav__content > .sidenav__list  .sidenav__section {
  padding-left: 16px;
} */

body .sidenav__list--main > li > sidenav-details > details summary {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  padding-left: 16px;
}

body .sidenav__list--main > li > sidenav-details > details > summary {
  font-size: 16px;
}

.sidenav__article-name {
  font-size: 12px;
  padding: 8px 8px 8px 24px;
  display: block;
  font-weight: 500;
}

.is-active .sidenav__article-name {
  text-decoration: none !important;
  font-weight: 600;
  background: #f7f7f8;
  color: #0f0f10;
}

/* .is-active .sidenav__article-name:hover,
.sidenav summary:hover *,
.sidenav summary:hover:after {
  color:#4dbcce !important;
} */

.lt-article-vote {
  border-top: 1px solid #dae1e6;
  border-bottom: 1px solid #dae1e6;
  padding: 34px 0;
}

.recent-articles-title {
  color: #2a2c31;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}

.recent-articles {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #e4e5e7;
}

.recent-articles ul > li a,
.related-articles ul > li a {
  border: none;
  color: #0f0f10;
  font-size: 14px;
}

.recent-articles ul > li a:before {
  content: "\f061";
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  margin-right: 8px;
}

.lt-hero-unit__title {
  color: #fff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .lt-hero-unit__title {
    font-size: 48px;
    line-height: 64px;
  }
}

.tab {
  padding: 0;
  border: none;
}

.tabs-link {
  font-size: 14px;
  font-weight: 400;
  color: #56595d;
  padding: 8px 12px;
}

.tabs-link[aria-selected="true"] {
  color: #0f0f10;
  border-bottom: 2px solid #003311;
  font-weight: 600;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

body .prevnext__btn {
  border: none;
}

body .prevnext__name {
  color: #56595d;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: none;
}

.prevnext__btn--next .fa-angle-right:before {
  content: "\f061";
  margin-left: 5px;
  display: inline-block;
}

.prevnext__btn--prev .fa-angle-left:before {
  content: "\f060";
  margin-right: 5px;
  display: inline-block;
}

.prevnext__title {
  padding-top: 4px !important;
  display: inline-block;
  color: #0f0f10;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.lt-hero-unit__bg {
  z-index: 2;
}

.lt-article-list-item__link svg {
  margin-top: -3px;
}

@media (min-width: 1200px) {
  .sidenav__toggle {
    display: none !important;
  }
}

.accordion--section .accordion__summary-wrapper {
  font-weight: normal !important;
  align-items: flex-start;
}

.accordion--section .accordion__summary-wrapper > svg {
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-left: 0;
  list-style: none;
  margin: 0 0 8px 0;
}

.footer-socials .nav-link {
  padding: 0;
  font-size: 24px;
  width: 24px;
  display: inline-block;
  color: #2a2c31;
}

.text-wrapper p {
  font-size: 12px;
  color: #696f7a;
}

.text-wrapper.copyright-text p {
  font-size: 14px;
  color: #2a2c31;
  margin-bottom: 24px;
}

.additional-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.additional-info ul a {
  color: #04327c;
  font-size: 14px;
  padding: 0;
}

.additional-info ul li + li:before {
  content: "";
  display: block;
  position: absolute;
  height: 16px;
  width: 1px;
  background-color: #8e949e;
  left: -16px;
  top: 1px;
}

.additional-info ul li {
  margin-right: 16px;
}

.additional-info ul li + li {
  margin-left: 16px;
  position: relative;
}

.lt-footer {
  padding-bottom: 64px;
  background-color: #f0f5f8;
}

@media (max-width: 768px) {
  .d-md-max-none {
    display: none !important;
  }
  .lt-footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .mobile-center {
    text-align: center;
    justify-content: center;
  }

  .accordion-mobile:first-child {
    border-top: 1px solid #696f7a;
  }
}

.lt-search-filter:first-child {
  display: none;
}

.lt-search-result--article {
  position: relative;
}

.lt-search-result--article .lt-search-result__title a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.lt-search-result--article:hover,
.accordion--section:hover {
  border: 1px solid #0073bf;
}

.accordion--section .lt-article-list-item:nth-child(n + 4) {
  display: none;
}

.sidenav__list > * + *,
.sidenav__list + .sidenav__articles {
  margin-top: 6px !important;
}

.guilabel {
  font-weight: bold;
  font-family: monospace;
}

.filename, 
.guilabel {
  font-family: monospace;
  background-color: #eee;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: calc(var(--line-height-computed));
}

.table th,
.table td {
  padding: 14px 16px;
  vertical-align: top;
  font-size: 14px;
}

.table td {
  border-top: 1px solid #f0f2f6;
  padding: 12px;
}

.table thead th {
  vertical-align: bottom;
  text-align: left;
  font-size: 14px;
  background: #f1f2f3;
}

.table tbody + tbody {
  border-top: 1px solid #f0f2f6;
}

.table .table {
  background-color: #fff;
}

table p {
  margin-bottom: 0;
}

.table--color-header th,
.informaltable th,
.informaltable thead td {
  color: #0f0f10;
  background-color: #f1f2f3;
}

.table--striped th,
.table--striped td,
.table--striped thead th,
.informaltable th,
.informaltable td,
.informaltable thead th {
  border-color: #e4e5e7;
}

.table--striped tbody tr:nth-child(odd) {
  color: inherit;
  background-color: var(--gray-lighter);
}

.table--hover tbody tr:hover {
  color: inherit;
  background-color: var(--gray-lighter);
}

.table--bordered,
.informaltable table {
  border: 1px solid #fff;
}

[dir="ltr"] .table--bordered td,
[dir="ltr"] .table--bordered th {
  border-left: 1px solid #fff;
}

.informaltable {
  margin-bottom: 24px;
}

[dir="rtl"] .table--bordered td,
[dir="rtl"] .table--bordered th {
  border-right: 1px solid #fff;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media screen and (max-width: 575px) {
  .table-responsive {
    width: 100%;
    margin-bottom: calc(var(--line-height-computed) * 0.75);
    overflow-y: hidden;
    border: 1px solid #f0f2f6;
    -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;
  }
}

.table--striped tbody tr {
  background-color: var(--gray-lightest);
}

.lt-article__body .tab {
  padding: 24px;
  background: #F7F7F8;
  margin: 24px 24px 0 0;
  max-width: 100%;
  overflow: auto;
}

.lt-article__body .tab .rte table:not([class*="table"]) tbody td {
  white-space: normal;
}

.category-tabs {
  display: flex;
}

.category-tabs-menu {
  width: 33.33%;
  flex-shrink: none;
  display: flex;
  flex-direction: column;
}

.category-tab {
  width: 76.66%;
  border-radius: 0px 4px 4px 4px;
  border: 1px solid #afb3b6;
  padding: 32px 64px;
  border-radius: 8px;
}

.category-tab.category-tab--3 {
  border-radius: 0 8px 8px 8px;
}

.category-tab:nth-last-of-type(1) {
  border-radius: 8px 8px 8px 0; 
}

.category-tabs-link {
  border-radius: 4px;
  border: 1px solid #e4e5e7;
  padding: 16px;
  margin-right: 17px;
  color: #56595d;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.category-tabs-link:not(:last-of-type) {
  margin-bottom: 17px;
}

.category-tabs-link.is-active {
  border-width: 1px;
  border-style: solid;
  border-color: #afb3b6;
  margin-right: -1px;
  position: relative;
  z-index: 2;
  border-radius: 4px 0 0 4px;
  color: #0f0f10;
}

.category-tabs-link img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .category-tabs-link img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .category-tabs-link {
    padding: 16px;
    margin-right: 24px;
    margin-bottom: 24px;
  }
  .category-tab {
    padding: 16px 32px;
  }
}

@media screen and (max-width: 576px) {
  .category-tabs-link {
    margin-right: 16px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .category-tab {
    width: 50%;
    padding: 16px;
  }
  .category-tabs-menu {
    width: 50%;
  }
}

.category-tab .see-all-articles {
  color: #11003A;
  background-color: #22EE88;
  border-color: #22EE88;
  border-radius: 100px;
  margin-top: 16px;
}

zd-autocomplete-breadcrumbs-multibrand {
  margin-top: 12px;
}

.lt-article .accordion__summary-wrapper > .lt-icon {
  width: 24px;
  height: 24px;
}

.lt-article .accordion__summary-wrapper strong {
  font-size: 22px;
  font-weight: normal;
  color: var(--Lake, #04327c);
}

.lt-article .accordion__summary {
  padding: 10px 16px;
  transition: all 0.3s;
}

.lt-article .accordion__summary:hover {
  background-color: var(--Lake, #04327c);
  color: #fff;
}

.lt-article .accordion__summary:hover strong {
  color: #fff;
}

.lt-article [aria-expanded="true"] .lt-icon:first-of-type {
  display: none;
}

.lt-article [aria-expanded="true"] .lt-icon:last-of-type {
  display: block !important;
}

.lt-article .accordion {
  border-radius: 0;
  border-right: none;
  border-left: none;
}

.lt-article .accordion__content {
  margin-left: 16px;
  margin-right: 16px;
  margin-top: -6px;
  padding-top: 0;
  border-top: none;
}

[dir="rtl"] .zd-article > .orderedlist,
[dir="rtl"] .zd-article > div {
  padding-right: 20px;
}

[dir="ltr"] .zd-article > .section,
[dir="ltr"] .zd-article > .glossary {
  padding-left: 0;
}

[dir="rtl"] .zd-article > .section,
[dir="rtl"] .zd-article > .glossary {
  padding-right: 0;
}

[dir="ltr"] .glossary > * {
  padding-left: 20px;
}

[dir="rtl"] .glossary > * {
  padding-right: 20px;
}

[dir="ltr"] .glossary > .titlepage {
  padding-left: 0;
}

[dir="rtl"] .glossary > .titlepage {
  padding-right: 0;
}

dt,
dd {
  display: inline-block;
}

dt {
  width: 30%;
  font-weight: 600;
  vertical-align: top;
}

[dir] dt {
  margin-top: 1em;
}

[dir="ltr"] dt {
  padding-right: 10px;
}

[dir="rtl"] dt {
  padding-left: 10px;
}

dd {
  width: 70%;
}

.glossary dl {
  display: flex;
  flex-wrap: wrap;
}

[dir] .glossary dt,
[dir] .glossary dd {
  padding-bottom: 15px;
  border-bottom: #e5e5e5 1px solid;
}

.glossary dt p,
.glossary dd p {
  margin-top: 0 !important;
}

[dir] .glossary dt {
  margin-top: 0;
}

.abstract {
  display: none !important;
}

code.filename, 
code.guilabel {
  font-family: "DM Mono", monospace;
}

[dir] code.filename,
[dir] code.guilabel {
  padding: 0 4px !important;
  background: #eee;
  border-radius: 0 !important;
}

.guilabel {
  font-family: "courier new", Arial, sans-serif;
}

@media (max-width: 991px) {
  .td-flex-mobile {
    display: flex;
    flex-wrap: wrap;
  }

  .td-flex-mobile > td {
    width: 100%;
  }
}

.glossterm.has-tooltip {
  position: relative;
}

.glossterm.has-tooltip.is-active:before,
.glossterm.has-tooltip.is-active:after {
  position: absolute;
  display: block;
  content: "";
}

[dir="ltr"] .glossterm.has-tooltip.is-active:before,
[dir="ltr"] .glossterm.has-tooltip.is-active:after {
  left: 50%;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:before,
[dir="rtl"] .glossterm.has-tooltip.is-active:after {
  right: 50%;
}

.glossterm.has-tooltip.is-active:before {
  top: 18px;
  z-index: 2;
}

[dir] .glossterm.has-tooltip.is-active:before {
  border-bottom: 7px solid #fff;
}

[dir="ltr"] .glossterm.has-tooltip.is-active:before {
  border-right: 8px solid transparent;
  border-left: 9px solid transparent;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:before {
  border-right: 9px solid transparent;
  border-left: 8px solid transparent;
}

.glossterm.has-tooltip.is-active:after {
  top: 17px;
  z-index: 1;
}

[dir] .glossterm.has-tooltip.is-active:after {
  border-bottom: 8px solid #ccc;
}

[dir="ltr"] .glossterm.has-tooltip.is-active:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}

.glossterm-tooltip {
  position: absolute;
  top: 25px;
  display: none;
  width: 400px;
  font-size: 14px;
  font-weight: 400;
}

[dir] .glossterm-tooltip {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

[dir="ltr"] .glossterm-tooltip {
  left: -50%;
}

[dir="rtl"] .glossterm-tooltip {
  right: -50%;
}

.tabs-menu {
  display: flex;
}

.tabs-menu .tabs-link {
  padding: 8px 16px;
  color: #56595D;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.tabs-link.is-active {
  color: #0F0F10;
  border-color: #003311;
  font-weight: 600;
}

.article .note h3.title,
.article .tip h3.title,
.article .warning h3.title,
.article .caution h3.title,
.article .important h3.title {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 0;
  border: none;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.article .note,
.article .tip,
.article .warning,
.article .caution,
.article .important {
  display: block;
  padding: 24px;
  border-radius: 4px;
  border: 1px;
  border-style: solid;
  line-height: 1.7rem;
  margin-top: 24px;
  margin-bottom: 24px;
  position: relative;
  font-size: 14px;
  color: #0f0f10;

  margin-left: 0px !important;
  margin-right: 0px !important;
}

.article .note p:last-of-type,
.article .tip p:last-of-type,
.article .warning p:last-of-type,
.article .caution p:last-of-type,
.article .important p:last-of-type {
  margin-bottom: 0;
}

.article .note-title:before,
.article .note .title:before,
.article .note.notice .title:before,
.article .tip .title:before,
.article .warning .title:before,
.article .caution .title:before,
.article .important .title:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.79167 14.375H11.0416V9.58331H9.79167V14.375ZM10.4166 8.15704C10.6074 8.15704 10.7672 8.09254 10.8962 7.96354C11.0252 7.83454 11.0897 7.67469 11.0897 7.48398C11.0897 7.29329 11.0252 7.13343 10.8962 7.00442C10.7672 6.87542 10.6074 6.81092 10.4166 6.81092C10.2259 6.81092 10.0661 6.87542 9.93708 7.00442C9.80808 7.13343 9.74358 7.29329 9.74358 7.48398C9.74358 7.67469 9.80808 7.83454 9.93708 7.96354C10.0661 8.09254 10.2259 8.15704 10.4166 8.15704ZM10.418 18.3333C9.3231 18.3333 8.2939 18.1255 7.33046 17.71C6.367 17.2944 5.52893 16.7304 4.81625 16.0181C4.10356 15.3057 3.53934 14.468 3.1236 13.505C2.70787 12.542 2.5 11.513 2.5 10.418C2.5 9.3231 2.70778 8.2939 3.12333 7.33046C3.53889 6.367 4.10285 5.52893 4.81521 4.81625C5.52758 4.10356 6.36529 3.53934 7.32831 3.12361C8.29133 2.70787 9.32031 2.5 10.4153 2.5C11.5102 2.5 12.5394 2.70778 13.5028 3.12333C14.4663 3.53889 15.3044 4.10285 16.017 4.81521C16.7297 5.52758 17.294 6.36529 17.7097 7.32831C18.1254 8.29133 18.3333 9.32031 18.3333 10.4153C18.3333 11.5102 18.1255 12.5394 17.71 13.5028C17.2944 14.4663 16.7304 15.3044 16.0181 16.017C15.3057 16.7297 14.468 17.294 13.505 17.7097C12.542 18.1254 11.513 18.3333 10.418 18.3333Z' fill='%23002CCC'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.article .note:after,
.article .tip:after,
.article .warning:after,
.article .caution:after,
.article .important:after {
  display: none;
}

.article .note,
.article .note.note--success {
  background-color: #EEFFF5;
  border-color: #00572B;
  font-size: 1rem;
  line-height: 24px;
}

.article .note-title:before,
.article .tip .title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.79167 14.375H11.0416V9.58331H9.79167V14.375ZM10.4166 8.15704C10.6074 8.15704 10.7672 8.09254 10.8962 7.96354C11.0252 7.83454 11.0897 7.67469 11.0897 7.48398C11.0897 7.29329 11.0252 7.13343 10.8962 7.00442C10.7672 6.87542 10.6074 6.81092 10.4166 6.81092C10.2259 6.81092 10.0661 6.87542 9.93708 7.00442C9.80808 7.13343 9.74358 7.29329 9.74358 7.48398C9.74358 7.67469 9.80808 7.83454 9.93708 7.96354C10.0661 8.09254 10.2259 8.15704 10.4166 8.15704ZM10.418 18.3333C9.3231 18.3333 8.2939 18.1255 7.33046 17.71C6.367 17.2944 5.52893 16.7304 4.81625 16.0181C4.10356 15.3057 3.53934 14.468 3.1236 13.505C2.70787 12.542 2.5 11.513 2.5 10.418C2.5 9.3231 2.70778 8.2939 3.12333 7.33046C3.53889 6.367 4.10285 5.52893 4.81521 4.81625C5.52758 4.10356 6.36529 3.53934 7.32831 3.12361C8.29133 2.70787 9.32031 2.5 10.4153 2.5C11.5102 2.5 12.5394 2.70778 13.5028 3.12333C14.4663 3.53889 15.3044 4.10285 16.017 4.81521C16.7297 5.52758 17.294 6.36529 17.7097 7.32831C18.1254 8.29133 18.3333 9.32031 18.3333 10.4153C18.3333 11.5102 18.1255 12.5394 17.71 13.5028C17.2944 14.4663 16.7304 15.3044 16.0181 16.017C15.3057 16.7297 14.468 17.294 13.505 17.7097C12.542 18.1254 11.513 18.3333 10.418 18.3333Z' fill='%23002CCC'/%3E%3C/svg%3E%0A");
}

.article .note:not(.notice) .title:before,
.article .note.note--success .title:before,
.article .note.note--success .note-title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.81697 13.5448L14.4195 7.9423L13.5413 7.06412L8.81697 11.7885L6.44197 9.41347L5.56378 10.2917L8.81697 13.5448ZM10.001 17.9166C8.9061 17.9166 7.87691 17.7089 6.91347 17.2933C5.95001 16.8777 5.11194 16.3138 4.39926 15.6014C3.68656 14.8891 3.12235 14.0514 2.70661 13.0883C2.29088 12.1253 2.08301 11.0963 2.08301 10.0014C2.08301 8.90644 2.29079 7.87725 2.70634 6.9138C3.1219 5.95034 3.68586 5.11228 4.39822 4.39959C5.11059 3.6869 5.94829 3.12268 6.91132 2.70695C7.87433 2.29121 8.90331 2.08334 9.99826 2.08334C11.0932 2.08334 12.1224 2.29112 13.0858 2.70668C14.0493 3.12223 14.8874 3.68619 15.6 4.39855C16.3127 5.11093 16.877 5.94863 17.2927 6.91166C17.7084 7.87467 17.9163 8.90365 17.9163 9.99859C17.9163 11.0935 17.7085 12.1227 17.293 13.0862C16.8774 14.0496 16.3135 14.8877 15.6011 15.6004C14.8887 16.3131 14.051 16.8773 13.088 17.293C12.125 17.7088 11.096 17.9166 10.001 17.9166Z' fill='%23088D4C'/%3E%3C/svg%3E%0A");
}

.article .note.note--warning {
  border-color: #bd6e00;
  background-color: #fff6eb;
}

.article .note.note--warning .note-title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66699 17.0832L10.1125 2.5L18.5579 17.0832H1.66699ZM10.1125 14.8397C10.3032 14.8397 10.463 14.7752 10.592 14.6462C10.721 14.5172 10.7855 14.3573 10.7855 14.1666C10.7855 13.9759 10.721 13.816 10.592 13.687C10.463 13.558 10.3032 13.4935 10.1125 13.4935C9.92174 13.4935 9.76189 13.558 9.63289 13.687C9.50389 13.816 9.43939 13.9759 9.43939 14.1666C9.43939 14.3573 9.50389 14.5172 9.63289 14.6462C9.76189 14.7752 9.92174 14.8397 10.1125 14.8397ZM9.48747 12.6602H10.7374V8.49354H9.48747V12.6602Z' fill='%23BD6E00'/%3E%3C/svg%3E%0A");
}

.article .note.note--danger {
  border-color: #a91919;
  background-color: #fdf7f7;
}

.article .note.note--danger .note-title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.44901 10.9791H10.699V6.29967H9.44901V10.9791ZM10.074 13.1586C10.2647 13.1586 10.4246 13.0941 10.5536 12.9651C10.6826 12.8361 10.7471 12.6762 10.7471 12.4855C10.7471 12.2948 10.6826 12.135 10.5536 12.006C10.4246 11.877 10.2647 11.8125 10.074 11.8125C9.88328 11.8125 9.72343 11.877 9.59443 12.006C9.46543 12.135 9.40093 12.2948 9.40093 12.4855C9.40093 12.6762 9.46543 12.8361 9.59443 12.9651C9.72343 13.0941 9.88328 13.1586 10.074 13.1586ZM10.074 18.4807L1.66699 10.0737L10.074 1.66667L18.481 10.0737L10.074 18.4807Z' fill='%23A91919'/%3E%3C/svg%3E%0A");
}

.article .note-title {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
}

.article .tip,
.article .important,
.note.notice {
  background-color: #e5ebff;
  border-color: #002ccc;
  font-size: 1rem;
  line-height: 24px;
}

/*Warning*/
.article .caution {
  border-color: #bd6e00;
  background-color: #fff6eb;
}

.article .caution .title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66699 17.0832L10.1125 2.5L18.5579 17.0832H1.66699ZM10.1125 14.8397C10.3032 14.8397 10.463 14.7752 10.592 14.6462C10.721 14.5172 10.7855 14.3573 10.7855 14.1666C10.7855 13.9759 10.721 13.816 10.592 13.687C10.463 13.558 10.3032 13.4935 10.1125 13.4935C9.92174 13.4935 9.76189 13.558 9.63289 13.687C9.50389 13.816 9.43939 13.9759 9.43939 14.1666C9.43939 14.3573 9.50389 14.5172 9.63289 14.6462C9.76189 14.7752 9.92174 14.8397 10.1125 14.8397ZM9.48747 12.6602H10.7374V8.49354H9.48747V12.6602Z' fill='%23BD6E00'/%3E%3C/svg%3E%0A");
}

/*Caution*/
.article .warning,
.article .danger {
  border-color: #a91919;
  background-color: #fdf7f7;
}

.article .warning .title:before,
.article .danger .title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.44901 10.9791H10.699V6.29967H9.44901V10.9791ZM10.074 13.1586C10.2647 13.1586 10.4246 13.0941 10.5536 12.9651C10.6826 12.8361 10.7471 12.6762 10.7471 12.4855C10.7471 12.2948 10.6826 12.135 10.5536 12.006C10.4246 11.877 10.2647 11.8125 10.074 11.8125C9.88328 11.8125 9.72343 11.877 9.59443 12.006C9.46543 12.135 9.40093 12.2948 9.40093 12.4855C9.40093 12.6762 9.46543 12.8361 9.59443 12.9651C9.72343 13.0941 9.88328 13.1586 10.074 13.1586ZM10.074 18.4807L1.66699 10.0737L10.074 1.66667L18.481 10.0737L10.074 18.4807Z' fill='%23A91919'/%3E%3C/svg%3E%0A");
}

.accordion {
  border-top: 1px solid #8e949e;
  border-bottom: 1px solid #8e949e;
}

.accordion h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.panel-body {
  padding: 4px 10px 10px 10px;
}

.lt-toc--item-h3 {
  margin-left: 16px;
}

.category-tab img {
  border-radius: 4px;
  overflow: hidden;
}

table td {
  white-space: nowrap;
}

.accordion .panel-heading h2 {
  margin-bottom: 0;
  font-size: 22px;
}

body .sidenav__list--main > li > sidenav-details > details summary {
  padding-right: 16px;
}

.orderedlist li {
  list-style: decimal;
  margin-left: 24px;
}

.itemizedlist {
  margin-left: 5px;
}

.lt-article__body h4 {
  font-weight: normal;
}

.lt-article__body img {
  display: block;
  border: 1px solid gray;
  margin-top: 10px;
  margin-bottom: 10px;
}

.lt-article__body li p {
  margin-bottom: 12px;
}

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

.lt-article__body a:hover {
  text-decoration: none;
}

.lt-article__body a:focus {
  color: var(--color-text-primary);
}

.caption {
  font-size: 15px;
  font-style: italic;
  color: gray;
}

.small-bottom-margin {
  margin-bottom: 8px !important;
}

.lt-article__body h1,
.lt-article__body h2,
.lt-article__body h3,
.lt-article__body h4,
.lt-article__body h5,
.lt-article__body h6,
.lt-article__body .h1,
.lt-article__body .h2,
.lt-article__body .h3,
.lt-article__body .h4,
.lt-article__body .h5,
.lt-article__body .h6 {
  margin-top: 12px;
}

.lt-article__body h1,
.lt-article__body .h1 {
  font-size: 32px;
}

.lt-article__body h2,
.lt-article__body .h2 {
  font-size: 24px;
}

.lt-article__body h3,
.lt-article__body .h3 {
  font-size: 20px;
}

.lt-article__body h4,
.lt-article__body .h4 {
  font-size: 16px;
}

.sidenav a {
  text-decoration: none;
}

.category-tabs-link {
  padding-right: 0;
  cursor: pointer;
}

.category-tabs-link:hover {
  border-color: #afb3b6;
}

.category-tab__title {
  font-size: 20px;
  margin-bottom: 0;
}

.category-tabs-link.is-active {
  border-left-color: #afb3b6;
  border-top-color: #afb3b6;
  border-bottom-color: #afb3b6;
  border-right-color: #fff;
}

.lt-popular-searches__item:hover,
.lt-popular-searches__item:active {
  color: #1c14ff;
}

.lt-popular-searches__item:focus {
  color: #0f0f10;
  background-color: #ccefff;
}

.lt-search-filter h3 {
  display: none !important;
}

.sidenav__category summary:after,
.sidenav__section summary:after {
  top: 15px;
}

body .lt-toc_is-desktop .lt-toc--title {
  font-size: 16px;
  font-weight: 600;
  color: #2a2c31;
}

table td {
  white-space: normal;
}

.tab > .procedure ol:first-of-type {
  margin-top: 0;
}

.list-check > li,
.list-bullet > li,
.list-number > li,
.list-colored > li,
.procedure > li {
  margin-top: 0;
}

.recent-articles ul > li a:hover,
.prevnext__btn:hover * {
  color: #04327c;
}

span.inlinemediaobject img {
  display: inline;
  max-height: 30px;
  margin-bottom: auto;
  margin-top: auto;
  border: none;
}

.offset {
  margin: -66px 0 48px;
}


helpcenter-message,
.helpcenter-message {
  text-align: center;
  z-index: 999 !important;
  position: relative;
  background: white !important;
}
 helpcenter-message p,
.helpcenter-message p {
  margin: 25px auto;
  text-align: center;
  font-size: var(--text-sm);
  padding: 10px 15%;
  font-weight: bold;
  background-color: #FFF6EB;
  color: black;
}


helpcenter-message span,
.helpcenter-message span {
  font-weight: normal;
  font-size: var(--text-sm);
  color: black;
}

[dir="ltr"] .lt-article__body .itemizedlist,
[dir="ltr"] .lt-article__body .procedure {
  padding-left: 0;
}

[dir="rtl"] .lt-article__body .itemizedlist,
[dir="rtl"] .lt-article__body .procedure {
  padding-right: 0;
}

[dir="ltr"] .lt-article__body .itemizedlist ul, 
[dir="ltr"] .lt-article__body .procedure ul {
  margin-left: 22px;
}

[dir] .lt-article__body .section.accordion {
  border: none;
}

[dir] .lt-article__body h2 {
  padding: 10px;
  background: #ededed;
}

[dir] .lt-article__body h3 {
  padding-bottom: 15px;
  border-bottom: #e5e5e5 1px solid;
}

[dir="ltr"] .lt-article__body h3 {
  margin-left: 0;
}

[dir="rtl"] .lt-article__body h3 {
  margin-right: 10px;
}

.lt-article__body .panel-body {
  display: none;
}

[dir="ltr"] .lt-article__body .panel-body {
  padding: 0 0 0 20px;
}

[dir="rtl"] .lt-article__body .panel-body {
  padding: 0 20px 0 0;
}

[dir] .lt-article__body .panel-heading {
  cursor: pointer;
}

[dir] .lt-article__body .panel-heading .title {
  border-bottom: none;
}

.lt-article__body .panel-heading .title:after {
  font-family: "Font Awesome 5 Free";
  font-size: 0.6em;
  font-style: normal;
  font-weight: 700;
  color: #999;
  vertical-align: 10%;
  content: "\f078";
}

[dir="ltr"] .lt-article__body .panel-heading .title:after {
  margin-left: 10px;
}

[dir="rtl"] .lt-article__body .panel-heading .title:after {
  margin-right: 10px;
}

.lt-article__body .panel-heading.active .title:after {
  content: "\f077";
}

[dir] .lt-article__body p:last-child {
  margin-bottom: 0;
}

[dir] .lt-article__body .listitem p {
  margin-bottom: 5px;
  display: inline;
}

[dir] .lt-article__body .listitem p + p {
  display: block;
}

[dir] .lt-article__body p + .itemizedlist,
[dir] .lt-article__body p + .itemizedlist > .itemizedlist {
  margin-top: 10px;
}

.lt-article__body p {
  margin-bottom: 10px;
  margin-top: 10px !important;
}

.lt-article__body .glossterm {
  font-style: italic;
}

.lt-article__body a.glossterm {
  color: #0F0F10;
  text-decoration: none;
}

[dir="rtl"] .zd-article > .orderedlist,
[dir="rtl"] .zd-article > div {
  padding-right: 20px;
}

[dir="ltr"] .zd-article > .section,
[dir="ltr"] .zd-article > .glossary {
  padding-left: 0;
}

[dir="rtl"] .zd-article > .section,
[dir="rtl"] .zd-article > .glossary {
  padding-right: 0;
}

[dir="ltr"] .glossary > * {
  padding-left: 20px;
}

[dir="rtl"] .glossary > * {
  padding-right: 20px;
}

[dir="ltr"] .glossary > .titlepage {
  padding-left: 0;
}

[dir="rtl"] .glossary > .titlepage {
  padding-right: 0;
}

.abstract {
  display: none !important;
}

.phrase {
  padding: 0 !important;
  background: transparent !important;
  font-family: inherit !important;
  font-style: normal !important;
}

@media (max-width: 991px) {
  .td-flex-mobile {
    display: flex;
    flex-wrap: wrap;
  }

  .td-flex-mobile > td {
    width: 100%;
  }
}

.glossterm.has-tooltip {
  position: relative;
}

.glossterm.has-tooltip.is-active:before,
.glossterm.has-tooltip.is-active:after {
  position: absolute;
  display: block;
  content: "";
}

[dir="ltr"] .glossterm.has-tooltip.is-active:before,
[dir="ltr"] .glossterm.has-tooltip.is-active:after {
  left: 50%;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:before,
[dir="rtl"] .glossterm.has-tooltip.is-active:after {
  right: 50%;
}

.glossterm.has-tooltip.is-active:before {
  top: 18px;
  z-index: 2;
}

[dir] .glossterm.has-tooltip.is-active:before {
  border-bottom: 7px solid #fff;
}

[dir="ltr"] .glossterm.has-tooltip.is-active:before {
  border-right: 8px solid transparent;
  border-left: 9px solid transparent;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:before {
  border-right: 9px solid transparent;
  border-left: 8px solid transparent;
}

.glossterm.has-tooltip.is-active:after {
  top: 17px;
  z-index: 1;
}

[dir] .glossterm.has-tooltip.is-active:after {
  border-bottom: 8px solid #ccc;
}

[dir="ltr"] .glossterm.has-tooltip.is-active:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}

[dir="rtl"] .glossterm.has-tooltip.is-active:after {
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}

.glossterm-tooltip {
  position: absolute;
  top: 25px;
  display: none;
  width: 400px;
  font-size: 14px;
  font-weight: 400;
}

[dir] .glossterm-tooltip {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

[dir="ltr"] .glossterm-tooltip {
  left: -50%;
}

[dir="rtl"] .glossterm-tooltip {
  right: -50%;
}

/* ==========================================================================
  Comment Form
  ========================================================================== */

.comment-form {
  position: relative;
}

[dir] .comment-form {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form {
    padding-left: 72px;
  }

  [dir="rtl"] .comment-form {
    padding-right: 72px;
  }
}

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

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

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

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

[dir] .comment-form__attachments {
  margin-bottom: 24px;
}

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

[dir] .comment-form__ccs {
  margin-bottom: 0;
}

[dir] .comment-form__ccs + textarea {
  margin-top: 0;
}

[dir="ltr"] .comment-form__ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

[dir="rtl"] .comment-form__ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

[dir] .comment-form__ccs ul[data-hc-pills-container] {
  margin: 0 0 calc(1px * -1);
  border: 1px solid #eceeef;
  border-radius: 4px 4px 0 0;
}

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

[dir] .comment-form__ccs ul[data-hc-pills-container][data-hc-focus="true"] {
  border-color: #9ed5e7;
}

[dir] .comment-form__body {
  margin-bottom: 16px;
}

/* ==========================================================================
  Comment Sorter
  ========================================================================== */

[dir] .comment-sorter {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eceeef;
}

@media (min-width: 768px) {
  .comment-sorter {
    display: table;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .comment-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  [dir] .comment-sorter__col--main {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-sorter__col--main {
    padding-right: 16px;
  }

  [dir="rtl"] .comment-sorter__col--main {
    padding-left: 16px;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-sorter__col--filters {
    text-align: right;
  }

  [dir="rtl"] .comment-sorter__col--filters {
    text-align: left;
  }
}

.comment-sorter__item.is-active {
  font-weight: 600;
}

.comment-sorter__item + .comment-sorter__item:before {
  font-size: 10px;
  font-weight: 900;
  content: "\2022";
}

[dir] .comment-sorter__item + .comment-sorter__item:before {
  margin: 0 6px;
}

/* ==========================================================================
  Comment
  ========================================================================== */

[dir] .comment {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eceeef;
}

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

.comment__header {
  position: relative;
}

[dir] .comment__header {
  margin-bottom: 24px;
}

.comment__content {
  flex-grow: 1;
}

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

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

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

.comment__official-heading {
  position: absolute;
  top: 0;
  width: auto;
  font-size: calc(16px * 0.75);
  color: #fff;
}

[dir] .comment__official-heading {
  padding: 2px 8px;
  background-color: #81b64f;
  border-radius: 0 0 4px 4px;
}

[dir="ltr"] .comment__official-heading {
  right: 36px;
}

[dir="rtl"] .comment__official-heading {
  left: 36px;
}

.comment--official .comment__inner {
  position: relative;
}

[dir] .comment--official .comment__inner {
  padding: 24px;
  border: 1px solid #81b64f;
  border-radius: 4px;
}

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

[dir] .comment__body {
  margin-bottom: 24px;
}

.comment__body ul {
  list-style: disc;
}

[dir="ltr"] .comment__body ul,
[dir="ltr"] .comment__body ol {
  padding-left: 20px;
}

[dir="rtl"] .comment__body ul,
[dir="rtl"] .comment__body ol {
  padding-right: 20px;
}

[dir] .comment__body ul ul,
[dir] .comment__body ul ol,
[dir] .comment__body ol ul,
[dir] .comment__body ol ol {
  margin-top: 12px;
}

[dir] .comment__body ul li,
[dir] .comment__body ol li {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .comment__body [dir="auto"] {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  [dir] .comment__body {
    margin-bottom: 0;
  }
}

[dir] .comment__actions {
  padding-top: 8px;
}

.comment__actions button {
  display: flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}

[dir] .comment__actions button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

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

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

/* Comment List */

[dir] .comments {
  margin-bottom: 48px;
}

.comments__callout {
  font-size: calc(16px * 0.75);
  color: #979797;
}

.comments__callout:empty {
  display: none;
}

.comments__list {
  list-style: none;
}

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

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

[dir] .comment-list-header {
  padding-bottom: calc(16px * 1.5 / 2);
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #eceeef;
}

.comment-list-heading {
  font-size: 20px;
  font-weight: 600;
}

[dir] .comment-list-heading {
  margin-bottom: 0;
}

#lightbox {
  top: 0px !important;
  left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

/* footer start */
.site-footer {
  position: relative;
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  background-color: #003311;
  color: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media all and (max-width: 767px) {
  .site-footer {
    padding-top: 32px;
    padding-bottom: 8px;
  }
  
  .site-footer .lt-container-inner {
    overflow: hidden;
  }
}

.site-footer.footer-main .menu-wrapper {
  padding: 5px 35px 0 0
}

@media all and (min-width: 768px) {
  .site-footer.footer-main .menu-wrapper {
    padding: 5px 32px 0 0
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-main .menu-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .site-footer.footer-main .menu-wrapper {
    padding-right: 32px
  }

  .site-footer.footer-main .menu-wrapper:last-of-type {
    padding-right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .site-footer.footer-main .menu-wrapper {
    padding-right: 48px
  }

  .site-footer.footer-main .menu-wrapper:last-of-type {
    padding-right: 0;
  }
}

@media all and (min-width: 768px) {
  .site-footer.footer-main .menu-wrapper ul.menu {
    display: block !important
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-main .menu-wrapper ul.menu {
    display: none
  }
}

.site-footer.footer-main .menu-wrapper ul.menu li {
  margin-bottom: 10px
}

@media all and (max-width: 767px) {
  .site-footer.footer-main .menu-wrapper ul.menu li {
    margin-bottom: 0;
    background-color: #f0f5f8;
    border-bottom: 1px solid #8d8d90
  }

  .site-footer.footer-main .menu-wrapper ul.menu li:last-child {
    border-bottom: none
  }
}

.site-footer.footer-main .menu-wrapper ul.menu li a {
  padding: 0;
  text-decoration: none;
  color: #04327c
}

@media all and (max-width: 767px) {
  .site-footer.footer-main .menu-wrapper ul.menu li a {
    font-weight: 700;
    padding: 14px 15px 14px 25px
  }
}

.site-footer.footer-main .menu-wrapper ul.menu li a:before {
  display: none
}

.site-footer.footer-main .site-footer__right .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px
}

.site-footer.footer-main .site-footer__right .social-icon {
  width: 33.6px;
  height: 33.6px;
  border-radius: 4.2px;
  background: #FFFFFF26;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer.footer-main .site-footer__right .social-icon:hover {
  opacity: 0.8;
}

.site-footer.footer-main .site-footer__right .social-icons-container .social-icon a svg path:hover {
  fill: #696f7a
}

@media screen and (min-width: 768px) {
  .site-footer.footer-main .site-footer__right .social-icons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.site-footer.footer-main .site-footer__right .social-icons-container .social-icons-copy p,
.site-footer__inner .social-icons-container-mobile .social-icons-copy p {
  color: #2a2c31;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  width: 100%;
  line-height: 24px;
  margin-bottom: 0
}

.site-footer.footer-main .site-footer__right .rate-limited-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px
}

.site-footer.footer-main .site-footer__right .rate-limited-container .rate-limited-copy {
  color: #696f7a;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  width: 100%;
  margin: 16px auto 0;
  text-align: center
}

@media screen and (min-width: 768px) {
  .site-footer.footer-main .site-footer__right .rate-limited-container {
    padding-left: 0
  }

  .site-footer.footer-main .site-footer__right .rate-limited-container .rate-limited-copy {
    text-align: left;
    margin-left: 0;
    margin-top: 24px
  }
}

.site-footer.footer-main .site-footer__right .image-wrapper {
  margin-top: 24px;
  width: 100%
}

.site-footer.footer-main .site-footer__right .image-wrapper .proud-partner-logos-container .proud-partner-logos-title {
  text-align: center;
  color: #2a2c31;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin: 0 auto 8px
}

.site-footer.footer-main .site-footer__right .image-wrapper .vendor-partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  height: 100%
}

.site-footer.footer-main .site-footer__right .image-wrapper .vendor-partners svg {
  height: 100%;
  width: 100%
}

@media screen and (min-width: 768px) {
  .site-footer.footer-main .site-footer__right .image-wrapper .proud-partner-logos-container .proud-partner-logos-title {
    text-align: left
  }

  .site-footer.footer-main .site-footer__right .image-wrapper .vendor-partners {
    margin-left: 0
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-main .additional-info {
    display: none
  }

  .site-footer.footer-main .copyright {
    margin-top: 17px
  }
}

.site-footer.footer-landing .site-footer__inner {
  padding-top: 32px
}

@media screen and (min-width: 768px) {
  .site-footer.footer-landing .site-footer__inner {
    padding-top: 48px
  }
}

@media screen and (min-width: 1200px) {
  .site-footer.footer-landing .site-footer__inner {
    padding-top: 64px
  }
}

.site-footer.footer-landing .site-footer__inner .social-icons-container-mobile,
.site-footer.footer-landing .site-footer__left li.desktop-only {
  display: none
}

.site-footer.footer-landing .site-footer__left {
  display: none;
  padding-right: 25px
}

@media all and (max-width: 1199px) {
  .site-footer.footer-landing .site-footer__left {
    padding-right: 27px
  }
}

@media all and (max-width: 991px) {
  .site-footer.footer-landing .site-footer__left {
    width: calc(100% - 155px)
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-landing .site-footer__left {
    width: 100%;
    padding-right: 0
  }
}

@media all and (max-width: 991px) {
  .site-footer.footer-landing .site-footer__left .menu-wrapper {
    padding-right: 3px
  }
}

.site-footer.footer-landing .site-footer__left li {
  font-weight: 400
}

@media all and (max-width: 1199px) {
  .site-footer.footer-landing .site-footer__left li {
    margin-bottom: 7px
  }
}

@media all and (max-width: 991px) {
  .site-footer.footer-landing .site-footer__left li {
    margin-bottom: 15px
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-landing .site-footer__left li {
    width: 100%;
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 16px
  }
}

@media all and (min-width: 768px) {
  .site-footer.footer-landing .site-footer__left li.desktop-only {
    display: block
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-landing .site-footer__left li a {
    line-height: 1.6rem
  }
}

@media all and (max-width: 1199px) {
  .site-footer.footer-landing .site-footer__left li a:after {
    display: none
  }
}

.site-footer.footer-landing .site-footer__left li a:hover {
  color: #00aeef
}

@media all and (max-width: 1199px) {
  .site-footer.footer-landing .site-footer__left .additional-info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

@media all and (max-width: 991px) {
  .site-footer.footer-landing .site-footer__left .additional-info {
    margin-top: 24px
  }
}

@media all and (max-width: 767px) {
  .site-footer.footer-landing .site-footer__left .additional-info {
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .site-footer.footer-landing .site-footer__left .additional-info .personal-information {
    max-width: 220px;
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.24
  }

  .site-footer.footer-landing .site-footer__left .additional-info .personal-information a {
    color: #fff
  }
}

.quickbooks form#USPSshipping p,
.site-footer.footer-landing .site-footer__left .additional-info .copyright {
  font-size: 1rem
}

.site-footer.footer-landing .site-footer__right {
  margin: 0 auto;
  padding-top: 4px
}

@media all and (max-width: 767px) {
  .site-footer.footer-landing .site-footer__right {
    padding-top: 17px
  }
}

.site-footer.footer-landing .site-footer__right .social-icons-container .social-icons {
  display: none
}

.site-footer.footer-landing .site-footer__right .social-icons-container .social-icons-copy p {
  text-align: center;
  color: #2a2c31;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px
}

.site-footer.footer-landing .site-footer__right .image-wrapper {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px
}

.site-footer.footer-landing .site-footer__right .image-wrapper .proud-partner-logos-title {
  color: #2a2c31;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px
}

.site-footer.footer-landing .site-footer__right .image-wrapper .vendor-partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 16px;
  margin: 0 auto;
  max-width: 100%
}

.site-footer.footer-landing .site-footer__right .rate-limited-container .rate-limited-copy {
  color: #696f7a;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-left: 24px;
  padding-right: 24px
}

@media screen and (min-width: 768px) {
  .site-footer.footer-landing .site-footer__right {
    width: 928px
  }

  .site-footer.footer-landing .site-footer__right .image-wrapper .vendor-partners {
    width: 331px;
    margin: 0 auto;
    padding-top: 8px
  }

  .site-footer.footer-landing .site-footer__right .rate-limited-container {
    margin: 16px auto 0;
    max-width: 720px
  }
}

@media screen and (min-width: 1200px) {

  .site-footer.footer-landing .site-footer__right,
  .site-footer.footer-landing .site-footer__right .social-icons-container {
    width: 528px
  }

  .site-footer.footer-landing .site-footer__right .image-wrapper .vendor-partners {
    margin: 0 auto
  }

  .site-footer.footer-landing .site-footer__right .rate-limited-container {
    margin: 16px auto 0;
    width: 528px
  }
}

/* @media screen and (min-width: 768px) {
  .site-footer.footer-main .site-footer__inner {
    width: 720px;
    padding: 48px 0;
  }
}

@media screen and (min-width: 992px) {
  .site-footer.footer-main .site-footer__inner {
    width: 992px;
    padding: 48px 0;
  }
}

@media screen and (min-width: 1200px) {
  .site-footer.footer-main .site-footer__inner {
    width: 1200px;
    padding: 64px 0;
  }
} */

@media screen and (min-width: 992px) {
  .site-footer.footer-main .site-footer__inner .site-footer__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }

  .site-footer.footer-main .site-footer__inner .site-footer__left .menu-wrapper.footer-menu-column {
    width: 25%
  }
}

.site-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 96px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .site-footer__inner {
    display: block;
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-image: none
  }
}

.site-footer__inner .social-icons-container-mobile {
  height: auto;
  margin: 0 auto
}

@media screen and (min-width: 768px) {
  .site-footer__inner .social-icons-container-mobile {
    display: none
  }
}

.site-footer__inner .social-icons-container-mobile .social-icons,
.site-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal
}

.site-footer__inner .social-icons-container-mobile .social-icons {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  gap: 16px;
  margin: 32px auto 8px
}

.site-footer__inner .social-icons-container-mobile .social-icons-copy {
  margin: 0 auto
}

.site-footer__inner .social-icons-container-mobile .social-icons-copy p {
  font-size: 12px;
  margin-bottom: 24px
}

.site-footer__left {
  width: 100%;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2
}

.site-footer__left .footer-menu-column ul.footer-menu-link {
  padding-left: 0;
  list-style-type: none;
  margin-top: 8px;
}

.site-footer__left .footer-menu-column ul.footer-menu-link li {
  margin-top: 0;
  margin-bottom: 0
}

.site-footer__left .footer-menu-column ul.footer-menu-link li a.nav-link {
  padding: 12px 0 0 15px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px
}

.site-footer__left .footer-menu-column ul.footer-menu-link li a.nav-link.active,
.site-footer__left .footer-menu-column ul.footer-menu-link li a.nav-link:hover {
  color: #fff;
  text-decoration: underline
}

@media (min-width: 768px) {
  .site-footer__left {
    /* max-width: 928px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .site-footer__left .footer-menu-column ul.footer-menu-link {
    display: block
  }

  .site-footer__left .footer-menu-column ul.footer-menu-link li.menu-item a.nav-link {
    padding-left: 0
  }
}

/* @media all and (min-width: 768px) {
  .site-footer__left {
    width: calc(100% - 320px)
  }
}

@media all and (min-width: 992px) {
  .site-footer__left {
    width: calc(100% - 320px)
  }
}

@media all and (min-width: 1200px) {
  .site-footer__left {
    min-width: calc(100% - 448px)
  }
}

@media all and (min-width: 1400px) {
  .site-footer__left {
    min-width: calc(100% - 448px)
  }
} */

.site-footer__right,
.site-footer__right .image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal
}

/* @media all and (min-width: 768px) {
  .site-footer__right {
    min-width: 320px;
    padding-top: 7px
  }
}

@media all and (min-width: 992px) {
  .site-footer__right {
    min-width: 320px;
    padding-top: 12px
  }
}

@media all and (min-width: 1200px) {
  .site-footer__right {
    min-width: 448px
  }
}

@media all and (min-width: 1400px) {
  .site-footer__right {
    min-width: 400px
  }
} */

.site-footer__right .image-wrapper {
  -ms-flex-direction: column;
  flex-direction: column
}

@media all and (max-width: 767px) {
  .site-footer__right .image-wrapper {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
}

@media all and (max-width: 767px) {
  .footer-logo img {
    width: 254px;
    margin-bottom: 24px;
  }

  .site-footer__right .text-wrapper {
    width: 50%
  }
}

.site-footer .menu-title {
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 700
}

.site-footer .menu-title button {
  width: 100%;
  padding: 16px 15px;
  text-align: left;
  background-color: transparent;
  border: 0;
  color: #fff
}

@media all and (max-width: 767px) {
  .site-footer .menu-title button {
    font-weight: 700
  }

  .site-footer .menu-title button:after,
  .site-footer .menu-title button:before {
    position: absolute;
    top: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../../img/footer-icons/footer-nav-chevron.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    right: 12px;
    content: ""
  }

  .site-footer .menu-title button:hover {
    cursor: pointer
  }
}

.site-footer .menu-title button[aria-expanded=false]:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

@media all and (max-width: 767px) {
  .site-footer .menu-title button[aria-expanded=false]:after {
    width: 0
  }
}

.site-footer .menu-title button[aria-expanded=false]:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.site-footer .menu-wrapper {
  width: 100%
}

@media all and (max-width: 991px) {
  .site-footer .menu-wrapper {
    padding-right: 22px
  }
}

@media all and (max-width: 767px) {
  .site-footer .menu-wrapper {
    width: 100%;
    padding-right: 0
  }
}

.site-footer .menu-wrapper ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style-type: none
}

.site-footer .menu-wrapper ul.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  font-weight: 400
}

@media all and (max-width: 767px) {
  .site-footer .menu-wrapper ul.menu li {
    margin-bottom: 5px
  }
}

@media all and (min-width: 768px) {
  .site-footer .menu-wrapper ul.menu li:first-child a {
    padding-left: 0
  }
}

.site-footer .menu-wrapper ul.menu li:first-child a:before {
  content: none
}

.site-footer .menu-wrapper ul.menu li:last-child a:after {
  content: none
}

.site-footer .menu-wrapper ul.menu li.career-item a {
  position: relative
}

.site-footer .menu-wrapper ul.menu li.career-item a:after {
  content: "We're Hiring!";
  position: absolute;
  width: 88px;
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 4px 5px;
  text-align: center;
  background-color: #0073bf;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  white-space: nowrap
}

@media all and (max-width: 991px) {
  .site-footer .menu-wrapper ul.menu li.career-item a:after {
    width: 82px;
    position: static;
    display: block;
    padding: 4px 2px;
    -webkit-transform: none;
    transform: none;
    font-size: 11px
  }
}

@media all and (max-width: 767px) {
  .site-footer .menu-wrapper ul.menu li.career-item a:after {
    width: 82px;
    position: absolute;
    display: block;
    padding: 4px 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 11px
  }
}

.site-footer .menu-wrapper ul.menu li a {
  position: relative;
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: #f0f5f8;
  text-decoration: none
}

@media all and (max-width: 767px) {
  .site-footer .menu-wrapper ul.menu li a {
    padding: 9px 15px 9px 25px;
    font-size: 1.4rem;
    line-height: 1.6rem
  }
}

.site-footer .additional-info .personal-information:after,
.site-footer .menu-wrapper ul.menu li a:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: #a6bddc
}

.site-footer .menu-wrapper ul.menu li a:before {
  left: 0
}

@media all and (max-width: 767px) {
  .site-footer .menu-wrapper ul.menu li a:before {
    display: none
  }
}

.site-footer .menu-wrapper ul.menu li a:hover {
  color: #1a9eff
}

.site-footer .copyright {
  font-size: .9rem;
  color: #f0f5f8
}

.site-footer .copyright a,
.site-footer .copyright a:hover {
  color: #f0f5f8;
  text-decoration: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  opacity: 1
}

.site-footer .copyright a:hover {
  color: #1a9eff;
  cursor: pointer
}

.site-footer .copyright a:active,
.site-footer .menu-wrapper ul.menu li a:active {
  text-decoration: underline;
  color: #1a9eff
}

.site-footer .copyright--mobile {
  margin-top: 23px;
  font-size: .9rem;
  color: #f0f5f8
}

.site-footer .additional-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  margin-top: 20px
}

.site-footer .additional-info .personal-information {
  position: relative;
  margin: 0;
  padding-right: 10px;
  font-size: 1rem;
  color: #a6bddc;
  text-align: left
}

@media all and (max-width: 767px) {
  .site-footer .additional-info .personal-information {
    margin: 15px 0;
    text-align: center
  }
}

.site-footer .additional-info .personal-information:after {
  right: 0
}

.site-footer .additional-info .personal-information:last-child:after {
  display: none
}

.generic-hero__right ul,
.site-footer .additional-info .personal-information--desktop {
  margin-top: 20px
}

.site-footer .additional-info .personal-information a {
  position: relative;
  padding: 0 10px;
  color: #a6bddc;
  text-decoration: none
}

.site-footer .menu-footer-bottom-menu-container,
.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: start;
}

.site-footer .menu-footer-bottom-menu-container {
  -webkit-box-orient: horizontal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media (min-width: 1400px) {
  .site-footer .menu-footer-bottom-menu-container {
    max-width: 1320px;
    padding-left: 110px;
    padding-right: 110px
  }
}

.site-footer .menu-footer-bottom-menu-container ul {
  padding-left: 0
}

.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links {
  padding: 0 9px;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item {
  list-style-type: none
}

.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item,
.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item a {
  display: block;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 0;
}

.legal-page li a,
.legal-page p a,
.quickbooks form#USPSshipping .graylink,
.quickbooks form#USPSshipping .graylink:visited {
  color: #2a2c31;
  text-decoration: underline
}

.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item a:hover {
  color: #fff;
  text-decoration: underline
}

.site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item:nth-child(3) {
  margin-right: 0
}

@media (min-width: 768px) {
  .site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left
  }

  .site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links li.menu-item a {
    display: initial;
    white-space: nowrap
  }
}

@media screen and (min-width: 992px) {
  .site-footer .menu-footer-bottom-menu-container ul.footer-bottom-links {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

}

.site-footer.offerbar-footer-spacing,
.ups-bar img {
  margin-bottom: 0
}

@media (min-width: 768px) {
  .site-footer.offerbar-footer-spacing {
    margin-bottom: 60px
  }
}

.footer-logo img {
  width: 279px;
  margin-bottom: 48px;
}

.footer-bottom-menu-container__logo p {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  margin-top: 14px;
  margin-bottom: 0;
}

.footer-bottom-menu-container {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1.25px solid #FFFFFF;
}

/* footer end */

.popover    {
  background-color: #fff;
  border: 1px solid #b8b8b8;
  border-radius: 3px;
  box-sizing: border-box;
  box-shadow: 3px 3px 3px 0px #ccc;
  transition: 0.3s;
  justify-content: left;
  margin: 15px 15px 15px 15px;
  max-width: 25%;
  text-align: left;
  padding: 1.25rem 1.25rem;
  width: 100%;
}

.hide {
    display: none;
}

.popover .popover-title {
  margin-bottom: 0.75rem;
  display: inline;
}

.popover .popover-content div p {
  display: inline;
}

.popover.top {
  margin-top: 0;
}

@media (max-width: 768px) {
  .popover {
  	max-width: 75%;    
  }
}

.lt-article__body .mediaobject img {
  border: none;
}

.column {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.lt-article__body .note h2 {
  font-size: 16px;
  background: unset;
  padding: unset;
}

.lt-article__body .important h2 {
  font-size: 16px;
  background: unset;
  padding: unset;
}

.lt-article__body .tip h2 {
  font-size: 16px;
  background: unset;
  padding: unset;
}

/* 
Used in style.css within the Zendesk theme. 
These properties must be included when the "unstyled" setting is set to true in the widget.
These styles override most, but not all, of the default Sierra style settings in the widget.
This overrides all styling applied in the Agent Studio UI.
*/

/* Sierra AI Chat Styling */
/* Shadow for embed */
[data-sierra-chat-container]::part(chat-corner-container),
[data-sierra-chat-container]::part(chat-modal-container) {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    border-radius: 8px !important;
    overflow: hidden; /* ensure top corners clip title bar bg */
}

/* Minimal spacing + rounding to keep current layout but avoid cutoffs */
[data-sierra-chat-container]::part(chat-dialog-container) {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
 }

/* Prevent chat messages from overlapping title bar */
[data-sierra-chat-container]::part(chat-messages) {
    padding-top: 12px;
}

[data-sierra-chat-container]::part(chat-title-bar) {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  	height: 50px;
    position: relative;
    z-index: 100;
}

[data-sierra-chat-container]::part(chat-title-bar-text) {
    font-family: 'Figtree', sans-serif;
}

/* Logo size and spacing */
[data-sierra-chat-container]::part(chat-title-bar-logo) {
    margin: 8px 8px 0 8px;
    margin-right: 8px;
  	width: 32px;
  	height: 32px;
}

/* Nav Button spacing */
[data-sierra-chat-container]::part(chat-title-bar-button),
[data-sierra-chat-container]::part(chat-title-bar-button-actions),
[data-sierra-chat-container]::part(chat-title-bar-button-close) {
  	margin-right: 8px;
    padding-right: 4px;
}

/* Nav Button color */
[data-sierra-chat-container]::part(chat-title-bar-button-icon) {
  	fill: currentColor; /* #FFFFFF */
}

/* Add SVG icon before agent messages */
[data-sierra-chat-container]::part(chat-bubble-assistant) {
    position: relative;
    /* Make room so left-side agent icon doesn't overflow */
    margin-left: 30px;
}

/* Make both bubbles rounded, like default style */
[data-sierra-chat-container]::part(chat-bubble),
[data-sierra-chat-container]::part(chat-bubble-user),
[data-sierra-chat-container]::part(chat-bubble-assistant) {
    border-radius: 16px !important;
  	font-family: 'Roboto', sans-serif;
  	font-size: 14px;
  	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

 /* Insert agent icon using ::before pseudo-element */
[data-sierra-chat-container]::part(chat-bubble-assistant)::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 7px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M27.999%2014.1604C26.2698%2014.1604%2024.8678%2012.7584%2024.8678%2011.0292C24.8678%2010.1651%2025.2182%209.38238%2025.7845%208.81562C25.7845%208.81562%2025.785%208.81513%2025.7854%208.81465L23.1844%206.21358C23.1844%206.21358%2023.1839%206.21406%2023.1834%206.21455C22.6171%206.78083%2021.8344%207.13121%2020.9703%207.13121C19.2411%207.13121%2017.8391%205.72923%2017.8391%204H14.1609C14.1609%205.72971%2012.7589%207.13169%2011.0297%207.13169C10.1651%207.13169%209.38287%206.78132%208.81658%206.21503C8.81658%206.21503%208.8161%206.21455%208.81561%206.21406L6.21455%208.81513C6.21455%208.81513%206.21455%208.81561%206.21551%208.8161C6.7818%209.38287%207.13217%2010.1651%207.13217%2011.0297C7.13217%2012.7589%205.73019%2014.1609%204.00096%2014.1609L4%2017.8396C5.72923%2017.8396%207.13217%2019.2416%207.13217%2020.9708C7.13217%2021.8349%206.7818%2022.6176%206.21551%2023.1844C6.21551%2023.1844%206.21503%2023.1849%206.21455%2023.1853L8.81561%2025.7864C8.81561%2025.7864%208.8161%2025.7859%208.81658%2025.7855C9.38287%2025.2192%2010.1655%2024.8693%2011.0297%2024.8693C12.7589%2024.8693%2014.1609%2026.2713%2014.1609%2028.0005H17.8391C17.8391%2026.2708%2019.2411%2024.8688%2020.9703%2024.8688C21.8349%2024.8688%2022.6171%2025.2192%2023.1834%2025.785C23.1834%2025.785%2023.1839%2025.7855%2023.1844%2025.7859L25.7854%2023.1849C25.7854%2023.1849%2025.7854%2023.1844%2025.7845%2023.1839C25.2182%2022.6171%2024.8678%2021.8349%2024.8678%2020.9703C24.8678%2019.2411%2026.2698%2017.8391%2027.999%2017.8391V14.1604ZM22.0263%2019.4792L15.9995%2022.9588L9.97277%2019.4792V12.5199L15.9995%209.0402L22.0263%2012.5199V19.4792Z%22%20fill%3D%22%2300331C%22%2F%3E%0A%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px;
    background-color: #ffffff;
    z-index: 10;
}

/* Disclosure message */
[data-sierra-chat-container]::part(chat-disclosure) {
  	display: flex;
  	z-index: 2;
  	justify-content: space-between;
	align-items: center;
  	color: #0F0F10;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  	font-size: 14px;
  	height: 88px;
    line-height: 24px;
  	background-color: #F7F7F8;
  	margin: 0 -10px 0 -10px;
  	padding: 16px;
}

/* Chat bubble Footer message (agent name & timestamp) */
[data-sierra-chat-container]::part(chat-message-footer) {
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    color: #56595D;
    font-family: 'Roboto', sans-serif;
  	margin-left: 27px;
  	line-height: 16px;
}

/* Text Input & unfocus transition */
[data-sierra-chat-container]::part(chat-input-container) {
    border-radius: 20px;
    border: 1px solid #E4E5E7;
    background: #FFFFFF;
    margin: 12px 12px 12px 12px;
    min-height: 36px;
    max-height: 120px;
    height: auto;
    transition-property: border, border-radius;
    transition-duration: .25s;
}

/* Input placeholder text color */
[data-sierra-chat-container]::part(chat-input)::placeholder {
    opacity: 1;
    color: #71767A;
}

/* Input text style */
[data-sierra-chat-container]::part(chat-input) {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
	line-height: 24px;
    min-height: 24px;
    max-height: 96px;
    overflow-y: auto;
    resize: none;
}

/* Input border color focus transition */
[data-sierra-chat-container]::part(chat-input-container):focus-within {
	border: 1px solid #0F0F10;
    transition-property: border;
    transition-duration: .25s;
}

/* New chat button appears at the bottom when chat is ended */
[data-sierra-chat-container]::part(chat-new-button) {
	color: #0F0F10;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
	line-height: 24px
}

[data-sierra-chat-container]::part(chat-title-bar-button-actions) {
    order: 2;
}

[data-sierra-chat-container]::part(chat-title-bar-button-close) {
    order: 1;
}

/* Upload button icon styling */
[data-sierra-chat-container]::part(chat-upload-button-icon) {
    filter: brightness(0.5); /* Makes the icon darker */
}

/* End Chat Confirmation Dialog Styling */
/* Title bar - matches widget title bar with ShipStation brand dark green (#00331C) */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-title) {
    background-color: #00331C;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Dialog body - white background with dark text for optimal readability */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-body) {
    background-color: #ffffff;
    color: #0F0F10;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 20px;
    text-align: left;
}

/* Dialog footer - flexbox layout for button positioning */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-footer) {
    background-color: #ffffff;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px 20px 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Confirm button - primary action with ShipStation brand green */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-confirm-button) {
    background-color: #00331C;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: filter 0.2s ease;
}

/* Confirm button hover state - subtle brightness increase for feedback */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-confirm-button):hover {
    filter: brightness(1.2);
}

/* Cancel button - secondary action with subtle gray styling */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-cancel-button) {
    background-color: #F7F7F8;
    color: #0F0F10;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid #E4E5E7;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Cancel button hover state - darker border for visual feedback */
[data-sierra-chat-container]::part(chat-confirm-end-conversation-cancel-button):hover {
    border-color: #0F0F10;
    background-color: #ECECED;
}