/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #D73642;
  --secondary-color: rgba(255, 255, 255, 1);
  --primary-bg-color: #232323;
  --primary-bg-color-always: #232323;
  --secondary-bg-color: #323232;
  --secondary-bg-color-always: #323232;
  --primary-text-color: #ffffff;
  --secondary-text-color: rgba(255,255,255,0.75);
  --link-color: #fff;
  --border-color: rgba(255,255,255,0.2);
  --info-color: #327df2;
  --success-color: #65e065;
  --warning-color: #F1D52F;
  --danger-color: rgba(238, 7, 0, 1);
  --primary-color-hover: #BC2C36;
  --primary-color-active: #BC2C36;
  --secondary-color-hover: #e0e0e0;
  --secondary-color-active: #d9d9d9;
  --secondary-bg-color-hover: #282828;
  --secondary-bg-color-active: #232323;
  --secondary-text-color-hover: rgba(245,245,245,0.75);
  --secondary-text-color-active: rgba(240,240,240,0.75);
  --link-color-hover: #FF283F;
  --link-color-active: #FF283F;

  /* Text */
  --text-font-family: 'Open Sans', sans-serif;
  --heading-font-family: 'ABC Ginto Nord', sans-serif;
  --text-font-size: 1.12rem;
  --text-font-size-large: calc(1.12rem + 2px);
  --text-font-size-small: calc(1.12rem - 2px);
  --heading-1-font-size: 2.85rem;
  --heading-2-font-size: 2.4rem;
  --heading-3-font-size: 2rem;
  --heading-4-font-size: 1.5rem;
  --heading-5-font-size: calc(1.12rem + 2px);
  --heading-6-font-size: 1.12rem;

  /* Other */
  --border-radius-base: 17px;
  --border-radius-small: calc(17px / 2);
  --border-radius-button: 6px;
  --logo-height: 50px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 2px;
  --minus-border-width: -1px;
  --box-shadow: 0 0 15px 0 #101418, 0 15px 60px 0 #101418;
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01KH1APA54N57YS5KJ763KVV7M);
}

/***********
 Base styles
 ***********/
*,
*:before,
*:after {
  box-sizing: border-box;
}

*:focus-visible,
*:focus,
*.focus-visible {
  outline: auto 5px -webkit-focus-ring-color !important;
}

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);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background: var(--primary-bg-color) url(/hc/theming_assets/01KH8MXK5EJSWWCQTGNPEHBNJW) no-repeat top center;
  background-size: 100% auto;
}

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);
}

.markdown a {
  text-decoration: underline;
  font-weight: bold;
}

.markdown a:hover {
  text-decoration: none;
}

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-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;
  }
}

h1,
.h1 {
  margin: 0 0 1.2em;
}

.markdown h1,
.markdown .h1 {
  margin-top: 1.2em;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.page-breadcrumbs {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .page-breadcrumbs {
    margin-bottom: 30px;
  }
}

.breadcrumbs--bottom {
  margin: 12px 0 0;
}

.breadcrumbs li {
  font-size: var(--text-font-size-small);
  margin-right: 6px;
  display: block;
  position: relative;
  font-weight: bold;
}

.breadcrumbs li + li {
  padding-left: 12px;
}

.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: 58%;
  left: 0;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.breadcrumbs li:last-child a {
  color: var(--primary-text-color);
}

/* 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;
}

[dir] .btn.category-list__item {
  position: relative;
  padding-left: 52px;
  height: 100%;
  text-align: left;
}

#new-request [type="submit"] {
  position: relative;
  padding-left: 52px;
  text-align: left;
}

.category-list__item::before,
#new-request [type="submit"]::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url(/hc/theming_assets/01KH1APA36PN0TY1H6D2HZ38WD) no-repeat center;
  background-size: contain;
  transition: all .3s ease;
}

.category-list__item:hover::before,
#new-request [type="submit"]:hover::before {
  transform: translateX(-5px) translateY(-50%);
}

.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);
}

.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: flex;
  align-items: center;
  margin: 0;
  padding: 12px 24px;
  list-style: none;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-button);
  position: relative;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.attachment-list__item .meta {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background-color: var(--secondary-bg-color);
  border-left: 5px solid var(--secondary-bg-color);
  box-shadow: -10px 0 10px var(--secondary-bg-color);
}

.attachment-list__item a {
  flex: 1 1 10px;
  color: var(--primary-text-color);
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
}

.attachment-list__item a:hover,
.attachment-list__item a:focus,
.attachment-list__item a:active {
  color: var(--primary-color);
}

.article-vote__title {
  margin: 0 0 12px;
}

.article-vote__count {
  margin-top: 12px;
  font-size: var(--text-font-size-small);
}

.article-vote__controls > * + * {
  margin-left: 12px;
}

/* Comments */
.comments__heading {
  display: flex;
  justify-content: space-between;
  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;
  max-width: 100%;
}

.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);
  border-radius: 4px;
  font-weight: bold;
}

