@import "https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.css";
/*Mixins and variables*/
:root {
  --gray-dark: #37474f;
  --gray-medium: #445a64;
  --gray: #90a4ae;
  --gray-light: #b0bec4;
  --gray-lighter: #cfd8dc;
  --gray-lightest: #eceff1;
  --blue-light: #fbfcfd;
  --light: #ffffff;
  --meta-text-color: #979797;

  --brand-deep-accent: #ffb74d;
  --brand-brown: #8d6e63;
  --hr-border: #f1f1f1;

  --font-size-small: calc(16px * 0.75);
  --font-size-medium: calc(16px * 0.875);
  --font-size-h1: calc(16px * 2.375);
  --font-size-h2: calc(16px * 2);
  --font-size-h3: calc(16px * 1.625);
  --font-size-h4: calc(16px * 1.375);
  --font-size-h5: calc(16px * 1.25);
  --font-size-h6: calc(16px * 1.125);
  --line-height-computed: 16px * 1.5;
  --padding-base-horizontal: 12px;
  --input-border-color: #dee1e3;
  --input-focus-border-color: #9ed5e7;
  --spacer: 8px;
  --strong-font-weight: 600;
  --sidebar-width: 300px;

  /* Formatting Content */

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

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

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

  --body-color-bg: #fff;
  --color-text-primary: #000;
  --color-brand-primary: rgba(9, 80, 247, 1);
  --color-bg-secondary: #F2F2F2;
  --color-brand-primary-inverse: #fff;

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

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

  --info-callout-icon: url(/hc/theming_assets/01KK36T0QPVGBGE4V47P2FGTRD);
  --warning-callout-icon: url(/hc/theming_assets/01KK36T1C8GWV6PRVRT8S9PHEX);
  --danger-callout-icon: url(/hc/theming_assets/01KK36T106FA1HJ4Q17CHZ6YV5);
  --success-callout-icon: url(/hc/theming_assets/01KK36T168RKFFBNDKGACSZ2S3);
  --copy-code-icon: url(/hc/theming_assets/01KK36T164KKXJKRE5NA3QPGFH);
  --anchor-list-icon: url(/hc/theming_assets/01KK36T165VTNA8E0957H8FD7N);
  --anchor-file-icon: url(/hc/theming_assets/01KK36T1CA5N772NPPECQYJ4WZ);
  --blockqoute-icon: url(/hc/theming_assets/01KK36T19NS36ESAJJ0RW1TZPB);

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

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

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

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

  --color-border: #f1f1f1;

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

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

html,
body {
  height: 100%;
}
/*Body reset*/
body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  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;
}

input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  width: auto;
}

[dir="ltr"] input[type="radio"],
[dir="ltr"] input[type="checkbox"] {
  margin-right: calc(var(--spacer) * 2);
}

[dir="rtl"] input[type="radio"],
[dir="rtl"] input[type="checkbox"] {
  margin-left: calc(var(--spacer) * 2);
}

textarea {
  height: 120px;
  padding: calc(var(--spacer) * 1.5);
}

select {
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
}

.nesty-input {
  height: 36px;
  line-height: 36px;
  border: 1px solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

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

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

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

ul[data-hc-pills-container] {
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: 10px;
}
/*inks*/
a {
  color: rgba(9, 80, 247, 1);
  text-decoration: none;
}

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

a.disabled {
  color: var(--gray-light);
  cursor: default;
}

a,
[type="submit"] {
  transition: all 0.2s ease-in;
}

figure {
  margin: 0;
}

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

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: calc(var(--spacer) * 1.5) 0;
  border: 0;
  border-top: 1px solid var(--gray-light);
}
/*Remove the gap between audio, canvas, iframes,*/
/*images, videos and the bottom of their containers: */
/*https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  display: block;
  margin-bottom: calc(var(--spacer) * 3);
}
/*Headings*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
ul,
ol {
  margin: 0 0 calc(var(--spacer) * 1.5);
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  margin: 0 0 calc(var(--spacer) * 2);
}

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

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}
/*Abbreviations and acronyms*/
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: var(--border-width) dotted var(--gray);
}

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

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

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

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

@media (max-width: 991px) {
  html.is-overflow {
    overflow: hidden;
  }
}

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

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

.title-block {
  margin-bottom: calc(var(--spacer) * 4);
}

.title-block p {
  color: var(--gray);
}

.lt-homepage-image {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
}

