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

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

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

  --padding-base-horizontal: 12px;
  --font-size-small: calc(18px * 0.875);
  --font-size-h1: calc(18px * 2.5);
  --font-size-h2: calc(18px * 1.75);
  --font-size-h3: calc(18px * 1.5);
  --font-size-h4: calc(18px * 1.25);
  --font-size-h5: calc(18px * 1.1);
  --font-size-h6: calc(18px * 1);
  --line-height-computed: 18px * 1.5;
  --border-width: 1px;
  --strong-font-weight: 600;
  --input-border-color: #dee1e3;
  --input-focus-border-color: #9ed5e7;

  --lt-spacer: 1rem;
}
/* Reset the box-sizing */
*,
*:before,
*:after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
@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: 'Titillium Web', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #070605;
  background-color: #fff;
  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: #B71F36;
  text-decoration: none;
}

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

figure {
  margin: 0;
}

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

hr {
  border-top: 1px solid #d7d7d7;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p {
  margin: 0 0 calc(var(--line-height-computed));
}

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

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

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

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

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

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

b,
strong {
  font-weight: bold;
}

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

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

dt {
  font-weight: bold;
}

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

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

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

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

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .dl-horizontal dd {
    float: right;
    width: 70%;
  }
}
/* Blockquotes */
blockquote {
  padding: calc(var(--line-height-computed) / 2)
    calc(var(--line-height-computed));
  margin: 0 0 calc(var(--line-height-computed));
  font-family: 'Titillium Web', sans-serif;
  font-style: italic;
  background-color: var(--gray-lightest);
}

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

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

[dir="ltr"] blockquote.is-colored {
  border-left: 5px solid #B71F36;
}

[dir="rtl"] blockquote {
  border-right: 5px solid var(--gray-lighter);
}

[dir="rtl"] blockquote.is-colored {
  border-right: 5px solid #B71F36;
}
/* Code */
code {
  padding: 20px !important;
  white-space: pre-wrap;
  border-radius: 4px !important;
}
/*  Addresses */
address {
  margin-bottom: calc(var(--line-height-computed));
}

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

.is-hidden,
.hidden,
[hidden],
[x-cloak],
.powered-by-zendesk {
  display: none !important;
}

.visibility-hidden,
.recent-activity-accessibility-label,
.pagination-first-text,
.pagination-last-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
/* Layout */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
/* 
Normalize non-controls

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

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

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

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

 Shared size and type resets for form controls. Apply `.form-control` to any
 of the following form controls:
 
*/
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.nesty-input {
  display: block;
  width: 100%;
  height: auto;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #55595c;
  background-color: #fff;
  background-image: none;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  border: var(--border-width) solid var(--input-border-color);
  border-radius: 4px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/*  Customize the `:focus` state to imitate native WebKit styles. */
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.nesty-input:focus {
  border-color: var(--input-focus-border-color);
  outline: 0;
}
/*  Placeholder */
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
.nesty-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}

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

select::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder,
.nesty-input::placeholder {
  color: #999;
  opacity: 1;
}
/* select {
  height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
} */
select {
  width: 100%;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A")
    no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

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

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

#hc-wysiwyg {
  border-color: var(--input-border-color);
  border-width: var(--border-width);
}
/*  Search inputs in iOS */
/* 
 This overrides the extra rounded corners on search inputs in iOS so that our
 `.form-control` class can properly style them. Note that this cannot simply
 be added to `.form-control` as it's not specific enough. For details, see
 https:github.com/twbs/bootstrap/issues/11586. */
input[type="search"] {
  -webkit-appearance: none;
}
/*  Special styles for iOS temporal inputs

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

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

.form-field .optional {
  color: #433930;
}

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

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

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

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

.form-field.boolean label {
  min-height: calc(var(--line-height-computed));
  /* Ensure the input doesn't jump when there is no text */
  margin-bottom: 0;
  cursor: pointer;
}

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

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

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

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

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
/*  Help text

 Apply to any element you wish to create light text for placement immediately
 below a form control. Use for general help, formatting, or instructional text. */
.form-field p,
.help-block {
  display: block; /* account for any element using help-block */
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 90%;
  color: #51463a; /* lighten the text some for contrast */
}

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

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

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

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

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

.lt-container-inner {
  max-width: 1320px;
  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: 0.85rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border-bottom: 1px solid #d7d7d7;
}

.lt-topbar__logo {
  display: block;
  height: 55px;
}