.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 {
  display: block;
  position: relative;
  /* background-color: var(--primary-bg-color); */
  margin-bottom: 56px;
}

.header__container {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  width: 300px;
  padding-right: 42px;
}

.header__logo img {
  height: var(--logo-height);
}

.header__logo span {
  margin-left: 12px;
}

.header__menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header__menu > * {
  display: block;
}

[dir] .header__menu > * + * {
  margin-left: 40px;
}

.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 {
  padding: 30px 0;
}

.welcome--with-border {
  border-bottom: var(--border-width) solid var(--border-color);
}

.welcome__title {
  margin-bottom: 37px;
}

.welcome__search {
  display: block;
  position: relative;
}

.welcome__search .meta {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.welcome__search input[type=search] {
  height: 50px;
  border-color: var(--primary-color);
}

.welcome__search input[type=submit] {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.welcome__search input[type=submit],
.welcome__search input[type=submit]:hover,
.welcome__search input[type=submit]:focus,
.welcome__search input[type=submit]:active {
  background-color: transparent;
  color: transparent;
  border-color: transparent;
}

.welcome__search::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .welcome {
    padding: 48px 0;
  }

  .welcome__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .welcome {
    padding: 30px 0;
  }

  .welcome__title {
    margin-bottom: 12px;
    font-size: var(--heading-4-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;
  }
}

/* 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-bottom: 18px;
}

.footer--single {
  padding: 18px 0;
  border-top: var(--border-width) solid var(--border-color);
}

.soc {
  font-size: 18px;
}

.soc a + a {
  margin-left: 12px;
}

/* Section */
.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 42px 0;
  }
}

.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 {
  background-color: var(--secondary-bg-color);
}

.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 {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

[dir] zd-autocomplete-title-multibrand,
[dir] zd-autocomplete-header {
  font-family: var(--heading-font-family);
  font-size: var(--text-font-size);
  line-height: 1.5;
  color: var(--link-color);
  margin-bottom: 8px;
  transition: all var(--duration) var(--timing-function);
}

[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);
  border-color: var(--border-color);
  transition: all var(--duration) var(--timing-function);
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-radius: 0;
}

[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: var(--secondary-bg-color);
}

[dir] zd-autocomplete-multibrand:hover zd-autocomplete-title-multibrand,
[dir] zd-autocomplete-multibrand[aria-selected="true"] zd-autocomplete-title-multibrand {
  color: var(--primary-text-color);
}

[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;
}

.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;
  }
}

/********************/
/********************/
/********************/
.header-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 0;
  color: var(--primary-text-color);
  cursor: pointer;
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 5px;
  padding: 10px;
  transition: background-color .25s, box-shadow .25s;
}

[dir] .header-button:focus,
[dir] .header-button:active,
[dir] .header-button:hover {
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
}

.header__left {
  width: calc(100% - 450px);
  display: flex;
  align-items: center;
}