.lt-homepage-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 767px) {
  .video-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 991px) {
  .video-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lt-improved-ticket-form-selection {
  width: 100%;
}

.lt-form-blocks {
  display: grid;
  width: 100%;
  margin-top: 2rem;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 767px) {
  .lt-form-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 991px) {
  .lt-form-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lt-form-block {
  height: 100%;
  text-align: center;
  display: flex;
  padding: 1.5rem;
  color: #fff;
  flex-direction: column;
  background-color: #0950f7;
  border-radius: 8px;

  transition: transform 250ms ease-out;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.lt-form-block h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.lt-form-icon {
  height: 64px;
  
  img {
    height: 100%;
    width: 100%;
  }
}

.lt-form-block:hover {
  color: #fff;
}
/*Components*/
.container {
  padding-right: calc(var(--spacer) * 4);
  padding-left: calc(var(--spacer) * 4);
}

.container-inner {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  position: relative;
  margin: auto;
}

@media (min-width: 992px) {
  .layout__wrapper {
    display: grid;
    grid-gap: calc(var(--spacer) * 4);
    grid-template-columns: var(--sidebar-width) 1fr;
  }
}

.layout__sidebar {
  width: var(--sidebar-width);
}

.main-wrapper {
  width: 100%;
  min-height: 105vh;
  padding-top: calc(var(--spacer) * 4);
}
/*Default button*/
.btn,
.lt-section-subscribe button,
.lt-article-subscribe button,
.article-vote-controls__item,
.lt-community-follow button,
.lt-organization-subscribe button,
.lt-subscriptions-subscribe button,
.lt-profile__buttons button,
.lt-profile__buttons a,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  display: inline-flex;
  padding: calc(var(--spacer) * 1.5) calc(var(--spacer) * 2);
  font-size: 16px;
  line-height: 1.5;
  color: #37474f;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: 50px;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

.btn:after,
.lt-section-subscribe button:after,
.lt-article-subscribe button:after,
.article-vote-controls__item:after,
.lt-community-follow button:after,
.lt-organization-subscribe button:after,
.lt-subscriptions-subscribe button:after,
.lt-profile__buttons button:after,
.lt-profile__buttons a:after,
.pagination-next-link:after,
.pagination-prev-link:after,
.pagination-first-link:after,
.pagination-last-link:after {
  color: #029be5;
  vertical-align: baseline;
  transition: color 0.2s ease-in;
}

.btn:focus,
.btn:active,
.btn:hover,
.lt-section-subscribe button:focus,
.lt-section-subscribe button:active,
.lt-section-subscribe button:hover,
.lt-article-subscribe button:focus,
.lt-article-subscribe button:active,
.lt-article-subscribe button:hover,
.article-vote-controls__item:focus,
.article-vote-controls__item:active,
.article-vote-controls__item:hover,
.lt-community-follow button:focus,
.lt-community-follow button:active,
.lt-community-follow button:hover,
.lt-organization-subscribe button:focus,
.lt-organization-subscribe button:active,
.lt-organization-subscribe button:hover,
.lt-subscriptions-subscribe button:focus,
.lt-subscriptions-subscribe button:active,
.lt-subscriptions-subscribe button:hover,
.lt-profile__buttons button:focus,
.lt-profile__buttons button:active,
.lt-profile__buttons button:hover,
.lt-profile__buttons a:focus,
.lt-profile__buttons a:active,
.lt-profile__buttons a:hover,
.pagination-next-link:focus,
.pagination-next-link:active,
.pagination-next-link:hover,
.pagination-prev-link:focus,
.pagination-prev-link:active,
.pagination-prev-link:hover,
.pagination-first-link:focus,
.pagination-first-link:active,
.pagination-first-link:hover,
.pagination-last-link:focus,
.pagination-last-link:active,
.pagination-last-link:hover {
  color: var(--light);
  background-color: #029be5;
  border-color: #029be5;
}

.btn:focus:after,
.btn:active:after,
.btn:hover:after,
.lt-section-subscribe button:focus:after,
.lt-section-subscribe button:active:after,
.lt-section-subscribe button:hover:after,
.lt-article-subscribe button:focus:after,
.lt-article-subscribe button:active:after,
.lt-article-subscribe button:hover:after,
.article-vote-controls__item:focus:after,
.article-vote-controls__item:active:after,
.article-vote-controls__item:hover:after,
.lt-community-follow button:focus:after,
.lt-community-follow button:active:after,
.lt-community-follow button:hover:after,
.lt-organization-subscribe button:focus:after,
.lt-organization-subscribe button:active:after,
.lt-organization-subscribe button:hover:after,
.lt-subscriptions-subscribe button:focus:after,
.lt-subscriptions-subscribe button:active:after,
.lt-subscriptions-subscribe button:hover:after,
.lt-profile__buttons button:focus:after,
.lt-profile__buttons button:active:after,
.lt-profile__buttons button:hover:after,
.lt-profile__buttons a:focus:after,
.lt-profile__buttons a:active:after,
.lt-profile__buttons a:hover:after,
.pagination-next-link:focus:after,
.pagination-next-link:active:after,
.pagination-next-link:hover:after,
.pagination-prev-link:focus:after,
.pagination-prev-link:active:after,
.pagination-prev-link:hover:after,
.pagination-first-link:focus:after,
.pagination-first-link:active:after,
.pagination-first-link:hover:after,
.pagination-last-link:focus:after,
.pagination-last-link:active:after,
.pagination-last-link:hover:after {
  color: var(--light);
}
/*Filled button*/
.btn--dark,
.btn--primary,
[type="submit"],
.request-table-organization__col--button a,
.lt-organization-subscribe button {
  display: inline-flex;
  padding: calc(var(--spacer) * 1.2) calc(var(--spacer) * 1.8);
  font-size: 16px;
  line-height: 1.5;
  color: var(--light);
  white-space: nowrap;
  background-color: #029be5;
  border: calc(var(--border-width) * 2) solid transparent;
  border-radius: 50px;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

.btn--dark:after,
.btn--primary:after,
[type="submit"]:after,
.request-table-organization__col--button a:after,
.lt-organization-subscribe button:after {
  vertical-align: baseline;
  transition: color 0.2s ease-in;
}

.btn--dark:hover,
.btn--primary:hover,
[type="submit"]:hover,
.request-table-organization__col--button a:hover,
.lt-organization-subscribe button:hover {
  color: var(--light);
  background-color: #016899;
  border-color: #016899;
}

.btn--submit-ticket:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  content: "\f30b";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .btn--submit-ticket:after {
  margin-left: var(--spacer);
}

[dir="rtl"] .btn--submit-ticket:after {
  margin-right: var(--spacer);
}

.btn--login:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .btn--login:after {
  margin-left: var(--spacer);
}

[dir="rtl"] .btn--login:after {
  margin-right: var(--spacer);
}

.btn--search {
  padding: 0;
  font-size: 20px;
  border: 0;
}

.btn--search:focus,
.btn--search:active,
.btn--search:hover {
  color: #029be5;
  background: transparent;
}

.lt-organization-subscribe button {
  padding-top: 4px;
  padding-bottom: 4px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
/* 
Normalize non-controls

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

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

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

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

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

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

select {
  width: 100%;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A")
    no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

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

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

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

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

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

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

[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: #404040; /* 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: 8px;
}

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

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

.breadcrumbs {
  display: none;
  padding: 0;
  margin-bottom: calc(var(--spacer) * 3);
  list-style-type: none;
  flex-wrap: wrap;
}

.post-page .breadcrumbs,
.topic-page .breadcrumbs {
  display: flex;
}

.breadcrumbs li:after {
  display: inline-block;
  padding: 0 var(--spacer);
  color: var(--gray);
  content: ">";
}

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

.breadcrumbs a {
  color: var(--gray);
}

.breadcrumbs a:hover {
  color: rgba(9, 80, 247, 1);
}

.breadcrumbs--search-results {
  display: flex;
  margin-bottom: var(--spacer);
}

.topbar {
  position: relative;
  z-index: 3;
  background-color: var(--light);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

.topbar__logo {
  height: 75px !important;
}

[dir="ltr"] .topbar__controls > * + * {
  margin-left: var(--spacer);
}

[dir="rtl"] .topbar__controls > * + * {
  margin-right: var(--spacer);
}

.sidebar {
  position: relative;
}

@media (max-width: 991px) {
  .sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding-right: calc(var(--spacer) * 4);
    padding-left: calc(var(--spacer) * 4);
    transition: transform 0.2s ease-in;
    transform: translateX(-100%);
  }

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

.sidebar:before {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  content: "";
  background-color: var(--blue-light);
}

[dir="ltr"] .sidebar {
  border-right: var(--border-width) solid var(--gray-lightest);
}

[dir="ltr"] .sidebar:before {
  right: 0;
}

[dir="rtl"] .sidebar {
  border-left: var(--border-width) solid var(--gray-lightest);
}

[dir="rtl"] .sidebar:before {
  left: 0;
}

.sidebar__wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 991px) {
  .sidebar__wrapper {
    height: calc(100vh - 170px);
  }
}

.sidebar__inner {
  padding-top: calc(var(--spacer) * 4);
  padding-bottom: calc(var(--spacer) * 4);
  flex-shrink: 0;
}

[dir="ltr"] .sidebar__inner {
  padding-right: calc(var(--spacer) * 4);
}

[dir="rtl"] .sidebar__inner {
  padding-left: calc(var(--spacer) * 4);
}

.sidebar__image {
  width: 100%;
}

.sidebar__image img {
  display: block;
  height: auto !important;
}

.sidebar__top-nav {
  margin-bottom: calc(var(--spacer) * 4);
}

.sidebar__top-nav li {
  margin-bottom: calc(var(--spacer) * 1.5);
}

.sidebar__link {
  display: flex;
  color: var(--gray);
  align-items: center;
}

.sidebar__link:before {
  display: flex;
  width: 26px;
  height: 26px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  text-align: center;
  content: "";
  background-color: var(--light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.sidebar__link--home:before {
  content: "\f015";
}

.sidebar__link--community:before {
  content: "\f0c0";
}

.sidebar__link--request:before {
  content: "\f093";
}

[dir="ltr"] .sidebar__link:before {
  margin-right: calc(var(--spacer) * 2);
}

[dir="rtl"] .sidebar__link:before {
  margin-left: calc(var(--spacer) * 2);
}

.sidebar__content-block {
  margin-bottom: calc(var(--spacer) * 1.5);
}

.sidebar__link--video:before {
  content: "\f03d";
}

.sidebar-toggle {
  background-color: var(--blue-light);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

[dir="ltr"] .sidebar-toggle {
  box-shadow: 2px 2px 30px rgba(var(--gray-lightest), 0.75);
}

[dir="rtl"] .sidebar-toggle {
  box-shadow: -2px 2px 30px rgba(var(--gray-lightest), 0.75);
}

.sidebar-toggle__link {
  display: flex;
  color: inherit !important;
  align-items: center;
}

.sidebar-toggle__burger {
  display: inline-block;
  width: 20px;
}

.sidebar-toggle__burger span {
  position: relative;
  display: block;
  width: 70% !important;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sidebar-toggle__burger span,
.sidebar-toggle__burger span:before,
.sidebar-toggle__burger span:after {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--gray-dark);
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.sidebar-toggle__burger span:before,
.sidebar-toggle__burger span:after {
  position: absolute;
  width: 130%;
  content: "";
}

.sidebar-toggle__burger span:before {
  top: -8px;
}

.sidebar-toggle__burger span:after {
  top: 8px;
}

.sidebar-toggle__link:hover .sidebar-toggle__burger span,
.sidebar-toggle__link:hover .sidebar-toggle__burger span:before,
.sidebar-toggle__link:hover .sidebar-toggle__burger span:after,
.sidebar-toggle__link:focus .sidebar-toggle__burger span,
.sidebar-toggle__link:focus .sidebar-toggle__burger span:before,
.sidebar-toggle__link:focus .sidebar-toggle__burger span:after,
.sidebar-toggle__link:active .sidebar-toggle__burger span,
.sidebar-toggle__link:active .sidebar-toggle__burger span:before,
.sidebar-toggle__link:active .sidebar-toggle__burger span:after {
  background-color: #fff;
}

.sidebar-toggle__link.is-active {
  background-color: #029be5;
}

.sidebar-toggle__link.is-active .sidebar-toggle__burger span:before,
.sidebar-toggle__link.is-active .sidebar-toggle__burger span:after {
  background-color: #fff;
}

.sidebar-toggle__link.is-active .sidebar-toggle__burger span {
  background-color: transparent;
}

[dir="ltr"]
  .sidebar-toggle__link.is-active
  .sidebar-toggle__burger
  span:before {
  transform: translateY(8px) rotate(45deg);
}

[dir="ltr"] .sidebar-toggle__link.is-active .sidebar-toggle__burger span:after {
  transform: translateY(-8px) rotate(-45deg);
}

[dir="rtl"]
  .sidebar-toggle__link.is-active
  .sidebar-toggle__burger
  span:before {
  transform: translateY(8px) rotate(-45deg);
}

[dir="rtl"] .sidebar-toggle__link.is-active .sidebar-toggle__burger span:after {
  transform: translateY(-8px) rotate(45deg);
}

/* .sidenav ul {
  padding: 0;
  margin: 0 0 calc(var(--spacer) * 3);
  list-style-type: none;
}

.sidenav li {
  margin-bottom: var(--spacer);
}

.sidenav a,
.sidenav span {
  display: block;
  line-height: 1.2;
}

[dir="ltr"] .sidenav__article.is-active a {
  padding-left: var(--spacer);
  border-left: 4px solid rgba(9, 80, 247, 1);
}

[dir="rtl"] .sidenav__article.is-active a {
  padding-right: var(--spacer);
  border-right: 4px solid rgba(9, 80, 247, 1);
}

.sidenav__category-name {
  margin-bottom: calc(var(--spacer) * 1.5);
  font-size: var(--font-size-h5);
  color: #000;
  cursor: pointer;
}

.sidenav__category-name:hover {
  color: #000;
}

.sidenav__section-name {
  margin-bottom: calc(var(--spacer) * 1.5);
  font-size: var(--font-size-medium);
  color: var(--gray);
  text-transform: uppercase;
  cursor: pointer;
}

.sidenav__section-name:hover {
  color: var(--gray);
}

.sidenav__article-name {
  font-size: calc(16px * 0.95);
}

.sidenav__articles-list .sidenav__section-name {
  text-transform: none;
}

[dir="ltr"] .sidenav__articles-list .sidenav__section {
  padding-left: 15px;
}

[dir="rtl"] .sidenav__articles-list .sidenav__section {
  padding-right: 15px;
} */

.sidebar__content-block .sidenav-btn {
  display: none !important;
}

.search {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
}

.search:before {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  font-family: "Font Awesome 5 Free";
  font-size: var(--font-size-h4);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: var(--gray-dark);
  content: "\f002";
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .search:before {
  left: 18px;
}

[dir="rtl"] .search:before {
  right: 18px;
}

.search [type="search"] {
  width: 100%;
  padding-top: calc(var(--spacer) * 2);
  padding-bottom: calc(var(--spacer) * 2);
  border-color: var(--gray-lightest) !important;
  border-width: 2px;
}

[dir="ltr"] .search [type="search"] {
  padding-left: calc(var(--spacer) * 6);
}

[dir="rtl"] .search [type="search"] {
  padding-right: calc(var(--spacer) * 6);
}

@media (min-width: 768px) {
  .search-box {
    max-width: 500px;
  }
}

.btn--close {
  width: calc(var(--spacer) * 2);
  height: calc(var(--spacer) * 2);
  align-items: center;
}

.btn--close span {
  background-color: transparent;
}

[dir="ltr"] .btn--close span:before {
  transform: translateY(8px) rotate(45deg);
}

[dir="ltr"] .btn--close span:after {
  transform: translateY(-8px) rotate(-45deg);
}

[dir="rtl"] .btn--close span:before {
  transform: translateY(8px) rotate(-45deg);
}

[dir="rtl"] .btn--close span:after {
  transform: translateY(-8px) rotate(45deg);
}

@media (max-width: 767px) {
  .search-box {
    position: absolute;
    top: 0;

    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: flex;
    width: auto;
    padding-right: calc(var(--spacer) * 4);
    padding-left: calc(var(--spacer) * 4);
    background-color: var(--light);
    transition: transform 0.2s ease-in;
    transform: translateY(-100%);
    align-items: center;
  }

  .search-box.is-active {
    transform: translateY(0);
  }

  .search-box:before {
    color: var(--gray);
  }

  [dir="ltr"] .search-box:before {
    left: 0;
  }

  [dir="rtl"] .search-box:before {
    right: 0;
  }
}

.lt-blocks {
  margin-bottom: calc(var(--spacer) * 3);
}

.lt-blocks__list {
  display: grid;
  grid-gap: calc(var(--spacer) * 4);
  grid-template-columns: 1fr;
  margin-bottom: calc(var(--spacer) * 4);
}

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

.lt-blocks__item {
  display: flex;
}

.lt-blocks__link {
  display: flex;
  flex-grow: 1;
  padding: calc(var(--spacer) * 4) calc(var(--spacer) * 2);
  background-color: var(--light);
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
  align-items: flex-start;
}

.lt-blocks__link:hover .lt-blocks__title,
.lt-blocks__link:hover .lt-blocks__content {
  color: rgba(9, 80, 247, 1);
}

.lt-blocks__icon {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: var(--spacer);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

[dir="ltr"] .lt-blocks__icon {
  margin-right: calc(var(--spacer) * 2);
}

[dir="rtl"] .lt-blocks__icon {
  margin-left: calc(var(--spacer) * 2);
}

.lt-blocks__content {
  color: var(--gray);
  transition: color 0.2s ease-in;
}

.lt-blocks__content p {
  margin-bottom: 0;
}

.lt-blocks__title {
  color: var(--gray-dark);
  transition: color 0.2s ease-in;
}

@media (max-width: 991px) {
  .lt-blocks__title {
    margin-bottom: var(--spacer);
  }
}

.submit-ticket {
  padding: calc(var(--spacer) * 4) calc(var(--spacer) * 1.5);
  margin-bottom: calc(var(--spacer) * 3);
  text-align: center;
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

.submit-ticket p {
  margin-bottom: calc(var(--spacer) * 2.5);
  color: var(--gray);
}

.recent-activity-header {
  display: none;
}

.recent-activity-item-parent {
  display: block;
  margin-bottom: calc(var(--spacer) * 2);
  font-size: var(--font-size-small);
  line-height: 1.2;
  color: var(--gray);
  text-transform: uppercase;
}

.tab-articles__list,
.recent-activity-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.tab-articles__item,
.recent-activity-item {
  width: 50%;
}

@media (max-width: 767px) {
  .tab-articles__item,
  .recent-activity-item {
    width: 100%;
    padding-right: 0;
  }
}

[dir="ltr"] .tab-articles__item,
[dir="ltr"] .recent-activity-item {
  padding: 0 calc(var(--spacer) * 2) calc(var(--spacer) * 2) 0;
}

[dir="rtl"] .tab-articles__item,
[dir="rtl"] .recent-activity-item {
  padding: 0 0 calc(var(--spacer) * 2) calc(var(--spacer) * 2);
}

.tab-articles__title,
.recent-activity-item-link {
  display: block;
  margin-bottom: calc(var(--spacer) / 2);
  font-size: var(--font-size-h6);
  line-height: 1.2;
}

.tab-articles__discr,
.recent-activity-item-meta,
.recent-activity-no-activities {
  font-size: 15px;
  color: var(--gray);
}

.page-header {
  margin-bottom: calc(var(--spacer) * 3);
}

.page-header__headline {
  display: flex;
  justify-content: space-between;
}

.page-header__headline span {
  color: rgba(9, 80, 247, 1);
}

.page-header__headline .section-subscribe {
  flex-shrink: 0;
}

[dir="ltr"] .page-header__headline .section-subscribe {
  margin-left: var(--spacer);
}

[dir="rtl"] .page-header__headline .section-subscribe {
  margin-right: var(--spacer);
}

.page-header__description {
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--gray);
}

.section-tree {
  display: flex;
  flex-wrap: wrap;
}

.section-tree__column {
  width: 50%;
  margin-bottom: calc(var(--spacer) * 2);
}

@media (max-width: 767px) {
  .section-tree__column {
    width: 100%;
  }
}

[dir="ltr"] .section-tree__column {
  padding-right: calc(var(--spacer) * 2);
}

[dir="rtl"] .section-tree__column {
  padding-left: calc(var(--spacer) * 2);
}

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

.section__title-link {
  color: #000;
}

.article-list-item {
  margin-bottom: calc(var(--spacer) * 0.8);
  font-size: var(--font-size-h6);
}

.article-list-item--is-promoted span {
  width: 15px;
  height: 15px;
  margin-top: -2px;
  font-size: calc(16px * 0.6);
  line-height: 15px;
  color: var(--brand-brown);
  text-align: center;
  vertical-align: middle;
  background-color: #ffd550;
  border-color: var(--brand-deep-accent);
  border-radius: 50%;
  box-shadow: 0 1px 8px lighten(var(--brand-brown), 40%);
  flex-shrink: 0;
}

[dir="ltr"] .article-list-item--is-promoted span {
  margin-right: calc(var(--spacer) / 2);
}

[dir="rtl"] .article-list-item--is-promoted span {
  margin-left: calc(var(--spacer) / 2);
}

.article-row {
  position: relative;
  display: grid;
  grid-gap: calc(var(--spacer) * 4);
}

.article {
  padding-bottom: var(--spacer);
  margin-bottom: calc(var(--spacer) * 3);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

[data-article-loading] .article {
  margin-bottom: calc(var(--spacer) * 6);
}

.article-header {
  padding-bottom: calc(var(--spacer) * 2.5);
  margin-bottom: calc(var(--spacer) * 4);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

.article-header--small .article-title {
  margin-bottom: var(--spacer);
  font-size: var(--font-size-h3);
}

.article-title {
  margin-bottom: calc(var(--spacer) * 2.5);
}

@media (max-width: 420px) {
  .article-title {
    font-size: var(--font-size-h3);
  }
}

.article__attachments {
  margin-bottom: calc(var(--spacer) * 2);
}

.article-vote {
  padding: calc(var(--spacer) * 3);
  margin-bottom: calc(var(--spacer) * 3);
  text-align: center;
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

.article-vote-question {
  display: block;
  margin-bottom: calc(var(--spacer) * 1.5);
  font-size: var(--font-size-h5);
}

.article-vote-controls {
  display: flex;
  margin-bottom: calc(var(--spacer) * 2);
  justify-content: center;
}

.article-vote-controls__item {
  width: 100px;
  margin: 0 calc(var(--spacer) * 1.5);
  font-family: 'Lato', sans-serif !important;
}

.article-vote-controls__item:before {
  font-family: "Font Awesome 5 Free" !important;
  font-size: var(--font-size-h4);
  font-weight: 900;
  color: rgba(9, 80, 247, 1);
  transition: color 0.2s ease-in;
}

.article-vote-controls__item:hover:before {
  color: var(--light) !important;
}

[dir="ltr"] .article-vote-controls__item:before {
  margin-right: var(--spacer);
}

[dir="rtl"] .article-vote-controls__item:before {
  margin-left: var(--spacer);
}

.article-vote-controls__item--up.article-vote-controls__item--voted:before {
  color: #05BB0C;
}

.article-vote-controls__item--down.article-vote-controls__item--voted:before {
  color: #C70606;
}

.article-vote-count {
  font-size: var(--font-size-medium);
  color: var(--gray);
}

.article-more-questions {
  margin-bottom: calc(var(--spacer) * 2);
}

.article-loader {
  display: none !important;
  margin: calc(var(--spacer) * 3) auto;
  color: rgba(9, 80, 247, 1);
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

[data-article-loading] .article-loader {
  display: block !important;
}

[data-article-loading] .article-footer {
  display: none !important;
}

.article-column-toc {
  display: none;
}

@media (min-width: 992px) {
  html.toc-enabled .article-row {
    grid-template-columns: 1fr 25%;
  }
}

html.toc-enabled .article-column-toc {
  display: block;
}

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

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

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

.content-tags__item {
  padding: 6px 12px;
  color: #000;
  background-color: transparent;
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.content-tags__item:hover,
.content-tags__item:active,
.content-tags__item:focus {
  color: #000;
  background-color: #f1f1f1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.article__body h2,
.article__body .wysiwyg-font-size-x-large {
  margin-top: calc(var(--spacer) * 3);
  font-size: var(--font-size-h3);
}

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

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

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

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

.article__body ul ul,
.article__body ul ol,
.article__body ol ul,
.article__body ol ol {
  margin-top: var(--spacer);
}

.article__body ul li,
.article__body ol li {
  margin-bottom: var(--spacer);
}

[dir="ltr"] .article__body ul,
[dir="ltr"] .article__body ol {
  padding-left: calc(var(--spacer) * 2);
}

[dir="rtl"] .article__body ul,
[dir="rtl"] .article__body ol {
  padding-right: calc(var(--spacer) * 2);
}
/*Global text styles*/
[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: #9db9fc;
}

.text-info {
  background-color: #1B50F7;
}

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

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

.text-success {
  background-color: #05BB0C;
}
/*Description Lists*/
dl {
  margin-top: 0;
  margin-bottom: calc(var(--spacer) * 1.5);
  font-size: 16px;
}

dt,
dd {
  margin-bottom: var(--spacer);
  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;
}

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

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 30%;
    padding-right: calc(var(--spacer) * 1.5);
    clear: both;
  }
}

@media (min-width: 768px) {
  .dl-horizontal dd {
    float: right;
    width: 70%;
  }
}
/*Colored list*/
.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: 18px !important;
  counter-increment: list;
}

.list-colored > li:before {
  position: absolute;
  top: -3px;
  z-index: 1;
  width: 30px;
  height: 30px;
  font-size: var(--font-size-small);
  line-height: 30px;
  color: #fff;
  text-align: center;
  content: counter(list);
  background-color: rgba(9, 80, 247, 1);
  border-radius: 50%;
}

[dir="ltr"] .list-colored > li {
  padding-left: 42px;
}

[dir="ltr"] .list-colored > li:before {
  left: 0;
}

[dir="rtl"] .list-colored > li {
  padding-right: 42px;
}

[dir="rtl"] .list-colored > li:before {
  right: 0;
}

.list-bullet > li {
  position: relative;
  margin-bottom: 10px;
}

.list-bullet > li:before {
  position: absolute;
  top: -2px;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: rgba(9, 80, 247, 1);
  content: "\f058";
}

[dir="ltr"] .list-bullet > li {
  padding-left: 30px;
}

[dir="ltr"] .list-bullet > li:before {
  left: 0;
}

[dir="rtl"] .list-bullet > li {
  padding-right: 30px;
}

[dir="rtl"] .list-bullet > li:before {
  right: 0;
}

.image-with-border {
  padding: var(--spacer);
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

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

.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 {
  display: block;
  width: 100%;
}

.image-with-video-icon:after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 1.875em 3.125em;
  transition: transform 0.2s;
}

.image-with-video-icon:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #333;
  opacity: 0.5;
}

[dir="ltr"] .image-with-video-icon:after {
  right: 50%;
  border-right-width: 0;
  border-left-color: var(--light);
  transform: translate(50%, -50%);
}

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

[dir="rtl"] .image-with-video-icon:after {
  left: 50%;
  border-right-color: var(--light);
  border-left-width: 0;
  transform: translate(-50%, -50%);
}

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

.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-avatar {
  position: relative;
  display: inline-block;
}

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

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

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

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

.lt-avatar--agent:before {
  position: absolute;
  bottom: -4px;
  display: flex;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  content: "\f007";
  background-color: rgba(9, 80, 247, 1);
  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: 2.5rem;
  height: 2.5rem;
}

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

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

@media (--screen-sm) {
  .my-activities-items {
    table-layout: auto;
  }
}

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

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

@media (--screen-sm) {
  .my-activities-items__body {
    display: table-row-group;
  }
}

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

@media (--screen-sm) {
  .my-activities-items__row {
    display: table-row;
  }
}

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

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

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

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

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

@media (--screen-sm) {
  .my-activities-items__request-id {
    display: none;
  }
}

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

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

@media (max-width: 767px) {
  .my-activities-item__meta {
    display: inline-block;
    margin-right: calc(var(--padding-base-horizontal) / 2);
  }
}

@media (max-width: 767px) {
  .my-activities-item__meta + .my-activities-item__meta:before {
    content: "\2022";
  }

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

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

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

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

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

@media (--screen-sm) {
  .my-activities-item__icon {
    display: none;
  }
}

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

.my-activities-menu:not(.my-activities-menu--sub) {
  padding-bottom: calc(var(--spacer) * 1.5);
  margin-bottom: var(--spacer);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

.my-activities-menu:not(.my-activities-menu--sub) .my-activities-menu__item {
  padding: calc(var(--spacer) / 1.5) calc(var(--spacer) * 2)
    calc(var(--spacer) / 1.2);
  border: 1px solid rgba(9, 80, 247, 1);
}

@media (max-width: 420px) {
  .my-activities-menu:not(.my-activities-menu--sub) .my-activities-menu__item {
    padding: calc(var(--spacer) / 2) var(--spacer);
    border: 0;
  }
}

.my-activities-menu:not(.my-activities-menu--sub) .is-active {
  color: var(--light);
  background-color: rgba(9, 80, 247, 1);
}

[dir="ltr"]
  .my-activities-menu:not(.my-activities-menu--sub)
  .my-activities-menu__item:not(:first-child) {
  border-left: 0;
}

[dir="rtl"]
  .my-activities-menu:not(.my-activities-menu--sub)
  .my-activities-menu__item:not(:first-child) {
  border-right: 0;
}

.my-activities-menu--sub {
  margin-bottom: calc(var(--spacer) * 3);
}

.my-activities-menu--sub .my-activities-menu__item:not(:last-child):after {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 var(--spacer);
  vertical-align: middle;
  content: "";
  background-color: var(--gray);
  border-radius: 50%;
}

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

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

.my-activities-items {
  margin-top: calc(var(--spacer) * 3);
  margin-bottom: calc(var(--spacer) * 5);
  color: var(--gray);
}

.my-activities-items .requests-link:hover {
  color: rgba(9, 80, 247, 1);
}

@media (min-width: 768px) {
  .my-activities-items {
    display: table;
    width: 100%;
  }

  .my-activities-items .my-activities-item__icon {
    display: none;
  }
}

[dir="ltr"] .my-activities-items .requests-sort-symbol {
  margin-left: calc(var(--spacer) * 2);
}

[dir="rtl"] .my-activities-items .requests-sort-symbol {
  margin-right: calc(var(--spacer) * 2);
}

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

.my-activities-items__head .my-activities-items__col {
  padding: calc(var(--spacer) * 1.5) 0;
  font-size: var(--font-size-medium);
}

@media (min-width: 768px) {
  .my-activities-items__head {
    display: table-header-group;
    font-weight: 800;
    text-transform: uppercase;
  }
}

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

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

@media (max-width: 767px) {
  .my-activities-items__row {
    padding: var(--spacer);
    margin-bottom: var(--spacer);
    border: var(--border-width) solid var(--gray-light);
  }
}

.my-activities-items__col {
  line-height: 1.2;
}

@media (min-width: 768px) {
  .my-activities-items__col {
    display: table-cell;
    padding: calc(var(--spacer) * 1.2) 0;
    border-bottom: var(--border-width) solid var(--gray-light);
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .my-activities-items__col + .my-activities-items__col {
    padding-left: calc(var(--spacer) * 1.5);
  }

  [dir="rtl"] .my-activities-items__col + .my-activities-items__col {
    padding-right: calc(var(--spacer) * 1.5);
  }
}

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

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

.my-activities-item__title {
  color: rgba(9, 80, 247, 1);
}

.my-activities-item__title:hover {
  color: rgba(9, 80, 247, 1);
}

@media (max-width: 767px) {
  .my-activities-item__title {
    display: block;
    margin-bottom: calc(var(--spacer) * 2);
    font-size: calc(var(--spacer) * 2);
  }

  .my-activities-item__meta {
    display: inline-block;
  }

  .my-activities-item__meta:after {
    margin: 0 calc(var(--spacer) / 2);
    content: "\2022";
  }

  .my-activities-item__meta:last-of-type:after {
    display: none;
  }
}

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

@media (max-width: 767px) {
  .request-table-filters__item {
    margin-bottom: calc(var(--line-height-computed) / 2);
  }
}

@media (min-width: 576px) {
  .request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }

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

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

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

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

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

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

.request-id {
  display: inline-block;
  padding: 2px calc(var(--spacer) / 2);
  margin-bottom: calc(var(--spacer) / 2);
  font-size: var(--font-size-medium);
  color: var(--light);
  background-color: rgba(9, 80, 247, 1);
  border-radius: 8px;
}

.request-page .comment {
  padding-bottom: calc(var(--spacer) / 2);
}

.request-page .comment__inner {
  min-height: auto;
}

[dir="ltr"] .request-page .comment__inner {
  padding-right: 0;
}

[dir="rtl"] .request-page .comment__inner {
  padding-left: 0;
}

.request-details {
  padding: calc(var(--spacer) * 2);
  border: var(--border-width) solid var(--gray-lightest);
}

.request-details p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 420px) {
  .request-details dt {
    margin-bottom: 0;
  }
}
/* ==========================================================================
  Comment Form
  ========================================================================== */
.lt-comment-form {
  position: relative;
  margin-bottom: 24px;
}
@media (--screen-sm) {
  .lt-comment-form {
    padding-left: 4rem;
  }
}

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

@media (max-width: 767px) {
  .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(--hr-border);
}

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

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

.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: rgba(9, 80, 247, 1);
  border-radius: 0 0 8px 8px;
}

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

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

.lt-comment--official .lt-comment__inner {
  position: relative;
  padding: 24px;
  border: var(--border-width) solid rgba(9, 80, 247, 1);
  border-radius: 8px;
}

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

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

.lt-comment__body ul ul,
.lt-comment__body ul ol,
.lt-comment__body ol ul,
.lt-comment__body ol ol {
  margin-top: 12px;
}

.lt-comment__body ul li,
.lt-comment__body ol li {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .lt-comment__body [dir="auto"] {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .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;
}

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

.meta__item {
  display: inline-block;
}

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

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

.meta__item + .meta__item:before {
  font-size: 10px;
  content: "\2022";
}

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

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

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

.search-results-count {
  margin-bottom: calc(var(--spacer) * 3);
}

@media (max-width: 767px) {
  .search-results-count {
    font-size: var(--font-size-h4);
  }
}

.search-results {
  display: flex;
  margin-bottom: calc(var(--spacer) * 3);
  flex-wrap: wrap;
}

[dir="ltr"] .search-results {
  margin-right: -var(--spacer);
}

[dir="rtl"] .search-results {
  margin-left: -var(--spacer);
}

.search-results__column {
  width: 100%;
  padding: 0 var(--spacer);
}

.search-result {
  padding: calc(var(--spacer) * 2);
  margin-bottom: calc(var(--spacer) * 2);
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

.search-result-votes {
  padding: calc(var(--spacer) / 3);
  font-size: var(--font-size-medium);
  color: rgba(9, 80, 247, 1);
  border: 1px solid var(--gray-lightest);
  border-radius: 3px;
}

[dir="ltr"] .search-result-votes {
  margin-left: calc(var(--spacer) / 2);
}

[dir="rtl"] .search-result-votes {
  margin-right: calc(var(--spacer) / 2);
}

.searchbox ul {
  margin: var(--spacer) 0 calc(var(--spacer) * 2);
  list-style: none;
}

.searchbox li {
  margin-bottom: calc(var(--spacer) / 2);
}

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

[dir="rtl"] .searchbox ul {
  padding-right: 0;
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.search-results-filters {
  display: flex;
  row-gap: 24px;
  width: 100%;
  padding: 16px;
  margin-bottom: calc(var(--spacer) * 3);
  font-size: calc(16px - 2px);
  border: var(--border-width) solid var(--hr-border);
  border-radius: 10px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .search-results-filters {
    row-gap: 0;
  }
}

.search-results-filter {
  width: 50%;
}

@media (max-width: 767px) {
  .search-results-filter {
    width: 100%;
  }
}

[dir="ltr"] .search-results-filter {
  padding-right: 20px;
}

[dir="rtl"] .search-results-filter {
  padding-left: 20px;
}

@media (max-width: 767px) {
  .search-results-filter + .search-results-filter {
    margin-top: 24px;
  }
}

.search-results-filter__title {
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
  .search-results-filter__title {
    position: relative;
    font-size: var(--font-size-h6);
    cursor: pointer;
  }
}

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

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

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

  [dir="ltr"] .search-results-filter__title:after {
    right: 0;
    margin-left: 5px;
  }

  [dir="rtl"] .search-results-filter__title:after {
    left: 0;
    margin-right: 5px;
  }

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

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

.search-results-filter__list {
  margin-top: 24px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .search-results-filter__list {
    display: none;
  }
}

@media (--screen-sm) {
  .search-results-filter__list {
    display: block !important;
  }
}

.search-results-filter__item {
  display: block;
  margin-bottom: 4px;
}

.search-results-filter__item.is-active .search-results-filter__link {
  color: #fff;
  background-color: rgba(9, 80, 247, 1);
  border-color: rgba(9, 80, 247, 1);
}

.search-results-filter__item--subfilter:nth-child(n + 7) {
  display: none;
}

.search-result__subfilters--all .search-results-filter__item:nth-child(n + 7) {
  display: block;
}

.search-result__subfilters--all .search-result__show-more {
  display: none !important;
}

.search-results-filter__link {
  display: block;
  padding: 6px 8px;
  color: #000;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

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

.search-results-filter__count {
  opacity: 0.6;
}

.search-result__show-more {
  padding: 0;
  color: $button_color;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .search-result__show-more {
  margin-left: 8px;
}

[dir="rtl"] .search-result__show-more {
  margin-right: 8px;
}

.error-page {
  padding: calc(var(--spacer) * 5) 0 calc(var(--spacer) * 7);
  text-align: center;
}

.error-page h2 {
  margin-bottom: calc(var(--spacer) / 2);
  font-size: var(--font-size-h2);
}

.error-page p {
  margin: 0 0 var(--spacer);
  color: var(--gray);
}

.error-page a {
  color: rgba(9, 80, 247, 1);
}

.error-page a:hover {
  text-decoration: none;
}

.error-page__title {
  margin-bottom: calc(var(--spacer) / 2);
  font-size: 80px;
  font-weight: 800;
  color: rgba(9, 80, 247, 1);
  letter-spacing: 4px;
}

.error-page__link {
  display: block;
  margin-top: calc(var(--spacer) * 3);
}

.error-page__link:hover {
  color: #000;
}

.error-page__link:before {
  display: inline-block;
  content: "<";
  transition: transform 0.2s ease-in;
}

[dir="ltr"] .error-page__link:before {
  padding-right: 2px;
}

[dir="ltr"] .error-page__link:hover:before {
  transform: translateX(-3px);
}

[dir="rtl"] .error-page__link:before {
  padding-left: 2px;
}

[dir="rtl"] .error-page__link:hover:before {
  transform: translateX(3px);
}

.pagination-list {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

.footer {
  display: flex;
  padding: calc(var(--spacer) * 2) 0;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.footer a {
  color: var(--gray);
}

.footer a:hover {
  color: rgba(9, 80, 247, 1);
}

.footer-socials {
  display: flex;
  margin: 0 0 var(--spacer);
}

@media (max-width: 767px) {
  .footer-socials li {
    padding: 0 calc(var(--spacer) * 1.5);
  }
}

.footer-socials a {
  font-size: var(--font-size-h5);
}

[dir="ltr"] .footer-socials li {
  padding: 0 0 0 calc(var(--spacer) * 1.5);
}

[dir="rtl"] .footer-socials li {
  padding: 0 calc(var(--spacer) * 1.5) 0 0;
}

.copyright {
  display: flex;
  margin-bottom: var(--spacer);
  flex-shrink: 0;
}

.copyright__logo {
  height: calc(var(--spacer) * 4);
}

[dir="ltr"] .copyright__logo {
  margin-right: var(--spacer);
}

[dir="rtl"] .copyright__logo {
  margin-left: var(--spacer);
}

.copyright__content span {
  display: block;
}

.copyright__content a {
  color: inherit;
}

.copyright__content a:hover {
  color: rgba(9, 80, 247, 1);
}

.copyright__info {
  margin-bottom: calc(var(--spacer) / 3);
  white-space: nowrap;
}

.dropdown-toggle {
  min-width: unset;
}

.dropdown-toggle:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: inherit;
  vertical-align: baseline;
  content: "\f107";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-toggle:after {
  margin-left: calc(var(--spacer) / 2);
}

[dir="rtl"] .dropdown-toggle:after {
  margin-right: calc(var(--spacer) / 2);
}

.dropdown-menu {
  min-width: 170px;
  padding: 0;
  margin-top: var(--spacer);
  overflow: hidden;
}

@media (max-width: 767px) {
  .dropdown-menu {
    margin-top: 0;
  }
}

.dropdown-menu [role="menuitem"] {
  position: relative;
  padding: var(--spacer) calc(var(--spacer) * 1.5);
  font-size: var(--font-size-medium);
  color: var(--gray-dark);
  text-decoration: none;
  white-space: normal;
}

.dropdown-menu [role="menuitem"]:hover {
  color: var(--gray-dark);
  background-color: var(--gray-lightest);
}

.dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  position: absolute;
  top: 11px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  content: "\f00c";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  right: 12px;
  margin-left: var(--spacer) !important;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  left: 12px;
  margin-right: var(--spacer) !important;
}

.language-selector {
  display: flex;
  margin-bottom: calc(var(--spacer) * 2);
  color: var(--gray);
  align-items: center;
}

.language-selector:hover,
.language-selector:active,
.language-selector:focus {
  color: #016899;
}

.language-selector .dropdown-menu {
  bottom: 0;
  transform: translateY(100%);
}

.language-selector .dropdown-toggle {
  padding: 0;
  color: currentColor;
  border: none;
}

.language-selector .dropdown-toggle:hover,
.language-selector .dropdown-toggle:active,
.language-selector .dropdown-toggle:focus {
  color: currentColor;
  background-color: transparent;
}

.language-selector .dropdown-toggle:after {
  color: currentColor;
  transition: none;
}

.share {
  display: flex;
  margin: 0;
  white-space: nowrap;
  list-style: none;
  flex-wrap: wrap;
}

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

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

.share li {
  position: relative;
  display: inline-block;
  margin-bottom: calc(var(--spacer) / 2);
  vertical-align: top;
}

[dir="ltr"] .share li {
  margin-right: calc(var(--spacer) * 0.8);
}

[dir="rtl"] .share li {
  margin-left: calc(var(--spacer) * 0.8);
}

.share a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  background-color: var(--gray-lightest);
  border-radius: 50%;
  touch-action: manipulation;
}

.share a:hover {
  background-color: darken(var(--gray-lightest), 10%);
}

.share a:before {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.share-facebook {
  color: #3d5b95;
}

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

.share-twitter {
  color: #24aadd;
}

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

.share-linkedin {
  color: #0976b4;
}

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

.share-googleplus {
  color: #d23e30;
}

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

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

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

.lt-profile-header__private-badge {
  display: inline-block;
  margin-bottom: var(--spacer);
  background-color: rgba(9, 80, 247, 1);
}

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

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

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

.lt-profile-stats {
  margin-bottom: var(--spacer);
  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: var(--spacer);
}

@media (--screen-sm) {
  .lt-profile-stats__stat {
    display: block;
  }

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

[dir="ltr"] .lt-profile-stats__label {
  margin-right: var(--spacer);
}

[dir="rtl"] .lt-profile-stats__label {
  margin-left: var(--spacer);
}

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

.lt-profile-nav {
  margin-bottom: var(--spacer);
  overflow: hidden;
  font-weight: 600;
  background-color: var(--gray-lightest);
  border-radius: 8px;
}

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

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

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

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

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

.lt-profile-nav__item a {
  display: block;
  color: #000;
}

.lt-profile-nav__item.is-active {
  color: #fff;
  background-color: rgba(9, 80, 247, 1);
}

.lt-profile-nav__item.is-active,
.lt-profile-nav__item a {
  padding: calc(var(--spacer) * 2);
  line-height: 1;
}

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

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

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

.lt-profile-section__header {
  margin-bottom: var(--spacer);
}

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

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

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

.lt-profile-contribution {
  position: relative;
  padding: calc(var(--spacer) * 2);

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

  border-radius: 8px;
}

.lt-profile-contribution__header {
  margin-bottom: var(--spacer);
}

.lt-profile-contribution__status {
  margin-bottom: var(--spacer);
}

.lt-profile-contribution__title {
  margin-bottom: var(--spacer);
  font-size: 16px;
  font-weight: 600;
}

.lt-profile-contribution__body {
  margin-bottom: var(--spacer);
}

.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: var(--spacer);
  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: var(--spacer);
  font-weight: 600;
}

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

[dir="ltr"] .lt-profile-activity__avatar {
  margin-right: var(--spacer);
}

[dir="rtl"] .lt-profile-activity__avatar {
  margin-left: var(--spacer);
}

.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: var(--border-width) solid var(--hr-border);
  border-radius: 8px;
}

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

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

.status-label {
  padding: 2px calc(var(--spacer) / 2);
  font-size: var(--font-size-medium);
  color: var(--light);
}

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

.status-label--with-ticket {
  background-color: rgba(9, 80, 247, 1);
}

.status-label--with-ticket:hover,
.status-label--with-ticket:focus,
.status-label--with-ticket:active {
  color: var(--light);
}

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

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

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

.status-label--official {
  background-color: rgba(9, 80, 247, 1);
}

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

.status-label--planned {
  background-color: var(--brand-brown);
}

.status-label--not-planned {
  color: #000;
  background-color: var(--gray-lightest);
}

.scroll-to-top.fa {
  position: fixed;
  bottom: -calc(var(--spacer) * 5);
  z-index: 3;
  display: flex;
  width: calc(var(--spacer) * 5);
  height: calc(var(--spacer) * 5);
  font-size: var(--font-size-h2);
  color: rgba(9, 80, 247, 1);
  text-decoration: none;
  border: var(--border-width) solid rgba(9, 80, 247, 1);
  border-radius: var(--border-radius-base);
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  align-items: center;
  justify-content: center;
}

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

.scroll-to-top.fa.is-active {
  bottom: calc(var(--spacer) * 2);
}

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

[dir="ltr"] .scroll-to-top.fa {
  left: calc(var(--spacer) * 2);
}

[dir="rtl"] .scroll-to-top.fa {
  right: calc(var(--spacer) * 2);
}

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

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

[dir="ltr"] .dropdown a[data-url]:before {
  margin-right: 16px;
  margin-left: 4px;
}

[dir="rtl"] .dropdown a[data-url]:before {
  margin-right: 4px;
  margin-left: 16px;
}

.dropdown-toggle.btn {
  font-size: 14px;
}

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

.dropdown a[data-url]:before {
  background-image: url("/hc/theming_assets/01JSSYKG3D1A6NHA2MJ8K2F3GN");
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .dropdown a[data-url]:before {
    background-image: url("/hc/theming_assets/01JSSYKGA9RMMM6VC03366V0XM");
    background-size: 198px 198px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-toggle--user {
  padding: 0;
  font-size: calc(16px - 5px);
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0;
}
/* ==========================================================================
  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;
}

.skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  padding: 20px;
  margin: 20px;
  overflow: hidden;
  font-size: 14px;
  color: white;
  background-color: black;
  align-items: center;
  justify-content: center;
}

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

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

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

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

[dir="rtl"] .skip-navigation:focus,
[dir="rtl"] .skip-navigation:active {
  right: auto;
}
/*Community*/
.community-nav {
  display: flex;
  margin-bottom: calc(var(--spacer) * 3);
  justify-content: space-between;
}

.community-nav__items {
  display: flex;
  margin: 0;
}

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

[dir="ltr"] .community-nav__item {
  margin-right: var(--spacer);
}

[dir="rtl"] .community-nav__item {
  margin-left: var(--spacer);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
}

[dir="ltr"] .topic-list {
  margin: 0 - (var(--spacer)) calc(var(--spacer) * 3);
}

[dir="rtl"] .topic-list {
  margin: 0 calc(var(--spacer) * 3) (var(--spacer)) -;
}

.topic-list-item {
  width: 50%;
  padding: 0 var(--spacer);
  margin-bottom: calc(var(--spacer) * 2);
}

@media (max-width: 767px) {
  .topic-list-item {
    width: 100%;
  }
}

.topic-list-item__title a {
  color: #000;
}

.topic-list-item__title a:hover {
  color: rgba(9, 80, 247, 1);
}

.topic-list-item__box {
  padding: calc(var(--spacer) * 2);
  border: var(--border-width) solid var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

.topic-header {
  display: flex;
  margin-bottom: calc(var(--spacer) * 3);
  border-bottom: var(--border-width) solid var(--gray-lightest);
  flex-wrap: wrap;
  justify-content: space-between;
}

.topic-header__title {
  margin-bottom: var(--spacer);
  font-size: var(--font-size-h2);
}

.topic-header__title span {
  color: rgba(9, 80, 247, 1);
}

.topic-header__button {
  margin-bottom: var(--spacer);
}

.topic-description {
  width: 100%;
  margin-bottom: var(--spacer);
  color: var(--gray);
}

.topic-controls {
  display: flex;
  margin-bottom: calc(var(--spacer) * 3);
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.topic-filters__item {
  display: inline-block;
  margin-bottom: var(--spacer);
}

.topic-controls__subscribe {
  display: flex;
  align-items: center;
}

[dir="ltr"] .topic-controls__subscribe .meta {
  padding-right: var(--spacer);
}

[dir="rtl"] .topic-controls__subscribe .meta {
  padding-left: var(--spacer);
}

.post__text {
  margin-bottom: calc(var(--spacer) * 3);
}

.post-callout {
  padding: var(--spacer);
}

.post-callout__title {
  margin-bottom: calc(var(--spacer) * 1.5);
  font-size: var(--font-size-h3);
}

.post__header {
  position: relative;
  padding-bottom: calc(var(--spacer) * 3);
  margin-bottom: calc(var(--spacer) * 1.5);
  border-bottom: var(--border-width) solid var(--gray-lightest);
}

.post__title {
  margin-bottom: calc(var(--spacer) * 2.5);
}

@media (max-width: 420px) {
  .post__title {
    font-size: var(--font-size-h3);
  }
}

.post-status {
  display: inline-block;
  padding: 0 calc(var(--spacer) / 2);
  font-size: var(--font-size-small);
  line-height: 1.5;
}

.post-status--answered {
  color: var(--light);
  background-color: #05BB0C;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

[dir="ltr"] .post-subscribe {
  margin-left: var(--spacer);
}

[dir="rtl"] .post-subscribe {
  margin-right: var(--spacer);
}

.post-new {
  display: flex;
  padding: calc(var(--spacer) * 1.5) 0;
  margin: calc(var(--spacer) * 3) 0;
  border-top: var(--border-width) solid var(--gray-lightest);
  border-bottom: var(--border-width) solid var(--gray-lightest);
  justify-content: space-between;
  align-content: flex-start;
}

.post-new__title {
  margin-bottom: 0;
}

.post-new__button {
  flex-shrink: 0;
}

[dir="ltr"] .post-new__button {
  margin-left: var(--spacer);
}

[dir="rtl"] .post-new__button {
  margin-right: var(--spacer);
}

.post__voting-and-actions {
  position: absolute;
  top: 0;
  justify-content: flex-end;
  align-items: center;
}

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

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

.post-share {
  margin-bottom: calc(var(--spacer) * 3);
}

.post__actions {
  padding-top: 8px;
}

.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-list-item {
  padding-top: 1rem;
  margin-bottom: 1rem;

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

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

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

.new-community-post-page {
  max-width: 600px;
}

@media (max-width: 991px) {
  .new-community-post-page {
    margin: auto;
  }
}

.new_community_post,
.new-request-form {
  margin-bottom: 0;
}

.new_community_post .form-field,
.new-request-form .form-field {
  margin-bottom: calc(var(--spacer) * 2);
}

.new_community_post .form-field p,
.new-request-form .form-field p {
  margin-top: calc(var(--spacer) / 2);
  color: var(--gray);
}

.new_community_post .form-field input,
.new_community_post .form-field textarea,
.new-request-form .form-field input,
.new-request-form .form-field textarea {
  width: 100%;
  height: 36px;
}

.new_community_post .form-field input,
.new-request-form .form-field input {
  line-height: 36px;
}

.new_community_post .form-field textarea,
.new-request-form .form-field textarea {
  min-height: 200px;
}

.new_community_post .form-field .upload-dropzone,
.new-request-form .form-field .upload-dropzone {
  position: relative;
  border-color: var(--gray-lightest);
  border-radius: var(--border-radius-base);
}

.new_community_post .form-field .upload-dropzone input[type="file"],
.new-request-form .form-field .upload-dropzone input[type="file"] {
  position: relative;
  z-index: 1;
  height: 80px;
  font-size: 16px;
  opacity: 0;
}

.new_community_post .form-field .upload-dropzone span,
.new-request-form .form-field .upload-dropzone span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.new_community_post .form-field .upload-dropzone span a,
.new-request-form .form-field .upload-dropzone span a {
  padding: 0 calc(var(--spacer) / 2);
  font-size: inherit;
  color: rgba(9, 80, 247, 1);
}

.new_community_post label,
.new-request-form label {
  display: inline-block;
  margin-bottom: calc(var(--spacer) / 2);
  font-size: var(--font-size-h6);
}

.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;
  font-size: 16px !important;
}

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

.lt-vote__control--voted {
  color: #fff;
  background-color: #029be5;
  border-color: #029be5;
}

.community-badge {
  margin: 2px;
}

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

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

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

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

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

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

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

.accordion {
  padding-top: 0;
  overflow: hidden;
  border: var(--border-width) solid var(--lt-accordion-border);
  border-radius: var(--border-radius-base);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-overlay {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

blockquote:before {
  top: 0;
}

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

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

blockquote:after {
  bottom: 0;
}

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

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

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

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

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

.callout > * + *,
.note > * + *,
.warning > * + *,
.danger > * + *,
.success > * + * {
  margin-top: var(--flow-space, 1rem);
}

.callout:after,
.note:after,
.warning:after,
.danger:after,
.success:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--callout-color);
  border-radius: var(--border-radius-base);
  opacity: 0.15;
}

[dir="ltr"] .callout:after,
[dir="ltr"] .note:after,
[dir="ltr"] .warning:after,
[dir="ltr"] .danger:after,
[dir="ltr"] .success:after {
  left: 0;
}

[dir="rtl"] .callout:after,
[dir="rtl"] .note:after,
[dir="rtl"] .warning:after,
[dir="rtl"] .danger:after,
[dir="rtl"] .success:after {
  right: 0;
}

.callout:before,
.note:before,
.note--default:before,
.callout--info:before,
.note--warning:before,
.warning:before,
.callout--warning:before,
.note--danger:before,
.danger:before,
.callout--danger:before,
.note--success:before,
.success:before,
.callout--success:before {
  position: absolute;
  top: 2rem;
  width: 24px;
  height: 24px;
  content: "";
  -webkit-mask-size: cover;
  mask-size: cover;
}

[dir="ltr"] .callout:before,
[dir="ltr"] .note:before,
[dir="ltr"] .note--default:before,
[dir="ltr"] .callout--info:before,
[dir="ltr"] .note--warning:before,
[dir="ltr"] .warning:before,
[dir="ltr"] .callout--warning:before,
[dir="ltr"] .note--danger:before,
[dir="ltr"] .danger:before,
[dir="ltr"] .callout--danger:before,
[dir="ltr"] .note--success:before,
[dir="ltr"] .success:before,
[dir="ltr"] .callout--success:before {
  left: 2rem;
}

[dir="rtl"] .callout:before,
[dir="rtl"] .note:before,
[dir="rtl"] .note--default:before,
[dir="rtl"] .callout--info:before,
[dir="rtl"] .note--warning:before,
[dir="rtl"] .warning:before,
[dir="rtl"] .callout--warning:before,
[dir="rtl"] .note--danger:before,
[dir="rtl"] .danger:before,
[dir="rtl"] .callout--danger:before,
[dir="rtl"] .note--success:before,
[dir="rtl"] .success:before,
[dir="rtl"] .callout--success:before {
  right: 2rem;
}

.note:before,
.note--default:before,
.callout:before,
.callout--info:before {
  background-color: var(--info-callout-color);
  -webkit-mask: var(--info-callout-icon) center/contain no-repeat;
  mask: var(--info-callout-icon) center/contain no-repeat;
}

.note--success:before,
.success:before,
.callout--success:before {
  background-color: var(--success-callout-color);
  -webkit-mask: var(--success-callout-icon) center/contain no-repeat;
  mask: var(--success-callout-icon) center/contain no-repeat;
}

.note--danger:before,
.danger:before,
.callout--danger:before {
  background-color: var(--danger-callout-color);

  -webkit-mask: var(--danger-callout-icon) center/contain no-repeat;
  mask: var(--danger-callout-icon) center/contain no-repeat;
}

.note--warning:before,
.warning:before,
.callout--warning:before {
  background-color: var(--warning-callout-color);
  -webkit-mask: var(--warning-callout-icon) center/contain no-repeat;
  mask: var(--warning-callout-icon) center/contain no-repeat;
}

.shadow.callout,
.shadow.note,
.shadow.warning,
.shadow.danger,
.shadow.success {
  box-shadow: var(--callout-box-shadow);
}

[dir="ltr"] .minimal.callout,
[dir="ltr"] .minimal.note,
[dir="ltr"] .minimal.warning,
[dir="ltr"] .minimal.danger,
[dir="ltr"] .minimal.success {
  border-left: none;
}

[dir="rtl"] .minimal.callout,
[dir="rtl"] .minimal.note,
[dir="rtl"] .minimal.warning,
[dir="rtl"] .minimal.danger,
[dir="rtl"] .minimal.success {
  border-right: none;
}

.stroke.note,
.minimal.stroke.note,
.minimal.stroke.callout--info,
.stroke.callout--info {
  border: 1px solid var(--info-callout-color);
}

.minimal.stroke.warning,
.minimal.stroke.callout--warning,
.stroke.callout--warning,
.stroke.warning {
  border: 1px solid var(--warning-callout-color);
}

.minimal.stroke.callout--danger,
.minimal.stroke.danger,
.stroke.callout--danger,
.stroke.danger {
  border: 1px solid var(--danger-callout-color);
}

.minimal.stroke.callout--success,
.minimal.stroke.success,
.stroke.callout--success,
.stroke.success {
  border: 1px solid var(--success-callout-color);
}

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

[dir="ltr"] .note,
[dir="ltr"] .note--default,
[dir="ltr"] .callout,
[dir="ltr"] .callout--info,
[dir="ltr"] .callout--primary {
  border-left: var(--callout-border-width) solid var(--info-callout-color);
}

[dir="rtl"] .note,
[dir="rtl"] .note--default,
[dir="rtl"] .callout,
[dir="rtl"] .callout--info,
[dir="rtl"] .callout--primary {
  border-right: var(--callout-border-width) solid var(--info-callout-color);
}

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

[dir="ltr"] .warning,
[dir="ltr"] .note--warning,
[dir="ltr"] .callout--warning {
  border-left: var(--callout-border-width) solid var(--warning-callout-color);
}

[dir="rtl"] .warning,
[dir="rtl"] .note--warning,
[dir="rtl"] .callout--warning {
  border-right: var(--callout-border-width) solid var(--warning-callout-color);
}

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

[dir="ltr"] .danger,
[dir="ltr"] .note--danger,
[dir="ltr"] .callout--danger {
  border-left: var(--callout-border-width) solid var(--danger-callout-color);
}

[dir="rtl"] .danger,
[dir="rtl"] .note--danger,
[dir="rtl"] .callout--danger {
  border-right: var(--callout-border-width) solid var(--danger-callout-color);
}

.success,
.note--success,
.callout--success {
  --callout-color: var(--success-callout-color);
}

[dir="ltr"] .success,
[dir="ltr"] .note--success,
[dir="ltr"] .callout--success {
  border-left: var(--callout-border-width) solid var(--success-callout-color);
}

[dir="rtl"] .success,
[dir="rtl"] .note--success,
[dir="rtl"] .callout--success {
  border-right: var(--callout-border-width) solid var(--success-callout-color);
}

.no-icon.callout,
.no-icon.note,
.no-icon.warning,
.no-icon.danger,
.no-icon.success {
  padding: var(--callout-padding);
}

.no-icon.callout:before,
.no-icon.note:before,
.no-icon.warning:before,
.no-icon.danger:before,
.no-icon.success:before {
  display: none;
}

.transparent.callout:after,
.transparent.note:after,
.transparent.warning:after,
.transparent.danger:after,
.transparent.success:after {
  background-color: transparent;
}

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

code {
  font-size: 0.875em;
  word-wrap: break-word;
  white-space: break-spaces;
}

.rte code:not([class]) {
  padding: 0.25em;
  background-color: var(--code-bg);
  border-radius: var(--border-radius-base);
}

.rte pre code {
  padding: 1.25rem;
  border-radius: var(--border-radius-base);
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

pre {
  position: relative;
}

.lt-copy-code {
  position: absolute;
  top: 22px;
  z-index: 2;
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-theme-text, var(--color-text-primary));
  cursor: pointer;
}

.lt-copy-code:before {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  content: "";
}

[dir="ltr"] .lt-copy-code {
  right: 22px;
}

[dir="ltr"] .lt-copy-code:before {
  margin-right: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir="rtl"] .lt-copy-code {
  left: 22px;
}

[dir="rtl"] .lt-copy-code:before {
  margin-left: 5px;
  background: var(--color-dark-theme-text, var(--color-text-primary));
  -webkit-mask: var(--copy-code-icon) center/contain no-repeat;
  mask: var(--copy-code-icon) center/contain no-repeat;
}

[dir] .lt-copy-code:before {
  background-size: 18px auto;
}

.list-check ul:not([class]),
.list-bullet ul:not([class]),
.list-number ul:not([class]),
.list-colored ul:not([class]),
.list-anchor ul:not([class]),
.list-dash ul:not([class]),
.list-file ul:not([class]),
.rte ul:not([class]) {
  list-style-type: disc;
}

[dir="ltr"] .list-check ul:not([class]),
[dir="ltr"] .list-bullet ul:not([class]),
[dir="ltr"] .list-number ul:not([class]),
[dir="ltr"] .list-colored ul:not([class]),
[dir="ltr"] .list-anchor ul:not([class]),
[dir="ltr"] .list-dash ul:not([class]),
[dir="ltr"] .list-file ul:not([class]),
[dir="ltr"] .rte ul:not([class]) {
  padding-left: 1rem;
}

[dir="rtl"] .list-check ul:not([class]),
[dir="rtl"] .list-bullet ul:not([class]),
[dir="rtl"] .list-number ul:not([class]),
[dir="rtl"] .list-colored ul:not([class]),
[dir="rtl"] .list-anchor ul:not([class]),
[dir="rtl"] .list-dash ul:not([class]),
[dir="rtl"] .list-file ul:not([class]),
[dir="rtl"] .rte ul:not([class]) {
  padding-right: 1rem;
}

.list-check ul:not([class]) > li,
.list-bullet ul:not([class]) > li,
.list-number ul:not([class]) > li,
.list-colored ul:not([class]) > li,
.list-anchor ul:not([class]) > li,
.list-dash ul:not([class]) > li,
.list-file ul:not([class]) > li,
.rte ul:not([class]) > li {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check ul:not([class]) > li,
[dir="ltr"] .list-bullet ul:not([class]) > li,
[dir="ltr"] .list-number ul:not([class]) > li,
[dir="ltr"] .list-colored ul:not([class]) > li,
[dir="ltr"] .list-anchor ul:not([class]) > li,
[dir="ltr"] .list-dash ul:not([class]) > li,
[dir="ltr"] .list-file ul:not([class]) > li,
[dir="ltr"] .rte ul:not([class]) > li {
  padding-left: 0.5rem;
}

[dir="rtl"] .list-check ul:not([class]) > li,
[dir="rtl"] .list-bullet ul:not([class]) > li,
[dir="rtl"] .list-number ul:not([class]) > li,
[dir="rtl"] .list-colored ul:not([class]) > li,
[dir="rtl"] .list-anchor ul:not([class]) > li,
[dir="rtl"] .list-dash ul:not([class]) > li,
[dir="rtl"] .list-file ul:not([class]) > li,
[dir="rtl"] .rte ul:not([class]) > li {
  padding-right: 0.5rem;
}

.list-check ul:not([class]) > li::marker,
.list-bullet ul:not([class]) > li::marker,
.list-number ul:not([class]) > li::marker,
.list-colored ul:not([class]) > li::marker,
.list-anchor ul:not([class]) > li::marker,
.list-dash ul:not([class]) > li::marker,
.list-file ul:not([class]) > li::marker,
.rte ul:not([class]) > li::marker {
  color: var(--rte-bullet-color);
}

.rte-enhanced ol {
  list-style: none;
}

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

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

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

.list-number li,
.rte-enhanced ol li,
.list-colored li,
.list-file li,
.rte li {
  list-style: inherit;
}

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

.article__body .list-check,
.article__body .list-bullet,
.article__body .list-number,
.article__body .rte-enhanced ol,
.article__body .list-colored,
.article__body .list-anchor,
.article__body .list-task,
.article__body .list-dash,
.article__body .list-file {
  list-style: none;
}

[dir="ltr"] .article__body .list-check,
[dir="ltr"] .article__body .list-bullet,
[dir="ltr"] .article__body .list-number,
[dir="ltr"] .article__body .rte-enhanced ol,
[dir="ltr"] .article__body .list-colored,
[dir="ltr"] .article__body .list-anchor,
[dir="ltr"] .article__body .list-task,
[dir="ltr"] .article__body .list-dash,
[dir="ltr"] .article__body .list-file {
  padding-left: 0;
}

[dir="rtl"] .article__body .list-check,
[dir="rtl"] .article__body .list-bullet,
[dir="rtl"] .article__body .list-number,
[dir="rtl"] .article__body .rte-enhanced ol,
[dir="rtl"] .article__body .list-colored,
[dir="rtl"] .article__body .list-anchor,
[dir="rtl"] .article__body .list-task,
[dir="rtl"] .article__body .list-dash,
[dir="rtl"] .article__body .list-file {
  padding-right: 0;
}

.list-check > li,
.list-bullet > li,
.list-number > li,
.rte-enhanced ol > li,
.list-colored > li,
.list-task > div,
.list-task > li,
.list-dash > li,
.list-anchor > li,
.list-file > li {
  position: relative;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

[dir="ltr"] .list-check > li,
[dir="ltr"] .list-bullet > li,
[dir="ltr"] .list-number > li,
[dir="ltr"] .rte-enhanced ol > li,
[dir="ltr"] .list-colored > li,
[dir="ltr"] .list-task > div,
[dir="ltr"] .list-task > li,
[dir="ltr"] .list-dash > li,
[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 2.5rem;
}

[dir="rtl"] .list-check > li,
[dir="rtl"] .list-bullet > li,
[dir="rtl"] .list-number > li,
[dir="rtl"] .rte-enhanced ol > li,
[dir="rtl"] .list-colored > li,
[dir="rtl"] .list-task > div,
[dir="rtl"] .list-task > li,
[dir="rtl"] .list-dash > li,
[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 2.5rem;
}

[dir="ltr"] .list-anchor > li,
[dir="ltr"] .list-file > li {
  padding-left: 1.5rem;
}

[dir="rtl"] .list-anchor > li,
[dir="rtl"] .list-file > li {
  padding-right: 1.5rem;
}

[dir="ltr"] .list-dash > li {
  padding-left: 1.75rem;
}

[dir="rtl"] .list-dash > li {
  padding-right: 1.75rem;
}

[dir="ltr"] .rte li + ul,
[dir="ltr"] .rte li + ol {
  margin-left: 2.5rem;
}

[dir="rtl"] .rte li + ul,
[dir="rtl"] .rte li + ol {
  margin-right: 2.5rem;
}

.list-check > li:before,
.list-bullet > li:before,
.list-number > li:before,
.list-anchor > li:before,
.list-file > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before,
.list-dash > li:before {
  position: absolute;
  top: 0.15em;
  display: inline-block;
  width: 1.725em;
  height: 1.725em;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.725em;
  text-align: center;
  border-radius: 50%;
}

[dir="ltr"] .list-check > li:before,
[dir="ltr"] .list-bullet > li:before,
[dir="ltr"] .list-number > li:before,
[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before,
[dir="ltr"] .rte-enhanced ol > li:before,
[dir="ltr"] .list-colored > li:before,
[dir="ltr"] .list-dash > li:before {
  left: 0;
}

[dir="rtl"] .list-check > li:before,
[dir="rtl"] .list-bullet > li:before,
[dir="rtl"] .list-number > li:before,
[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before,
[dir="rtl"] .rte-enhanced ol > li:before,
[dir="rtl"] .list-colored > li:before,
[dir="rtl"] .list-dash > li:before {
  right: 0;
}

.list-anchor > li:before,
.list-file > li:before {
  width: 1rem;
  height: 1rem;
  content: "";
}

[dir="ltr"] .list-anchor > li:before,
[dir="ltr"] .list-file > li:before {
  left: 0;
}

[dir="rtl"] .list-anchor > li:before,
[dir="rtl"] .list-file > li:before {
  right: 0;
}

.list-anchor > li:before {
  top: 0.4rem;
  background: var(--anchor-list-icon) center/contain no-repeat;
}

.list-file > li:before {
  top: 0.5rem;
  background: var(--anchor-file-icon) center/contain no-repeat;
}

.list-bullet > li:before,
.list-check > li:before {
  color: var(--list-bullet-text, var(--color-brand-primary-inverse));
  content: "✓";
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.list-number,
.rte-enhanced ol,
.list-colored {
  counter-reset: list;
}

.list-number > li,
.rte-enhanced ol > li,
.list-colored > li {
  counter-increment: list;
}

.list-number > li:before,
.rte-enhanced ol > li:before,
.list-colored > li:before {
  color: var(--list-bullet-bg, var(--color-brand-primary-inverse));
  content: counter(list);
  background-color: var(--list-bullet-bg, var(--color-text-primary));
}

.task-wrapper {
  display: flex;
  align-items: center;
}

.task-wrapper label {
  display: flex;
  font-weight: normal;
  cursor: pointer;
  align-items: center;
}

[dir="ltr"] .task-wrapper label {
  margin-left: -2rem;
}

[dir="rtl"] .task-wrapper label {
  margin-right: -2rem;
}

.task-wrapper label:before {
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-color: var(--body-color-bg);
  border: 0.05em solid var(--color-text-primary);
  border-radius: 0.15em;
}

[dir="ltr"] .task-wrapper label:before {
  margin-right: 0.5em;
}

[dir="rtl"] .task-wrapper label:before {
  margin-left: 0.5em;
}

.task-wrapper input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  opacity: 0;
}

.task-wrapper label:hover:before,
.task-wrapper input[type="checkbox"]:hover + label:before {
  background-color: var(--color-bg-secondary);
}

.task-wrapper label:focus:before,
.task-wrapper input[type="checkbox"]:focus + label:before {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-brand-primary);
}

.task-wrapper input[type="checkbox"]:checked + label:before {
  display: flex;
  color: var(--color-brand-primary-inverse);
  content: "✓";
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  justify-content: center;
  align-items: center;
}

.list-dash > li:before {
  content: "—";
}

.list-step {
  position: relative;
}

.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: 10px;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-step > li:not(:last-child):after {
  left: calc(1.5rem + 1px);
}

[dir="rtl"] .list-step > li:not(:last-child):after {
  right: calc(1.5rem + 1px);
}

.list-number.list-step > li:not(:last-child):after,
.list-colored.list-step > li:not(:last-child):after,
.list-file.list-step > li:not(:last-child):after,
.list-task.list-step > .task-wrapper:not(:last-child):after,
.list-task.list-step > li:not(:last-child):after,
.list-dash.list-step > li:not(:last-child):after {
  position: absolute;
  top: 1rem;
  bottom: -1.5rem;
  z-index: -1;
  width: 1px;
  content: "";
  background-color: var(--light-gray);
}

[dir="ltr"] .list-number.list-step > li:not(:last-child):after,
[dir="ltr"] .list-colored.list-step > li:not(:last-child):after,
[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-dash.list-step > li:not(:last-child):after {
  left: calc(1rem - 4px);
}

[dir="rtl"] .list-number.list-step > li:not(:last-child):after,
[dir="rtl"] .list-colored.list-step > li:not(:last-child):after,
[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-dash.list-step > li:not(:last-child):after {
  right: calc(1rem - 4px);
}

[dir="ltr"] .list-file.list-step > li:not(:last-child):after {
  left: 1.5rem;
}

[dir="rtl"] .list-file.list-step > li:not(:last-child):after {
  right: 1.5rem;
}

.list-task.list-step > li {
  position: relative;
}

.list-task.list-step > li:before {
  position: absolute;
  top: calc(1rem - 6px);
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--body-color-bg);
  border: 1px solid var(--color-text-primary);
  border-radius: 50%;
}

[dir="ltr"] .list-task.list-step > li:before {
  left: calc(1rem - 2px);
}

[dir="rtl"] .list-task.list-step > li:before {
  right: calc(1rem - 2px);
}

[dir="ltr"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="ltr"] .list-task.list-step > li:not(:last-child):after {
  left: calc(1rem + 2px);
}

[dir="rtl"] .list-task.list-step > .task-wrapper:not(:last-child):after,
[dir="rtl"] .list-task.list-step > li:not(:last-child):after {
  right: calc(1rem + 2px);
}

.img-magnifier-glass {
  position: absolute;
  width: 150px;
  height: 150px;
  cursor: none;
  border: 1px solid rgb(121, 121, 121);
  border-radius: 50%;
}

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

.rte {
  line-height: 1.8;
  word-break: break-word;
}

.rte * {
  margin-bottom: 0;
}

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

.rte > * {
  margin-bottom: 0;
}

.rte h1,
.rte h2,
.rte h3 {
  --flow-space: 3rem;
}

.rte h4,
.rte h5,
.rte h6 {
  --flow-space: 2rem;
}

.rte:after {
  display: block;
  clear: both;
  content: "";
}

.rte > p:first-child {
  margin-top: 0;
}

.rte > p:last-child {
  margin-bottom: 0;
}

.rte figcaption {
  margin-top: 1rem;
  opacity: 0.75;
}

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

.rte table:not([class*="table"]) {
  width: 100%;
  table-layout: auto;
}

[dir="ltr"] .rte table:not([class*="table"]) {
  text-align: left;
}

[dir="rtl"] .rte table:not([class*="table"]) {
  text-align: right;
}

.rte table:not([class*="table"]) thead {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) th,
.rte table:not([class*="table"]) td {
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}

[dir="ltr"] .rte table:not([class*="table"]) th:first-child,
[dir="ltr"] .rte table:not([class*="table"]) td:first-child {
  padding-left: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:first-child,
[dir="rtl"] .rte table:not([class*="table"]) td:first-child {
  padding-right: 0;
}

[dir="ltr"] .rte table:not([class*="table"]) th:last-child,
[dir="ltr"] .rte table:not([class*="table"]) td:last-child {
  padding-right: 0;
}

[dir="rtl"] .rte table:not([class*="table"]) th:last-child,
[dir="rtl"] .rte table:not([class*="table"]) td:last-child {
  padding-left: 0;
}

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

.rte table:not([class*="table"]) tbody tr {
  border-bottom-color: var(--color-border);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.rte table:not([class*="table"]) tbody td {
  padding-top: 0.5rem;
  vertical-align: baseline;
}

.rte table:not([class*="table"]) tbody tr:last-child {
  border-bottom-width: 0;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    border: var(--border-width) solid var(--color-border);
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive > table {
    margin-bottom: 0;
  }

  .table-responsive > table > thead > tr > th,
  .table-responsive > table > thead > tr > td,
  .table-responsive > table > tbody > tr > th,
  .table-responsive > table > tbody > tr > td,
  .table-responsive > table > tfoot > tr > th,
  .table-responsive > table > tfoot > tr > td {
    white-space: nowrap;
  }
}

.rte table.hover td,
.rte table.hover th,
.rte table.border td,
.rte table.border th,
.rte table.striped td,
.rte table.striped th,
.rte table.colored td,
.rte table.colored th {
  padding: 1rem !important;
}

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

.rte table.colored:not([class*="table"]) thead {
  border-bottom: none;
}

[dir="ltr"] .table--color-header thead th:first-child,
[dir="ltr"] table.colored thead th:first-child {
  border-top-left-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:first-child,
[dir="rtl"] table.colored thead th:first-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--color-header thead th:last-child,
[dir="ltr"] table.colored thead th:last-child {
  border-top-right-radius: var(--border-radius-base-min);
}

[dir="rtl"] .table--color-header thead th:last-child,
[dir="rtl"] table.colored thead th:last-child {
  border-top-left-radius: var(--border-radius-base-min);
}

table.table--color-header th,
table.colored th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

table.border {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

table.border tbody tr:not(:last-child) td,
table.border th {
  border-bottom: 1px solid var(--color-border);
}

[dir="ltr"] table.border td:not(:first-child),
[dir="ltr"] table.border th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] table.border td:not(:first-child),
[dir="rtl"] table.border th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

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

.table th,
.table td {
  padding: 12px;
  vertical-align: top;
}

.table td {
  border-top: 1px solid var(--color-border);
}

.table--color-header tbody tr:first-child td {
  border-top: none;
}

.table thead th {
  vertical-align: bottom;
}

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

[dir="rtl"] .table thead th {
  text-align: right;
}

.table tbody + tbody {
  border-top: 1px solid var(--color-border);
}

.table .table {
  background-color: var(--color-brand-primary-inverse);
}

.table--color-header th {
  color: var(--color-brand-primary-inverse);
  background-color: var(--color-brand-primary);
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: var(--color-brand-primary-inverse);
}

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

.table--hover tbody tr:hover {
  color: inherit;
}

.table--bordered {
  border-collapse: separate;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base-min);
}

[dir="ltr"] .table--bordered td:not(:first-child),
[dir="ltr"] .table--bordered th:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

[dir="rtl"] .table--bordered td:not(:first-child),
[dir="rtl"] .table--bordered th:not(:first-child) {
  border-right: 1px solid var(--color-border);
}

.table--striped tbody tr:nth-child(odd),
table.striped tbody tr:nth-child(odd),
.table--hover tbody tr,
.rte table.hover tr {
  position: relative;
}

.table--striped tbody tr:nth-child(odd) td,
table.striped tbody tr:nth-child(odd) td,
.table--hover tbody tr td,
.rte table.hover tr td {
  position: relative;
  z-index: 1;
}

.table--striped th,
.table--striped td,
table.striped th,
.table--striped td {
  position: relative;
}

.table--striped tbody td:after,
table.striped tbody td:after,
.table--hover tbody td:after,
.rte table.hover tbody td:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  opacity: 0.3;
}

[dir="ltr"] .table--striped tbody td:after,
[dir="ltr"] table.striped tbody td:after,
[dir="ltr"] .table--hover tbody td:after,
[dir="ltr"] .rte table.hover tbody td:after {
  left: 0;
}

[dir="rtl"] .table--striped tbody td:after,
[dir="rtl"] table.striped tbody td:after,
[dir="rtl"] .table--hover tbody td:after,
[dir="rtl"] .rte table.hover tbody td:after {
  right: 0;
}

.table--hover tbody td:after,
.rte table.hover tbody td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--striped tbody td:after,
table.striped tbody td:after {
  background-color: var(--color-table-bg-hover);
}

.table--striped tbody tr:nth-child(even) td:after,
table.striped tbody tr:nth-child(even) td:after {
  background-color: rgba(0, 0, 0, 0);
}

.table--hover tbody tr:hover td:after,
.rte table.hover tbody tr:hover td:after {
  background-color: var(--color-table-bg-hover);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 768px) {
  .tabs {
    flex-direction: row;
  }
}

.tab {
  flex-basis: 100%;
  padding: 1rem;
  border: var(--border-width) solid var(--color-border);
  border-bottom-right-radius: var(--border-radius-base);
  border-bottom-left-radius: var(--border-radius-base);
}

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

.tabs-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  cursor: pointer;
  border-color: var(--color-border);
  border-style: solid;
  border-width: var(--border-width) var(--border-width) 0 var(--border-width);
}

@media (min-width: 768px) {
  .tabs-link {
    margin-bottom: calc(-1 * var(--border-width));
  }

  .tabs-link:not([aria-selected="true"]) {
    border-color: transparent;
  }
}

.tabs-link:first-child {
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base);
}

@media (min-width: 768px) {
  .tabs-link {
    border-top-left-radius: var(--border-radius-base);
    border-top-right-radius: var(--border-radius-base);
  }
}

.tabs-link[aria-selected="true"] {
  color: var(--color-brand-primary);
  cursor: pointer;
  background-color: var(--tabs-bg, var(--color-bg));
  border-color: var(--color-border);
}

.underline .tabs-link[aria-selected="true"] {
  border-color: var(--color-brand-primary);
  border-width: 0 0 var(--border-width) 0;
}

.background .tabs-link[aria-selected="true"],
.background .tab {
  position: relative;
  overflow: hidden;
  color: var(--color-text-primary);
  border-width: 0 0 0 0;
}

.background .tab:after,
.background .tabs-link[aria-selected="true"]:after {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--color-brand-primary);
  opacity: 0.15;
}

[dir="ltr"] .background .tab:after,
[dir="ltr"] .background .tabs-link[aria-selected="true"]:after {
  left: 0;
}

[dir="rtl"] .background .tab:after,
[dir="rtl"] .background .tabs-link[aria-selected="true"]:after {
  right: 0;
}

slider-component {
  position: relative;
  display: block;
}

.slider-grid {
  display: flex;
  padding: 0;
  margin-bottom: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.slider-grid:last-child {
  margin-bottom: 0;
}

.slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider::-webkit-scrollbar {
  display: none;
  width: 0.4rem;
  height: 0.4rem;
}

.slider::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 0.4rem;
}

.slider::-webkit-scrollbar-track {
  border-radius: 0.4rem;
}

.slider.slider--tablet {
  position: relative;
  margin-bottom: 1rem;
  overflow-x: auto;
  flex-wrap: inherit;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

[dir="ltr"] .slider.slider--tablet {
  scroll-padding-left: 1.5rem;
}

[dir="rtl"] .slider.slider--tablet {
  scroll-padding-right: 1.5rem;
}

.slider--tablet.smooth {
  scroll-behavior: smooth;
}

.slider--tablet:after {
  width: 0;
  content: "";
}

[dir="ltr"] .slider--tablet:after {
  padding-left: 1.5rem;
}

[dir="rtl"] .slider--tablet:after {
  padding-right: 1.5rem;
}

.slider.slider--tablet .slider__slide {
  margin-bottom: 0;
}

.slider-grid__item {
  flex-grow: 1;
  flex-shrink: 0;
}

.slider-grid__item.slider__slide--full-width {
  width: 100%;
  max-width: none;
}

.slider__slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  padding-bottom: 0;
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-btn.slider-button {
  display: flex;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border: none;
  align-items: center;
  justify-content: center;
}

.slider-button .icon {
  height: 0.6rem;
}

.slider-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.slider-button[disabled] .icon {
  cursor: not-allowed;
}

[dir="ltr"] .slider-button--next .icon {
  transform: rotate(-90deg);
}

[dir="rtl"] .slider-button--next .icon {
  transform: rotate(90deg);
}

[dir="ltr"] .slider-button--prev .icon {
  transform: rotate(90deg);
}

[dir="rtl"] .slider-button--prev .icon {
  transform: rotate(-90deg);
}

[dir="ltr"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

[dir="rtl"] .slider-button--next:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="ltr"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(90deg) scale(1.1);
}

[dir="rtl"] .slider-button--prev:not([disabled]):hover .icon {
  transform: rotate(-90deg) scale(1.1);
}

.slider-counter {
  display: flex;
  justify-content: center;
  min-width: 4.4rem;
}

.topic-list-item__box {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}