/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #FFE14C;
  --secondary-color: #FFE14C;
  --primary-bg-color: #242424;
  --primary-bg-color-always: #242424;
  --secondary-bg-color: #2D2D2B;
  --secondary-bg-color-always: #2D2D2B;
  --primary-text-color: #ffffff;
  --secondary-text-color: #AFADA3;
  --link-color: #ffffff;
  --border-color: #3D3D3B;
  --placeholder-text-color: #8E8E8E;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #ebce39;
  --primary-color-active: #dbb80a;
  --secondary-color-hover: #ffd70f;
  --secondary-color-active: #ffd400;
  --secondary-bg-color-hover: #232321;
  --secondary-bg-color-active: #1d1d1c;
  --secondary-text-color-hover: #a6a398;
  --secondary-text-color-active: #a19e93;
  --link-color-hover: #e0e0e0;
  --link-color-active: #d9d9d9;

  /* Text */
  --text-font-family: 'New Transport', sans-serif;
  --heading-font-family: 'New Transport', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 48px;
  --heading-2-font-size: 36px;
  --heading-3-font-size: 30px;
  --heading-4-font-size: 24px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 12px;
  --border-radius-small: calc(12px / 2);
  --border-radius-button: 50px;
  --logo-height: 40px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 2px;
  --minus-border-width: -1px;
  --box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
  --duration: 400ms;
  --timing-function: cubic-bezier(0.17, 0.67, 0.54, 1);
  --assets-check-svg: url(/hc/theming_assets/01K5XAH4FCJPPE8T3S8GDAESRM);
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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 {
  display: none;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

a.link-primary,
.my-activities-menu__item a {
  color: var(--primary-color);
}

a.link-primary:hover,
.my-activities-menu__item a:hover {
  color: var(--primary-color-hover);
}

a.link-primary:active,
a.link-primary.is-active,
.my-activities-menu__item a:active {
  color: var(--primary-color-active);
}

a.link-secondary {
  color: var(--secondary-color);
}

a.link-secondary:hover {
  color: var(--secondary-color-hover);
}

a.link-secondary:active,
a.link-secondary.is-active {
  color: var(--secondary-color-active);
}

a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

a,
button,
[type='submit'],
[type='button'],
[type='reset'] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.iframe {
  position: relative;
}

.iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-container {
  width: 100%;
  overflow-y: auto;
}

.list-unstyled {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.list-unstyled li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

@media (min-width: 1200px) and (max-width: 1399px) {
  .is-hidden--xl {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .is-hidden--lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-hidden--md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .is-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .is-hidden--xl-down {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-hidden--lg-down {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-hidden--md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-hidden--sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {

  .is-hidden--xs,
  .is-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 1400px) {

  .is-hidden--xxl,
  .is-hidden--xxl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-hidden--xl-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-hidden--lg-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--md-up {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .is-hidden--sm-up {
    display: none !important;
  }
}

[dir='ltr'] .is-hidden--ltr {
  display: none !important;
}

[dir='rtl'] .is-hidden--rtl {
  display: none !important;
}

.ui-light .is-hidden--light-mode {
  display: none !important;
}

.ui-dark .is-hidden--dark-mode {
  display: none !important;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

h3,
.h3,
h4,
.h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

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

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

@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  h2,
  .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  h3,
  .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  [dir] h1,
  [dir] .h1,
  [dir] h2,
  [dir] .h2,
  [dir] h3,
  [dir] .h3,
  [dir] h4,
  [dir] .h4,
  [dir] h5,
  [dir] .h5,
  [dir] h6,
  [dir] .h6 {
    letter-spacing: 0;
  }
}

h1,
.h1 {
  margin: 0 0 1.2em;
}

.markdown h1,
.markdown .h1 {
  margin-top: 1.2em;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0;
}

.breadcrumbs--bottom {
  margin: 12px 0 0;
}

.breadcrumbs li {
  font-size: var(--text-font-size-small);
  margin-right: 24px;
  display: block;
  position: relative;
}

.breadcrumbs li + li {
  padding-left: 28px;
}

.breadcrumbs li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .breadcrumbs li {
    margin-right: 12px;
  }

  .breadcrumbs li + li {
    padding-left: 16px;
  }
}

/* Inner pages */
.inner-page-heading .section__title {
  margin-bottom: 12px;
}

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

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page .category-list__item {
  background-color: var(--secondary-bg-color);
}

.inner-page .category-list__item:hover,
.inner-page .category-list__item:active {
  box-shadow: none;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

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

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

[dir='ltr'] .entry-info__avatar {
  padding-right: 12px;
}

[dir='rtl'] .entry-info__avatar {
  padding-left: 12px;
}

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

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

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.meta {
  font-size: var(--text-font-size-small);
  color: var(--secondary-text-color);
}

.inner-page__rightbar + .inner-page__rightbar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

.related-articles ul li,
.recent-articles ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.share {
  display: flex;
  margin: 24px 0;
  padding: 0;
}

.share li {
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
  list-style: none;
}

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.attachment-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.article-vote {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.article-vote__title {
  margin: 0 0 12px;
}

.article-vote__count {
  margin-top: 12px;
}

.article-vote__controls {
  display: flex;
  gap: 12px;
}

.article-vote__controls .btn {
  border-color: var(--border-color);
  color: var(--primary-text-color);
  padding: 2px 9px;
}

.article-vote__controls .btn:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.article-vote__controls .btn.is-active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.article-vote__controls .btn.is-active:hover {
  background-color: var(--primary-color-hover);
  border-color: var(--primary-color-hover);
}

.article-vote__controls .btn img {
  width: 24px;
  height: 24px;
}

.article-more-questions {
  display: none !important;
}

/* Comments */
.comments__heading {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

.comments__container {
  background-color: var(--primary-bg-color);
  padding: 40px;
}

.comment-form__body textarea {
  height: 112px;
}

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  display: flex;
  margin-bottom: 24px;
}

.comment__left {
  flex: 1 1 10px;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
}

.comment + .comment {
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.comment__heading {
  display: flex;
  align-items: center;
}

.user-avatar {
  margin-right: 12px;
}

.comment__body {
  margin-top: 12px;
}

.comment__body .h5 {
  font-size: 18px;
}

.comment__actions {
  margin-top: 4px;
}

.request-details {
  display: flex;
  flex-wrap: wrap;
}

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

/**/
.my-activities-menu {
  display: flex;
  padding: 0;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: -32px;
}

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }
}

.my-activities-menu__item.is-active {
  padding: 0 0 12px;
  border-bottom: 3px solid var(--primary-color);
}

.my-activities {
  width: 100%;
}

.my-activities thead {
  font-weight: bold;
}

.my-activities thead td {
  padding-bottom: 12px;
}

.my-activities tbody td {
  padding: 4px 0;
}

.my-activities__btn {
  width: 10px;
}

.pagination {
  display: block;
  margin: 24px 0;
}

.pagination-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-list li + li {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .my-activities__is-hidden {
    display: none !important;
  }
}

.my-activities thead .requests-link,
.my-activities thead .requests-link:hover,
.my-activities thead .requests-link:active {
  color: var(--primary-text-color);
}

.my-activities thead .requests-sort-symbol {
  font-size: 10px;
  color: var(--link-color);
  margin-left: 4px;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

@media (min-width: 768px) {
  .filter {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: 'Font Awesome 5 Free';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: '\f107';
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}

.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

.topic-list__item + .topic-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ':';
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

/* Header */
.header {
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
}

.with-welcome .header {
  border: none;
}

.header-placeholder {
  height: 98px;
}

[dir] .header__container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1392px;
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .container,
footer .container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1280px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: var(--logo-height);
}

.header__logo span {
  margin-left: 12px;
}

.header__menu {
  display: flex;
  margin: 0;
  padding: 0;
}

.header__menu > * {
  display: block;
}

.header__menu > * + * {
  margin-left: 22px;
}

.header__menu .fas {
  font-size: 11px;
}

.header__mobile-toggle.is-active i::before {
  content: '\f00d';
}

@media (min-width: 768px) and (max-width: 991px) {

  .header__menu,
  .header__logo span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-color);
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .header__menu.is-active {
    display: block;
  }

  .header__menu > * {
    display: block;
    width: 100%;
    padding: 6px 15px;
  }

  .header__menu > * + * {
    margin-left: 0;
  }
}

.header__search .fas {
  font-size: 14px;
}

.header-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--primary-bg-color);
  transition: all var(--duration) var(--timing-function);
  transform: translateY(-100%);
  visibility: hidden;
}

.header-search.is-active {
  transform: translateY(0);
  visibility: visible;
}

.header-search .welcome__search input[type='search'] {
  border: none;
  border-radius: 0;
  height: 60px;
  padding-left: 0;
}

/* Welcome */
.welcome {
  margin-top: -76px;
  padding: 200px 0 48px;
  background-size: contain;
  border-bottom: 1px solid var(--border-color);
}

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

.welcome__title {
  font-family: 'Reckless', sans-serif;;
  font-size: 64px;
  font-weight: 600;
  line-height: 92%;
  letter-spacing: -2px;
  margin-bottom: 56px;
}

.welcome__title i {
  display: block;
}

.welcome__search form {
  display: flex;
  gap: 12px;
}

.welcome__search input[type='search'] {
  outline: none;
}

.welcome__search input[type='search']:focus,
.welcome__search input[type='search']:active {
  outline: none;
}

.welcome__search input[type='submit'] {
}

@media (max-width: 767px) {
  .welcome {
    padding: 148px 0 36px;
  }

  .welcome__title {
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .welcome {
    padding: 100px 0 30px;
  }

  .welcome__title {
    margin-bottom: 24px;
    letter-spacing: 0;
    font-size: var(--heading-3-font-size);
  }
}

/* Helpers */
.helpers {
  margin-bottom: 62px;
}

@media (max-width: 575px) {
  .helpers {
    margin-bottom: 32px;
  }
}

.helpers__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  background-color: var(--primary-bg-color);
  padding: 36px 12px 24px 150px;
  position: relative;
  height: 100%;
  min-height: 150px;
  border: var(--border-width) solid var(--primary-bg-color);
}

.helpers__item:hover,
.helpers__item:focus,
.helpers__item:active {
  border-color: var(--primary-color);
}

.helpers__icon {
  display: block;
  position: absolute;
  width: 110px;
  height: 110px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.helpers__icon img {
  max-width: 110px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.helpers__title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-text-color);
}

.helpers__description {
  color: var(--secondary-text-color);
  line-height: 1;
}

@media (max-width: 991px) {
  .helpers .col {
    margin-top: 15px;
  }
}

/* Category list */
.category-list {
  padding: 48px 0 24px;
}

.category-list__heading {
  font-size: 32px;
  letter-spacing: -1px;
  margin: 0 0 48px;
  font-weight: 600;
}

[dir] .category-list__col {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .category-list .row {
    margin-right: -24px;
    margin-left: -24px;
  }

  [dir] .category-list__col {
    margin-bottom: 48px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.category-list__item {
  display: block;
  width: 100%;
  border-radius: 16px;
  background: var(--secondary-bg-color);
  background-size: contain;
  height: 100%;
  padding: 32px 24px;
  transition: background-color var(--duration) var(--timing-function);
}

.category-list__item:hover {
  background-color: #323230;
}

.category-list__item:focus:active {
  background-color: #373736;
}

.category-list__item:focus-visible {
  background-color: var(--secondary-bg-color);
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.category-list__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 55px;
  transition: all 0.1s ease-in-out;
}

.category-list__image img {
  display: block;
  width: 36px;
  height: 36px;
}

.category-list__title {
  display: block;
  margin-bottom: 16px;
  color: var(--primary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__description {
  color: var(--secondary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__item:hover .category-list__title,
.category-list__item:focus .category-list__title,
.category-list__item:active .category-list__title,
.category-list__item:hover .category-list__description,
.category-list__item:focus .category-list__description,
.category-list__item:active .category-list__description {
  color: var(--white-color);
}

@media (max-width: 575px) {
  .category-list {
    padding: 36px 0 21px;
  }

  .category-list__heading {
    margin-bottom: 24px;
  }

  .category-list .col-12 {
    margin-bottom: 15px;
  }

  .category-list__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

/* Promoted articles */
.promoted {
  padding: 72px 0;
}

.promoted__title {
  margin: 0 0 33px;
}

.promoted__link {
  display: block;
  width: 100%;
  background-color: var(--secondary-bg-color);
  padding: 13px 24px;
  border-radius: var(--border-radius-base);
}

.promoted__link + .promoted__link {
  margin-top: 6px;
}

.promoted__link span {
  display: block;
}

/* CTA */
.cta {
  padding: 72px 0;
  border-top: var(--border-width) solid var(--border-color);
  text-align: center;
}

.cta__title {
  margin: 0 0 12px;
}

.cta__subtitle {
  display: block;
  font-size: 20px;
  color: var(--secondary-text-color);
  margin-bottom: 32px;
}

.cta__link {
  text-decoration: underline;
}

.cta__link:hover,
.cta__link:focus,
.cta__link:active {
  text-decoration: none;
}

@media (max-width: 575px) {
  .cta {
    padding: 48px 0;
  }

  .cta__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* Footer */
.footer {
  padding: 48px;
}

.footer__container {
  background-color: var(--secondary-bg-color);
  border-radius: 16px;
  padding: 80px 0;
}

.footer--single {
  padding: 72px 0;
}

.footer__logo {
  margin-bottom: 32px;
}

.footer__logo img {
  height: auto;
  width: 160px;
}

.soc {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 32px;
}

.soc a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3B3B3B;
  color: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
}

.soc a:hover {
  opacity: 0.6;
}

.soc a + a {
  margin-left: 16px;
}

.footer .btn {
  border-color: rgb(255, 255, 255, 0.1);
}

.footer .btn:hover {
  border-color: #fff;
}

/* Section */
.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 42px 0;
  }

  .footer {
    padding: 24px;
  }
}

.inner-page-heading {
  padding: 32px 0;
  background-color: var(--secondary-bg-color);
}

/* Category tree */
.category-tree__section {
  margin-bottom: 42px;
}

.category-tree__section-name {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  display: block;
  margin-bottom: 12px;
}

.category-tree__subsection {
  display: block;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-small);
  padding: 4px 12px;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

.category-tree__article {
  display: block;
}

.category-tree__article + .category-tree__article {
  margin-top: 4px;
}

.comments__container {
  border-radius: var(--border-radius-base);
}

.markdown {
  width: 100%;
  overflow: hidden;
}

.markdown pre {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  font-size: 14px;
  padding: 12px;
  overflow-x: auto;
}

[dir] zd-autocomplete {
  display: none !important;
  background-color: var(--secondary-bg-color);
}

[dir] zd-autocomplete-header {
  display: none;
}

[dir] zd-autocomplete-title-multibrand {
  font-family: var(--heading-font-family);
  font-size: var(--text-font-size);
  line-height: 1.5;
  color: var(--link-color);
  margin-bottom: 8px;
}

[dir] zd-autocomplete-multibrand,
[dir] zd-autocomplete-option {
  font-family: var(--text-font-family);
  line-height: 1.5;
  font-size: var(--heading-6-font-size);
  color: var(--link-color);
  transition: all var(--duration) var(--timing-function);
  border-color: #4a4a48;
  padding: 16px;
}

[dir] zd-autocomplete-header + zd-autocomplete-multibrand,
[dir] zd-autocomplete-header + zd-autocomplete-option {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

[dir] zd-autocomplete-multibrand:hover,
[dir] zd-autocomplete-multibrand[aria-selected='true'],
[dir] zd-autocomplete-option:hover,
[dir] zd-autocomplete-option[aria-selected='true'] {
  background-color: transparent;
}

[dir] zd-autocomplete-multibrand:hover,
[dir] zd-autocomplete-multibrand[aria-selected='true'],
[dir] zd-autocomplete-option:hover,
[dir] zd-autocomplete-option[aria-selected='true'] {
  background-color: #424240;
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-bottom: none !important;
}

[dir] zd-autocomplete-breadcrumbs-multibrand {
  color: var(--secondary-text-color) !important;
}

[dir] zd-autocomplete-title-multibrand {
  padding-bottom: 10px;
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type='search'] {
  padding-left: 42px;
}

.my-activities__search::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '\f002';
  left: 15px;
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .my-activities__filter {
    flex-direction: column;
  }

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}

.markdown > * {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.markdown menu,
.markdown ol,
.markdown ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style: auto;
}

.markdown ul {
  list-style: disc;
}

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

.footer__copy,
.footer__text {
  text-align: center;
}

.footer__text {
  max-width: 1040px;
  margin: 32px auto;
  font-size: 14px;
  line-height: 144%;
  color: #C2C2C2;
}

#hc-wysiwyg [class^='wysiwyg-icon-']:active,
#hc-wysiwyg [class^='wysiwyg-icon-'][aria-selected='true'] {
  background-color: var(--primary-bg-color);
  border-color: var(--primary-bg-color);
}

#hc-wysiwyg [role='form'] input {
  min-height: 28px;
  color: #000;
}

#hc-wysiwyg [role='form'] label {
  color: #000;
}

.wysiwyg-icon-formats {
  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='%23fff' stroke-linecap='round' d='M2.5 1.5h6m-3 0v10'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-bold {
  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='%23fff' d='M5.4 1c1.69 0 3.1 1.336 3.1 3 0 .95-.46 1.794-1.17 2.342C8.317 6.842 9 7.842 9 9c0 1.664-1.41 3-3.1 3H2.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5h2.9zM3 11h2.9C7.05 11 8 10.1 8 9s-.95-2-2.1-2H3v4zm2.4-9H3v4h2.4c1.15 0 2.1-.9 2.1-2s-.95-2-2.1-2z'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-italic {
  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='%23fff' stroke-linecap='round' d='M5.5 1.5h2m-1 0l-2 10m-1 0h2'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-bullist {
  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='%23fff' stroke-linecap='round' d='M5 2.5h5.5M5 6.5h5.5m-5.5 4h5.5'/%3E%3Cg fill='%23fff'%3E%3Ccircle cx='2' cy='2.5' r='1'/%3E%3Ccircle cx='2' cy='6.5' r='1'/%3E%3Ccircle cx='2' cy='10.5' r='1'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-numlist {
  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='%23fff' d='M4.5 3a.5.5 0 010-1h6a.5.5 0 110 1h-6zm0 4a.5.5 0 010-1h6a.5.5 0 110 1h-6zm0 4a.5.5 0 110-1h6a.5.5 0 110 1h-6zM1.49 3.22c-.13 0-.21-.08-.21-.22v-.09c0-.13.08-.21.21-.21h.28V1.57l-.05.05c-.05.05-.1.07-.15.07-.04 0-.1-.01-.15-.08l-.07-.06a.242.242 0 01-.06-.15c0-.04.01-.09.07-.15l.41-.39c.07-.07.14-.1.22-.1h.14c.13 0 .21.08.21.22V2.7h.28c.13 0 .22.08.22.21V3c0 .13-.08.22-.22.22H1.49zm-.12 4.02c-.14 0-.23-.09-.23-.22 0-.58.38-.85.69-1.06.21-.15.39-.27.39-.42 0-.18-.14-.24-.27-.24-.15 0-.24.1-.28.14-.05.06-.11.09-.17.09a.21.21 0 01-.13-.05l-.08-.07c-.1-.08-.12-.19-.05-.29.13-.17.36-.38.75-.38.49 0 .83.31.83.76 0 .46-.37.71-.66.9-.17.11-.31.21-.37.32h.84c.13 0 .22.08.22.21v.09c0 .14-.08.22-.22.22H1.37zm.59 4c-.32 0-.56-.13-.71-.24-.1-.08-.12-.19-.04-.3l.06-.1c.05-.08.12-.1.16-.1.04 0 .09.01.13.04.08.06.21.13.37.13.19 0 .33-.11.33-.26 0-.25-.31-.28-.41-.28-.15 0-.22-.04-.27-.14a.239.239 0 01.03-.29s.37-.44.38-.45h-.56c-.13 0-.21-.08-.21-.21v-.08c0-.13.08-.22.21-.22h1.13c.13 0 .22.08.22.21s-.03.19-.08.26l-.41.48c.3.09.56.33.56.72-.01.41-.31.83-.89.83z'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-code-block {
  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='%23fff'%3E%3Crect width='11' height='9' x='.5' y='1.5' rx='.5' ry='.5'/%3E%3Cpath stroke-linecap='round' d='M5.5 8.5h4m-7-5l2.1 2.1a.5.5 0 010 .7L2.5 8.5'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-link {
  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='%23fff' d='M3.328 5.176l.673.673-.701.715-.325-.326-1.397 1.396a1.975 1.975 0 000 2.792l.108.1c.776.67 1.95.637 2.685-.1l1.396-1.395-.345-.346.7-.715.706.706a.5.5 0 010 .708l-1.75 1.75A2.975 2.975 0 01.871 6.926l1.75-1.75a.5.5 0 01.707 0zm4.892-2.09a.5.5 0 01.689.702l-.059.07-2.525 2.474L3.857 8.85l-.069.059a.5.5 0 01-.702-.69l.057-.069 2.475-2.525L8.15 3.143l.07-.057zM11.134.87a2.975 2.975 0 010 4.207l-1.75 1.75a.5.5 0 01-.708 0l-.705-.705.715-.701.344.345 1.396-1.396a1.975 1.975 0 000-2.793l-.108-.1a1.975 1.975 0 00-2.684.1L6.238 2.974l.326.327-.715.7-.673-.673a.5.5 0 010-.707l1.75-1.75a2.975 2.975 0 014.208 0z'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-image {
  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='%23fff'%3E%3Crect width='11' height='9' x='.5' y='1.5' rx='.5' ry='.5'/%3E%3Cpath d='M.5 10.5l3.65-3.65a.5.5 0 01.71 0l1.79 1.8a.5.5 0 00.71 0l.79-.79a.5.5 0 01.71 0L11 10'/%3E%3C/g%3E%3Ccircle cx='8' cy='4' r='1' fill='%23fff'/%3E%3C/svg%3E") !important;
}

.wysiwyg-icon-quote {
  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='%23fff' stroke-linecap='round' d='M5 6.5H3c-.3 0-.5-.2-.5-.5V4c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v2c0 .3-.2.5-.5.5zm5 0H8c-.3 0-.5-.2-.5-.5V4c0-.3.2-.5.5-.5h2c.3 0 .5.2.5.5v2c0 .3-.2.5-.5.5zM9.5 10c.5-.5 1-1.5 1-3V5.5m-6 4.5c.5-.5 1-1.5 1-3V5.5'/%3E%3C/svg%3E") !important;
}

.wsw {
  padding: 12px;
  background: transparent;
}

.wsw a {
  text-decoration: underline;
}

.wsw a:hover {
  text-decoration: none;
}

.wsw > *:first-child {
  margin-top: 0;
}

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

.wsw pre {
  background-color: var(--primary-bg-color);
  border: none;
}

.new-request-form-description {
  margin: 24px 0;
  text-align: center;
}

.new-request-form-description h4 {
  margin: 0 0 12px;
  font-size: var(--text-font-size-large);
}

.new-request-form-description p {
  margin: 0;
}

.new-request-form-description p + p {
  margin-top: 1rem;
}

.new-request-form-description a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.new-request-form-description a:hover {
  border-color: transparent;
}

@media (min-width: 992px) {
  .new-request-form-description {
    margin: 36px 0;
  }
}

.request-form {
  display: flex;
  flex-direction: column;
}

.request_custom_fields_7003590195740,
.request_custom_fields_7003590195740 ~ * {
  order: 10;
}

.request_anonymous_requester_email {
  order: 2;
}

.attachments-callout {
  border-radius: var(--border-radius-base);
  border: 1px dashed var(--border-color);
  padding: 12px;
  margin-top: 12px;
}

.attachments-callout-title {
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.attachments-callout-text {
  font-size: var(--text-font-size-small);
  opacity: 0.5;
}

.attachments-callout-title i {
  opacity: 0.5;
}

[dir] #request-attachments-pool .upload-item {
  background-color: var(--primary-bg-color);
}

[dir] .upload-item .upload-link {
  color: #fff;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  line-height: 32px;
}

.header-link span {
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.header-link span::before {
  content: '';
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 4px;
  z-index: 1;
}

.header-link span::after {
  content: '';
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  top: -4px;
  left: -4px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.header-link span,
.header__back a::after {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header__back a {
  font-size: 18px;
  line-height: 24px;
}

.header-link:hover span {
  border-color: var(--secondary-color);
}

.header-link:focus:active span::before {
  opacity: 1;
  visibility: visible;
}

.header-link:focus:active span::after {
  opacity: 0;
  visibility: hidden;
}

.header-link:focus-visible {
  outline: none !important;
}

.header-link:focus-visible span::after {
  opacity: 1;
  visibility: visible;
}

.header-link:focus:active span {
  border-bottom: 1px solid #938d14;
}

.header-link:focus-visible span {
  border-color: transparent;
}

.footer__btn-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}

.footer__btn-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn:hover .footer__btn-icon svg {
  animation: Button_chevronSlide__UbPZz 0.7s;
}

@keyframes Button_chevronSlide__UbPZz {
  0% {
    transform: translateZ(0);
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: translate3d(16px, 0, 0);
  }

  51% {
    transform: translateZ(0);
  }

  80% {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.footer__btn {
  margin-bottom: 32px;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer__menu li {
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  color: #fff;
  display: flex;
}

.footer__menu li:not(:last-child):after {
  background-color: #fff;
  border-radius: 100%;
  content: '';
  display: inline-block;
  height: 4px;
  margin: 0 8px;
  min-width: 4px;
  width: 4px;
}

.footer__menu li a {
  border-bottom: 1px solid transparent;
  line-height: 24px;
  padding-bottom: 2px;
  transition: border-color 0.1s linear;
  color: #fff;
}

.footer__menu li a:hover {
  border-color: hsla(0, 0%, 100%, 0.3);
}

.header-banner {
  margin-top: 48px;
  border: 2px solid var(--border-color);
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 18px 24px;
}

.header-banner__title {
  display: flex;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 6px;
}

.header-banner__title svg {
  width: 24px;
  height: 24px;
}

.header-banner__title div {
  flex: 1 1 10px;
}

[dir] .page-container {
  display: flex;
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1280px;
}

.sidebar {
  padding-top: 32px;
  padding-bottom: 48px;
}

.content {
  padding-top: 48px;
  padding-bottom: 72px;
}

.sidebar > * + * {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-color);
}

.section-list {
  display: block;
  margin: 0;
  padding: 0;
}

.section-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-list__item a {
  display: flex;
  gap: 12px;
  align-items: center;
  position: relative;
  padding: 12px 34px 12px 10px;
  border-radius: var(--border-radius-base);
}

.section-list__item + .section-list__item {
  margin-top: 4px;
}

.section-list__item a:hover {
  background-color: #282826;
}

.section-list__item a:active,
.section-list__item a:focus,
.section-list__item a.is-active {
  background-color: #343432;
}

.section-list__item img {
  display: block;
  width: 24px;
  height: 24px;
}

.section-list__item-articles {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

.section-list__item-articles.is-active {
  color: var(--secondary-color);
}

.sidebar__heading {
  display: block;
  margin: 0 0 12px;
}

.welcome__search input[type='search'],
.sidebar__search input[type='search'] {
  padding-left: 42px;
}

.welcome__search,
.sidebar__search {
  display: block;
  position: relative;
}

.welcome__search::before,
.sidebar__search::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url(/hc/theming_assets/01K5XAH4HG3PXTDS0HWRBEGJGZ) no-repeat center;
  background-size: contain;
}

@media (min-width: 768px) {
  .sidebar {
    padding-right: 32px;
    border-right: 1px solid var(--border-color);
    flex: 1 1 33.33%;
    width: 33.33%;
  }

  .content {
    padding-left: 32px;
    flex: 1 1 66.66%;
    width: 66.66%;
  }
}

@media (max-width: 767px) {
  .page-container {
    flex-direction: column-reverse;
  }

  .sidebar {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .sidebar > * + * {
    margin-top: 0;
  }

  .sidebar > * {
    border-top: 1px solid var(--border-color);
  }

  .sidebar__search-container {
    padding: 32px 24px 40px;
  }

  .section-list-container {
    padding: 24px;
  }
}

.content__heading-container {
  padding-left: 18px;
  margin-bottom: 32px;
  min-height: 247px;
  position: relative;
  z-index: 2;
}

.content__heading-container::before {
  content: '';
  display: block;
  width: calc(100% + 24px);
  height: calc(100% + 48px);
  position: absolute;
  top: -48px;
  left: 0;
  z-index: -1;
}

.content__heading-link {
  margin-bottom: 79px;
}

.content__heading {
  display: flex;
  gap: 24px;
  font-size: var(--heading-2-font-size);
  align-items: center;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 24px;
}

.content__heading img {
  width: 36px;
  height: 36px;
}

.article-box {
  display: block;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 24px 60px 24px 24px;
  position: relative;
}

.article-box:hover {
  background-color: #323230;
}

.article-box:focus:active {
  background-color: #373736;
  box-shadow: var(--box-shadow);
}

.article-box:focus-visible {
  background-color: var(--secondary-bg-color);
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.article-box + .article-box {
  margin-top: 8px;
}

.article-box svg {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #afada3;
}

.article-container {
  background-color: var(--secondary-bg-color);
  padding: 24px;
  border-radius: 16px;
}

.markdown .article-actions-wrapper,
.markdown .article-attachments {
  display: none;
}

.markdown a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #938d14;
}

.markdown a::before {
  content: '';
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 4px;
  z-index: 1;
}

.markdown a::after {
  content: '';
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  top: -4px;
  left: -4px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.markdown a:focus:active::before {
  opacity: 1;
  visibility: visible;
}

.markdown a:focus:active::after {
  opacity: 0;
  visibility: hidden;
}

.markdown a:focus-visible {
  outline: none !important;
  border-color: transparent;
}

.markdown a:focus-visible::after {
  opacity: 1;
  visibility: visible;
}

.markdown a:focus:active {
  border-bottom: 1px solid #938d14;
}

.markdown a:hover {
  border-color: var(--secondary-color);
}

.markdown > *:first-child {
  margin-top: 0;
}

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

.error-page {
  margin-top: 230px;
  margin-bottom: 263px;
  text-align: center;
}

.error-page--section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.error-page .container {
  max-width: 820px;
}

.error-page h2 {
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 24px;
}

.error-page h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 24px;
}

.error-page p {
  margin: 0 0 8px;
}

.error-page .btn {
  margin-top: 24px;
}

.search-close {
  display: block;
  width: 24px;
  height: 24px;
  background: url(/hc/theming_assets/01K5XAH41Z7Y5CQ2T66X6JJ5VV) no-repeat center;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 12px);
  right: 12px;
}

.search-input-wrapper {
  flex: 1 1 10px;
  position: relative;
}

.search-input-wrapper input[type='search'] {
  padding-right: 42px;
}

.search-results {
  margin-top: 32px;
}

.search-results__search {
  margin-top: -32px;
}

.search-results__item {
  display: block;
  padding: 24px;
  border-radius: var(--border-radius-base);
}

.search-results__item:hover {
  background-color: var(--secondary-bg-color);
}

.search-results__item:focus:active {
  background-color: #323230;
  box-shadow: var(--box-shadow);
}

.search-results__item:focus-visible {
  background-color: var(--secondary-bg-color);
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.search-results__title {
  display: block;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
}

.search-results__text {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #afada3;
}

.search-results__text em {
  font-style: normal;
  font-weight: bold;
  color: var(--secondary-color);
}

.search-results__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #afada3;
}

.search-results__footer-separator {
  display: block;
  height: 19px;
  width: 0;
  border-left: 1px solid #afada3;
}

.search-results__footer-vote {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-results__footer-vote img {
  width: 20px;
  height: 20px;
  opacity: 0.75;
}

.search-results__section {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 20px;
}

.search-results__section img {
  width: 16px;
  height: 16px;
}

.search-results__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.search-results__pagination-btn {
  display: block;
  width: 48px;
  height: 48px;
  opacity: 0.5;
  padding: 12px;
  cursor: default;
  border-radius: var(--border-radius-base);
}

.search-results__pagination-btn.is-active {
  opacity: 1;
  cursor: pointer;
}

.search-results__pagination-btn.is-active:hover {
  background-color: var(--secondary-bg-color);
}

.search-results__pagination-btn.is-active:focus:active {
  background-color: #323230;
  box-shadow: var(--box-shadow);
}

.search-results__pagination-btn.is-active:focus-visible {
  background-color: var(--secondary-bg-color);
  box-shadow: 0 0 0 4px rgba(4, 96, 204, 0.3), inset 0 0 0 2px #0460cc,
  inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  outline: none !important;
}

.search-results-button {
  margin-bottom: 32px;
}

.search-results-button a {
  display: inline-flex;
  padding: 4px 16px;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  color: #1d1d1b;
  background-color: #fff;
  border-radius: 50px;
  font-weight: bold;
}

.search-results-button a img {
  width: 16px;
  height: 16px;
}

#autocomplete {
  position: absolute;
  z-index: 999;
  height: auto;
  overflow-y: auto;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  max-height: 330px;
}

.autocomplete__result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.autocomplete__result + .autocomplete__result {
  border-top: 1px solid #4a4a48;
}

.autocomplete__result:hover {
  background-color: #424240;
}

.autocomplete__result-title {
  font-size: 16px;
  line-height: 24px;
}

.autocomplete__result-section {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  color: #afada3;
}

.autocomplete__result-section img {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

.autocomplete__no-results {
  text-align: center;
  padding: 16px;
}

.article-date {
  font-size: 18px;
  line-height: 28px;
}

.mobile-logo,
.content__heading-breadcrumbs {
  display: none;
}

.search-results__title em {
  font-style: normal;
  font-weight: bold;
  color: var(--secondary-color);
}

.loading-page {
  padding-top: 220px;
  padding-bottom: 220px;
  text-align: center;
}

.loader {
  width: 112px;
  min-height: 48px;
  display: inline-block;
  position: relative;
  background: url(/hc/theming_assets/01K5XAH4BCCT0681BCGJ789B23) no-repeat top center;
  background-size: contain;
}

.loader::after {
  content: 'Loading';
  display: block;
  padding-top: 72px;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

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

  .loading-page {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

@media (max-width: 480px) {
  .loading-page {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  [dir] .header__container {
    height: 64px;
  }

  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .header {
    border: none;
    position: relative;
    z-index: 9;
  }

  .header__back a {
    font-size: 16px;
    line-height: 24px;
  }

  .welcome {
    padding-top: 108px;
    padding-bottom: 0;
    border: none;
  }

  .welcome__title {
    text-align: left;
    font-size: 24px;
    line-height: 32px;
    max-width: 245px;
  }

  .welcome__search [type='submit'] {
    display: none;
  }

  .welcome__search input[type='search'] {
    height: 48px;
  }

  .header-banner {
    margin-top: 32px;
    padding: 16px;
  }

  .category-list {
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .category-list__heading {
    font-size: 18px;
    line-height: 24px;
  }

  .category-list .row {
    margin-right: -8px;
    margin-left: -8px;
  }

  [dir] .category-list__col {
    margin-bottom: 16px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .category-list__item {
    padding: 16px;
  }

  .category-list__image {
    width: 40px;
    height: 40px;
  }

  .category-list__image img {
    width: 24px;
    height: 24px;
  }

  .category-list__title,
  .category-list__description {
    font-size: 14px;
    line-height: 20px;
  }

  .category-list__title {
    margin-bottom: 3px;
  }

  .page-container {
    margin-top: -64px;
    padding-top: 64px;
  }

  .content {
    padding-top: 19px;
    padding-bottom: 0;
  }

  .content__heading-container {
    padding-left: 0;
    margin-bottom: 0;
    min-height: 120px;
  }

  .content__heading-container--search {
    min-height: auto;
  }

  .content__heading-container::before {
    top: -83px;
    height: calc(100% + 83px);
  }

  .content__heading-link {
    display: none;
  }

  .content__heading-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
  }

  .content__heading-breadcrumbs a {
    display: flex;
    line-height: 48px;
    column-gap: 8px;
    align-items: center;
  }

  .content__heading-breadcrumbs a:active {
    font-weight: bold;
  }

  .content__heading-breadcrumbs a::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(/hc/theming_assets/01K5XAH4FJB852GFFC6FR8TNRE) no-repeat center;
    background-size: contain;
    opacity: 0.5;
  }

  .content__heading {
    gap: 8px;
    font-size: 24px;
    line-height: 32px;
    padding-top: 8px;
  }

  .content__heading img {
    width: 24px;
    height: 24px;
  }

  .article-box {
    padding: 16px 40px 16px 16px;
    color: #e2e1d9;
  }

  .article-box svg {
    width: 16px;
    height: 16px;
  }

  .article-box:focus:active {
    background-color: #424240;
  }

  .article-boxes {
    padding-bottom: 24px;
  }

  .search-results__pagination {
    margin: 0 -24px;
    padding: 6px 24px;
    border-top: 1px solid var(--border-color);
  }

  .article-container {
    margin-right: -24px;
    margin-left: -24px;
    padding: 0;
    background-color: transparent;
  }

  .article-text-container {
    padding: 24px;
    background-color: var(--secondary-bg-color);
  }

  .article-footer-container {
    padding: 24px;
    border-top: 1px solid var(--border-color);
  }

  .article-vote {
    margin-top: 0;
    padding-top: 0;
    border: none;
  }

  .article-vote__title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .article-vote__count {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }

  .article-date {
    margin-bottom: 0;
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .article-vote__controls .btn {
    padding: 10px 22px;
    font-size: 18px;
    font-weight: bold;
  }

  .section-list-container {
    padding: 24px 0;
  }

  .section-list__item a {
    padding-right: 40px;
    padding-left: 24px;
    border-radius: 0;
  }

  .section-list__item-articles {
    right: 24px;
  }

  .search-results__search {
    margin-top: 0;
  }

  .search-results {
    margin-right: -24px;
    margin-left: -24px;
  }

  .search-results__item {
    border-radius: 0;
    border-top: 1px solid var(--border-color);
  }

  .search-results__footer {
    display: none;
  }
}

[dir] .simplebar-track {
  background-color: rgba(255, 255, 255, 0.05);
}

[dir] .simplebar-track.simplebar-vertical {
  width: 8px;
}

[dir] .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #61615f;
}

[dir] .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.new-request-notify {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 2px solid #00bc80;
  background-color: #004b33;
  color: #fff;
  padding: 14px 22px;
  position: relative;
}

.new-request-notify__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.new-request-notify__text {
  font-size: 14px;
  line-height: 20px;
}

.new-request-notify__close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 14px;
  right: 10px;
  cursor: pointer;
}

.new-request-notify__close svg {
  display: block;
}

/* Fix input styles on custom pages */
[dir] .bg-primary_bg [multiple],
[dir] .bg-primary_bg [type='date'],
[dir] .bg-primary_bg [type='datetime-local'],
[dir] .bg-primary_bg [type='email'],
[dir] .bg-primary_bg [type='month'],
[dir] .bg-primary_bg [type='number'],
[dir] .bg-primary_bg [type='password'],
[dir] .bg-primary_bg [type='search'],
[dir] .bg-primary_bg [type='tel'],
[dir] .bg-primary_bg [type='text'],
[dir] .bg-primary_bg [type='time'],
[dir] .bg-primary_bg [type='url'],
[dir] .bg-primary_bg [type='week'],
[dir] .bg-primary_bg select,
[dir] .bg-primary_bg textarea {
  border: var(--border-width) solid #61615f;
  border-width: var(--border-width) !important;
  border-radius: var(--border-radius-base);
  transition: border-color var(--duration) var(--timing-function);
  color: var(--primary-text-color);
  background-color: var(--primary-bg-color);
  outline: none !important;
}

[dir] .bg-primary_bg [multiple]:hover,
[dir] .bg-primary_bg [type='date']:hover,
[dir] .bg-primary_bg [type='datetime-local']:hover,
[dir] .bg-primary_bg [type='email']:hover,
[dir] .bg-primary_bg [type='month']:hover,
[dir] .bg-primary_bg [type='number']:hover,
[dir] .bg-primary_bg [type='password']:hover,
[dir] .bg-primary_bg [type='search']:hover,
[dir] .bg-primary_bg [type='tel']:hover,
[dir] .bg-primary_bg [type='text']:hover,
[dir] .bg-primary_bg [type='time']:hover,
[dir] .bg-primary_bg [type='url']:hover,
[dir] .bg-primary_bg [type='week']:hover,
[dir] .bg-primary_bg select:hover,
[dir] .bg-primary_bg textarea:hover,
[dir] .bg-primary_bg [multiple]:focus,
[dir] .bg-primary_bg [type='date']:focus,
[dir] .bg-primary_bg [type='datetime-local']:focus,
[dir] .bg-primary_bg [type='email']:focus,
[dir] .bg-primary_bg [type='month']:focus,
[dir] .bg-primary_bg [type='number']:focus,
[dir] .bg-primary_bg [type='password']:focus,
[dir] .bg-primary_bg [type='search']:focus,
[dir] .bg-primary_bg [type='tel']:focus,
[dir] .bg-primary_bg [type='text']:focus,
[dir] .bg-primary_bg [type='time']:focus,
[dir] .bg-primary_bg [type='url']:focus,
[dir] .bg-primary_bg [type='week']:focus,
[dir] .bg-primary_bg select:focus,
[dir] .bg-primary_bg textarea:focus {
  border-color: #fff;
  box-shadow: none !important;
}

[dir] input[type='checkbox'],
[dir] input[type='radio'] {
  width: 24px !important;
  height: 24px !important;
}