.header__search,
.hero__search {
  flex: 1 1 10px;
  position: relative;
}

.header__search input[type=search],
.hero__search input[type=search] {
  display: block;
}

.header-search__icon {
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translate(50%, -50%);
  color: var(--primary-text-color);
}

.header__mobile,
.mobile-bg,
.header__mobile-menu-container {
  display: none;
}

@media (min-width: 1201px) {
  .header-without-search .header__search {
    display: none;
  }
}

.header__menu-link:hover,
.header__mobile-menu-link:hover {
  color: var(--link-color-hover);
}

@media (max-width: 1200px) {
  .header__menu {
    display: none;
  }

  .header__search,
  .header__mobile-menu-container {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--duration) var(--timing-function);
  }

  .header__search {
    width: calc(100% - 30px);
    position: absolute;
    top: 100%;
    margin: 10px 15px;
  }

  .header__search input[type=search] {
    width: 100%;
    margin-left: 0;
  }

  .header__search.is-active,
  .header__mobile-menu-container.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .header__mobile-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 85px 15px 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__mobile-menu a,
  .header__mobile-menu button {
    display: inline-block;
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary-text-color);
    padding: 0;
    border: none;
    background-color: transparent;
  }

  .header__left {
    width: 100%;
    justify-content: space-between;
  }

  .header__mobile {
    display: block;
  }

  [dir] .header__container {
    height: 70px;
    padding: 0 !important;
  }

  .header__logo {
    width: unset;
    padding-right: 0;
  }

  .header__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: inherit;
    padding: 0;
    transition: none;
    position: relative;
    outline: none !important;
  }

  .header__button::before {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border-radius: 50%;
    background-color: var(--secondary-bg-color);
    z-index: -1;
    transition: all .3s ease-in-out;
    opacity: 0;
  }

  .header__button:hover::before,
  .header__button:focus::before,
  .header__button.is-active::before {
    opacity: 1;
  }

  .hamburger {
    background: #fff;
    border-radius: 10px;
    display: block;
    height: 3.5px;
    margin: auto;
    position: relative;
    transition: background .25s;
    width: 22px;
  }

  .hamburger:after,
  .hamburger:before {
    background: #fff;
    border-radius: 10px;
    content: "";
    display: block;
    height: 3.5px;
    left: 0;
    position: absolute;
    transition-duration: .2s, .2s;
    width: 100%;
  }

  .hamburger:before {
    top: -7px;
    transition-property: top, -webkit-transform;
    transition-property: top, transform;
    transition-property: top, transform, -webkit-transform;
  }

  .hamburger:after {
    bottom: -7px;
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform;
  }

  .header__button.is-active .hamburger {
    background: none;
    transition: background 0s;
  }

  .header__button.is-active .hamburger::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header__button.is-active .hamburger::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .header__button .icon-close,
  .header__button.is-active .icon-search {
    display: none;
  }

  .header__button.is-active .icon-close {
    display: block;
  }

  .header {
    z-index: 99;
  }

  .mobile-bg {
    display: block;
    opacity: 0;
    visibility: hidden;
    background-color: var(--primary-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    transition: all var(--duration) var(--timing-function);
  }

  .mobile-bg.is-active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-is-open {
    overflow: hidden;
  }
}

.powered-by-zendesk {
  display: none;
}

/* theme-body */
.theme-body-container {
  display: flex;
}

.theme-body {
  width: 100%;
  max-width: 946px;
  margin: 0 auto;
}

.theme-sidebar {
  width: 100%;
  max-width: 300px;
  padding-right: 60px;
}

@media (min-width: 1201px) {
  .theme-sidebar--padding {
    padding-top: 2px;
  }
}

.theme-sidebar ~ .theme-body {
  margin-left: 0;
}

.hero__search {
  margin-top: 8px;
  margin-bottom: 56px;
}

