/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #FFDD00;
  --secondary-color: #FFDD00;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #F9F9F9;
  --secondary-bg-color-always: #F9F9F9;
  --primary-text-color: #2B3034;
  --secondary-text-color: #666666;
  --link-color: #184EF1;
  --border-color: #E5E5E5;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #e6c700;
  --primary-color-active: #dbbe00;
  --secondary-color-hover: #e6c700;
  --secondary-color-active: #dbbe00;
  --secondary-bg-color-hover: #efefef;
  --secondary-bg-color-active: #eaeaea;
  --secondary-text-color-hover: #5c5c5c;
  --secondary-text-color-active: #575757;
  --link-color-hover: #0c39c0;
  --link-color-active: #0b34b2;

  /* Text */
  --text-font-family: Flanders Art Sans, Open Sans, sans-serif;
  --heading-font-family: Flanders Art Sans, Open Sans, sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 36px;
  --heading-2-font-size: 24px;
  --heading-3-font-size: 20px;
  --heading-4-font-size: 18px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 6px;
  --border-radius-small: calc(6px / 2);
  --border-radius-button: 6px;
  --logo-height: 48px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.12);
  --duration: 400ms;
  --timing-function: cubic-bezier(0.17, 0.67, 0.54, 1);
  --assets-check-svg: url(/hc/theming_assets/01JJC5VACT2AYWXZD3J8J3HGYG);
  --article_cta_img: url(/hc/theming_assets/01J2G9FJKNVJD6D50Q6RWCN418);

  /* Figma colors */
  --interaction-100: #e5ebfd;
  --interaction-350: #184ef1;
  --brand-dark-blue: #2b3034;
  --status-warning: #faf1db;
}

.ui-dark body {
  /* Colors */
  --primary-color: $primary_color_dark;
  --secondary-color: $secondary_color_dark;
  --primary-bg-color: $primary_bg_color_dark;
  --primary-bg-color-always: $primary_bg_color_dark;
  --secondary-bg-color: $secondary_bg_color_dark;
  --secondary-bg-color-always: $secondary_bg_color_dark;
  --primary-text-color: $primary_text_color_dark;
  --secondary-text-color: $secondary_text_color_dark;
  --link-color: $link_color_dark;
  --border-color: $border_color_dark;
  --info-color: $info_color_dark;
  --success-color: $success_color_dark;
  --warning-color: $warning_color_dark;
  --danger-color: $danger_color_dark;
  --primary-color-hover: lighten($primary_color_dark, 12%);
  --primary-color-active: lighten($primary_color_dark, 15%);
  --secondary-color-hover: lighten($secondary_color_dark, 12%);
  --secondary-color-active: lighten($secondary_color_dark, 15%);
  --secondary-bg-color-hover: lighten($secondary_bg_color_dark, 4%);
  --secondary-bg-color-active: lighten($secondary_bg_color_dark, 6%);
  --secondary-text-color-hover: lighten($secondary_text_color_dark, 4%);
  --secondary-text-color-active: lighten($secondary_text_color_dark, 6%);
  --link-color-hover: lighten($link_color_dark, 12%);
  --link-color-active: lighten($link_color_dark, 15%);
}

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

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

[dir] body,
[dir] html {
  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;
}

[dir] body {
  background-color: var(--primary-bg-color);
}

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

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

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

a.link-primary:active,
a.link-primary.is-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);
}

[dir] 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);
}

[dir] a,
[dir] button,
[dir] [type='submit'],
[dir] [type='button'],
[dir] [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;
}

[dir] figure {
  margin: 0;
}

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

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

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

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

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

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

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

.breadcrumbs--search {
  margin: 4px 0 16px;
}

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

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

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

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

.breadcrumbs--search li {
  font-weight: 500;
}

.breadcrumbs--search li a,
.articles__link {
  text-decoration: underline 1px;
}

.breadcrumbs--search li a:hover,
.articles__link:hover {
  text-decoration: underline 1px;
  opacity: 0.66;
}

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

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

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

[dir] .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-2-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: 0;
}

.share-container {
  display: flex;
  align-items: center;
  margin-bottom: 29px;
}

.share-container span {
  display: block;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 300;
}

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

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