.lt-topbar__link,
.lt-topbar__link:hover,
.lt-topbar__link:focus,
.lt-topbar__link:active {
  color: #000;
}
@media (max-width: 991px) {
  .lt-topbar__link {
    color: #070605;
  }

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

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

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

.page-footer {
  border-top: solid 5px #b71f36;
}

.page-footer .footer-top {
  display: flex;
  background: #eee;
  flex-flow: row wrap;
}

.page-footer .footer-top .footer-top-item {
  box-sizing: border-box;
}

.page-footer .footer-top .footer-top-item .footer-top-block {
  display: flex;
  flex-flow: row wrap;
}

.page-footer .footer-top .footer-top-item .footer-top-block h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-footer .footer-top .footer-top-item .footer-top-block p {
  margin: 15px 0 0;
}

.page-footer .footer-top .footer-top-item .footer-top-block a.read-more {
  position: relative;
  display: inline-block;
  font-weight: 400;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  a.read-more {
  padding: 0 20px 0 0;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  a.read-more {
  padding: 0 0 0 20px;
}

.page-footer .footer-top .footer-top-item .footer-top-block a.read-more:after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -7px;
  content: "";
  border-style: solid;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  a.read-more:after {
  right: 0;
  border-color: transparent transparent transparent #b71f36;
  border-width: 7px 0 7px 7px;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  a.read-more:after {
  left: 0;
  border-color: transparent #b71f36 transparent transparent;
  border-width: 7px 7px 7px 0;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-top-block-left {
  flex: 1;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-top-block-left {
  padding: 0 20px 0 0;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-top-block-left {
  padding: 0 0 0 20px;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-shipping
  ul {
  padding: 0 0 0 20px;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-shipping
  ul {
  padding: 0 20px 0 0;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-shipping
  ul
  > li {
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-shipping
  ul
  > li:not(:first-child) {
  margin: 5px 0 0;
}

.page-footer .footer-top .footer-top-item .footer-top-block .footer-payments {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .footer-payments
  > li {
  display: flex;
  padding: 0;
  margin: 0;
  border: solid 1px #d7d7d7;
  border-radius: 4px;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe {
  width: 100%;
  margin: 20px 0 0;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter {
  display: flex;
  padding: 4px;
  background: #fff;
  border: solid 1px #d7d7d7;
  border-radius: 4px;
  flex-flow: row wrap;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label {
  flex: 1;
  position: relative;
  margin-bottom: 0;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label:before {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  font-family: "idjnow-icon", sans-serif !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  color: #000;
  text-transform: none;
  content: "\e911";
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label:before {
  left: 15px;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label:before {
  right: 15px;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label
  .amtheme-input {
  height: 48px;
  font-weight: 700;
  border: none;
}

[dir="ltr"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label
  .amtheme-input {
  padding: 0 15px 0 50px;
}

[dir="rtl"]
  .page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .amtheme-label
  .amtheme-input {
  padding: 0 50px 0 15px;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .action.subscribe.secondary {
  display: inline-block;
  width: 110px;
  height: 48px;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2rem;
  line-height: 20px;
  color: #fff;
  vertical-align: middle;
  cursor: pointer;
  background: #000;
  border: 0;
  border-radius: 4px;
}

.page-footer
  .footer-top
  .footer-top-item
  .footer-top-block
  .amtheme-form.subscribe
  .footer-newsletter
  .action.subscribe.secondary:hover {
  background: #b71f36;
}

.page-footer .footer-menus-block {
  color: #fff;
  background: #242424;
}

.page-footer .footer-menus-block .footer-menus-block-wrapper {
  max-width: 1535px;
  margin: 0 auto;
}

.page-footer .footer-menus-block .footer-menus-block-wrapper > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  h3 {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  ul {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  ul
  > li {
  padding: 0;
  margin: 0;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  ul
  > li:not(:first-child) {
  margin: 15px 0 0;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  ul
  > li
  > a {
  transition: color 0.15s ease-out;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  ul
  > li
  > a:hover {
  color: #b71f36;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-menus-phone {
  display: flex;
  font-size: 24px;
  color: #fff;
  border: solid 1px #757575;
  border-radius: 4px;
  transition: color 0.15s ease-out;
  align-items: center;
  flex-flow: row wrap;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-menus-phone
  > i {
  font-size: 32px;
}

[dir="ltr"]
  .page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-menus-phone
  > i {
  margin: 0 15px 0 0;
}

[dir="rtl"]
  .page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-menus-phone
  > i {
  margin: 0 0 0 15px;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-menus-phone:hover {
  color: #b71f36;
  border: solid 1px #b71f36;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-badges-list {
  display: flex;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
  align-items: center;
  flex-flow: row wrap;
}

.page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-badges-list
  > li {
  padding: 0;
}

[dir="ltr"]
  .page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-badges-list
  > li:not(:first-child) {
  margin: 0 0 0 20px;
}

[dir="rtl"]
  .page-footer
  .footer-menus-block
  .footer-menus-block-wrapper
  .footer-menus-item
  .footer-badges-list
  > li:not(:first-child) {
  margin: 0 20px 0 0;
}

.page-footer .footer-social-block {
  padding: 15px;
  background: #454545;
}

.page-footer .footer-social-block .footer-social-block {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
}

.page-footer .footer-social-block .footer-social-block > li {
  padding: 0;
  margin: 0;
}

.page-footer .footer-social-block .footer-social-block > li:first-child {
  color: #fff;
  text-transform: uppercase;
}

[dir="ltr"]
  .page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child) {
  margin: 0 0 0 20px;
}

[dir="rtl"]
  .page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child) {
  margin: 0 20px 0 0;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).facebook
  > a:hover {
  background: #3b5999;
  border-color: #3b5999;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).youtube
  > a:hover {
  background: #ff8282;
  border-color: #ff8282;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).instagram
  > a:hover {
  background: #f7a690;
  border-color: #f7a690;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).twitter
  > a:hover {
  background: #55acee;
  border-color: #55acee;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).pinterest
  > a:hover {
  background: #bd081c;
  border-color: #bd081c;
}

.page-footer
  .footer-social-block
  .footer-social-block
  > li:not(:first-child).twitch
  > a:hover {
  background: #772ce8;
  border-color: #772ce8;
}

.page-footer .footer-social-block .footer-social-block > li > a {
  display: block;
  color: #fff;
  text-align: center;
  border: solid 1px #fff;
  border-radius: 50%;
  transition: all 0.15s ease-out;
}

.page-footer .footer-badges-block {
  padding: 20px 20px 0;
  background: #242424;
}
@media all and (min-width: 768px) and (max-width: 1024px),
  print and (max-width: 1024px) {
  .page-footer .footer-top {
    padding: 20px 0;
  }

  .page-footer .footer-top .footer-top-item {
    flex-basis: 100%;
    max-width: 100%;
  }

  .page-footer .footer-top .footer-top-item:not(:first-child) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: solid 1px #b71f36;
  }

  .page-footer .footer-top .footer-top-item:first-child .footer-top-block {
    align-items: center;
  }

  .page-footer
    .footer-top
    .footer-top-item:first-child
    .footer-top-block
    .footer-top-block-right {
    flex-basis: 240px;
    max-width: 240px;
  }

  .page-footer
    .footer-top
    .footer-top-item:first-child
    .footer-top-block
    .footer-top-block-right
    .footer-shipping {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
  }

  .page-footer
    .footer-top
    .footer-top-item:first-child
    .footer-top-block
    .footer-top-block-right
    .footer-shipping
    i {
    font-size: 40px;
  }

  .page-footer
    .footer-top
    .footer-top-item:first-child
    .footer-top-block
    .footer-top-block-right
    .footer-shipping
    ul {
    margin: 0;
  }

  .page-footer .footer-top .footer-top-item:last-child .footer-top-block {
    align-items: center;
  }

  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-top-block-right,
  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-top-block-left {
    max-width: 50%;
    box-sizing: border-box;
    flex-basis: 50%;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block h3 {
    font-size: 28px;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block p {
    font-size: 18px;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block .footer-payments {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li {
    width: 100px;
    height: 50px;
  }

  [dir="ltr"]
    .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li:not(:first-child) {
    margin: 0 0 0 15px;
  }

  [dir="rtl"]
    .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li:not(:first-child) {
    margin: 0 15px 0 0;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li
    img {
    max-width: 80%;
  }

  .page-footer .footer-menus-block {
    padding: 35px 0;
  }

  .page-footer .footer-menus-block .footer-menus-block-wrapper {
    padding: 0 35px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    h3 {
    font-size: 24px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    ul
    > li
    > a {
    font-size: 18px;
    color: #fff;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item:last-child {
    display: flex;
    flex-flow: row wrap;
    flex-basis: 100%;
    justify-content: center;
    max-width: 100%;
    margin: 25px 0 0;
  }
}
@media all and (min-width: 768px), print {
  .page-footer .logo {
    display: flex;
    align-items: center;
    flex: 1 0 8%;
  }

  .page-footer .logo-image {
    max-width: 90px;
  }

  .page-footer .content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 45px;
  }

  .page-footer .content > .links:not(.footer) {
    max-width: 300px;
  }

  .page-footer .content .amtheme-newsletter-block {
    flex-basis: 100%;
  }

  .page-footer .amtheme-socials-list {
    align-items: center;
  }

  .page-footer .amtheme-footer-section {
    flex: 1 0 80%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .page-footer .amtheme-footer-section .footer.links {
    max-width: 67%;
  }

  .footer.links {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }

  .footer.links .item {
    margin: 0 0 15px;
  }

  .amtheme-socials-list {
    flex: 1 0 30%;
    justify-content: flex-end;
  }

  .product-info-main .amtheme-payment-methods {
    max-width: 80%;
  }

  .footer .amtheme-payment-methods {
    width: 100%;
    margin-top: 30px;
  }

  .copyright {
    padding: 15px 0;
    font-size: 18px;
  }

  .copyright {
    font-size: 15px;
  }

  .page-footer .footer-top .footer-top-item {
    padding: 0 3%;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    ul
    > li {
    font-size: 18px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    .footer-menus-phone {
    padding: 25px 40px;
  }

  .page-footer .footer-social-block .footer-social-block > li:first-child {
    font-size: 28px;
  }

  .page-footer .footer-social-block .footer-social-block > li > a {
    width: 60px;
    height: 60px;
    font-size: 21px;
    line-height: 60px;
  }
}
@media all and (min-width: 768px) and (min-width: 1025px),
  print and (min-width: 1025px) {
  .page-footer .footer-top {
    padding: 40px 0;
  }

  .page-footer .footer-top .footer-top-item {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block h3 {
    font-size: 28px;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block p {
    font-size: 20px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-top-block-right {
    flex-basis: 170px;
    max-width: 170px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    i {
    font-size: 80px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    ul {
    margin: 15px 0 0;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li {
    width: 130px;
    height: 60px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-payments
    > li:not(:first-child) {
    margin: 10px 0 0;
  }

  .page-footer .footer-menus-block {
    padding: 50px 0;
  }

  .page-footer .footer-menus-block .footer-menus-block-wrapper {
    padding: 0 20px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    h3 {
    font-size: 28px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    ul
    > li
    > a {
    font-size: 22px;
    color: #fff;
  }
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: "idjnow-icon", sans-serif !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-free-shipping:before {
  content: "\e902";
}

.icon-phone:before {
  content: "\e90d";
}

.icon-youtube:before {
  content: "\e90e";
}

.icon-facebook:before {
  content: "\e90f";
}

.icon-instagram:before {
  content: "\e910";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-pinterest:before {
  content: "\ead1";
}

.icon-twitch:before {
  content: "\ea9f";
}

#y-badges {
  width: 100%;
  background-color: transparent !important;
}

#y-badges + .badge-init {
  display: none;
}

#y-badges .y-badge {
  position: relative;
  width: 111px;
  height: 160px;
  margin: 0 auto;
  cursor: pointer;
}

#y-badges .y-badge-image {
  width: 100%;
}

#y-badges .y-badge-stars {
  position: absolute;
  top: 45px;
  display: block;
  line-height: 17px;
}

[dir="ltr"] #y-badges .y-badge-stars {
  left: 24px;
}

[dir="rtl"] #y-badges .y-badge-stars {
  right: 24px;
}

#y-badges .y-badges-certified {
  position: absolute;
  top: 64px;
  width: 100px;
  max-width: 100px;
  overflow: hidden;
  font-size: 9px;
  color: #5997c1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

[dir="ltr"] #y-badges .y-badges-certified {
  left: 7px;
}

[dir="rtl"] #y-badges .y-badges-certified {
  right: 7px;
}

#y-badges .y-powered-by {
  position: absolute;
  top: 105px;
  width: 100%;
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
}

#y-badges .y-badge-reviews {
  position: relative;
  top: -80px;
  font-size: 29px;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

#y-badges .yotpo-icon {
  font-size: 13px;
  color: #ecc525;
}

.copyright {
  display: block;
  padding: 20px 25px;
  font-size: 14px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  background: #242424;
}
@media only screen and (max-width: 767px) {
  .page-footer .footer-top {
    padding: 20px;
  }

  .page-footer .footer-top .footer-top-item:not(:first-child) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: dotted 1px #787878;
  }

  .page-footer .footer-top .footer-top-item .footer-top-block h3 {
    font-size: 22px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    i {
    font-size: 50px;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    ul {
    margin: 10px 0 0;
  }

  .page-footer
    .footer-top
    .footer-top-item
    .footer-top-block
    .footer-shipping
    ul
    > li {
    font-size: 15px;
  }

  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-top-block-left,
  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-top-block-right {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-payments {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 20px 0 0;
  }

  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-payments
    li {
    width: 100px;
    height: 50px;
  }

  .page-footer
    .footer-top
    .footer-top-item:last-child
    .footer-top-block
    .footer-payments
    li
    img {
    max-width: 80%;
  }

  .page-footer .footer-menus-block {
    padding: 20px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item {
    max-width: 100%;
    border-top: solid 1px #333;
    flex-basis: 100%;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item:last-child {
    padding-top: 30px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    h3 {
    position: relative;
    padding: 17px 0 12px;
    font-size: 26px;
    line-height: 1.25;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    h3:after {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    margin-top: -4px;
    content: "";
    border-color: #b71f36 transparent transparent;
    border-style: solid;
    border-width: 8px 8px 0;
    transition: transform 0.15s ease-out;
  }

  [dir="ltr"]
    .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    h3:after {
    right: 0;
  }

  [dir="rtl"]
    .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    h3:after {
    left: 0;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    ul {
    display: none;
    padding: 0 0 20px;
    margin: 0;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    ul
    > li {
    padding: 0;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item
    ul
    > li
    > a {
    font-size: 18px;
    color: #fff;
  }

  [dir="ltr"]
    .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item.active
    h3:after {
    transform: rotate(-180deg);
  }

  [dir="rtl"]
    .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item.active
    h3:after {
    transform: rotate(180deg);
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    > div
    .footer-menus-item.active
    ul {
    display: block;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    .footer-menus-phone {
    justify-content: center;
    padding: 12px;
  }

  .page-footer
    .footer-menus-block
    .footer-menus-block-wrapper
    .footer-menus-item
    .footer-badges-list {
    justify-content: center;
  }

  .page-footer .footer-social-block .footer-social-block > li:first-child {
    max-width: 100%;
    margin: 0 0 15px;
    font-size: 22px;
    text-align: center;
    flex-basis: 100%;
  }

  .page-footer .footer-social-block .footer-social-block > li.facebook {
    margin: 0 !important;
  }

  .page-footer .footer-social-block .footer-social-block > li > a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 42px;
  }
}

.yotpo .yotpo-icon,
.yotpo .yotpo-icon:after,
.yotpo .yotpo-icon:before {
  font-family: "yotpo-widget-font", sans-serif !important;
}

.yotpo .yotpo-icon-default-star:before,
.yotpo .yotpo-icon-star:before {
  content: "\e60e";
}

.yotpo .yotpo-icon-default-half-star:before,
.yotpo .yotpo-icon-half-star:before {
  content: "\e61a";
}

.yotpo div,
.yotpo span,
.yotpo p,
.yotpo a,
.yotpo img,
.yotpo i,
.yotpo strong,
.yotpo sup,
.yotpo ul,
.yotpo li,
.yotpo form,
.yotpo label {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal !important;
  line-height: 17px;
  color: #6a6c77;
  border: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (--screen-sm-min) {
  [dir="ltr"] .footer-shipping {
    padding-right: 15px;
  }

  [dir="rtl"] .footer-shipping {
    padding-left: 15px;
  }
}
/* Components */
.lt-dropdown {
  position: relative;
  display: inline-block;
}

.lt-dropdown-toggle {
  display: inline-block;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}

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

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

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

.lt-dropdown-toggle--no-icon:after {
  display: none;
}

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

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

.lt-dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 170px;
  padding: 10px 0;
  margin-top: 1px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #fff;
  border: 1px solid #ebeaeb;
  border-radius: 4px;
  box-shadow: 0 0 2rem rgb(0 0 0 / 10%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lt-dropdown-toggle--user {
  padding: 0;
  font-size: calc(18px - 5px);
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  text-transform: uppercase;
  border: 0;
}
@media (max-width: 991px) {
  .lt-dropdown--topbar {
    width: 100%;
  }

  .lt-dropdown-menu--topbar {
    position: static;
    width: 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .lt-dropdown-menu--topbar .lt-dropdown-toggle {
    width: 100%;
  }

  .lt-dropdown-menu--topbar .lt-dropdown-toggle--user:after {
    display: none;
  }

  .lt-dropdown-menu--topbar [role="menuitem"] {
    padding-right: 0;
    padding-left: 0;
  }
}
/* ==========================================================================
  Buttons
  ========================================================================== */
.lt-btn,
input[type="submit"],
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-organization-subscribe button,
.lt-subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.recent-activity-controls a {
  display: inline-block;
  padding: 0.625rem 1rem;
  margin-bottom: 0;
  font-size: calc(18px - 5px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.lt-btn:focus,
.lt-btn:active:focus,
input[type="submit"]:focus,
input[type="submit"]:active:focus,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active:focus,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active:focus,
.lt-community-follow button:focus,
.lt-community-follow button:active:focus,
.lt-profile__buttons button:focus,
.lt-profile__buttons button:active:focus,
.lt-profile__buttons a:focus,
.lt-profile__buttons a:active:focus,
.lt-organization-subscribe button:focus,
.lt-organization-subscribe button:active:focus,
.lt-subscriptions-subscribe button:focus,
.lt-subscriptions-subscribe button:active:focus,
.pagination-next-link:focus,
.pagination-next-link:active:focus,
.pagination-prev-link:focus,
.pagination-prev-link:active:focus,
.pagination-first-link:focus,
.pagination-first-link:active:focus,
.pagination-last-link:focus,
.pagination-last-link:active:focus,
.recent-activity-controls a:focus,
.recent-activity-controls a:active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.lt-btn:hover,
.lt-btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-community-follow button:hover,
.lt-community-follow button:focus,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons a:hover,
.lt-profile__buttons a:focus,
.lt-organization-subscribe button:hover,
.lt-organization-subscribe button:focus,
.lt-subscriptions-subscribe button:hover,
.lt-subscriptions-subscribe button:focus,
.pagination-next-link:hover,
.pagination-next-link:focus,
.pagination-prev-link:hover,
.pagination-prev-link:focus,
.pagination-first-link:hover,
.pagination-first-link:focus,
.pagination-last-link:hover,
.pagination-last-link:focus,
.recent-activity-controls a:hover,
.recent-activity-controls a:focus {
  color: #B71F36;
  text-decoration: none;
}

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

.lt-btn--default,
.lt-section-subscribe button,
.lt-article-subscribe button,
.lt-community-follow button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.lt-organization-subscribe button,
.lt-subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link,
.recent-activity-controls a {
  color: #B71F36;
  background-color: transparent;
  border-color: #B71F36;
}

.lt-btn--default:hover,
.lt-btn--default:focus,
.lt-btn--default:active,
.lt-section-subscribe button:hover,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active,
.lt-article-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active,
.lt-community-follow button:hover,
.lt-community-follow button:focus,
.lt-community-follow button:active,
.lt-profile__buttons button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons button:active,
.lt-profile__buttons a:hover,
.lt-profile__buttons a:focus,
.lt-profile__buttons a:active,
.lt-organization-subscribe button:hover,
.lt-organization-subscribe button:focus,
.lt-organization-subscribe button:active,
.lt-subscriptions-subscribe button:hover,
.lt-subscriptions-subscribe button:focus,
.lt-subscriptions-subscribe button:active,
.pagination-next-link:hover,
.pagination-next-link:focus,
.pagination-next-link:active,
.pagination-prev-link:hover,
.pagination-prev-link:focus,
.pagination-prev-link:active,
.pagination-first-link:hover,
.pagination-first-link:focus,
.pagination-first-link:active,
.pagination-last-link:hover,
.pagination-last-link:focus,
.pagination-last-link:active,
.recent-activity-controls a:hover,
.recent-activity-controls a:focus,
.recent-activity-controls a:active {
  color: #831627;
  background-color: transparent;
  border-color: #831627;
}

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

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

.lt-btn--topbar {
  color: #B71F36;
  background-color: transparent;
  border-color: #B71F36;
}

.lt-btn--topbar:hover,
.lt-btn--topbar:focus,
.lt-btn--topbar:active {
  color: #831627;
  background-color: transparent;
  border-color: #831627;
}
@media (max-width: 991px) {
  .lt-btn--topbar {
    display: inline-flex;
    width: 100%;
    padding: 0;
    color: #070605;
    border: 0;
    justify-content: space-between;
    align-items: center;
  }

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

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

  .lt-btn--topbar:active,
  .lt-btn--topbar:hover,
  .lt-btn--topbar:focus {
    color: #B71F36;
    background-color: transparent;
    box-shadow: none;
  }
}

.lt-btn--print {
  padding: 0 !important;
  font-size: var(--font-size-h5) !important;
  color: #070605 !important;
  border: 0 !important;
}

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

.lt-avatar__badge {
  position: absolute;
  top: -0.5rem;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  padding: 4px;
  color: #fff;
  background: #cc0000;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

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

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

.lt-avatar__badge:not(.is-active) {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

.lt-meta__item + .lt-meta__item:before {
  font-size: 0.75rem;
  content: "\2022";
}

[dir="ltr"] .lt-meta__item + .lt-meta__item:before {
  margin-right: 0.25rem;
}

[dir="rtl"] .lt-meta__item + .lt-meta__item:before {
  margin-left: 0.25rem;
}

.lt-meta__link {
  color: inherit;
}

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

.breadcrumbs {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}

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

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

.breadcrumbs > li a {
  color: #6b7280;
}

.breadcrumbs > li:last-child a {
  color: #070605;
}

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

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

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

.lt-breadcrumbs-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--gray-lightest);
}

.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: #000;
  outline: 1px solid transparent;
  transition: background-color 0.15s, transform 0.15s;
}

.lt-menu-toggle span:after,
.lt-menu-toggle span:before {
  position: absolute;
  content: "";
}

[dir="ltr"] .lt-menu-toggle span:after,
[dir="ltr"] .lt-menu-toggle span:before {
  left: 0;
}

[dir="rtl"] .lt-menu-toggle span:after,
[dir="rtl"] .lt-menu-toggle span:before {
  right: 0;
}

.lt-menu-toggle span:before {
  top: -7px;
}

.lt-menu-toggle span:after {
  top: 7px;
}

.lt-menu-toggle.is-active {
  outline: 0;
}

.lt-menu-toggle.is-active span {
  background-color: transparent;
}

.lt-menu-toggle.is-active span:after,
.lt-menu-toggle.is-active span:before {
  top: 0;
}

[dir="ltr"] .lt-menu-toggle.is-active span:before {
  transform: rotate(-45deg);
}

[dir="rtl"] .lt-menu-toggle.is-active span:before {
  transform: rotate(45deg);
}

[dir="ltr"] .lt-menu-toggle.is-active span:after {
  transform: rotate(45deg);
}

[dir="rtl"] .lt-menu-toggle.is-active span:after {
  transform: rotate(-45deg);
}

.lt-entry-info {
  display: flex;
  font-size: 14px;
}

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

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

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

.lt-status-label {
  padding: 2px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

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

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

.lt-status-label--with-ticket:hover,
.lt-status-label--with-ticket:focus,
.lt-status-label--with-ticket:active {
  color: #fff;
}

.lt-status-label--solved,
.lt-status-label--closed {
  background-color: #0c9;
}

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

.lt-status-label--answered {
  background-color: #fad782;
}

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

.lt-status-label--completed,
.lt-status-label--answered {
  background-color: #0c9;
}

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

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

.lt-hero-unit {
  position: relative;
  padding-top: 5%;
  padding-bottom: 5%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.lt-hero-unit:after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
}

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

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

.lt-hero-unit__bg {
  position: absolute;
  top: -10%;
  z-index: 1;
  width: 100%;
  height: 150%;
  background: url(/hc/theming_assets/01HZKW02A9C6540VP7RVDWCA6M) 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__title {
  text-align: center;
}

.lt-custom-block__link {
  width: 100%;
  padding: 30px;
  color: #070605;
  border: #d7d7d7 1px solid;
  border-radius: 4px;
}

.lt-custom-block__icon {
  width: 64px;
  height: 64px;
}

.lt-custom-block__title {
  color: #070605;
}
@media (min-width: 576px) {
  .lt-custom-block__content {
    text-align: center;
  }
}

.lt-block-list-item {
  display: flex;
}

.lt-block-list-item__link {
  display: flex;
  padding: 3rem 2rem;
  color: #fff;
  flex-direction: column;
  background-color: #242424;
  border-radius: 4px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.lt-block-list-item__link:active,
.lt-block-list-item__link:focus,
.lt-block-list-item__link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #B71F36;
}

.lt-block-list-item__title {
  margin-bottom: 0;
  font-weight: var(--strong-font-weight);
  text-align: center;
  word-break: break-word;
}

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

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

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

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

.recent-activity-list {
  display: grid;
  margin-bottom: 0;
  list-style: none;
  gap: calc(var(--grid-gutter-width) * 2);
}

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

[dir="rtl"] .recent-activity-list {
  padding-right: 0;
}
@media (min-width: 768px) {
  .recent-activity-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.recent-activity-item {
  display: flex;
  padding: 1.5rem 2rem;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
  flex-direction: column;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  align-items: flex-start;
}

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

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

.recent-activity-item-parent:hover,
.recent-activity-item-parent:active,
.recent-activity-item-parent:focus {
  color: #fff;
  background-color: #B71F36;
}

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

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

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

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

.lt-footer-submit-ticket {
  text-align: center;
  background-color: #f6f6f6;
}

.lt-footer-submit-ticket__title {
  font-weight: 600;
  color: #070605;
}

.lt-footer-submit-ticket__subtitle {
  margin-bottom: 30px;
  color: #6b7280;
}

.lt-footer-submit-ticket__btn {
  padding: 0.75rem 1rem;
}

.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: #070605;
}

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

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

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

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

.lt-new-request-tip {
  position: relative;
  background-color: #f3fafc;
  border: 2px solid #50b6d3;
  border-radius: 4px;
}

.lt-new-request-tip__icon {
  position: absolute;
  top: 2rem;
  color: #50b6d3;
}

[dir="ltr"] .lt-new-request-tip__icon {
  left: 1.5rem;
}

[dir="rtl"] .lt-new-request-tip__icon {
  right: 1.5rem;
}

.upload-dropzone {
  padding: calc(var(--line-height-computed)) 16px;
  border-color: var(--input-border-color);
  border-width: var(--border-width);
  border-radius: 4px;
}

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

.upload-dropzone span {
  color: #070605;
}

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

.lt-error-page__articles {
  border: 2px solid #d7d7d7;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

.satisfaction-box {
  padding: calc(var(--line-height-computed)) var(--grid-gutter-width);
  margin: 0 0 calc(10px * 2) 0;
  margin-top: 0;
  border-color: #d7d7d7;
  border-radius: 4px;
}

.satisfaction-box h4:last-child {
  margin-bottom: 0;
}

.satisfaction-box input[type="radio"] ~ label {
  letter-spacing: normal;
}

[dir="ltr"] .satisfaction-box input[type="radio"] ~ label {
  margin-right: 10px;
}

[dir="rtl"] .satisfaction-box input[type="radio"] ~ label {
  margin-left: 10px;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"] {
  color: #fff;
  background-color: #0c9;
  border-color: #0c9;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  color: #e0e0e0;
  background-color: #009973;
  border-color: #008f6b;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  background-image: none;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"] {
  color: #fff;
  background-color: #ff5252;
  border-color: #ff5252;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  color: #e0e0e0;
  background-color: #ff1f1f;
  border-color: #ff1515;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  background-image: none;
}

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

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

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

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

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

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

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

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

.satisfaction-box .satisfaction-submit:active {
  background-image: none;
}

[dir="ltr"] .satisfaction-box .satisfaction-submit {
  margin-left: 10px !important;
}

[dir="rtl"] .satisfaction-box .satisfaction-submit {
  margin-right: 10px !important;
}

.satisfaction-reason {
  padding-top: calc(var(--line-height-computed));
}

.satisfaction-box .satisfaction-cancel {
  font-size: calc(18px - 5px) !important;
  line-height: 1.5 !important;
}

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

.lt-scroll-to-top:focus,
.lt-scroll-to-top:active {
  outline: 0;
}

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

.lt-scroll-to-top:hover {
  color: #831627;
  border-color: #831627;
}

@media (max-width: 575px) {
  .lt-scroll-to-top {
    display: none;
  }
}

[dir="ltr"] .lt-scroll-to-top {
  left: 2rem;
}

[dir="rtl"] .lt-scroll-to-top {
  right: 2rem;
}

.lt-header {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #d7d7d7;
}

.lt-header__desc {
  margin-top: 1rem;
}

.recent-articles h3,
.related-articles h3 {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

@media (min-width: 576px) {
  .recent-articles h3,
  .related-articles h3 {
    margin-top: calc(var(--line-height-computed) / 2);
  }
}

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

.recent-articles ul > li,
.related-articles ul > li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.recent-articles ul > li a,
.related-articles ul > li a {
  padding-bottom: 1px;
  color: #070605;
  border-bottom: 1px solid #d7d7d7;
}

[dir="ltr"] .recent-articles ul,
[dir="ltr"] .related-articles ul {
  padding-left: 0;
}

[dir="rtl"] .recent-articles ul,
[dir="rtl"] .related-articles ul {
  padding-right: 0;
}

.recent-articles h3 {
  font-size: var(--font-size-h4);
}
@media (max-width: 991px) {
  .lt-user-info {
    width: 100%;
    padding-bottom: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid #d7d7d7;
    order: -1;
  }

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

  .lt-user-info__menu [role="menuitem"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.lt-status-widget {
  font-weight: 600;
}

.lt-status-widget,
.lt-status-widget:hover,
.lt-status-widget:focus,
.lt-status-widget:active {
  color: #fff;
}

.lt-status-widget-container {
  display: flex;
  align-items: center;
}

.lt-status-widget__indicator {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #aaa;
  border-radius: 50%;
}

.lt-status-widget__indicator--none {
  background-color: #2ecc71;
}

.lt-status-widget__indicator--operational {
  background-color: #2ecc71;
}

.lt-status-widget__indicator--minor {
  background-color: #f1c40f;
}

.lt-status-widget__indicator--major {
  background-color: #e67e22;
}

.lt-status-widget__indicator--critical {
  background-color: #e74c3c;
}

.lt-status-widget__indicator--maintenance {
  background-color: #3498db;
}

[dir="ltr"] .lt-status-widget__indicator__text {
  margin-left: 0.5rem;
}

[dir="rtl"] .lt-status-widget__indicator__text {
  margin-right: 0.5rem;
}

.lt-profile-header {
  text-align: center;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

.lt-profile-stats__stat {
  margin-bottom: calc(var(--line-height-computed) / 4);
}
@media (max-width: 767px) {
  .lt-profile-stats__stat {
    display: block;
  }

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

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

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

.lt-profile-stats__value {
  color: #070605;
}

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

.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: #070605;
}

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

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

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

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

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

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

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

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

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

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

  border-radius: 4px;
}

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

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

.lt-profile-contribution__title {
  margin-bottom: calc(var(--line-height-computed) / 4);
  font-size: 18px;
  font-weight: 600;
}

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

.lt-profile-contribution--list .lt-profile-contribution__title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.lt-profile-contribution__breadcrumbs {
  padding: 0;
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-size: var(--font-size-small);
}

.lt-profile__no-activity,
.lt-profile__private-activity {
  color: var(--meta-text-color);
  text-align: center;
}

.lt-profile-activity-list {
  list-style: none;
}

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

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

.lt-profile-activity {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) * 1.5);
}

.lt-profile-activity__header {
  margin-bottom: calc(var(--line-height-computed) / 2);

  font-size: var(--font-size-small);
  font-weight: 600;
}

.lt-profile-activity__avatar {
  width: 30px;
  height: 30px;
}

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

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

.lt-profile-activity__header:before,
.lt-profile-contribution__title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.lt-profile-activity-list--articles .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-article"] .lt-profile-activity__header:before {
  content: "\f15c";
}

.lt-profile-activity-list--posts .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-post"] .lt-profile-activity__header:before {
  content: "\f086";
}

.lt-profile-activity-list--comments .lt-profile-contribution__title:before,
.lt-profile-activity[class$="-comment"] .lt-profile-activity__header:before {
  font-weight: 400;
  content: "\f075";
}

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

.lt-profile-badge-item {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
}

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

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

.lt-attachment-list {
  margin: 0;
  font-size: var(--font-size-small);
  list-style: none;
}

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

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

.lt-attachment-list__item {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) / 2);
}

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

[dir="ltr"] .lt-attachment-list__item {
  padding-left: calc(var(--padding-base-horizontal) * 1.5);
}

[dir="rtl"] .lt-attachment-list__item {
  padding-right: calc(var(--padding-base-horizontal) * 1.5);
}

.lt-attachment-list__icon {
  position: absolute;
  top: 4px;
}

[dir="ltr"] .lt-attachment-list__icon {
  left: 0;
}

[dir="rtl"] .lt-attachment-list__icon {
  right: 0;
}

.lt-skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  padding: 20px;
  margin: 20px;
  overflow: hidden;
  font-size: 14px;
  color: white;
  color: #070605;
  background-color: #fff;
  border: 1px solid #B71F36;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .lt-skip-navigation {
  left: -999px;
}

[dir="rtl"] .lt-skip-navigation {
  right: -999px;
}

.lt-skip-navigation:focus,
.lt-skip-navigation:active {
  top: auto;
  z-index: 999;
  overflow: auto;
  text-align: center;
  text-decoration: none;
}

[dir="ltr"] .lt-skip-navigation:focus,
[dir="ltr"] .lt-skip-navigation:active {
  left: auto;
}

[dir="rtl"] .lt-skip-navigation:focus,
[dir="rtl"] .lt-skip-navigation:active {
  right: auto;
}
/* ==========================================================================
  Notification
  ========================================================================== */
.notification {
  display: table;
  width: 100%;
  padding: 13px 15px;
  font-family: sans-serif;
  font-size: 12px;
  color: #555;
  border: 1px solid;
  transition: height 0.2s;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.notification-icon,
.notification-text,
.notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  width: 100%;
  padding: 0 15px;
}

.notification + .notification {
  position: relative;
  top: -1px;
  margin-bottom: -1px;
}
/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon:before,
.notification-error .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}
/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon:before,
.notification-notice .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}
/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon:before,
.notification-alert .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon:before,
.notification-inline.notification-error:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  content: "";
  background-size: cover;
}
/* Dismiss button */
.notification-dismiss,
a.notification-dismiss {
  color: #555;
  text-decoration: none !important;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 100ms ease;
}

.notification-dismiss:hover {
  opacity: 1;
}
/* Inline notifications */
.notification-inline {
  position: relative;
  padding: 5px;
  margin-top: 5px;
  line-height: 14px;
  vertical-align: middle;
  border-radius: 4px;
}

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

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

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

.notification-inline[aria-hidden="true"] {
  display: none;
}

.notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
}

[dir="ltr"] .notification-inline.notification-error:before {
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: -2px 0 0 5px;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  color: #cc3340;
  background-color: #fff0f1;
  border: 1px solid #e35b66;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

[dir="ltr"] .notification-left-aligned {
  padding-left: 0;
  text-align: left;
}

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

.lt-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9;
  display: none;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}

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

[dir="rtl"] .lt-backdrop {
  right: 0;
}
@media (max-width: 991px) {
  .lt-backdrop.is-active {
    display: block;
  }
}

.lt-promoted-articles-accordion {
  border: 2px solid #d7d7d7;
  border-radius: 4px;
}

.lt-promoted-articles-accordion-item + .lt-promoted-articles-accordion-item {
  border-top: 2px solid #d7d7d7;
}

.lt-promoted-articles-accordion-item__title {
  position: relative;
  font-weight: 600;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .lt-promoted-articles-accordion-item__title {
  text-align: left;
}

[dir="rtl"] .lt-promoted-articles-accordion-item__title {
  text-align: right;
}

.lt-promoted-articles-accordion-item__title,
.lt-promoted-articles-accordion-item__title:hover,
.lt-promoted-articles-accordion-item__title:focus,
.lt-promoted-articles-accordion-item__title:active {
  color: #070605;
}

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

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

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

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

.lt-popular-searches {
  font-weight: 600;
}

.lt-popular-searches__item,
.lt-popular-searches__item:hover,
.lt-popular-searches__item:active,
.lt-popular-searches__item:focus {
  padding-bottom: 2px;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  color: #070605;
  border-bottom: 1px solid currentColor;
}

.lt-contact-box {
  display: flex;
  padding: 1.5rem 2rem;
  padding-right: var(--grid-gutter-width);
  padding-left: var(--grid-gutter-width);
  font-size: 0.875rem;
  color: #070605;
  flex-direction: column;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  align-items: flex-start;
}

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

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

.lt-info-block {
  border: 1px solid #B71F36;
  border-radius: 4px;
}

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

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

.lt-vote {
  width: 100%;
}

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

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

.lt-vote__control {
  position: relative;
  z-index: 1;
  display: block !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: #070605;
  border-color: #d7d7d7;
}

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

.lt-vote__control--active {
  color: #070605;
  border-color: #070605;
}
/* Search */
/* Search */
.search {
  position: relative;
  display: flex;
}

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

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

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

.searchbox {
  margin-top: calc(var(--line-height-computed));
}

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

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

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

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

.lt-search-box {
  position: relative;
}

.lt-search-box #query {
  height: 50px;
  padding: 0.875rem 2.5rem;
  font-size: 20px;
  border-color: #fff;
  transition: border 0.3s ease;
  transition: border 0.3s ease, background-color 0.3s ease;
}

.lt-search-box #query:focus {
  background-color: #fff;
  border-color: #fff;
  outline: 0;
}

.lt-search-box--small {
  background-color: #454545;
}

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

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

.lt-search-box--hero-unit #query {
  padding: 0 3.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-color: var(--input-border-color);
}

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

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

.lt-search-box--hero-unit input[type="submit"]:hover,
.lt-search-box--hero-unit input[type="submit"]:focus {
  background-color: #000;
}

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

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

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

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

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

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

.lt-search-result {
  border-bottom: var(--border-width) solid #d7d7d7;
}

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

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

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

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

.lt-search-filter__btn:after {
  position: absolute;
  top: 50%;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1.5;
  color: inherit;
  content: "\f107";
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

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

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

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

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

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

.lt-search-filter__link {
  align-items: center;
  color: #070605;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.lt-search-filter__count {
  display: inline-flex;
  font-size: var(--font-size-small);
}
/* My Activities */
.lt-my-activities-items {
  width: 100%;
  margin-bottom: calc(var(--line-height-computed) * 2);
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
@media (min-width: 576px) {
  .lt-my-activities-items {
    table-layout: auto;
  }
}

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

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

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

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

  [dir="rtl"] .lt-my-activities-items__col + .lt-my-activities-items__col {
    padding-right: var(--padding-base-horizontal);
  }
}
@media (max-width: 575px) {
  .lt-my-activities-items__request-id {
    display: inline;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-items__request-id {
    display: none;
  }
}

.lt-my-activities-items__col .requests-link {
  color: var(--meta-text-color);
  white-space: nowrap;
}

.lt-my-activities-items__col
  .requests-link[href*="asc"]
  .requests-sort-symbol:after {
  content: "\f0d8";
}
@media (min-width: 576px) {
  [dir="ltr"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-left: 1rem;
  }

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

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

.lt-my-activities-menu--main .lt-my-activities-menu-item {
  padding: 0.5rem 1rem;
  background-color: #B71F36;
  border-radius: 4px;
}

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

.lt-my-activities-menu--main .lt-my-activities-menu-item.is-active {
  font-weight: var(--strong-font-weight);
  color: #070605;
  background-color: var(--gray-lighter);
}

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

.lt-my-activities-menu-item {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  [dir="ltr"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-left: 1rem;
  }

  [dir="rtl"] .lt-my-activities-menu-item + .lt-my-activities-menu-item {
    margin-right: 1rem;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-menu--sub
    .lt-my-activities-menu-item
    + .lt-my-activities-menu-item:before {
    font-size: 10px;
    content: "\2022";
  }

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

  [dir="rtl"]
    .lt-my-activities-menu--sub
    .lt-my-activities-menu-item
    + .lt-my-activities-menu-item:before {
    margin-left: 1rem;
  }
}
@media (max-width: 575px) {
  .lt-my-activities-item {
    padding: calc(var(--line-height-computed) / 2)
      var(--padding-base-horizontal);
    margin-bottom: calc(var(--line-height-computed));
    border: var(--border-width) solid #d7d7d7;
    border-radius: 4px;
  }
}

.lt-my-activities-item__meta {
  font-size: 14px;
  color: var(--meta-text-color);
}
@media (max-width: 575px) {
  .lt-my-activities-item__meta {
    display: inline-block;
    margin-right: calc(var(--padding-base-horizontal) / 2);
  }
}

.lt-my-activities-item__title {
  font-weight: 400;
}
@media (max-width: 575px) {
  .lt-my-activities-item__title {
    font-size: var(--font-size-h4);
  }
}
@media (max-width: 575px) {
  .lt-my-activities-item__icon {
    display: inline-block;
  }
}
@media (min-width: 576px) {
  .lt-my-activities-item__icon {
    display: none;
  }
}

.subscriptions-subscribe div {
  display: inline-block;
}
/* Comments */
/* ==========================================================================
  Comment Form
  ========================================================================== */
.lt-comment-form {
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .lt-comment-form {
    padding-left: 3.5rem;
  }
}

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

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

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

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

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

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

.lt-comment-form__ccs {
  margin-bottom: 0;
}

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

.lt-comment-form__body {
  margin-bottom: 16px;
}
/* ==========================================================================
  Comment Sorter
  ========================================================================== */
.lt-comment-sorter {
  border-bottom: var(--border-width) solid var(--gray-lighter);
}

.lt-comment-sorter__item.is-active {
  font-weight: 600;
}

.lt-comment-sorter__item + .lt-comment-sorter__item:before {
  margin: 0 6px;
  font-size: 10px;
  font-weight: 900;
  content: "\2022";
}
/* ==========================================================================
  Comment
  ========================================================================== */
.lt-comment {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: var(--border-width) solid #d7d7d7;
}

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

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

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

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

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

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

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

[dir="ltr"] .lt-comment__official-heading {
  right: 36px;
}

[dir="rtl"] .lt-comment__official-heading {
  left: 36px;
}

.lt-comment--official .lt-comment__inner {
  position: relative;
  padding: 24px;
  border: var(--border-width) solid #B71F36;
  border-radius: 4px;
}

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

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

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

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

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

[dir="rtl"] .lt-comments__list {
  padding-right: 0;
}
/* Article */
.lt-article-box {
  display: flex;
  padding: 2rem;
  font-size: 0.875rem;
  color: #070605;
  flex-direction: column;
  background-color: var(--gray-lightest);
  border-radius: 4px;
  align-items: flex-start;
}

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

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

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

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

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

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

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

html.sidenav-enabled .lt-article-container__sidenav {
  padding-bottom: 24px;
}
@media (max-width: 575px) {
  .lt-article-container__sidebar {
    padding-top: calc(var(--line-height-computed));

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

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

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

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

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

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

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

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

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

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

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

  html[dir="rtl"].sidenav-enabled.toc-enabled .lt-article-container__sidebar {
    margin-right: calc(100% / 12 * 3);
  }
}
@media (min-width: 992px) {
  html.sidenav-enabled.toc-enabled .lt-article-container__article {
    width: calc(100% / 12 * 7);
  }

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

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

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

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

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

.lt-article-list-item--is-promoted span {
  position: relative;
  top: -0.125rem;
  font-size: 10px;
  color: #fbce0a;
  vertical-align: middle;
}

.lt-article-vote {
  position: relative;

  padding: calc(var(--line-height-computed)) var(--padding-base-horizontal);
  background-color: var(--gray-lightest);
  border-radius: 4px;
}

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

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

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

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

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

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

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

.lt-article-vote__count {
  display: block;
  font-size: calc((18px * 0.75) - 2);

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

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

.lt-article {
  position: relative;
}

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

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

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

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

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

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

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

.lt-article__body ul ul,
.lt-article__body ul ol,
.lt-article__body ol ul,
.lt-article__body ol ol {
  margin-top: calc(var(--line-height-computed) / 2);
  margin-bottom: 0;
}

.lt-article__body ul li,
.lt-article__body ol li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

.lt-article__body a[target="_blank"]:after {
  display: inline-flex;
  margin: 0px 4px 0px 4px;
  font-family: "Font Awesome 5 Free";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  line-height: 1;
  content: "\f35d";
  -webkit-font-smoothing: antialiased;
  align-self: baseline;
  text-rendering: auto;
}

[dir="ltr"] .lt-article__body ul,
[dir="ltr"] .lt-article__body ol {
  padding-left: 20px;
}

[dir="rtl"] .lt-article__body ul,
[dir="rtl"] .lt-article__body ol {
  padding-right: 20px;
}
@media (max-width: 575px) {
  .lt-article-sidebar {
    padding-top: calc(var(--line-height-computed));

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

.lt-category-tree-item__sections {
  margin-bottom: calc(var(--line-height-computed));
}

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

.lt-category-accordion {
  border: 1px solid var(--gray-lighter);
  border-radius: 4px;
}

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

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

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

.lt-category-accordion__link:before {
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  content: "";
  border-bottom: 2px solid #B71F36;
  transition: transform 0.3s;
}

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

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

.lt-category-accordion__link--active:before {
  transition: transform 0.3s;
}

[dir="ltr"] .lt-category-accordion__link--active:before {
  transform: rotate(135deg);
}

[dir="rtl"] .lt-category-accordion__link--active:before {
  transform: rotate(-135deg);
}

.lt-category-accordion__sections {
  display: none;
  border-top: 1px solid var(--gray-lighter);
}
/* Section */
.lt-section-link {
  color: inherit;
}

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

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

.lt-section-articles__list {
  list-style: none;
}

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

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

.lt-section-articles__item {
  margin-bottom: calc(var(--line-height-computed) / 2);
}
/* Community */
.lt-community-nav {
  border-bottom: var(--border-width) solid #d7d7d7;
}

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

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

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

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

[dir="rtl"] .lt-community-follow > * + * {
  margin-right: 1rem;
}
@media (min-width: 576px) {
  .lt-topic-controls {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  .lt-topic-controls__item {
    display: flex;
    align-items: center;
  }
}

.lt-topic-controls__item--subscribe {
  display: flex;
  align-items: center;
}

.lt-post {
  position: relative;
}

.lt-post__text {
  word-wrap: break-word;
}

.lt-post__text ul {
  list-style: disc;
}

.lt-post__text ul ul,
.lt-post__text ul ol,
.lt-post__text ol ul,
.lt-post__text ol ol {
  margin-top: calc(var(--line-height-computed) / 2);
}

.lt-post__text ul li,
.lt-post__text ol li {
  margin-bottom: calc(var(--line-height-computed) / 2);
}

[dir="ltr"] .lt-post__text ul,
[dir="ltr"] .lt-post__text ol {
  padding-left: 20px;
}

[dir="rtl"] .lt-post__text ul,
[dir="rtl"] .lt-post__text ol {
  padding-right: 20px;
}

.lt-post__body {
  word-break: break-word;
}

[dir="ltr"] .lt-post__body {
  padding-right: calc(40px + var(--padding-base-horizontal));
}

[dir="rtl"] .lt-post__body {
  padding-left: calc(40px + var(--padding-base-horizontal));
}

.lt-post__voting-and-actions {
  position: absolute;
  top: 0;
  width: 40px;
  text-align: center;
}

.lt-post__voting-and-actions .lt-dropdown-toggle {
  font-size: 0;
}

.lt-post__voting-and-actions .lt-dropdown-toggle:after {
  font-size: 18px;
  content: "\f013";
}

[dir="ltr"] .lt-post__voting-and-actions {
  right: 0;
}

[dir="ltr"] .lt-post__voting-and-actions .lt-dropdown-toggle:after {
  margin-left: 0;
}

[dir="rtl"] .lt-post__voting-and-actions {
  left: 0;
}

[dir="rtl"] .lt-post__voting-and-actions .lt-dropdown-toggle:after {
  margin-right: 0;
}

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

.lt-post__actions .lt-dropdown-menu {
  width: auto;
}

.lt-post__actions .lt-dropdown-menu [role="menuitem"] {
  white-space: nowrap;
}

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

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

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

  border-top: var(--border-width) solid #d7d7d7;
}

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

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

.lt-post-status {
  display: inline-block;
  padding: 1px calc(var(--padding-base-horizontal) / 2);
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
}

.lt-post-status--completed,
.lt-post-status--answered {
  background-color: #0c9;
}

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

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

.community-badge {
  margin: 2px;
}

.community-badge-titles {
  display: inline-flex;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #B71F36;
  border-radius: 4px;
}

.community-badge-achievements {
  display: inline-block;
}

[dir="ltr"] .community-badge-achievements {
  margin: 0 0.25rem 0 0;
}

[dir="rtl"] .community-badge-achievements {
  margin: 0 0 0 0.25rem;
}

.community-badge-achievements img {
  width: 22px;
  height: 22px;
}

.community-badge-titles img {
  width: 20px;
  height: 20px;
}

.profile-info .community-badge-achievements img {
  width: 40px;
  height: 40px;
}

.hotposts-header {
  display: block;
  margin-bottom: 0.5rem;
}

.hotposts-meta {
  display: flex;
  width: 100%;
}

.hotposts-author,
.hotposts-comments,
.hotposts-date,
.hotposts-img,
.hotposts-votes {
  display: inline-flex;
  align-items: center;
}

.hotposts-img {
  width: 20px;
  height: 20px;
  overflow: hidden;
  vertical-align: bottom;
  border-radius: 50%;
}

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

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

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

.hotposts-name {
  display: inline-block;
  vertical-align: bottom;
}

.hotposts-icon {
  display: inline-flex;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
}

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

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

.hotposts-tabs .tab {
  padding: 15px 0 0;
  margin: 0;
  border: none;
}

.hotposts-tabs .tabs-menu {
  border-bottom: 2px solid #eceeef;
}

.hotposts-tabs .tabs-link {
  padding: 0 0 8px;
  margin-bottom: -2px;
  color: #2d7ccc;
  border: none;
  border-bottom: 2px solid #eceeef;
}

[dir="ltr"] .hotposts-tabs .tabs-link {
  margin-right: 20px;
}

[dir="rtl"] .hotposts-tabs .tabs-link {
  margin-left: 20px;
}

.hotposts-tabs .tabs-link:hover,
.hotposts-tabs .tabs-link:focus {
  color: #1f568d;
}

.hotposts-tabs .tabs-link.is-active {
  color: #4e5565;
  border-color: #4e5565;
}
/* Request */
.lt-request-table-toolbar {
  padding-top: var(--padding-base-horizontal);
  padding-bottom: calc(var(--padding-base-horizontal) / 2);
  margin-bottom: calc(var(--line-height-computed));
  background-color: #f9f9f9;
  border-radius: 4px;
}
@media (min-width: 576px) {
  .lt-request-table-toolbar {
    padding-top: calc(var(--padding-base-horizontal) / 2);
    padding-bottom: var(--padding-base-horizontal);
  }
}

.lt-request-table-toolbar label {
  font-size: var(--font-size-small);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .lt-request-table-filters {
    display: table;
    width: 100%;
  }
}

.lt-request-table-filters__item {
  padding-right: var(--padding-base-horizontal);
  padding-left: var(--padding-base-horizontal);
}
@media (max-width: 575px) {
  .lt-request-table-filters__item {
    margin-bottom: calc(var(--line-height-computed) / 2);
  }
}
@media (min-width: 576px) {
  .lt-request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }
}

.lt-request-table-organization {
  display: table;
  width: 100%;
}

.lt-request-table-organization__col {
  display: table-cell;
  vertical-align: middle;
}

.lt-request-table-organization__col--main {
  width: 100%;
}

.lt-request-table-organization__col--button [role="button"] {
  height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
  padding-top: 0;
  padding-bottom: 0;
  line-height: calc(
    var(--line-height-computed) + var(--padding-base-horizontal) + 2px
  );
}

[dir="ltr"] .lt-request-table-organization__col--button {
  padding-left: calc(var(--padding-base-horizontal) / 2);
}

[dir="rtl"] .lt-request-table-organization__col--button {
  padding-right: calc(var(--padding-base-horizontal) / 2);
}

.requests-sort-symbol {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}

.requests-sort-symbol:after {
  display: inline-block;
  margin-bottom: 2px;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  color: var(--meta-text-color);
  content: "\f0d7";
}

[dir="ltr"] .requests-sort-symbol:after {
  margin-left: 5px;
}

[dir="rtl"] .requests-sort-symbol:after {
  margin-right: 5px;
}

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

.lt-request-id {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

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

.lt-request-sidebar {
  padding: calc(var(--line-height-computed)) var(--padding-base-horizontal) 0;
  margin-bottom: calc(var(--line-height-computed));
  font-size: 14px;
  border: var(--border-width) solid #d7d7d7;
  border-radius: 4px;
}

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

.lt-request-status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  white-space: nowrap;
  border-radius: 4px;
}

.lt-request-status--solved,
.lt-request-status--closed {
  background-color: #0c9;
}

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

.lt-request-status--answered {
  background-color: #fad782;
}
/* Formatting */
.accordion {
  --lt-accordion-border: #ddd;
  padding-top: 0;
  margin-bottom: calc(var(--line-height-computed));
  border: 1px solid var(--lt-accordion-border);
  border-radius: 4px;
}

.accordion__item-title {
  position: relative;
  display: block;
  width: 100%;
  font-size: var(--font-size-h4);
  color: #070605;
  cursor: pointer;
  background-color: transparent;
  background-image: none;
  border: 0;
  touch-action: manipulation;
}

[dir="ltr"] .accordion__item-title {
  padding: 1rem 1.5rem 1rem 3rem;
  text-align: left;
}

[dir="rtl"] .accordion__item-title {
  padding: 1rem 3rem 1rem 1.5rem;
  text-align: right;
}

.accordion > .accordion__item + .accordion__item > .accordion__item-title {
  border-top: 1px solid var(--lt-accordion-border);
}

.accordion__item-content {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid var(--lt-accordion-border);
}

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

.accordion > .accordion__item:last-child > .accordion__item-title {
  border-bottom: none;
}

.accordion__item-title:before {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-bottom: 2px solid #B71F36;
  transition: transform 0.3s;
}

[dir="ltr"] .accordion__item-title:before {
  left: 1.5rem;
  border-left: 2px solid #B71F36;
  transform: translateY(-50%) rotate(-45deg);
}

[dir="rtl"] .accordion__item-title:before {
  right: 1.5rem;
  border-right: 2px solid #B71F36;
  transform: translateY(-50%) rotate(45deg);
}

.accordion__item-title--active {
  background-color: #f0f0f0;
}

.accordion__item-title--active:before {
  transition: transform 0.3s;
}

[dir="ltr"] .accordion__item-title--active:before {
  transform: rotate(135deg);
}

[dir="rtl"] .accordion__item-title--active:before {
  transform: rotate(-135deg);
}

.image-with-border {
  padding: 10px;
  border: 1px solid var(--gray-lighter);
  border-radius: 4px;
}

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

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

.image-overlay {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.callout {
  padding: calc(var(--line-height-computed)) 20px;
  margin-bottom: calc(var(--line-height-computed));
  background-color: var(--gray-lighter);
}

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

[dir="ltr"] .callout {
  border-left-style: solid;
  border-left-width: 5px;
}

[dir="rtl"] .callout {
  border-right-style: solid;
  border-right-width: 5px;
}

.callout--transparent {
  background-color: transparent;
  border-color: #dedede;
  border-width: 1px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
}

.callout--success {
  color: #070605;
  background-color: #d1fff4;
  border-color: #0c9;
}

.callout--success .callout__title {
  color: #0c9;
}

.callout--info {
  color: #070605;
  background-color: #e3f4f9;
  border-color: #5bc0de;
}

.callout--info .callout__title {
  color: #5bc0de;
}

.callout--warning {
  color: #070605;
  background-color: #fffbf3;
  border-color: #fad782;
}

.callout--warning .callout__title {
  color: #fad782;
}

.callout--danger {
  color: #070605;
  background-color: #fff5f5;
  border-color: #ff5252;
}

.callout--danger .callout__title {
  color: #ff5252;
}

.callout--primary {
  color: #070605;
  background-color: #fff;
  border-color: #B71F36;
}

.callout--primary .callout__title {
  color: #B71F36;
}

.callout--dashed {
  border-style: dashed;
  border-width: 1px;
}

.list-colored,
.list-bullet {
  list-style-type: none;
  counter-reset: list;
}

.list-colored > ul,
.list-bullet > ul {
  margin-bottom: 14px;
  list-style: none;
}

.list-colored > ol,
.list-bullet > ol {
  margin-bottom: 14px;
  list-style-type: none;
  counter-reset: list;
}

[dir="ltr"] .list-colored,
[dir="ltr"] .list-bullet {
  padding-left: 0 !important;
}

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

.list-colored > li {
  position: relative;
  margin-bottom: calc(var(--line-height-computed) / 1.5) !important;
  counter-increment: list;
}

.list-colored > li:before {
  position: absolute;
  top: -3px;
  z-index: 1;
  width: 30px;
  height: 30px;
  font-size: var(--font-size-small);
  line-height: 30px;
  color: #fff;
  text-align: center;
  content: counter(list);
  background-color: #B71F36;
  border-radius: 50%;
}

[dir="ltr"] .list-colored > li {
  padding-left: calc(var(--padding-base-horizontal) + 30px);
}

[dir="ltr"] .list-colored > li:before {
  left: 0;
}

[dir="rtl"] .list-colored > li {
  padding-right: calc(var(--padding-base-horizontal) + 30px);
}

[dir="rtl"] .list-colored > li:before {
  right: 0;
}

.list-bullet > li {
  position: relative;
  margin-bottom: 10px;
}

.list-bullet > li:before {
  position: absolute;
  top: -2px;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: #B71F36;
  content: "\f058";
}

[dir="ltr"] .list-bullet > li {
  padding-left: 30px;
}

[dir="ltr"] .list-bullet > li:before {
  left: 0;
}

[dir="rtl"] .list-bullet > li {
  padding-right: 30px;
}

[dir="rtl"] .list-bullet > li:before {
  right: 0;
}

.note {
  position: relative;
  margin: calc(var(--line-height-computed)) 0;
  color: #433930;
}

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

[dir="ltr"] .note {
  padding-left: var(--padding-base-horizontal);
  border-left: calc(var(--border-width) * 2) solid transparent;
}

[dir="rtl"] .note {
  padding-right: var(--padding-base-horizontal);
  border-right: calc(var(--border-width) * 2) solid transparent;
}

.note-title {
  margin-bottom: calc(var(--line-height-computed) / 2);
  font-weight: var(--strong-font-weight);
}

.note-default,
.note--default {
  border-color: var(--gray-light);
}

.note-default .note-title,
.note--default .note-title {
  color: var(--gray-light);
}

.note-info,
.note--info {
  border-color: #5bc0de;
}

.note-info .note-title,
.note--info .note-title {
  color: #5bc0de;
}

.note-warning,
.note--warning {
  border-color: #fad782;
}

.note-warning .note-title,
.note--warning .note-title {
  color: #fad782;
}

.note-success,
.note--success {
  border-color: #0c9;
}

.note-success .note-title,
.note--success .note-title {
  color: #0c9;
}

.note-danger,
.note--danger {
  border-color: #ff5252;
}

.note-danger .note-title,
.note--danger .note-title {
  color: #ff5252;
}

.embed,
.embed-responsive {
  position: relative;
  z-index: 1;
  display: block;
  height: 0;
  padding: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
  overflow: hidden;
}

.embed img,
.embed-responsive img {
  width: 100%;
}

.embed iframe,
.embed embed,
.embed object,
.embed video,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed:focus,
.embed-responsive:focus {
  outline: none !important;
}

[dir="ltr"] .embed iframe,
[dir="ltr"] .embed embed,
[dir="ltr"] .embed object,
[dir="ltr"] .embed video,
[dir="ltr"] .embed-responsive iframe,
[dir="ltr"] .embed-responsive embed,
[dir="ltr"] .embed-responsive object,
[dir="ltr"] .embed-responsive video {
  left: 0;
}

[dir="rtl"] .embed iframe,
[dir="rtl"] .embed embed,
[dir="rtl"] .embed object,
[dir="rtl"] .embed video,
[dir="rtl"] .embed-responsive iframe,
[dir="rtl"] .embed-responsive embed,
[dir="rtl"] .embed-responsive object,
[dir="rtl"] .embed-responsive video {
  right: 0;
}

.embed-responsive--16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive--4by3 {
  padding-bottom: 75%;
}

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

caption {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--gray-light);
}

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

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

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

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

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

.table th,
.table td {
  padding: 12px;
  vertical-align: top;
}

.table td {
  border-top: 1px solid #d7d7d7;
}

.table thead th {
  vertical-align: bottom;
}

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

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

.table--color-header th {
  color: #fff;
  background-color: #B71F36;
}

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

.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 {
  border: 1px solid #d7d7d7;
}

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

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

.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 #d7d7d7;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

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

.tab {
  display: block;
  padding: 30px;
  margin-top: -1px;
  border: 1px solid #ddd;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.tab p:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .tab {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

[dir="ltr"] .tab:nth-child(2) {
  border-top-left-radius: 0;
}

[dir="rtl"] .tab:nth-child(2) {
  border-top-right-radius: 0;
}

.tabs-link {
  display: block;
  padding: 8px 30px;
  margin: 0;
  font-weight: var(--strong-font-weight);
  color: #070605;
  cursor: pointer;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0;
}

.tabs-link:hover {
  color: #B71F36;
}
@media (max-width: 575px) {
  .tabs-link {
    border-top-color: #ddd;
    border-right-color: #ddd;
    border-left-color: #ddd;
  }

  .tabs-link:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}
@media (min-width: 576px) {
  .tabs-link {
    display: inline-block;
  }
}

.is-hidden {
  display: none;
}

.tabs-link.is-active {
  color: #B71F36;
  cursor: pointer;
  border-color: #ddd;
}

.tabs-link.is-active:hover {
  color: #B71F36;
  cursor: default;
}
@media (min-width: 576px) {
  .tabs-link.is-active {
    border-bottom: 1px solid #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

.tabs--colored-1 .tab {
  background-color: var(--gray-lightest) !important;
}

.tabs--colored-1 .tabs-link.is-active {
  background-color: var(--gray-lightest);
  border-bottom-color: var(--gray-lightest);
}

.tabs--colored-2 .tabs-link:hover {
  color: #B71F36;
}

.tabs--colored-2 .tabs-link.is-active {
  color: #fff;
  background-color: #B71F36;
  border-color: #B71F36;
}

.tabs--colored-2 .tabs-link.is-active:hover {
  color: #fff;
}

.tabs--colored-2 .tab {
  background-color: var(--gray-lightest) !important;
}

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

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

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

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

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

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

.text-info {
  background-color: #5bc0de;
}

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

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

.text-success {
  background-color: #0c9;
}
/* IDJNOW Help Center Header Refresh */
.idj-support-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 20;
}

.idj-support-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.idj-support-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.idj-support-header__logo-link {
  display: inline-flex;
  align-items: center;
}

.idj-support-header__logo {
  display: block;
  max-height: 48px;
  width: auto;
}

.idj-support-header__label {
  display: inline-flex;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid #d1d5db;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.idj-support-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.idj-support-header__link,
.idj-support-header__link:hover,
.idj-support-header__link:focus,
.idj-support-header__link:active {
  color: #111827;
  text-decoration: none;
}

.idj-support-header__link:hover,
.idj-support-header__link:focus {
  color: #b71f36;
}

.idj-support-header__call,
.idj-support-header__call:hover,
.idj-support-header__call:focus,
.idj-support-header__call:active {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #ffffff;
  background: #00363d;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.idj-support-header__call:hover,
.idj-support-header__call:focus {
  background: #b71f36;
  color: #ffffff;
}

.idj-support-header__toggle {
  display: none;
}

@media (max-width: 991px) {
  .idj-support-header__inner {
    padding: 14px 18px;
  }

  .idj-support-header__logo {
    max-height: 42px;
  }

  .idj-support-header__label {
    font-size: 11px;
    padding-left: 10px;
  }

  .idj-support-header__toggle {
    display: inline-flex;
  }

  .idj-support-header__nav.lt-topbar__controls {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1000;
    width: 82%;
    max-width: 310px;
    padding: 32px 24px;
    background: #ffffff;
    color: #111827;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    transform: translateX(-100%);
    transition: transform 300ms ease;
    box-shadow: none;
  }

  .idj-support-header__nav.lt-topbar__controls.is-active {
    transform: translateX(0);
    box-shadow: 5px 0 40px rgba(0, 0, 0, 0.35);
  }

  .idj-support-header__link {
    font-size: 16px;
  }

  .idj-support-header__call {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .idj-support-header__label {
    display: none;
  }
}
/* IDJNOW Help Center Footer Refresh */
.idj-hc-footer {
  margin-top: 0;
  background: #1f1f1f;
  color: #ffffff;
  border-top: 5px solid #b71f36;
}

.idj-hc-footer a {
  color: inherit;
  text-decoration: none;
}

.idj-hc-footer a:hover,
.idj-hc-footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.idj-hc-footer__top {
  background: #f4f5f7;
  color: #111827;
  padding: 42px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.idj-hc-footer__card {
  max-width: 720px;
}

.idj-hc-footer__eyebrow {
  color: #b71f36;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.idj-hc-footer__card h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.idj-hc-footer__card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
}

.idj-hc-footer__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.idj-hc-footer__button,
.idj-hc-footer__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.idj-hc-footer__button {
  color: #111827 !important;
  background: #ffffff;
  border: 1px solid #d1d5db;
}

.idj-hc-footer__button:hover,
.idj-hc-footer__button:focus {
  color: #b71f36 !important;
  border-color: #b71f36;
  text-decoration: none !important;
}

.idj-hc-footer__button--primary {
  color: #ffffff !important;
  background: #b71f36;
  border-color: #b71f36;
}

.idj-hc-footer__button--primary:hover,
.idj-hc-footer__button--primary:focus {
  color: #ffffff !important;
  background: #94192c;
  border-color: #94192c;
}

.idj-hc-footer__phone {
  color: #ffffff !important;
  background: #00363d;
  border: 1px solid #00363d;
}

.idj-hc-footer__phone:hover,
.idj-hc-footer__phone:focus {
  color: #ffffff !important;
  background: #b71f36;
  border-color: #b71f36;
  text-decoration: none !important;
}

.idj-hc-footer__main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 28px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 56px;
}

.idj-hc-footer__logo {
  display: block;
  max-width: 150px;
  height: auto;
  margin-bottom: 18px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
}

.idj-hc-footer__brand p {
  margin: 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.55;
}

.idj-hc-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 28px;
}

.idj-hc-footer__col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idj-hc-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.idj-hc-footer__col li {
  margin: 0;
  padding: 0;
}

.idj-hc-footer__col li + li {
  margin-top: 11px;
}

.idj-hc-footer__col a {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.35;
}

.idj-hc-footer__col a:hover,
.idj-hc-footer__col a:focus {
  color: #ffffff;
}

.idj-hc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #171717;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.idj-hc-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.idj-hc-footer__social span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idj-hc-footer__social a {
  color: #d1d5db;
  font-size: 14px;
}

.idj-hc-footer__bottom small {
  color: #9ca3af;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .idj-hc-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .idj-hc-footer__actions {
    justify-content: flex-start;
  }

  .idj-hc-footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .idj-hc-footer__nav {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 640px) {
  .idj-hc-footer__top {
    padding: 32px 20px;
  }

  .idj-hc-footer__card h2 {
    font-size: 26px;
  }

  .idj-hc-footer__actions,
  .idj-hc-footer__button,
  .idj-hc-footer__phone {
    width: 100%;
  }

  .idj-hc-footer__main {
    padding: 36px 20px;
  }

  .idj-hc-footer__nav {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .idj-hc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }
}
/* =========================================================
   IDJNOW Help Center Polish Layer
   Paste at the very bottom of style.css
   ========================================================= */

:root {
  --idj-red: #b71f36;
  --idj-dark: #1f1f1f;
  --idj-ink: #111827;
  --idj-muted: #6b7280;
  --idj-border: #e5e7eb;
  --idj-soft: #f5f6f8;
  --idj-teal: #00363d;
  --idj-radius: 14px;
  --idj-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

body {
  background: #f7f8fa;
}

/* Prevent theme negative spacing from pulling search/hero under header */
.lt-hero-unit.lt-mt-n8,
.lt-search-box--small.lt-mt-n8 {
  margin-top: 0 !important;
}

/* =========================================================
   Header
   ========================================================= */

.idj-support-header {
  position: relative;
  z-index: 1001;
  background: #ffffff;
  border-bottom: 1px solid var(--idj-border);
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.05);
}

.idj-support-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.idj-support-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.idj-support-header__logo-link {
  display: inline-flex;
  align-items: center;
}

.idj-support-header__logo {
  max-height: 46px;
  width: auto;
}

.idj-support-header__label {
  color: var(--idj-ink);
  border-left: 1px solid #d1d5db;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.idj-support-header__nav {
  gap: 16px;
}

.idj-support-header__link {
  position: relative;
  color: var(--idj-ink) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.idj-support-header__link:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--idj-red);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.idj-support-header__link:hover,
.idj-support-header__link:focus {
  color: var(--idj-red) !important;
}

.idj-support-header__link:hover:after,
.idj-support-header__link:focus:after {
  opacity: 1;
  transform: scaleX(1);
}

.idj-support-header__call {
  padding: 11px 16px !important;
  background: var(--idj-teal) !important;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0, 54, 61, 0.18);
}

.idj-support-header__call:hover,
.idj-support-header__call:focus {
  background: var(--idj-red) !important;
  color: #ffffff !important;
}

/* Hide any default topbar button styling that sneaks into this header */
.idj-support-header .lt-btn--topbar {
  background: transparent;
  border: 0;
  color: var(--idj-ink);
}

/* =========================================================
   Search Bars and Hero
   ========================================================= */

.lt-hero-unit {
  padding: 72px 20px 78px;
  background: var(--idj-dark);
}

.lt-hero-unit:after {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.58)),
    rgba(17, 24, 39, 0.45);
}

.lt-hero-unit__title {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.lt-search-box--hero-unit {
  max-width: 820px;
}

.lt-search-box--hero-unit #query,
.lt-search-box--small #query {
  height: 62px;
  border: 1px solid var(--idj-border);
  border-radius: 999px;
  box-shadow: var(--idj-shadow);
  color: var(--idj-ink);
  font-size: 18px;
}

.lt-search-box--hero-unit #query:focus,
.lt-search-box--small #query:focus {
  border-color: var(--idj-red);
  box-shadow: 0 0 0 4px rgba(183, 31, 54, 0.14), var(--idj-shadow);
}

.lt-search-box--hero-unit input[type="submit"] {
  border-radius: 999px;
  background: var(--idj-red);
  color: #ffffff;
  border: 0;
  font-weight: 800;
}

.lt-search-box--hero-unit input[type="submit"]:hover,
.lt-search-box--hero-unit input[type="submit"]:focus {
  background: #000000;
}

.lt-search-box--small {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #2b2b2b 58%, #3a1018 100%);
}

.lt-search-box--small .lt-container-inner {
  max-width: 920px;
}

.lt-search-box--small #query {
  height: 54px;
  font-size: 16px;
}

/* =========================================================
   Breadcrumbs
   ========================================================= */

.lt-breadcrumbs-wrapper {
  margin-bottom: 34px !important;
  padding-top: 18px;
  padding-bottom: 0;
}

.breadcrumbs,
.breadcrumbs a,
.lt-breadcrumbs-wrapper a {
  color: var(--idj-muted);
  font-size: 13px;
}

.breadcrumbs a:hover,
.lt-breadcrumbs-wrapper a:hover {
  color: var(--idj-red);
}

/* =========================================================
   Home Page Cards
   ========================================================= */

.lt-info-block-container {
  margin-top: 34px;
}

.lt-info-block {
  background: #ffffff !important;
  border: 1px solid var(--idj-border);
  border-left: 5px solid var(--idj-red);
  border-radius: var(--idj-radius);
  box-shadow: var(--idj-shadow);
}

.lt-info-block .h4 {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-info-block svg {
  color: var(--idj-red);
}

.lt-custom-block__link {
  min-height: 190px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 26px rgba(17, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lt-custom-block__link:hover,
.lt-custom-block__link:focus {
  color: var(--idj-ink);
  border-color: rgba(183, 31, 54, 0.45);
  box-shadow: var(--idj-shadow);
  transform: translateY(-3px);
}

.lt-custom-block__title {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-custom-block__text {
  color: var(--idj-muted);
}

/* Category boxes */
.lt-block-list-item__link {
  min-height: 185px;
  background:
    linear-gradient(135deg, #242424 0%, #1f1f1f 55%, #3a1018 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--idj-radius);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
}

.lt-block-list-item__link:hover,
.lt-block-list-item__link:focus {
  background:
    linear-gradient(135deg, #b71f36 0%, #841426 100%);
  color: #ffffff;
  transform: translateY(-3px);
}

.lt-block-list-item__title {
  font-weight: 900;
  text-align: center;
}

.lt-block-list-item__desc {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

/* Common Questions / Promoted Articles */
.lt-promoted-articles,
#promoted-articles-accordion,
.lt-category-tree {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: var(--idj-shadow);
  padding: 34px;
}

.lt-promoted-articles h2,
#promoted-articles-accordion h2,
.lt-category-tree__title {
  margin-bottom: 24px;
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.lt-promoted-articles-item {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: 12px;
}

.lt-promoted-articles-item__title {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-promoted-articles-item__title:hover {
  color: var(--idj-red);
}

/* =========================================================
   Category and Section Pages
   ========================================================= */

.category-page,
.section-page,
.article-page,
.lt-search-results-page,
.lt-new-request-page {
  padding-bottom: 58px;
}

.lt-header {
  margin-bottom: 30px;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.lt-header h1,
.lt-header .h1,
.lt-category-tree-item__title {
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.lt-header__desc {
  margin-top: 10px;
  color: var(--idj-muted);
  font-size: 16px;
  line-height: 1.6;
}

.category-page .section,
.section-page .lt-article-list,
.lt-section-articles,
.lt-article-box {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.category-page .section {
  padding: 24px;
}

.lt-section-link {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-section-link:hover,
.lt-section-link:focus {
  color: var(--idj-red);
}

.lt-article-list {
  padding-left: 0;
  list-style: none;
}

.section-page .lt-article-list {
  padding: 10px 24px;
}

.lt-article-list-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--idj-border);
}

.lt-article-list-item:last-child {
  border-bottom: 0;
}

.lt-article-list-item__link {
  color: var(--idj-ink);
  font-weight: 700;
}

.lt-article-list-item__link:hover,
.lt-article-list-item__link:focus {
  color: var(--idj-red);
}

/* =========================================================
   Article Pages
   ========================================================= */

.lt-article {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: var(--idj-shadow);
}

.lt-article__title {
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.lt-entry-info,
.lt-meta {
  color: var(--idj-muted);
}

.lt-article__body {
  color: #23272f;
  font-size: 17px;
  line-height: 1.75;
}

.lt-article__body h2,
.lt-article__body h3,
.lt-article__body h4 {
  margin-top: 1.75em;
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-article__body a {
  color: var(--idj-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lt-article__body img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.lt-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 12px;
}

.lt-article__body th,
.lt-article__body td {
  padding: 13px 14px;
  border: 1px solid var(--idj-border);
}

.lt-article__body th {
  background: #f3f4f6;
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-article-vote {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  text-align: center;
}

.lt-article-vote__question {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-btn,
button,
input[type="submit"] {
  border-radius: 10px;
}

.lt-btn--primary,
input[type="submit"] {
  background: var(--idj-red);
  border-color: var(--idj-red);
  color: #ffffff;
  font-weight: 800;
}

.lt-btn--primary:hover,
.lt-btn--primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.lt-btn--default {
  border-color: var(--idj-border);
  color: var(--idj-ink);
}

.lt-btn--default:hover,
.lt-btn--default:focus {
  border-color: var(--idj-red);
  color: var(--idj-red);
}

/* Article sidebars */
.lt-section-articles,
.lt-article-box {
  padding: 22px;
}

.lt-section-articles__title,
.lt-article-box__title {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-section-articles__link {
  color: var(--idj-ink);
}

.lt-section-articles__link.is-active,
.lt-section-articles__link:hover {
  color: var(--idj-red);
  font-weight: 900;
}

/* =========================================================
   Search Results Page
   ========================================================= */

.lt-search-filter {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.lt-search-filter + .lt-search-filter {
  margin-top: 16px;
}

.lt-search-filter__link {
  border-radius: 9px;
  color: var(--idj-ink);
}

.lt-search-filter__item.is-active .lt-search-filter__link,
.lt-search-filter__link:hover,
.lt-search-filter__link:focus {
  background: rgba(183, 31, 54, 0.09);
  color: var(--idj-red);
}

.lt-search-result {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.lt-search-result__title a {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-search-result__title a:hover,
.lt-search-result__title a:focus {
  color: var(--idj-red);
}

.lt-search-result__text {
  color: #374151;
  line-height: 1.65;
}

/* =========================================================
   New Request Page
   ========================================================= */

.lt-new-request-page #main-content {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: var(--idj-shadow);
}

.lt-new-request-title {
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.lt-new-request-tip {
  background: #fff7ed !important;
  border: 1px solid #fed7aa !important;
  border-left: 5px solid var(--idj-red) !important;
  color: #7c2d12;
  border-radius: var(--idj-radius);
}

.lt-new-request-tip__icon {
  color: var(--idj-red) !important;
}

.form-field label {
  color: var(--idj-ink);
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select,
.nesty-input {
  min-height: 46px;
  border-color: var(--idj-border);
  border-radius: 10px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.nesty-input:focus {
  border-color: var(--idj-red);
  box-shadow: 0 0 0 4px rgba(183, 31, 54, 0.12);
}

/* =========================================================
   Footer
   ========================================================= */

.idj-hc-footer {
  background: #1f1f1f;
  border-top: 5px solid var(--idj-red);
}

.idj-hc-footer__top {
  max-width: none;
  background: #f3f4f6;
  border-bottom: 1px solid #dedede;
}

.idj-hc-footer__card h2 {
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.idj-hc-footer__button,
.idj-hc-footer__phone {
  border-radius: 999px;
  font-weight: 900;
}

.idj-hc-footer__button--primary {
  background: var(--idj-red);
  border-color: var(--idj-red);
  color: #ffffff !important;
}

.idj-hc-footer__button--primary:hover,
.idj-hc-footer__button--primary:focus {
  background: #000000;
  border-color: #000000;
}

.idj-hc-footer__main {
  max-width: 1440px;
  margin: 0 auto;
}

.idj-hc-footer__logo {
  max-height: 52px;
  width: auto;
}

.idj-hc-footer__brand p,
.idj-hc-footer__col a,
.idj-hc-footer__bottom,
.idj-hc-footer__social span {
  color: rgba(255, 255, 255, 0.75);
}

.idj-hc-footer__col h3 {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.idj-hc-footer__col a:hover,
.idj-hc-footer__col a:focus,
.idj-hc-footer__social a:hover,
.idj-hc-footer__social a:focus {
  color: #ffffff;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991px) {
  .idj-support-header__inner {
    padding: 14px 18px;
  }

  .idj-support-header__nav.lt-topbar__controls {
    z-index: 1002;
    gap: 16px;
  }

  .idj-support-header__link:after {
    display: none;
  }

  .idj-support-header__call {
    width: 100%;
    justify-content: center;
  }

  .lt-hero-unit {
    padding: 54px 16px 60px;
  }

  .lt-hero-unit__title {
    font-size: 36px;
  }

  .lt-custom-block__link {
    min-height: auto;
    padding: 22px;
  }

  .lt-header,
  .lt-article,
  .lt-new-request-page #main-content,
  .lt-promoted-articles,
  #promoted-articles-accordion,
  .lt-category-tree {
    padding: 24px;
  }

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

  .idj-hc-footer__top {
    padding: 34px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .idj-hc-footer__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .idj-support-header__logo {
    max-height: 38px;
  }

  .lt-hero-unit__title {
    font-size: 31px;
  }

  .lt-search-box--hero-unit #query,
  .lt-search-box--small #query {
    height: 52px;
    font-size: 15px;
    padding-left: 42px;
    padding-right: 20px;
  }

  .lt-header,
  .lt-article,
  .lt-new-request-page #main-content,
  .lt-search-result,
  .category-page .section {
    padding: 20px;
  }

  .idj-hc-footer__actions,
  .idj-hc-footer__button,
  .idj-hc-footer__phone {
    width: 100%;
  }

  .idj-hc-footer__button,
  .idj-hc-footer__phone {
    justify-content: center;
    text-align: center;
  }
}
/* =========================================================
   IDJNOW Help Center Polish Patch 2
   Footer cleanup, bottom CTA, request form system fields
   ========================================================= */

/* Hide request form system fields after script marks them */
.idj-hidden-system-field {
  display: none !important;
}

/* Footer top should align better with the main content width */
.idj-hc-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 28px;
}

@media (min-width: 1500px) {
  .idj-hc-footer__top {
    padding-left: calc((100vw - 1440px) / 2 + 28px);
    padding-right: calc((100vw - 1440px) / 2 + 28px);
  }
}

/* Footer bottom should not hug the far edges of the viewport */
.idj-hc-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.idj-hc-footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.idj-hc-footer__social span {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idj-hc-footer__social a {
  color: rgba(255, 255, 255, 0.72);
}

.idj-hc-footer__social a:hover,
.idj-hc-footer__social a:focus {
  color: #ffffff;
}

.idj-hc-footer__bottom small {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* The Zendesk/theme scroll-to-top button is crowding the footer and chat bubble */
.lt-scroll-to-top {
  display: none !important;
}

/* Bottom homepage CTA: make it feel intentional instead of floating text */
.lt-footer-submit-ticket {
  margin-top: 20px;
  margin-bottom: 60px;
}

.lt-footer-submit-ticket .lt-container-inner {
  max-width: 1180px;
}

.lt-footer-submit-ticket section {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: var(--idj-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
}

.lt-footer-submit-ticket__title {
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.lt-footer-submit-ticket__subtitle {
  margin-top: 6px;
  color: var(--idj-muted);
  font-weight: 500;
}

.lt-footer-submit-ticket__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 13px 22px;
  background: var(--idj-red);
  border-color: var(--idj-red);
  color: #ffffff !important;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.lt-footer-submit-ticket__btn:hover,
.lt-footer-submit-ticket__btn:focus {
  background: #000000;
  border-color: #000000;
  color: #ffffff !important;
}

/* Contact boxes, if enabled */
#contact-boxes h2 {
  margin-bottom: 24px;
  color: var(--idj-ink);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
}

.lt-contact-box {
  min-height: 165px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: var(--idj-radius);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

a.lt-contact-box:hover,
a.lt-contact-box:focus {
  border-color: rgba(183, 31, 54, 0.45);
  box-shadow: var(--idj-shadow);
  transform: translateY(-3px);
}

.lt-contact-box__title {
  color: var(--idj-ink);
  font-weight: 900;
}

.lt-contact-box__text {
  color: var(--idj-muted);
}

/* Make request form feel a little tighter once hidden PDP fields are removed */
.lt-new-request-form .form-field {
  margin-bottom: 18px;
}

.lt-new-request-form .upload-dropzone {
  border-radius: 10px;
  border-color: var(--idj-border);
}

.lt-new-request-form .upload-dropzone a {
  color: var(--idj-red);
  font-weight: 800;
}

/* Slightly improve article action buttons */
.lt-article-subscribe .lt-btn,
.lt-article-subscribe .article-subscribe,
.lt-article-subscribe button {
  min-width: 38px;
  min-height: 38px;
}

/* Mobile footer cleanup */
@media (max-width: 767px) {
  .idj-hc-footer__top {
    align-items: flex-start;
  }

  .idj-hc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .idj-hc-footer__bottom small {
    white-space: normal;
  }

  .lt-footer-submit-ticket section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .lt-footer-submit-ticket__btn {
    width: 100%;
  }
}
/* =========================================================
   IDJNOW Help Center Polish Patch 3
   Streamlined contact flow + IDJNOW color correction
   Paste at the very bottom of style.css
   ========================================================= */

:root {
  --idj-red: #b71f36;
  --idj-red-dark: #8f1829;
  --idj-black: #1f1f1f;
  --idj-black-soft: #292929;
  --idj-white: #ffffff;
  --idj-page: #f4f5f7;
  --idj-card: #ffffff;
  --idj-border: #e0e3e7;
  --idj-text: #111827;
  --idj-muted: #667085;
  --idj-shadow-soft: 0 10px 28px rgba(17, 24, 39, 0.07);
  --idj-shadow-card: 0 16px 40px rgba(17, 24, 39, 0.09);
  --idj-radius: 14px;
}

/* Kill the teal/blue from prior pass */
.idj-support-header__call,
.idj-hc-footer__phone {
  display: none !important;
}

/* Global page tone */
body {
  background: var(--idj-page);
  color: var(--idj-text);
}

/* =========================================================
   Header: cleaner, less contact-heavy
   ========================================================= */

.idj-support-header {
  background: var(--idj-white);
  border-bottom: 1px solid var(--idj-border);
  box-shadow: 0 3px 14px rgba(17, 24, 39, 0.06);
}

.idj-support-header__inner {
  max-width: 1440px;
  min-height: 74px;
  padding: 14px 32px;
}

.idj-support-header__logo {
  max-height: 44px;
}

.idj-support-header__label {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #d5d8dd;
  color: var(--idj-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idj-support-header__nav {
  align-items: center;
  gap: 18px;
}

.idj-support-header__link {
  color: var(--idj-text) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.idj-support-header__link:hover,
.idj-support-header__link:focus {
  color: var(--idj-red) !important;
}

.idj-support-header__request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  background: var(--idj-red);
  border: 1px solid var(--idj-red);
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(183, 31, 54, 0.18);
}

.idj-support-header__request:hover,
.idj-support-header__request:focus {
  background: var(--idj-black);
  border-color: var(--idj-black);
  color: #ffffff !important;
}

/* Make Categories dropdown feel like a normal nav item, not another CTA */
.idj-support-header .lt-btn--topbar,
.idj-support-header .lt-dropdown-toggle {
  color: var(--idj-text) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.idj-support-header .lt-dropdown-toggle:hover,
.idj-support-header .lt-dropdown-toggle:focus {
  color: var(--idj-red) !important;
}

/* =========================================================
   Hero/search: no blue, more IDJNOW
   ========================================================= */

.lt-hero-unit {
  padding: 78px 20px 82px;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #242424 52%, #3a1018 100%) !important;
}

.lt-hero-unit__bg {
  filter: grayscale(1) contrast(1.08) brightness(0.7);
  opacity: 0.34;
}

.lt-hero-unit:after {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.88), rgba(31, 31, 31, 0.68) 58%, rgba(58, 16, 24, 0.82)) !important;
}

.lt-hero-unit__title {
  color: #ffffff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.lt-search-box--hero-unit {
  max-width: 850px;
}

.lt-search-box--hero-unit form {
  display: flex;
  gap: 14px;
}

.lt-search-box--hero-unit #query {
  height: 62px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: var(--idj-text);
  font-size: 17px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.lt-search-box--hero-unit #query:focus {
  border-color: var(--idj-red);
  box-shadow:
    0 0 0 4px rgba(183, 31, 54, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.lt-search-box--hero-unit input[type="submit"] {
  height: 62px;
  background: var(--idj-red);
  border: 1px solid var(--idj-red);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(183, 31, 54, 0.24);
}

.lt-search-box--hero-unit input[type="submit"]:hover,
.lt-search-box--hero-unit input[type="submit"]:focus {
  background: #000000;
  border-color: #000000;
}

/* Inner page search strip */
.lt-search-box--small {
  background:
    linear-gradient(135deg, #1f1f1f 0%, #242424 58%, #3a1018 100%) !important;
}

.lt-search-box--small #query {
  background: #ffffff;
  border-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   Homepage: make self-help the main path
   ========================================================= */

.lt-custom-blocks {
  margin-top: 6px;
}

.lt-custom-block__link {
  min-height: 188px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: 16px;
  box-shadow: var(--idj-shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.lt-custom-block__link:hover,
.lt-custom-block__link:focus {
  border-color: rgba(183, 31, 54, 0.5);
  box-shadow: var(--idj-shadow-card);
  transform: translateY(-3px);
}

.lt-custom-block__icon {
  color: var(--idj-red);
}

.lt-custom-block__title {
  color: var(--idj-text);
  font-weight: 900;
}

.lt-custom-block__text {
  color: var(--idj-muted);
}

/* Common Questions should feel useful, not empty/plain */
.lt-promoted-articles,
#promoted-articles-accordion {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: 18px;
  box-shadow: var(--idj-shadow-card);
}

.lt-promoted-articles h2,
#promoted-articles-accordion h2 {
  color: var(--idj-text);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.lt-promoted-articles-item {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
}

.lt-promoted-articles-item__title {
  color: var(--idj-text);
  font-weight: 900;
}

.lt-promoted-articles-item__title:hover,
.lt-promoted-articles-item__title:focus {
  color: var(--idj-red);
}

/* Contact boxes should not compete with search/request/widget */
#contact-boxes {
  display: none !important;
}

/* Bottom CTA: one path only */
.lt-footer-submit-ticket {
  margin: 60px 0 72px;
  background: transparent !important;
  text-align: left;
}

.lt-footer-submit-ticket .lt-container-inner {
  max-width: 1180px;
}

.lt-footer-submit-ticket section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px !important;
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-left: 5px solid var(--idj-red);
  border-radius: 18px;
  box-shadow: var(--idj-shadow-card);
}

.lt-footer-submit-ticket__title {
  color: var(--idj-text) !important;
  font-size: clamp(26px, 2.2vw, 36px) !important;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lt-footer-submit-ticket__subtitle {
  margin: 8px 0 0 !important;
  color: var(--idj-muted) !important;
  font-size: 17px !important;
}

.lt-footer-submit-ticket__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  padding: 14px 24px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px;
  color: #ffffff !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lt-footer-submit-ticket__btn:hover,
.lt-footer-submit-ticket__btn:focus {
  background: #000000 !important;
  border-color: #000000 !important;
}

/* =========================================================
   Inner pages: richer without overdoing it
   ========================================================= */

.lt-header,
.lt-article,
.lt-new-request-page #main-content,
.lt-search-result,
.category-page .section,
.lt-section-articles,
.lt-article-box,
.lt-search-filter {
  background: #ffffff;
  border: 1px solid var(--idj-border);
  border-radius: 16px;
  box-shadow: var(--idj-shadow-soft);
}

.lt-header {
  padding: 32px 34px;
}

.lt-header h1,
.lt-header .h1,
.lt-category-tree-item__title,
.lt-article__title,
.lt-new-request-title {
  color: var(--idj-text);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lt-header__desc,
.lt-search-result__text,
.lt-entry-info,
.lt-meta {
  color: var(--idj-muted);
}

.category-page .section {
  padding: 28px;
  min-height: 100%;
}

.lt-section-link,
.lt-article-list-item__link,
.lt-search-result__title a {
  color: var(--idj-text);
  font-weight: 900;
}

.lt-section-link:hover,
.lt-section-link:focus,
.lt-article-list-item__link:hover,
.lt-article-list-item__link:focus,
.lt-search-result__title a:hover,
.lt-search-result__title a:focus {
  color: var(--idj-red);
}

.lt-article-list-item {
  border-bottom: 1px solid var(--idj-border);
}

.lt-article-list-item:last-child {
  border-bottom: 0;
}

.lt-article {
  padding: 38px;
}

.lt-article__body {
  color: #23272f;
  font-size: 17px;
  line-height: 1.75;
}

.lt-article__body h2,
.lt-article__body h3,
.lt-article__body h4 {
  color: var(--idj-text);
  font-weight: 900;
}

.lt-article__body a {
  color: var(--idj-red);
  font-weight: 800;
}

/* Search result filters */
.lt-search-filter__item.is-active .lt-search-filter__link,
.lt-search-filter__link:hover,
.lt-search-filter__link:focus {
  background: rgba(183, 31, 54, 0.09);
  color: var(--idj-red);
}

/* Buttons */
.lt-btn--primary,
input[type="submit"] {
  background: var(--idj-red) !important;
  border-color: var(--idj-red) !important;
  color: #ffffff !important;
  font-weight: 900;
}

.lt-btn--primary:hover,
.lt-btn--primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.lt-btn--default {
  background: #ffffff;
  border-color: var(--idj-border);
  color: var(--idj-text);
  font-weight: 900;
}

.lt-btn--default:hover,
.lt-btn--default:focus {
  border-color: var(--idj-red);
  color: var(--idj-red);
}

/* =========================================================
   Footer: one support CTA, no contact confusion
   ========================================================= */

.idj-hc-footer {
  background: #1f1f1f;
  border-top: 5px solid var(--idj-red);
}

.idj-hc-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 32px;
  background: #f2f3f5;
  border-bottom: 1px solid #dedede;
}

@media (min-width: 1500px) {
  .idj-hc-footer__top {
    padding-left: calc((100vw - 1440px) / 2 + 32px);
    padding-right: calc((100vw - 1440px) / 2 + 32px);
  }
}

.idj-hc-footer__eyebrow {
  color: var(--idj-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idj-hc-footer__card h2 {
  margin-top: 6px;
  color: var(--idj-text);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.idj-hc-footer__card p {
  max-width: 720px;
  color: var(--idj-muted);
}

.idj-hc-footer__actions {
  display: flex;
  justify-content: flex-end;
}

.idj-hc-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idj-hc-footer__button--primary {
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  color: #ffffff !important;
}

.idj-hc-footer__button--primary:hover,
.idj-hc-footer__button--primary:focus {
  background: #000000 !important;
  border-color: #000000 !important;
}

.idj-hc-footer__main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px 32px;
}

.idj-hc-footer__logo {
  max-height: 52px;
}

.idj-hc-footer__brand p {
  color: rgba(255, 255, 255, 0.72);
}

.idj-hc-footer__col h3 {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idj-hc-footer__col a {
  color: rgba(255, 255, 255, 0.72);
}

.idj-hc-footer__col a:hover,
.idj-hc-footer__col a:focus {
  color: #ffffff;
}

.idj-hc-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-scroll-to-top {
  display: none !important;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991px) {
  .idj-support-header__inner {
    min-height: 66px;
    padding: 12px 18px;
  }

  .idj-support-header__nav.lt-topbar__controls {
    z-index: 1002;
  }

  .idj-support-header__request {
    width: 100%;
    margin-top: 8px;
  }

  .lt-hero-unit {
    padding: 58px 16px 64px;
  }

  .lt-search-box--hero-unit form {
    display: block;
  }

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

  .lt-footer-submit-ticket section,
  .idj-hc-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .lt-footer-submit-ticket__btn,
  .idj-hc-footer__button {
    width: 100%;
  }

  .lt-article {
    padding: 26px;
  }
}

@media (max-width: 575px) {
  .idj-support-header__logo {
    max-height: 38px;
  }

  .idj-support-header__label {
    margin-left: 10px;
    padding-left: 10px;
    font-size: 10px;
  }

  .lt-hero-unit__title {
    font-size: 32px;
  }

  .lt-footer-submit-ticket section,
  .lt-promoted-articles,
  #promoted-articles-accordion,
  .lt-header,
  .lt-article,
  .lt-new-request-page #main-content,
  .lt-search-result,
  .category-page .section {
    padding: 22px !important;
  }

  .idj-hc-footer__main {
    padding: 38px 22px;
  }

  .idj-hc-footer__bottom {
    padding: 14px 22px;
  }
}
/* =========================================================
   IDJNOW Help Center Final Cleanup Pass
   Clean self-help flow + messaging CTA + footer reset
   Paste at the very bottom of style.css
   ========================================================= */

:root {
  --idj-red: #b71f36;
  --idj-red-dark: #94192c;
  --idj-black: #1f1f1f;
  --idj-black-2: #171717;
  --idj-page: #f4f5f7;
  --idj-card: #ffffff;
  --idj-text: #111827;
  --idj-muted: #667085;
  --idj-border: #e1e5ea;
  --idj-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  --idj-radius: 16px;
}

body {
  background: var(--idj-page) !important;
}

/* =========================================================
   Header
   ========================================================= */

.idj-support-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--idj-border) !important;
  box-shadow: 0 3px 14px rgba(17, 24, 39, 0.06) !important;
}

.idj-support-header__inner {
  max-width: 1440px !important;
  min-height: 72px;
  padding: 12px 32px !important;
}

.idj-support-header__logo {
  max-height: 42px !important;
}

.idj-support-header__label {
  color: var(--idj-text) !important;
  border-left: 1px solid #d5d8dd !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.idj-support-header__nav {
  align-items: center !important;
  gap: 18px !important;
}

.idj-support-header__link {
  color: var(--idj-text) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.idj-support-header__link:hover,
.idj-support-header__link:focus {
  color: var(--idj-red) !important;
}

.idj-support-header__request,
.idj-support-header__call {
  display: none !important;
}

.idj-support-header__help {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  background: var(--idj-red);
  border: 1px solid var(--idj-red);
  border-radius: 999px;
  color: #ffffff !important;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(183, 31, 54, 0.18);
}

.idj-support-header__help:hover,
.idj-support-header__help:focus {
  background: var(--idj-black);
  border-color: var(--idj-black);
  color: #ffffff !important;
}

/* =========================================================
   Hero/search cleanup
   ========================================================= */

.lt-hero-unit.lt-mt-n8,
.lt-search-box--small.lt-mt-n8 {
  margin-top: 0 !important;
}

.lt-hero-unit {
  margin-bottom: 0 !important;
  padding: 74px 20px 78px !important;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #242424 56%, #3b1019 100%) !important;
}

.lt-hero-unit__bg {
  display: none !important;
}

.lt-hero-unit:after {
  display: none !important;
}

.lt-hero-unit__title {
  color: #ffffff !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  text-shadow: none !important;
}

.lt-search-box--hero-unit {
  max-width: 850px !important;
}

.lt-search-box--hero-unit form {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

.lt-search-box--hero-unit #query,
.lt-search-box--small #query {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 999px !important;
  color: var(--idj-text) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18) !important;
}

.lt-search-box--hero-unit #query {
  height: 62px !important;
  font-size: 17px !important;
}

.lt-search-box--hero-unit input[type="submit"] {
  height: 62px !important;
  padding: 0 26px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.lt-search-box--hero-unit input[type="submit"]:hover,
.lt-search-box--hero-unit input[type="submit"]:focus {
  background: #000000 !important;
  border-color: #000000 !important;
}

/* Inner-page search strip */
.lt-search-box--small {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #242424 56%, #3b1019 100%) !important;
}

.lt-search-box--small .lt-container-inner {
  max-width: 920px !important;
}

.lt-search-box--small #query {
  height: 54px !important;
}

/* =========================================================
   Homepage spacing and self-help cards
   ========================================================= */

#main-content {
  background: var(--idj-page);
}

.lt-custom-blocks {
  margin-top: 36px !important;
  margin-bottom: 38px !important;
  position: relative;
  z-index: 1;
}

.lt-custom-blocks .lt-container-inner,
.lt-promoted-articles,
#promoted-articles-accordion,
.lt-footer-submit-ticket .lt-container-inner {
  max-width: 1180px !important;
}

.lt-custom-block__link {
  min-height: 176px !important;
  padding: 28px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-custom-block__link:hover,
.lt-custom-block__link:focus {
  border-color: rgba(183, 31, 54, 0.45) !important;
  color: var(--idj-text) !important;
  transform: translateY(-2px);
}

.lt-custom-block__icon {
  color: var(--idj-red) !important;
}

.lt-custom-block__title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-custom-block__text {
  color: var(--idj-muted) !important;
}

/* Hide confusing contact-box section */
#contact-boxes {
  display: none !important;
}

/* Common Questions */
.lt-promoted-articles,
#promoted-articles-accordion {
  margin-top: 34px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 34px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-promoted-articles h2,
#promoted-articles-accordion h2 {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
}

.lt-promoted-articles-item {
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: 12px !important;
}

.lt-promoted-articles-item__title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-promoted-articles-item__title:hover,
.lt-promoted-articles-item__title:focus {
  color: var(--idj-red) !important;
}

/* Bottom CTA: only formal support path */
.lt-footer-submit-ticket {
  margin: 58px 0 68px !important;
  background: transparent !important;
  text-align: left !important;
}

.lt-footer-submit-ticket section {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding: 32px 36px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-left: 5px solid var(--idj-red) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-footer-submit-ticket__title {
  color: var(--idj-text) !important;
  font-size: clamp(25px, 2vw, 32px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
}

.lt-footer-submit-ticket__subtitle {
  margin: 8px 0 0 !important;
  color: var(--idj-muted) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.lt-footer-submit-ticket__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
}

.lt-footer-submit-ticket__btn:hover,
.lt-footer-submit-ticket__btn:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* =========================================================
   Category / article / search cards
   ========================================================= */

.lt-header,
.lt-article,
.lt-new-request-page #main-content,
.lt-search-result,
.category-page .section,
.lt-section-articles,
.lt-article-box,
.lt-search-filter {
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-header {
  padding: 30px 32px !important;
}

.lt-header h1,
.lt-header .h1,
.lt-category-tree-item__title,
.lt-article__title,
.lt-new-request-title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
}

.category-page .section {
  padding: 28px !important;
}

.lt-section-link,
.lt-article-list-item__link,
.lt-search-result__title a {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-section-link:hover,
.lt-section-link:focus,
.lt-article-list-item__link:hover,
.lt-article-list-item__link:focus,
.lt-search-result__title a:hover,
.lt-search-result__title a:focus {
  color: var(--idj-red) !important;
}

.lt-article {
  padding: 38px !important;
}

.lt-article__body {
  color: #23272f !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.lt-article__body a {
  color: var(--idj-red) !important;
  font-weight: 800 !important;
}

/* =========================================================
   Footer reset
   ========================================================= */

.idj-hc-footer {
  margin-top: 0 !important;
  background: var(--idj-black) !important;
  border-top: 5px solid var(--idj-red) !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.idj-hc-footer__top {
  display: none !important;
}

.idj-hc-footer__main {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 46px 32px !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 320px) 1fr !important;
  gap: 58px !important;
  background: transparent !important;
  opacity: 1 !important;
}

.idj-hc-footer__logo {
  display: block !important;
  max-width: 150px !important;
  height: auto !important;
  margin-bottom: 18px !important;
  padding: 12px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
}

.idj-hc-footer__brand p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.idj-hc-footer__nav {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) !important;
  gap: 30px !important;
}

.idj-hc-footer__col h3 {
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.idj-hc-footer__col ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.idj-hc-footer__col li + li {
  margin-top: 10px !important;
}

.idj-hc-footer__col a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.idj-hc-footer__col a:hover,
.idj-hc-footer__col a:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.idj-hc-footer__bottom {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 16px 32px !important;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.idj-hc-footer__social {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.idj-hc-footer__social span {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.idj-hc-footer__social a {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

.idj-hc-footer__social a:hover,
.idj-hc-footer__social a:focus {
  color: #ffffff !important;
}

.idj-hc-footer__bottom small {
  color: rgba(255, 255, 255, 0.5) !important;
  white-space: nowrap !important;
}

.lt-scroll-to-top {
  display: none !important;
}

/* Hidden Zendesk request system fields */
.idj-hidden-system-field {
  display: none !important;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991px) {
  .idj-support-header__inner {
    min-height: 66px !important;
    padding: 12px 18px !important;
  }

  .idj-support-header__nav.lt-topbar__controls {
    z-index: 1002 !important;
  }

  .idj-support-header__help {
    width: 100%;
    margin-top: 8px;
  }

  .lt-hero-unit {
    padding: 56px 16px 62px !important;
  }

  .lt-search-box--hero-unit form {
    display: block !important;
  }

  .lt-search-box--hero-unit input[type="submit"] {
    display: none !important;
  }

  .lt-custom-blocks {
    margin-top: 28px !important;
  }

  .lt-footer-submit-ticket section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .lt-footer-submit-ticket__btn {
    width: 100%;
  }

  .idj-hc-footer__main {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .idj-hc-footer__nav {
    grid-template-columns: repeat(2, minmax(130px, 1fr)) !important;
  }
}

@media (max-width: 575px) {
  .idj-support-header__label {
    display: none !important;
  }

  .lt-hero-unit__title {
    font-size: 32px !important;
  }

  .lt-custom-block__link,
  .lt-promoted-articles,
  #promoted-articles-accordion,
  .lt-footer-submit-ticket section,
  .lt-header,
  .lt-article,
  .lt-new-request-page #main-content,
  .lt-search-result,
  .category-page .section {
    padding: 22px !important;
  }

  .idj-hc-footer__main,
  .idj-hc-footer__bottom {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  .idj-hc-footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .idj-hc-footer__bottom small {
    white-space: normal !important;
  }
}
/* =========================================================
   IDJNOW Help Center Final Brand Pass
   Site-style header/footer + clean support flow
   Paste at the very bottom of style.css
   ========================================================= */

:root {
  --idj-red: #b71f36;
  --idj-red-dark: #94192c;
  --idj-black: #1f1f1f;
  --idj-black-2: #151515;
  --idj-text: #111827;
  --idj-muted: #667085;
  --idj-page: #f4f5f7;
  --idj-card: #ffffff;
  --idj-border: #e0e4ea;
  --idj-footer-border: rgba(255, 255, 255, 0.12);
  --idj-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  --idj-radius: 14px;
}

body {
  background: var(--idj-page) !important;
  color: var(--idj-text) !important;
}

/* =========================================================
   Header
   ========================================================= */

.idj-support-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05) !important;
}

.idj-support-header__inner {
  max-width: 1440px !important;
  min-height: 82px !important;
  margin: 0 auto !important;
  padding: 14px 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
}

.idj-support-header__brand {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.idj-support-header__logo-link {
  display: inline-flex !important;
  align-items: center !important;
}

.idj-support-header__logo {
  max-height: 54px !important;
  width: auto !important;
}

.idj-support-header__label {
  margin-left: 18px !important;
  padding-left: 18px !important;
  color: var(--idj-text) !important;
  border-left: 1px solid #d5d8dd !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.idj-support-header__nav {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
}

.idj-support-header__link,
.idj-support-header__signin {
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.idj-support-header__link:hover,
.idj-support-header__link:focus,
.idj-support-header__signin:hover,
.idj-support-header__signin:focus {
  color: var(--idj-red) !important;
}

.idj-support-header__help {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 20px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 18px rgba(183, 31, 54, 0.18) !important;
}

.idj-support-header__help:hover,
.idj-support-header__help:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.idj-support-header .lt-dropdown-toggle,
.idj-support-header .lt-btn--topbar {
  color: var(--idj-text) !important;
  background: transparent !important;
  border: 0 !important;
}

/* Hide old nav/contact pieces if any old template code remains cached */
.idj-support-header__call,
.idj-support-header__request,
.idj-support-header .lt-dropdown--topbar:not(.language-selector) {
  display: none !important;
}

/* =========================================================
   Hero / Search
   ========================================================= */

.lt-hero-unit.lt-mt-n8,
.lt-search-box--small.lt-mt-n8 {
  margin-top: 0 !important;
}

.lt-hero-unit {
  margin-bottom: 0 !important;
  padding: 72px 20px 76px !important;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #262626 55%, #3a1018 100%) !important;
  overflow: hidden !important;
}

.lt-hero-unit__bg,
.lt-hero-unit:after {
  display: none !important;
}

.lt-hero-unit__title {
  color: #ffffff !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  text-align: center !important;
  text-shadow: none !important;
}

.lt-search-box--hero-unit {
  max-width: 860px !important;
  margin: 0 auto !important;
}

.lt-search-box--hero-unit form {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.lt-search-box--hero-unit #query,
.lt-search-box--small #query {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 999px !important;
  color: var(--idj-text) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18) !important;
}

.lt-search-box--hero-unit #query {
  height: 62px !important;
  font-size: 17px !important;
}

.lt-search-box--hero-unit #query:focus,
.lt-search-box--small #query:focus {
  border-color: var(--idj-red) !important;
  box-shadow:
    0 0 0 4px rgba(183, 31, 54, 0.15),
    0 16px 38px rgba(0, 0, 0, 0.18) !important;
}

.lt-search-box--hero-unit input[type="submit"] {
  height: 62px !important;
  padding: 0 28px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.lt-search-box--hero-unit input[type="submit"]:hover,
.lt-search-box--hero-unit input[type="submit"]:focus {
  background: #000000 !important;
  border-color: #000000 !important;
}

.lt-search-box--small {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  background:
    linear-gradient(135deg, #1f1f1f 0%, #262626 55%, #3a1018 100%) !important;
}

.lt-search-box--small .lt-container-inner {
  max-width: 920px !important;
}

.lt-search-box--small #query {
  height: 54px !important;
  font-size: 16px !important;
}

/* =========================================================
   Homepage layout
   ========================================================= */

#main-content {
  background: var(--idj-page) !important;
}

.lt-custom-blocks {
  margin-top: 38px !important;
  margin-bottom: 40px !important;
  position: relative !important;
  z-index: 1 !important;
}

.lt-custom-blocks .lt-container-inner,
.lt-promoted-articles,
#promoted-articles-accordion,
.lt-footer-submit-ticket .lt-container-inner {
  max-width: 1180px !important;
}

.lt-custom-block__link {
  min-height: 176px !important;
  padding: 28px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease !important;
}

.lt-custom-block__link:hover,
.lt-custom-block__link:focus {
  color: var(--idj-text) !important;
  border-color: rgba(183, 31, 54, 0.45) !important;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1) !important;
  transform: translateY(-2px) !important;
}

.lt-custom-block__icon {
  color: var(--idj-red) !important;
}

.lt-custom-block__title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-custom-block__text {
  color: var(--idj-muted) !important;
}

/* Remove confusing "Can't find what you're looking for?" contact area */
#contact-boxes {
  display: none !important;
}

/* Common Questions */
.lt-promoted-articles,
#promoted-articles-accordion {
  margin-top: 34px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 34px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-promoted-articles h2,
#promoted-articles-accordion h2 {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
}

.lt-promoted-articles-item {
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: 12px !important;
}

.lt-promoted-articles-item__title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-promoted-articles-item__title:hover,
.lt-promoted-articles-item__title:focus {
  color: var(--idj-red) !important;
}

/* Bottom request CTA */
.lt-footer-submit-ticket {
  margin: 58px 0 68px !important;
  background: transparent !important;
  text-align: left !important;
}

.lt-footer-submit-ticket section {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding: 32px 36px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-left: 5px solid var(--idj-red) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-footer-submit-ticket__title {
  color: var(--idj-text) !important;
  font-size: clamp(25px, 2vw, 32px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
}

.lt-footer-submit-ticket__subtitle {
  margin: 8px 0 0 !important;
  color: var(--idj-muted) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.lt-footer-submit-ticket__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 170px !important;
  padding: 14px 24px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.lt-footer-submit-ticket__btn:hover,
.lt-footer-submit-ticket__btn:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* =========================================================
   Inner page cards
   ========================================================= */

.lt-header,
.lt-article,
.lt-new-request-page #main-content,
.lt-search-result,
.category-page .section,
.lt-section-articles,
.lt-article-box,
.lt-search-filter {
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-header {
  padding: 30px 32px !important;
}

.lt-header h1,
.lt-header .h1,
.lt-category-tree-item__title,
.lt-article__title,
.lt-new-request-title {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
}

.lt-header__desc,
.lt-search-result__text,
.lt-entry-info,
.lt-meta {
  color: var(--idj-muted) !important;
}

.category-page .section {
  padding: 28px !important;
}

.lt-section-link,
.lt-article-list-item__link,
.lt-search-result__title a {
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-section-link:hover,
.lt-section-link:focus,
.lt-article-list-item__link:hover,
.lt-article-list-item__link:focus,
.lt-search-result__title a:hover,
.lt-search-result__title a:focus {
  color: var(--idj-red) !important;
}

.lt-article {
  padding: 38px !important;
}

.lt-article__body {
  color: #23272f !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.lt-article__body a {
  color: var(--idj-red) !important;
  font-weight: 800 !important;
}

/* Buttons */
.lt-btn--primary,
input[type="submit"] {
  background: var(--idj-red) !important;
  border-color: var(--idj-red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
}

.lt-btn--primary:hover,
.lt-btn--primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.lt-btn--default {
  background: #ffffff !important;
  border-color: var(--idj-border) !important;
  color: var(--idj-text) !important;
  font-weight: 900 !important;
}

.lt-btn--default:hover,
.lt-btn--default:focus {
  border-color: var(--idj-red) !important;
  color: var(--idj-red) !important;
}

/* Hidden Zendesk request system fields */
.idj-hidden-system-field {
  display: none !important;
}

/* =========================================================
   Trust strip
   ========================================================= */

.idj-hc-trust-strip {
  background: #f2f3f5 !important;
  border-top: 5px solid var(--idj-red) !important;
  border-bottom: 1px solid #d8dce2 !important;
}

.idj-hc-trust-strip__inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

.idj-hc-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  min-height: 96px !important;
  padding: 22px 30px !important;
  border-right: 1px solid #d8dce2 !important;
}

.idj-hc-trust-item:last-child {
  border-right: 0 !important;
}

.idj-hc-trust-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid #d8dce2 !important;
  border-radius: 50% !important;
  color: var(--idj-red) !important;
  font-weight: 900 !important;
  background: #ffffff !important;
  flex-shrink: 0 !important;
}

.idj-hc-trust-item strong {
  display: block !important;
  color: var(--idj-text) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.idj-hc-trust-item span:not(.idj-hc-trust-icon) {
  display: block !important;
  margin-top: 4px !important;
  color: var(--idj-muted) !important;
  font-size: 14px !important;
}

/* =========================================================
   Footer
   ========================================================= */

.idj-hc-footer {
  margin-top: 0 !important;
  background: var(--idj-black) !important;
  border-top: 0 !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Kill previous CTA footer strip if old CSS/template remains */
.idj-hc-footer__top {
  display: none !important;
}

.idj-hc-footer__main {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 54px 32px 48px !important;
  display: grid !important;
  grid-template-columns: minmax(240px, 340px) 1fr !important;
  gap: 70px !important;
  background: transparent !important;
  opacity: 1 !important;
}

.idj-hc-footer__brand {
  color: #ffffff !important;
}

.idj-hc-footer__logo {
  display: block !important;
  max-width: 165px !important;
  height: auto !important;
  margin-bottom: 22px !important;
  padding: 12px !important;
  background: #ffffff !important;
  border-radius: 6px !important;
}

.idj-hc-footer__dealer-line {
  position: relative !important;
  margin-bottom: 16px !important;
  padding-left: 24px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.idj-hc-footer__dealer-line:before {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 14px !important;
  height: 2px !important;
  background: var(--idj-red) !important;
  content: "" !important;
  transform: translateY(-50%) !important;
}

.idj-hc-footer__brand p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.idj-hc-footer__nav {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) !important;
  gap: 42px !important;
}

.idj-hc-footer__col h3 {
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.idj-hc-footer__col ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.idj-hc-footer__col li + li {
  margin-top: 12px !important;
}

.idj-hc-footer__col a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.idj-hc-footer__col a:hover,
.idj-hc-footer__col a:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.idj-hc-footer__bottom {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 22px 32px !important;
  background: var(--idj-black-2) !important;
  border-top: 1px solid var(--idj-footer-border) !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 20px !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.idj-hc-footer__legal-links {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
}

.idj-hc-footer__legal-links a,
.idj-hc-footer__social a {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px !important;
  text-decoration: none !important;
}

.idj-hc-footer__legal-links a:hover,
.idj-hc-footer__legal-links a:focus,
.idj-hc-footer__social a:hover,
.idj-hc-footer__social a:focus {
  color: #ffffff !important;
}

.idj-hc-footer__bottom small {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.idj-hc-footer__social {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.idj-hc-footer__social span {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.lt-scroll-to-top {
  display: none !important;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 991px) {
  .idj-support-header__inner {
    min-height: 68px !important;
    padding: 12px 18px !important;
  }

  .idj-support-header__logo {
    max-height: 42px !important;
  }

  .idj-support-header__nav.lt-topbar__controls {
    z-index: 1002 !important;
  }

  .idj-support-header__link,
  .idj-support-header__help {
    width: 100% !important;
    justify-content: center !important;
  }

  .lt-hero-unit {
    padding: 56px 16px 62px !important;
  }

  .lt-search-box--hero-unit form {
    display: block !important;
  }

  .lt-search-box--hero-unit input[type="submit"] {
    display: none !important;
  }

  .lt-custom-blocks {
    margin-top: 28px !important;
  }

  .lt-footer-submit-ticket section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .lt-footer-submit-ticket__btn {
    width: 100% !important;
  }

  .idj-hc-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .idj-hc-trust-item {
    border-bottom: 1px solid #d8dce2 !important;
  }

  .idj-hc-footer__main {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
  }

  .idj-hc-footer__nav {
    grid-template-columns: repeat(2, minmax(140px, 1fr)) !important;
  }

  .idj-hc-footer__bottom {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
  }

  .idj-hc-footer__bottom small {
    text-align: left !important;
    white-space: normal !important;
  }

  .idj-hc-footer__social {
    justify-content: flex-start !important;
  }
}

@media (max-width: 575px) {
  .idj-support-header__label {
    display: none !important;
  }

  .lt-hero-unit__title {
    font-size: 32px !important;
  }

  .lt-custom-block__link,
  .lt-promoted-articles,
  #promoted-articles-accordion,
  .lt-footer-submit-ticket section,
  .lt-header,
  .lt-article,
  .lt-new-request-page #main-content,
  .lt-search-result,
  .category-page .section {
    padding: 22px !important;
  }

  .idj-hc-trust-strip__inner {
    grid-template-columns: 1fr !important;
  }

  .idj-hc-trust-item {
    min-height: auto !important;
    padding: 20px 22px !important;
    border-right: 0 !important;
  }

  .idj-hc-footer__main,
  .idj-hc-footer__bottom {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  .idj-hc-footer__nav {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   IDJNOW Help Center Refinement Pass
   Category pages, support-flow strip, bottom CTA
   Paste at very bottom of style.css
   ========================================================= */

/* Hide old contact box area if it is enabled in theme settings */
#contact-boxes,
.lt-home-container#contact-boxes {
  display: none !important;
}

/* Category page polish */
.category-page .lt-container-inner {
  max-width: 1180px !important;
}

.category-page .lt-header {
  margin-bottom: 26px !important;
  padding: 34px 38px !important;
  border-left: 5px solid var(--idj-red) !important;
}

.category-page .lt-category-tree-item__title {
  font-size: clamp(34px, 3vw, 50px) !important;
  line-height: 1.05 !important;
}

.category-page .lt-category-tree-item__sections {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}

.category-page .lt-category-tree-item__sections:before,
.category-page .lt-category-tree-item__sections:after {
  display: none !important;
}

.category-page .section {
  margin-bottom: 0 !important;
  padding: 30px 32px !important;
  min-height: auto !important;
  border-top: 4px solid var(--idj-red) !important;
}

.category-page .section h2 {
  margin-bottom: 20px !important;
}

.category-page .lt-section-link {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--idj-text) !important;
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
}

.category-page .lt-section-link:after {
  margin-left: 10px;
  color: var(--idj-red);
  font-size: 20px;
  content: "›";
}

.category-page .lt-article-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.category-page .lt-article-list-item {
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--idj-border) !important;
}

.category-page .lt-article-list-item:last-child {
  border-bottom: 0 !important;
}

.category-page .lt-article-list-item__link {
  display: block !important;
  color: var(--idj-text) !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.category-page .lt-article-list-item__link:hover,
.category-page .lt-article-list-item__link:focus {
  color: var(--idj-red) !important;
}

.category-page .see-all-articles {
  margin-top: 6px !important;
  padding: 11px 18px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Bottom CTA should look intentional and always show a button */
.lt-footer-submit-ticket {
  margin: 58px 0 70px !important;
}

.lt-footer-submit-ticket .lt-container-inner {
  max-width: 1180px !important;
}

.lt-footer-submit-ticket section {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
  padding: 34px 38px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border) !important;
  border-left: 5px solid var(--idj-red) !important;
  border-radius: var(--idj-radius) !important;
  box-shadow: var(--idj-shadow) !important;
}

.lt-footer-submit-ticket__eyebrow {
  margin-bottom: 8px !important;
  color: var(--idj-red) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.lt-footer-submit-ticket__title {
  margin: 0 !important;
  color: var(--idj-text) !important;
  font-size: clamp(28px, 2.4vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
}

.lt-footer-submit-ticket__subtitle {
  max-width: 760px !important;
  margin: 10px 0 0 !important;
  color: var(--idj-muted) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.lt-footer-submit-ticket__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  padding: 14px 24px !important;
  background: var(--idj-red) !important;
  border: 1px solid var(--idj-red) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.lt-footer-submit-ticket__btn:hover,
.lt-footer-submit-ticket__btn:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

/* Support-flow strip instead of ecommerce trust strip */
.idj-hc-trust-strip {
  background: #f2f3f5 !important;
  border-top: 5px solid var(--idj-red) !important;
  border-bottom: 1px solid #d8dce2 !important;
}

.idj-hc-trust-strip__inner {
  max-width: 1440px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

.idj-hc-trust-item {
  min-height: 104px !important;
  padding: 24px 30px !important;
}

.idj-hc-trust-icon {
  font-size: 14px !important;
}

.idj-hc-trust-item strong {
  font-size: 14px !important;
}

.idj-hc-trust-item span:not(.idj-hc-trust-icon) {
  font-size: 14px !important;
  line-height: 1.35 !important;
}

/* Common Questions: make one or two articles not look awkward */
.lt-promoted-articles,
#promoted-articles-accordion {
  max-width: 1180px !important;
}

.lt-promoted-articles ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 18px !important;
}

.lt-promoted-articles-item {
  width: 100% !important;
  padding: 22px 24px !important;
}

/* Mobile */
@media (max-width: 991px) {
  .category-page .lt-category-tree-item__sections {
    grid-template-columns: 1fr !important;
  }

  .lt-footer-submit-ticket section {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .lt-footer-submit-ticket__btn {
    width: 100% !important;
  }

  .idj-hc-trust-strip__inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .category-page .lt-header,
  .category-page .section,
  .lt-footer-submit-ticket section {
    padding: 24px !important;
  }

  .idj-hc-trust-strip__inner {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   IDJNOW Help Center Patch
   Fix category page card widths + clickable support strip
   Paste at very bottom of style.css
   ========================================================= */

/* Fix category page cards being squeezed by old Zendesk row/column CSS */
.category-page .lt-category-tree-item__sections {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
  margin: 0 !important;
}

.category-page .lt-category-tree-item__sections:before,
.category-page .lt-category-tree-item__sections:after {
  display: none !important;
  content: none !important;
}

.category-page .lt-category-tree-item__sections > .section {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: initial !important;
  flex-basis: auto !important;
  margin: 0 !important;
}

.category-page .section {
  min-height: 100% !important;
  padding: 30px 32px !important;
}

.category-page .section h2 {
  margin-bottom: 18px !important;
}

.category-page .lt-section-link {
  font-size: 28px !important;
  line-height: 1.12 !important;
}

.category-page .lt-article-list-item__link {
  font-size: 16px !important;
  line-height: 1.35 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

/* Make the support strip items clickable but still look like the site strip */
.idj-hc-trust-strip a.idj-hc-trust-item {
  color: inherit !important;
  text-decoration: none !important;
}

.idj-hc-trust-strip a.idj-hc-trust-item:hover,
.idj-hc-trust-strip a.idj-hc-trust-item:focus {
  background: #ffffff !important;
}

.idj-hc-trust-strip a.idj-hc-trust-item:hover strong,
.idj-hc-trust-strip a.idj-hc-trust-item:focus strong {
  color: var(--idj-red) !important;
}

.idj-hc-trust-strip a.idj-hc-trust-item:hover .idj-hc-trust-icon,
.idj-hc-trust-strip a.idj-hc-trust-item:focus .idj-hc-trust-icon {
  background: var(--idj-red) !important;
  border-color: var(--idj-red) !important;
  color: #ffffff !important;
}

/* Keep category pages from feeling too narrow */
.category-page .lt-container-inner {
  max-width: 1180px !important;
}

/* Mobile category cleanup */
@media (max-width: 991px) {
  .category-page .lt-category-tree-item__sections {
    grid-template-columns: 1fr !important;
  }

  .category-page .lt-section-link {
    font-size: 24px !important;
  }
}
/* =========================================================
   IDJNOW Help Center Patch
   Tone down bottom support request CTA
   Paste at very bottom of style.css
   ========================================================= */

.lt-footer-submit-ticket {
  margin: 42px 0 52px !important;
}

.lt-footer-submit-ticket .lt-container-inner {
  max-width: 980px !important;
}

.lt-footer-submit-ticket section {
  padding: 24px 28px !important;
  gap: 22px !important;
  border-left-width: 4px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06) !important;
}

.lt-footer-submit-ticket__eyebrow {
  margin-bottom: 5px !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
}

.lt-footer-submit-ticket__title {
  font-size: 24px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
}

.lt-footer-submit-ticket__subtitle {
  max-width: 620px !important;
  margin-top: 6px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.lt-footer-submit-ticket__btn {
  min-width: 150px !important;
  padding: 11px 18px !important;
  font-size: 11px !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .lt-footer-submit-ticket {
    margin: 34px 0 44px !important;
  }

  .lt-footer-submit-ticket section {
    padding: 22px !important;
  }

  .lt-footer-submit-ticket__title {
    font-size: 22px !important;
  }

  .lt-footer-submit-ticket__subtitle {
    font-size: 14px !important;
  }
}
/* =========================================================
   IDJNOW Help Center Final Patch
   Clean smaller support fallback CTA
   ========================================================= */

.idj-hc-fallback-wrap {
  max-width: 980px !important;
  margin: 36px auto 50px !important;
  padding: 0 32px !important;
}

.idj-hc-fallback {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 20px 24px !important;
  background: #ffffff !important;
  border: 1px solid var(--idj-border, #e0e4ea) !important;
  border-left: 4px solid var(--idj-red, #b71f36) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06) !important;
}

.idj-hc-fallback__content {
  min-width: 0 !important;
}

.idj-hc-fallback__eyebrow {
  margin: 0 0 4px !important;
  color: var(--idj-red, #b71f36) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.idj-hc-fallback__title {
  margin: 0 !important;
  color: var(--idj-text, #111827) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
}

.idj-hc-fallback__text {
  max-width: 560px !important;
  margin: 5px 0 0 !important;
  color: var(--idj-muted, #667085) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.idj-hc-fallback__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 145px !important;
  padding: 11px 18px !important;
  background: var(--idj-red, #b71f36) !important;
  border: 1px solid var(--idj-red, #b71f36) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.idj-hc-fallback__btn:hover,
.idj-hc-fallback__btn:focus {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .idj-hc-fallback-wrap {
    margin: 30px auto 42px !important;
    padding: 0 22px !important;
  }

  .idj-hc-fallback {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
  }

  .idj-hc-fallback__title {
    font-size: 21px !important;
  }

  .idj-hc-fallback__btn {
    width: 100% !important;
  }
}
/* =========================================================
   IDJNOW Help Center Patch
   Widen and slightly enlarge support fallback CTA
   Paste at very bottom of style.css
   ========================================================= */

.idj-hc-fallback-wrap {
  max-width: 1180px !important;
  margin: 42px auto 56px !important;
  padding: 0 32px !important;
}

.idj-hc-fallback {
  padding: 24px 30px !important;
  gap: 28px !important;
  border-left-width: 4px !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07) !important;
}

.idj-hc-fallback__eyebrow {
  margin-bottom: 5px !important;
  font-size: 11px !important;
}

.idj-hc-fallback__title {
  font-size: 25px !important;
  line-height: 1.15 !important;
}

.idj-hc-fallback__text {
  max-width: 680px !important;
  margin-top: 6px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.idj-hc-fallback__btn {
  min-width: 160px !important;
  padding: 12px 20px !important;
  font-size: 12px !important;
}

@media (max-width: 767px) {
  .idj-hc-fallback-wrap {
    margin: 34px auto 46px !important;
    padding: 0 22px !important;
  }

  .idj-hc-fallback {
    padding: 22px !important;
  }

  .idj-hc-fallback__title {
    font-size: 23px !important;
  }

  .idj-hc-fallback__text {
    font-size: 14px !important;
  }
}
/* =========================================================
   IDJNOW Help Center Patch
   Match fallback CTA width to main content cards
   Paste at very bottom of style.css
   ========================================================= */

.idj-hc-fallback-wrap {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 42px auto 56px !important;
  padding: 0 !important;
}

.idj-hc-fallback {
  width: 100% !important;
  padding: 24px 30px !important;
}

.idj-hc-fallback__title {
  font-size: 25px !important;
}

.idj-hc-fallback__text {
  font-size: 15px !important;
}

@media (max-width: 991px) {
  .idj-hc-fallback-wrap {
    padding: 0 24px !important;
  }
}

@media (max-width: 575px) {
  .idj-hc-fallback-wrap {
    padding: 0 16px !important;
  }
}