.theme-section {
  padding-bottom: 54px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.theme-section--without-border {
  border: none;
}

.theme-section + .theme-section {
  padding-top: 54px;
}

.theme-section--min {
  padding-bottom: 22px;
}

.theme-section + .theme-section--min {
  padding-top: 22px;
}

@media (max-width: 1200px) {
  .theme-body-container {
    flex-direction: column-reverse;
  }

  .theme-body,
  .theme-sidebar {
    margin-left: 0;
    max-width: 100%;
  }

  .theme-sidebar {
    padding-right: 5px;
    padding-left: 5px;
  }

  .theme-section {
    padding-right: 5px;
    padding-left: 5px;
  }

  .hero__search input[type=search] {
    width: 100%;
    margin-left: 0;
  }

  .hero__search {
    margin: 0 0 54px;
  }
}

@media (max-width: 767px) {
  .theme-section {
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 30px;
  }

  .theme-section + .theme-section {
    padding-top: 30px;
  }

  .header {
    margin-bottom: 30px;
  }

  .hero__search {
    margin: 0 0 30px;
  }
}

/* Category list */
.category-list .row {
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: -30px;
}

.category-list .col-12 {
  padding: 0 10px 30px;
}

.btn.category-list__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

@media (min-width: 768px) {
  .btn.category-list__item {
    min-height: 54px;
    line-height: 30px;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .category-list .row {
    margin-bottom: -10px;
  }

  .category-list .col-12 {
    padding-bottom: 10px;
  }
}

/* Article list */
.article-list + .article-list {
  margin-top: 42px;
}

.article-list .meta {
  margin-bottom: 18px;
  line-height: 18px;
}

.article-list .meta em {
  padding: 0 4px;
  background-color: var(--secondary-bg-color);
  border-radius: 4px;
}

.article-list__title,
.recent-articles-title {
  margin: 0;
  font-size: var(--heading-5-font-size);
}

.article-list ul {
  margin: 22px 0 0;
  display: block;
  padding: 0;
  list-style: none;
}

.article-list ul li {
  display: block;
  margin: 0;
  padding: 0 0 0 22px;
  position: relative;
}

.article-list ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: 0;
  transform: translateY(-50%);
  background: no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.84 16.35l5.71-5.75L8.8 4.87a1.24 1.24 0 00-1.74-.02c-.48.47-.45 1.26.03 1.73l4.06 4.02-4.01 4.04c-.48.48-.5 1.27-.03 1.74.48.48 1.26.44 1.74-.03z' fill='%23f11b1b' %3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  width: 14px;
  height: 14px;
}

.article-list ul li {
  line-height: 24px;
}

.article-list ul li a {
  display: block;
  line-height: 24px;
  padding: 4px 0;
}

.article-list ul li a:hover,
.article-list ul li a:focus,
.article-list ul li a:active,
.article-list ul li a.is-active {
  color: var(--primary-text-color);
}

.article-list--invert .recent-articles-title,
.article-list--invert ul li a:hover,
.article-list--invert ul li a:focus,
.article-list--invert ul li a:active,
.article-list--invert ul li a.is-active {
  color: var(--primary-color);
}

.article-list--invert ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.84 16.35l5.71-5.75L8.8 4.87a1.24 1.24 0 00-1.74-.02c-.48.47-.45 1.26.03 1.73l4.06 4.02-4.01 4.04c-.48.48-.5 1.27-.03 1.74.48.48 1.26.44 1.74-.03z' fill='%23f11b1b'%3E%3C/path%3E%3C/svg%3E");
}

.article-list--invert ul li a {
  color: var(--primary-text-color);
}