.share a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #86a3f8;
  color: #86a3f8;
}

.share a svg {
  width: 24px;
  height: 24px;
}

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

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 0 0 30px;
  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: 0 0 52px;
  border-top: var(--border-width) solid var(--border-color);
  border-bottom: var(--border-width) solid var(--border-color);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-vote__title {
  margin-right: 42px;
  font-weight: 300;
}

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

.vote-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 44px;
  background-color: #f4f4f4;
  border: 2px solid #dddddd;
  border-radius: var(--border-radius-button);
}

.vote-btn:hover {
  background-color: var(--primary-bg-color);
  border-color: var(--border-color);
}

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

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

  .article-vote__title {
    margin-right: 0;
    margin-bottom: 12px;
    text-align: center;
  }
}

/* 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: 24px;
  border-radius: var(--border-radius-base);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.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__heading {
  display: flex;
  align-items: center;
}

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

.comment__body {
  margin-top: 12px;
}

.comment__actions {
  margin-top: 4px;
}

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

.request-details form {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 12px;
}

.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 0 12px;
  padding-left: 12px;
  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;
  margin: 0 0 32px;
  padding: 0;
  font-weight: bold;
  border-bottom: 1px solid var(--border-color);
}

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

.theme-layout {
  display: block;
  margin: 0;
  width: 100%;
  background-color: var(--primary-bg-color);
}

.theme-layout__container {
  padding: 30px 24px;
}

@media (min-width: 768px) {
  .theme-layout {
    margin: 0 auto 80px;
    width: 1360px;
    max-width: calc(100% - 48px);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  }

  .theme-layout__container {
    padding: 60px 42px;
  }
}

/* Welcome */
.welcome {
  padding: 48px;
  background-color: var(--secondary-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 64px;
}

.welcome--min {
  flex-direction: row;
  padding: 32px;
  gap: 32px;
  margin-bottom: 48px;
}

.welcome__left {
  width: 100%;
  max-width: 680px;
  margin-right: 48px;
}

.welcome__image {
  flex: 1 1 10px;
  max-width: 480px;
}

.welcome__image img {
  display: block;
  width: 100%;
  height: auto;
}

.welcome__search {
  position: relative;
  width: 100%;
  max-width: 610px;
}

.welcome--min .welcome__search {
  max-width: 100%;
  flex: 1 1 10px;
}

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

.welcome__search [type='search'] {
  display: block;
  flex: 1 1 10px;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: var(--border-radius-button);
  padding: 0 12px 0 36px;
  font-weight: 500;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.welcome__search [type='search']::-webkit-input-placeholder {
  font-weight: normal;
}

.welcome__search [type='search']::-moz-placeholder {
  font-weight: normal;
}

.welcome__search [type='search']:-ms-input-placeholder {
  font-weight: normal;
}

.welcome__search [type='search']:-moz-placeholder {
  font-weight: normal;
}

.welcome__search [type='submit'] {
  border-radius: var(--border-radius-button);
  padding: 10px 24px;
}

.welcome__search svg {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search-clear {
  cursor: pointer;
}

[dir] .welcome__title {
  margin-bottom: 32px;
}

.welcome--min .welcome__title {
  font-size: 24px;
  line-height: 30px;
  margin: 0;
}

@media (min-width: 1261px) {
  [dir] .welcome__title--home {
    font-size: 48px;
    margin-bottom: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1260px) {
  .welcome__left {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .welcome {
    padding: 32px 16px;
    margin-bottom: 32px;
  }

  .welcome__left {
    max-width: 100%;
    margin-right: 0;
  }

  .welcome__image {
    display: none;
  }

  [dir] .welcome__title {
    margin-bottom: 16px;
    text-align: center;
  }

  [dir] .welcome--min .welcome__title {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .welcome__search [type='search'] {
    padding-left: 12px;
  }

  .welcome__search svg:not(.search-clear) {
    display: none;
  }

  .welcome__search [type='submit'] {
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.5 14C11.9853 14 14 11.9853 14 9.5C14 7.01472 11.9853 5 9.5 5C7.01472 5 5 7.01472 5 9.5C5 11.9853 7.01472 14 9.5 14ZM17 9.5C17 13.6421 13.6421 17 9.5 17C5.35786 17 2 13.6421 2 9.5C2 5.35786 5.35786 2 9.5 2C13.6421 2 17 5.35786 17 9.5Z' fill='%234D4D4D'/%3E%3Cpath d='M12.6552 12.8085C13.2409 12.2227 14.1907 12.2227 14.7765 12.8085L21.5488 19.5808C22.1346 20.1666 22.1346 21.1164 21.5488 21.7021C20.9631 22.2879 20.0133 22.2879 19.4275 21.7021L12.6552 14.9298C12.0694 14.344 12.0694 13.3942 12.6552 12.8085Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
  }

  [dir] .welcome--min .welcome__title {
    display: none;
  }

  .welcome.welcome--min {
    padding: 16px;
  }
}

.article-list__container {
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
}

.article-list {
  margin-bottom: 48px;
}

.article-list__title {
  margin: 0 0 32px;
}

.article-list__item {
  padding: 0 16px;
  width: 50%;
}

.article-item {
  display: block;
  position: relative;
  width: 100%;
  color: var(--primary-text-color);
  font-weight: 700;
  line-height: 24px;
  padding: 20px 60px 20px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border-radius: var(--border-radius-base);
}

.article-item svg {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.article-item span {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

.article-list__more {
  text-align: right;
  font-weight: 700;
  margin-top: 40px;
}

.article-list__more a:hover {
  opacity: 0.66;
}

@media (min-width: 768px) and (max-width: 991px) {
  .article-list__container {
    margin-left: -12px;
    padding-left: -12px;
  }

  .article-list__item {
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .article-list__container {
    margin: 0;
    row-gap: 12px;
  }

  .article-list__item {
    padding: 0;
    width: 100%;
  }

  .article-item {
    padding: 12px 60px 12px 12px;
  }

  .article-list__title {
    margin: 0 0 24px;
  }

  .article-list__more {
    margin-top: 24px;
  }
}

/* Category list */
.row.category-list__row {
  margin-right: -12px;
  margin-left: -12px;
  row-gap: 24px;
}

.row.category-list__row > .col-12 {
  padding-right: 12px;
  padding-left: 12px;
}

.category-block {
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px 32px;
  height: 100%;
  border-radius: 16px;
}

.category-block__icon {
  display: block;
  height: 40px;
  padding-top: 20px;
  margin-bottom: 16px;
}

.category-block__icon img {
  transform: translateY(-50%);
  max-height: 40px;
  width: auto;
}

.category-block__name {
  display: block;
  color: var(--primary-text-color);
  margin: 0;
  transition: all var(--duration) var(--timing-function);
}

.category-block__description {
  display: block;
  margin-top: 12px;
  color: var(--secondary-text-color);
  font-weight: 300;
  line-height: 20px;
}

.category-block:hover {
  background-color: #f9f9f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

@media (max-width: 767px) {
  .row.category-list__row {
    margin-right: -6px;
    margin-left: -6px;
    row-gap: 12px;
  }

  .row.category-list__row > .col-12 {
    padding-left: 6px;
    padding-right: 6px;
  }

  .category-block__icon {
    width: 40px;
    margin-bottom: 0;
  }

  .category-block {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .category-block__name {
    font-size: 20px;
    line-height: 28px;
  }

  .category-block__description {
    display: none;
  }
}

.underline {
  text-decoration: underline 1px;
}

.helpers {
  margin-top: 60px;
}

.helper {
  display: block;
  padding: 24px;
  background-color: #fff8de;
  height: 100%;
}

.helper__title {
  margin: 0 0 11px;
  color: var(--primary-text-color);
}

.helper:hover {
  background-color: #fff3b7;
}

.helper__description {
  max-width: 244px;
}

.cta {
  padding: 32px 35px 58px;
  background-color: #ffe76f;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 40px;
}

.cta::before {
  content: '';
  display: block;
  width: 290px;
  height: 100%;
  background-color: #fff3b7;
  position: absolute;
  top: 0;
  left: 50%;
  transform: skewX(-10deg);
}

.cta > * {
  position: relative;
  z-index: 2;
}

[dir] .cta__title {
  margin: 0 0 12px;
}

[dir] .cta__subtitle {
  margin: 0 0 36px;
}

.cta__links {
  display: flex;
}

.cta__links a {
  color: var(--primary-text-color);
  font-weight: 700;
  margin-right: 80px;
}

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

@media (max-width: 991px) {
  .cta__links {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .cta__links a {
    width: 50%;
    margin: 0;
  }
}

@media (max-width: 575px) {
  .cta__links a {
    width: 100%;
  }
}

/* Page */
.page {
  display: flex;
}

.page__sidebar {
  display: none;
  width: 238px;
  padding-right: 24px;
}

.page__sidebar--lg {
  width: 320px;
}

.page__body {
  flex: 1 1 10px;
}

.page-breadcrumbs {
  width: 100%;
  margin-bottom: 24px;
}

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

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

.section-list__item a {
  line-height: 24px;
}

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

.section-list__item.is-active a {
  color: var(--primary-text-color);
  font-weight: 700;
}

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

@media (min-width: 768px) {
  .page-breadcrumbs {
    padding-left: 238px;
    margin-bottom: 40px;
  }
  .page__sidebar {
    display: block;
  }
}

.page__heading {
  margin-bottom: 32px;
}

.page__heading.article_heading {
  margin-bottom: 0px;
}


.page__heading + .comments__list {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

[dir] .page__title {
  margin: 0;
}

.page__title--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[dir] .page__description {
  margin-top: 16px;
  color: var(--secondary-text-color);
}

.section-list-select {
  display: block;
  width: 44px;
  height: 44px;
  color: transparent;
  border: none;
  background: transparent
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='44' rx='6' fill='white'/%3E%3Cpath d='M22 17.75C20.7574 17.75 19.75 16.7426 19.75 15.5C19.75 14.2574 20.7574 13.25 22 13.25C23.2426 13.25 24.25 14.2574 24.25 15.5C24.25 16.7426 23.2426 17.75 22 17.75Z' fill='%234D4D4D'/%3E%3Cpath d='M22 24.5C20.7574 24.5 19.75 23.4926 19.75 22.25C19.75 21.0074 20.7574 20 22 20C23.2426 20 24.25 21.0074 24.25 22.25C24.25 23.4926 23.2426 24.5 22 24.5Z' fill='%234D4D4D'/%3E%3Cpath d='M19.75 29C19.75 30.2426 20.7574 31.25 22 31.25C23.2426 31.25 24.25 30.2426 24.25 29C24.25 27.7574 23.2426 26.75 22 26.75C20.7574 26.75 19.75 27.7574 19.75 29Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A")
    no-repeat center;
  background-size: contain;
}

@media (min-width: 768px) {
  .section-list-select {
    display: none;
  }
}

/* Spoiler */
.spoiler {
  background-color: var(--primary-bg-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border-radius: var(--border-radius-base);
}

.spoiler__title {
  display: block;
  position: relative;
  font-weight: 700;
  color: var(--primary-text-color);
  padding: 16px 48px 16px 16px;
}

.spoiler__title:hover {
  color: var(--primary-text-color);
}

.spoiler__title::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--primary-text-color);
  transition: all var(--duration) var(--timing-function);
}

.spoiler__title.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.spoiler__title.is-active {
  color: var(--primary-text-color);
}

.accordion {
  margin-top: 32px;
}

.accordion .spoiler + .spoiler {
  margin-top: 16px;
}

.spoiler__text {
  position: relative;
  padding: 24px 16px 32px;
}

.spoiler__text::before {
  content: '';
  display: block;
  width: calc(100% - 32px);
  position: absolute;
  top: 0;
  left: 16px;
  border-top: 1px solid var(--border-color);
}

.articles,
.articles__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-articles ul li a,
.recent-articles ul li a,
.articles__item a {
  display: block;
  position: relative;
  padding: 16px 0 16px 24px;
  text-decoration: underline 1px;
  font-weight: 500;
  line-height: 20px;
}

.related-articles ul li a:hover,
.recent-articles ul li a:hover,
.articles__item a:hover {
  color: var(--link-color);
  opacity: 0.66;
}

.related-articles ul li a::before,
.recent-articles ul li a::before,
.articles__item a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url(/hc/theming_assets/01JJC5VAZWB63C1Z7WYAMKVZXA) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.article-body {
  padding-bottom: 40px;
}

.article-content a {
  color: var(--link-color);
  text-decoration: underline 1px;
}

.article-content a:hover {
  color: var(--link-color);
  text-decoration: underline 1px;
  opacity: 0.66;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 32px;
  background-color: var(--secondary-bg-color);
  border-radius: 16px;
  position: relative;
}

.article-form-submit__image {
  max-height: 130px;
  max-width: 50%;
  margin-left: 12px;
  position: relative;
  z-index: 2;
}

.article-cta::before {
  content: '';
  display: block;
  width: 100px;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  right: 163px;
  top: 0;
  transform: skewX(-10deg);
}

.article-form-submit__image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 130px;
}

.article-cta__title {
  margin: 0 0 4px;
}

.article-cta__subtitle {
  margin-bottom: 28px;
  color: var(--secondary-text-color);
}

@media (max-width: 991px) {
  .article-form-submit__image,
  .article-cta::before {
    display: none;
  }

  [dir] .article-cta__title {
    font-size: var(--heading-2-font-size);
  }
}

@media (max-width: 767px) {
  .article-cta {
    padding: 24px;
  }

  .article-cta__left {
    width: 100%;
  }

  .article-cta .btn {
    display: block;
    width: 100%;
  }
}

.article-lists {
  row-gap: 32px;
}

.my-activities__filter {
  margin: 12px 0 24px;
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: flex-end;
}

/* layout */
.theme-container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  width: 100%;
  max-width: 1248px;
}

.theme-container--min {
  max-width: 1152px;
}

.theme-box {
  padding: 16px;
  background-color: var(--primary-bg-color);
}

@media (min-width: 768px) {
  .theme-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .theme-box {
    padding: 56px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  }
}

.theme-breadcrumbs {
  display: flex;
  margin-bottom: 32px;
}

.theme-breadcrumbs .breadcrumbs {
  display: flex;
  gap: 4px;
  align-items: center;
  background-color: #fff3b7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 15px;
}

.theme-breadcrumbs .breadcrumbs li,
.theme-breadcrumbs .breadcrumbs span,
.theme-breadcrumbs .breadcrumbs a {
  color: #4d4d4d;
  line-height: 17px;
}

.theme-breadcrumbs .breadcrumbs::before {
  content: '';
  display: block;
  width: 16px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_301_1101)'%3E%3Cpath d='M6.66673 13.1666V9.83331H9.3334V13.1666C9.3334 13.5333 9.6334 13.8333 10.0001 13.8333H12.0001C12.3667 13.8333 12.6667 13.5333 12.6667 13.1666V8.49998H13.8001C14.1067 8.49998 14.2534 8.11998 14.0201 7.91998L8.44673 2.89998C8.1934 2.67331 7.80673 2.67331 7.5534 2.89998L1.98007 7.91998C1.7534 8.11998 1.8934 8.49998 2.20007 8.49998H3.3334V13.1666C3.3334 13.5333 3.6334 13.8333 4.00007 13.8333H6.00007C6.36673 13.8333 6.66673 13.5333 6.66673 13.1666Z' fill='%234D4D4D'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_301_1101'%3E%3Crect width='16' height='16' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A")
    no-repeat center;
  background-size: contain;
}

.theme-breadcrumbs .breadcrumbs li {
  display: block;
  position: relative;
  padding-left: 20px;
  margin: 0;
}

.theme-breadcrumbs .breadcrumbs li::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-size: 16px;
  background-size: contain;
  position: absolute;
  top: 54%;
  left: 6px;
  transform: translateY(-50%);
  color: #828282;
}

.theme-heading {
  font-size: 48px;
  line-height: 56px;
  margin: 0;
  padding-bottom: 40px;
}

[dir] .custom-header .css-1ara1xa {
  background-color: transparent;
  background-image: url(/hc/theming_assets/01J2G9FJ71C23FBJYJ1J6VS8VV);
  background-size: contain;
  width: 56px;
  height: var(--logo-height);
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  [dir] .custom-header .css-1ara1xa {
    height: 30px;
    margin-left: 16px;
  }

  .custom-header .css-6mq3n9::before {
    content: '';
    display: block;
    width: 66px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -8px;
    background-color: #fff;
    transform: skewX(-11deg);
  }

  .theme-breadcrumbs .breadcrumbs {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
  }

  .theme-breadcrumbs {
    width: 100vw;
    margin-left: -16px;
    background-color: #fff3b7;
    padding: 2px 16px 24px;
    margin-top: -2px;
    margin-bottom: -24px;
  }

  .theme-heading {
    background-color: var(--primary-bg-color);
    border-radius: 16px 16px 0 0;
    margin-top: -24px;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: -16px;
    padding: 24px 16px;
    font-size: 36px;
    line-height: 40px;
  }

  .theme-box {
    padding: 0;
  }

  .welcome {
    margin-top: 8px;
  }
}

.link {
  font-weight: 500;
  color: var(--link-color);
  text-decoration: underline 1px;
}

.link img {
  height: 24px;
  width: 16px;
}

.link:hover {
  color: var(--link-color);
  text-decoration: underline 1px;
  opacity: 0.66;
}

.popular-searches {
  margin-top: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .home-left-col {
    padding-right: 32px;
  }
}

.promoted-articles a {
  display: flex;
  gap: 8px;
}

.promoted-articles a svg {
  margin-top: 4px;
}

.promoted-articles a span {
  flex: 1 1 10px;
}

.promoted-articles a + a {
  margin-top: 32px;
}

/* Home spoiler */

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

@media (max-width: 767px) {
  .home-spoiler {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-base);
    margin-bottom: 16px;
  }

  .home-spoiler__toggle,
  .home-spoiler__body {
    margin: 0;
    padding: 16px;
  }

  .home-spoiler__toggle {
    padding-right: 48px;
    position: relative;
    font-size: 16px;
    line-height: 24px;
  }

  .home-spoiler__toggle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.0811 6.82649C13.4717 6.43597 13.4717 5.8028 13.0811 5.41228C12.6906 5.02175 12.0574 5.02175 11.6669 5.41228L8.12093 8.95826L4.58764 5.42497C4.19712 5.03445 3.56396 5.03445 3.17343 5.42497C2.78291 5.8155 2.78291 6.44866 3.17343 6.83919L7.41552 11.0813C7.80604 11.4718 8.43921 11.4718 8.82973 11.0813C8.84631 11.0647 8.86218 11.0477 8.87735 11.0303L13.0811 6.82649Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A")
      no-repeat center;
    background-size: contain;
    transition: all 0.2s ease-in-out;
    transform: translateY(-50%);
  }

  .home-spoiler__toggle.is-active::before {
    transform: translateY(-50%) rotate(180deg);
  }
}

.custom-links__row {
  margin-right: -8px;
  margin-left: -8px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
}

.custom-links__col {
  padding-right: 8px;
  padding-left: 8px;
  width: 100%;
}

@media (min-width: 992px) {
  .custom-links__col {
    flex: 1 1 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-links__col {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.custom-link {
  background-color: #f9f9f9;
  border-radius: var(--border-radius-base);
  border: 1px solid #f4f4f4;
  padding: 12px 36px 12px 48px;
  position: relative;
  color: var(--primary-text-color);
  line-height: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-link::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 12px;
  top: calc(50% - 8px);
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.25 8C2.25 7.58579 2.58579 7.25 3 7.25H12C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75H3C2.58579 8.75 2.25 8.41421 2.25 8Z' fill='%234D4D4D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.86957 3.96967C9.16247 3.67678 9.63734 3.67678 9.93023 3.96967L12.9999 7.03934C13.5857 7.62513 13.5857 8.57487 12.9999 9.16066L9.93023 12.2303C9.63734 12.5232 9.16247 12.5232 8.86957 12.2303C8.57668 11.9374 8.57668 11.4626 8.86957 11.1697L11.9392 8.1L8.86957 5.03033C8.57668 4.73744 8.57668 4.26256 8.86957 3.96967Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A")
    no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
}

.custom-link img {
  display: block;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translate(-50%, -50%);
}

.custom-link__title {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.custom-link__text {
  display: block;
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
}

.custom-link:hover {
  color: var(--primary-text-color);
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

@media (min-width: 768px) {
  .custom-links {
    margin-top: 56px;
  }
}

.contact-button {
  display: block;
  position: relative;
  padding: 10px 100px 14px 16px;
  background-color: var(--secondary-bg-color);
  color: var(--secondary-text-color);
  overflow: hidden;
  border-radius: var(--border-radius-base);
  line-height: 1;
  height: 100%;
}

.contact-button img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100%;
  width: auto;
}

.contact-button__heading {
  display: block;
  font-size: 12px;
  line-height: 20px;
}

.contact-button__title {
  display: block;
  font-size: var(--text-font-size);
  line-height: 24px;
  margin-bottom: 8px;
  color: var(--primary-text-color);
}

.contact-button__title span {
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
}

.contact-button__text {
  display: block;
  font-size: 14px;
  line-height: 20px;
}

.contact-button__text::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.25 8C2.25 7.58579 2.58579 7.25 3 7.25H12C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75H3C2.58579 8.75 2.25 8.41421 2.25 8Z' fill='%234D4D4D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.86957 3.96967C9.16247 3.67678 9.63734 3.67678 9.93023 3.96967L12.9999 7.03934C13.5857 7.62513 13.5857 8.57487 12.9999 9.16066L9.93023 12.2303C9.63734 12.5232 9.16247 12.5232 8.86957 12.2303C8.57668 11.9374 8.57668 11.4626 8.86957 11.1697L11.9392 8.1L8.86957 5.03033C8.57668 4.73744 8.57668 4.26256 8.86957 3.96967Z' fill='%234D4D4D'/%3E%3C/svg%3E%0A")
    no-repeat center;
  background-size: contain;
  transition: all 0.2s ease-in-out;
  margin-top: -2px;
}

.footer-contacts {
  margin-top: 48px;
  margin-bottom: 56px;
}

.contact-button:hover {
  color: var(--primary-text-color);
  /* background-color: var(--primary-bg-color); */
  background-color: #f4f4f4;
  border-color: var(--primary-bg-color);
  /* box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1); */
}

.article-bottom {
  padding-top: 64px;
}

.article-bottom__title {
  margin-bottom: 48px;
}

@media (max-width: 991px) {
  .article-bottom__title {
    font-size: var(--heading-1-font-size);
  }
}

.form-footer {
  margin-top: 16px;
}

.back-link,
.article-section {
  display: none;
}

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

  .back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--secondary-text-color);
  }

  .back-link--min {
    margin-bottom: 8px;
  }

  .article-title {
    font-size: 36px;
    line-height: 40px;
  }

  .article-section {
    display: flex;
    margin-bottom: 32px;
  }
}

.mobile-tickets,
.mobile-languages {
  position: absolute;
  z-index: 2;
}

body:not(.mobile-menu-is-active) .mobile-languages,
.mobile-menu-is-active .mobile-tickets {
  display: none;
}

.mobile-languages .header-mobile-ticket {
  font-weight: 500;
}

/* Autocomplete */
zd-autocomplete {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  border-radius: var(--border-radius-base);
}

zd-autocomplete-multibrand {
  border: none;
  padding: 20px;
  display: block;
  position: relative;
}

zd-autocomplete-multibrand + zd-autocomplete-multibrand::before {
  content: '';
  display: block;
  width: calc(100% - 40px);
  position: absolute;
  top: 0;
  left: 20px;
  border-top: 1px solid var(--border-color);
}

zd-autocomplete-header {
  display: none;
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: var(--link-color);
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline 1px;
  transition: all 0.3s ease-in-out;
}

zd-autocomplete-multibrand:hover zd-autocomplete-title-multibrand {
  opacity: 0.66;
  color: var(--link-color);
  text-decoration: underline 1px;
}

zd-autocomplete-multibrand zd-autocomplete-breadcrumbs-multibrand {
  color: #666;
  font-size: 14px;
}

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

.custom-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.custom-pagination__buttons {
  display: flex;
  align-items: center;
  margin-right: -8px;
}

.custom-pagination__buttons a,
.custom-pagination__buttons span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}

.custom-pagination__buttons span {
  opacity: 0.33;
}

.custom-pagination__buttons a:hover {
  opacity: 0.66;
}



.iframe {
    padding-bottom: 1% !important;
}

.page-content__box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}