@media (min-width: 1201px) {
  .article-list--min ul li {
    line-height: 18px;
  }

  .article-list--min ul li::before {
    top: 9px;
  }

  .article-list--min ul li + li {
    margin-top: 12px;
  }

  .article-list--min ul li a {
    font-size: var(--text-font-size-small);
    line-height: 18px;
    padding: 0;
  }

  .article-list--invert-lg ul li a:hover,
  .article-list--invert-lg ul li a:focus,
  .article-list--invert-lg ul li a:active,
  .article-list--invert-lg ul li a.is-active {
    color: var(--primary-color);
  }

  .article-list--invert-lg ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.84 16.35l5.71-5.75L8.8 4.87a1.24 1.24 0 00-1.74-.02c-.48.47-.45 1.26.03 1.73l4.06 4.02-4.01 4.04c-.48.48-.5 1.27-.03 1.74.48.48 1.26.44 1.74-.03z' fill='%23f11b1b'%3E%3C/path%3E%3C/svg%3E");
  }

  .article-list--invert-lg ul li a {
    color: var(--primary-text-color);
  }
}

[role="main"],
.page-title {
  margin-bottom: 54px;
}

.page-subtitle {
  margin-top: -32px;
}

.page-content {
  padding-left: 46px;
}

.pagination-container {
  margin-top: 54px;
}

.article-meta {
  margin-top: 34px;
  margin-bottom: -20px;
}

.article-meta a {
  color: var(--primary-text-color);
}

.article-meta a:hover {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  [role="main"],
  .page-title {
    margin-bottom: 30px;
  }

  .page-subtitle {
    margin-top: -24px;
  }

  .page-content {
    padding-left: 22px;
  }

  .pagination-container,
  .article-meta {
    margin-top: 30px;
  }

  .article-meta {
    margin-bottom: 0;
  }
}

.markdown .article-actions-wrapper,
.markdown .article-attachments {
  display: none;
}

.markdown > * {
  margin: 1.2em 0;
}

.markdown > *:first-child {
  margin-top: 0;
}

.markdown > *:last-child {
  margin-bottom: 0;
}

.article-meta {
  font-size: 14px;
}

.hero__search input[type="search"],
.header__search input[type="search"] {
  background-color: var(--primary-text-color);
  color: var(--primary-bg-color);
}

.hero__search .header-search__icon,
.header__search .header-search__icon {
  color: var(--primary-bg-color);
}

.hero__search input[type="search"]::-webkit-input-placeholder,
.header__search input[type="search"]::-webkit-input-placeholder {
  color: var(--primary-bg-color);
}

.hero__search input[type="search"]::-moz-placeholder,
.header__search input[type="search"]::-moz-placeholder {
  color: var(--primary-bg-color);
}

.hero__search input[type="search"]:-ms-input-placeholder,
.header__search input[type="search"]:-ms-input-placeholder {
  color: var(--primary-bg-color);
}

.hero__search input[type="search"]:-moz-placeholder,
.header__search input[type="search"]:-moz-placeholder {
  color: var(--primary-bg-color);
}

.article-list--invert ul li::before,
.article-list--invert-lg ul li::before {
  background-image: url(/hc/theming_assets/01KH1APA36PN0TY1H6D2HZ38WD);
  transition: all .3s ease;
}

.article-list--invert ul li:hover::before,
.article-list--invert-lg ul li:hover::before {
  transform: translateX(-5px) translateY(-50%);
}

.section-accordion .article-list + .article-list {
  margin-top: 0;
}

.section-accordion .article-list {
  border-bottom: 1px solid var(--border-color);
}

.section-accordion .article-list__title {
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}

.section-accordion .article-list__title::after {
  content: '+';
  display: block;
  position: absolute;
  top: 44%;
  right: 0;
  color: var(--primary-text-color);
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: normal;
  padding: 0 5px;
  transition: all .3s ease;
}

.section-accordion .article-list__title.is-active::after {
  transform: translateY(-50%) rotate(45deg);
}

.section-accordion .article-list ul {
  margin: 0;
  padding-bottom: 12px;
}

[dir] .nesty-panel ul li,
[dir] .hc-multiselect-menu ul li label {
  height: auto;
  min-height: 40px;
}
