/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #00adba;
  --secondary-color: #00adba;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #ebf9fa;
  --secondary-bg-color-always: #ebf9fa;
  --primary-text-color: #000000;
  --secondary-text-color: #6b6c7b;
  --link-color: #00adba;
  --border-color: #D1D1D1;
  --placeholder-text-color: #B1B1B1;
  --info-color: #1B4173;
  --success-color: #67C30B;
  --warning-color: #FFD800;
  --danger-color: #e64545;
  --primary-color-hover: #00747d;
  --primary-color-active: #00666e;
  --secondary-color-hover: #00e6f7;
  --secondary-color-active: #08eeff;
  --secondary-bg-color-hover: #dbf4f6;
  --secondary-bg-color-active: #d3f2f4;
  --secondary-text-color-hover: #626270;
  --secondary-text-color-active: #5d5e6b;
  --link-color-hover: #00747d;
  --link-color-active: #00666e;

  /* Text */
  --text-font-family: 'Montserrat', sans-serif;
  --heading-font-family: 'Montserrat', 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: 21px;
  --heading-4-font-size: 18px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

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

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 5px 10px #273E5D80;
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01KC9GJHJS4VAQN6KWKTFD9D0M);
}

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

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

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

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

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

h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
}

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 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: 60px 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 30px;
  text-align: center;
}

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

.article-vote__count {
  margin-top: 26px;
  font-weight: 600;
}

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

/* 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;
  background-color: var(--secondary-bg-color);
  border-color: var(--primary-color);
}

.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 {
  position: relative;
  margin-bottom: 24px;
}

.comment__left {
  width: 100%;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.comment__sidebar ~ .comment__left {
  width: calc(100% - 42px);
  min-height: 80px;
}

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

.comment + .comment .comment__sidebar {
  top: 24px;
}

.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 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--primary-bg-color);
}

.header-placeholder {
  height: 95px;
}

[dir] .header__container {
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  padding: 0 24px;
}

.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: 10px;
}

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

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

.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: 90px 0;
  position: relative;
  background: url(/hc/theming_assets/01KMQ94FGYF7SE96J5Q895CXGS) no-repeat center;
  background-size: cover;
  border-bottom: 10px solid #DAE5F4;
  margin-bottom: 130px;
}

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

.welcome__title {
  margin: 0;
  text-align: center;
  color: #fff;
}

.welcome__description {
  text-align: center;
  color: #fff;
  margin: 20px 0 64px;
  font-size: 18px;
}

.welcome__search {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -33px);
  width: calc(100% - 30px);
  max-width: 726px;
}

.welcome__search .meta {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.welcome__search input[type=search] {
  height: 66px;
  outline: none;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-button);
  box-shadow: 0px 5px 18px 4px #273e5d30;
  padding: 0 72px;
}

.welcome__search input[type=search]:focus,
.welcome__search input[type=search]:active {
  outline: none;
  border-color: var(--primary-color);
}

.welcome__search-form {
  position: relative;
}

.welcome__search-form img {
  position: absolute;
  top: calc(50% - 15px);
  left: 16px;
  z-index: 2;
}

.welcome__bottom-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 31px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.welcome__bottom-text a {
  display: inline-block;
  color: #F3D006;
  border-bottom: 1px solid currentColor;
}

.welcome__bottom-text a:hover {
  border-color: transparent;
}

.welcome__search-buttons {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
  gap: 8px;
  justify-content: center;
}

@media (max-width: 991px) {
  .welcome {
    padding: 24px 0 60px;
  }

  .welcome__description {
    margin: 4px 0 24px;
    font-size: var(--text-font-size);
  }
}

/* Helpers */
.helpers__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  width: 100%;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  background-color: var(--primary-bg-color);
  padding: 24px 12px 24px 115px;
  position: relative;
  height: 100%;
  min-height: 133px;
  border: var(--border-width) solid var(--primary-bg-color);
}

.helpers__item::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: url(/hc/theming_assets/01KC9GJHD0TC48EVTMN88KQE5Y) no-repeat center;
  background-size: contain;
}

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

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

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

.helpers__title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-text-color);
}

.helpers__top-text,
.helpers__description {
  display: block;
  color: var(--secondary-text-color);
  line-height: 1;
  font-size: 10px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .helpers .col {
    margin-top: 6px;
  }
  .helpers__item {
    min-height: auto;
  }
}

/* Category list */
.category-list {
  background-color: var(--secondary-bg-color);
  padding: 36px 0 12px;
}

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

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

.category-list__item:hover,
.category-list__item:focus,
.category-list__item:active {
  background-color: var(--secondary-color);
}

.category-list__title {
  display: block;
  margin-bottom: 8px;
  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 .col-12 {
    margin-bottom: 15px;
  }

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

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

.promoted .row {
  row-gap: 30px;
}

.promoted__title {
  margin: 0 0 33px;
}

.promoted__article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  line-height: 24px;
}

.promoted__article-title {
  font-weight: 600;
}

.promoted__article-body {
  word-break: break-word;
}

.promoted__article-link {
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
}

.promoted__article-link:hover {
  border-color: transparent;
}

/* CTA */
.cta {
  padding: 74px 0;
  background-color: var(--primary-color);
  text-align: center;
}

.cta__title {
  margin: 0 0 27px;
  color: #fff;
}

.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: 22px 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.footer a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
}

.footer--single {
  padding: 18px 0;
  border-top: var(--border-width) solid var(--border-color);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-self: center;
}

@media (max-width: 767px) {
  .footer__container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }
}

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

[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);
  box-shadow: var(--primary-color) 3px 0 inset;
}

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

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

/* Wysiwyg body */
.wysiwyg-body p code {
  display: inline-block;
  padding: 0 0.25em;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-bg-color);
  color: var(--primary-text-color);
  white-space: pre;
}

.wysiwyg-body pre {
  background-color: var(--secondary-bg-color) !important;
  border: 1px solid var(--border-color);
  color: var(--primary-text-color);
  padding: 10px 15px;
  white-space: pre;
  border-radius: 3px;
  overflow-x: auto;
}

.wysiwyg-body pre code {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.wysiwyg-body a {
  text-decoration: underline;
}

.wysiwyg-body a:hover {
  text-decoration: none;
}

.wysiwyg-body blockquote {
  border-left: 5px solid var(--border-color);
  font-style: italic;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.approval-request .fSbCBS {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
}

.approval-request .bFtQSZ {
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-base);
}

.powered-by-zendesk a {
  color: var(--secondary-text-color);
}

[dir] zd-summary-block {
  color: var(--primary-text-color);
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  border-color: var(--primary-color);
}

/* Blockquotes */
.markdown blockquote {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

[dir=ltr] .markdown blockquote {
  border-top-right-radius: var(--border-radius-base, 8px);
  border-bottom-right-radius: var(--border-radius-base, 8px);
  border-left: 4px solid var(--primary-color, #000c20);
  padding: 8px 0 8px 12px;
}

[dir=rtl] .markdown blockquote {
  border-top-left-radius: var(--border-radius-base, 8px);
  border-bottom-left-radius: var(--border-radius-base, 8px);
  border-right: 4px solid var(--primary-color, #000c20);
  padding: 8px 12px 8px 0;
}

@media (min-width: 768px) {
  [dir=ltr] .markdown blockquote {
    padding: 8px 0 8px 24px;
  }

  [dir=rtl] .markdown blockquote {
    padding: 8px 24px 8px 0;
  }
}

.markdown blockquote::before {
  content: "\f10e";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  z-index: -1;
  top: -8px;
  font-size: 50px;
  color: var(--secondary-bg-color, #f1f4fa);
}

[dir=ltr] .markdown blockquote::before {
  left: 8px;
}

[dir=rtl] .markdown blockquote::before {
  right: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  [dir=ltr] .markdown blockquote::before {
    left: 12px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 12px;
  }
}

@media (min-width: 1024px) {
  [dir=ltr] .markdown blockquote::before {
    left: 16px;
  }

  [dir=rtl] .markdown blockquote::before {
    right: 16px;
  }
}

/* Tables */
[dir] figure.wysiwyg-table {
  display: block;
  width: 100%;
  overflow-y: auto;
}

#service-catalog a {
  color: var(--primary-text-color);
}

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

html[dir] .pp-copyright {
  display: block;
  padding: 16px 6px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: var(--primary-text-color);
  text-decoration: none;
}

html[dir] .pp-copyright span {
  opacity: 0.5;
  text-decoration: none;
  transition: all .3s ease;
}

html[dir] .pp-copyright:hover span {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .header__menu > * + * {
    margin-left: 8px;
  }

  [dir] .header-website-btn span:first-child {
    display: none;
  }

  [dir] .header-website-btn span:last-child {
    width: 100%;
    border: none;
  }

  [dir] .header-website-btn {
    width: 42px;
  }
}

/* Get in touch */
.get-in-touch {
  background-color: var(--secondary-bg-color);
  padding-top: 68px;
  padding-bottom: 100px;
}

.get-in-touch .row {
  row-gap: 15px;
}

.get-in-touch__heading {
  line-height: 50px;
  margin: 0 0 24px;
}

.get-in-touch__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--primary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 35px;
  gap: 10px;
  line-height: 24px;
  height: 100%;
}

.get-in-touch__block:hover {
  box-shadow: 0px 5px 18px 4px #273e5d30;
}

.get-in-touch__block img {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.get-in-touch__title {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-text-color);
}

.get-in-touch__description {
  color: var(--secondary-text-color);
}

@media (max-width: 767px) {
  .get-in-touch {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .get-in-touch__heading {
    line-height: 1.2;
  }

  .get-in-touch__block {
    padding: 24px;
  }
}

/* Page heading */
.page-heading {
  background-color: var(--primary-color);
  padding-top: 17px;
  padding-bottom: 17px;
}

.page-heading .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

[dir] .page-heading-btn {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-text-color);
  padding-left: 43px;
  position: relative;
  height: 43px;
  font-size: 16px;
  line-height: 27px;
}

[dir] .page-heading-btn:hover {
  background-color: var(--secondary-bg-color);
  border-color: var(--secondary-bg-color);
}

[dir] .page-heading-btn svg {
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  left: 9px;
}

[dir] .page-heading-dropdown {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-text-color);
  height: 43px;
  font-size: 16px;
  line-height: 27px;
  padding-right: 50px;
}

[dir] .page-heading-dropdown img {
  width: 30px;
  height: 30px;
  margin: -2px 20px -2px -16px;
}

[dir] .page-heading-dropdown i {
  font-style: normal;
  flex: 1 1 10px;
  text-align: left;
}

[dir] .page-heading-dropdown svg {
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 22px;
}

@media (min-width: 768px) {
  [dir] .page-heading-dropdown {
    min-width: 292px;
  }
}

/* Section list */
.section-list {
  padding: 38px 0 60px;
  background: var(--secondary-bg-color);
}

.section-list .row {
  row-gap: 23px;
}

@media (max-width: 767px) {
  .section-list .row {
    row-gap: 6px;
  }
}

.steps-heading {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 34px;
}

.steps-heading span,
.steps-heading a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--primary-text-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 41px;
  text-align: center;
}

.steps-heading h3,
.steps-heading h2,
.steps-heading h1 {
  flex: 1 1 10px;
  margin: 0;
}

.section-list__item {
  display: flex;
  align-items: center;
  padding: 19px;
  gap: 20px;
  background-color: var(--primary-bg-color);
  border: 1px solid var(--primary-bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: 0px 2px 2px #273e5d26;
  height: 100%;
}

.section-list__item:hover,
.section-list__item.is-active {
  border-color: var(--primary-color);
}

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

.section-list__item span {
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}

.page-content {
  padding: 40px 0 70px;
}

.articles-accordion {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.article-spoiler {
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all .3s ease;
}

.article-spoiler:hover {
  border-color: var(--primary-color);
}

.article-spoiler.is-open {
  background-color: var(--secondary-bg-color);
  border-color: var(--secondary-bg-color);
}

.article-spoiler__title {
  display: block;
  position: relative;
  padding: 18px 50px 18px 20px;
  font-weight: 500;
  line-height: 24px;
}

.article-spoiler__title::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 18px;
  right: 18px;
  background: url(/hc/theming_assets/01KC9GJHK6E3BWWW203CK0DAMM) no-repeat center;
  background-size: contain;
}

.article-spoiler__title.is-active::after {
  background-image: url(/hc/theming_assets/01KC9GJHBY306JJEZVCFZ3HBMD);
}

.article-spoiler__text {
  padding: 0 20px 18px 20px;
}

.article-spoiler__btn {
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

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

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

.article-pagination {
  display: flex;
  gap: 9px;
}

.article-pagination span {
  border-color: var(--border-color);
}

.article-pagination span svg {
  opacity: .3;
}

.article-pagination a:hover {
  background-color: var(--secondary-bg-color);
}

.sidebar-callout {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 30px;
}

.sidebar-callout__heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding: 16px 24px 14px;
}

.sidebar-callout__body {
  padding: 30px;
  background-color: var(--secondary-bg-color);
}

.sidebar-callout__text {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sidebar-callout__text img {
  margin-left: -10px;
}

.sidebar-callout__text div {
  flex: 1 1 10px;
}

[dir] .sidebar-callout .btn--secondary {
  border: none;
  padding: 9px;
}

@media (min-width: 992px) {
  .article-left-col {
    padding-right: 60px;
  }
}

.article-vote__controls {
  display: flex;
  justify-content: center;
}

.article-vote__controls > * {
  margin: 0 !important;
}

.new-request-page {
  padding-top: 52px;
  padding-bottom: 86px;
}

.new-request-page__title {
  line-height: 50px;
  margin-bottom: 34px;
}

.new-request-form-container {
  max-width: 968px;
}

/*
[dir] .request_ticket_form_id + .form-field {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 40px;
}
*/

[dir] .request_ticket_form_id .nesty-input {
  width: 350px;
  border: 1px solid var(--primary-color);
  box-shadow: none;
  border-radius: 28px;
}

[dir] .request_ticket_form_id .nesty-input[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.search-results-form {
  margin-bottom: 40px;
}

.search-results-form input[type="search"] {
  border-radius: 50px;
  height: 60px;
  box-shadow: none;
  padding-left: 72px;
}

.header__search {
  position: relative;
  width: 100%;
  max-width: 555px;
}

.header__search svg {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 24px;
  top: 11px;
  z-index: 2;
}

html[dir] .header__search input[type="search"] {
  background-color: #EDEEF2;
  border-color: #EDEEF2;
  height: 41px;
  min-height: 41px;
  width: 100%;
  padding: 0 12px 0 72px;
  border-radius: 40px;
  box-shadow: none;
  font-size: 14px;
}

html[dir] .header__search input[type="search"]::placeholder {
  color: #26304D;
}

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

.header__search-container {
  flex: 1 1 10px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.brand-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px;
  line-height: 22px;
}

.brand-button:hover {
  color: #fff;
}

.brand-button * {
  z-index: 2;
}

.brand-button .hover-animation-span {
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: width 0.7s, padding-top 0.7s;
  width: 0;
  height: 0;
  padding-top: 0;
  background: var(--primary-color);
}

.brand-button:hover .hover-animation-span,
.brand-button.is-success .hover-animation-span,
.brand-button.is-error .hover-animation-span {
  padding-top: 225%;
  width: 225%;
}

.brand-button.is-success .hover-animation-span,
.brand-button.is-error .hover-animation-span {
  top: 50% !important;
  left: 50% !important;
}

.brand-button.is-success,
.brand-button.is-error {
  color: transparent;
}

.brand-button.is-success::before,
.brand-button.is-error::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  z-index: 3;
}

.brand-button.is-success::before {
  content: "\f00c";
}

.brand-button.is-error::before {
  content: "\f00d";
}

.country-list-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all .3s ease;
  opacity: 0;
  visibility: hidden;
}

.country-list-popup.is-active {
  opacity: 1;
  visibility: visible;
}

.country-list-container {
  display: block;
  width: calc(100% - 30px);
  max-width: 400px;
  max-height: calc(100dvh - 30px);
  border-radius: var(--border-radius-base);
  padding: 24px;
  background-color: var(--primary-bg-color);
}

.country-list-container.animate {
  animation: popupScale 0.2s ease;
}

.country-list-heading {
  margin: 0 0 24px;
  text-align: center;
}

.country-list-section {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  justify-content: center;
}

.country-list-item {
  display: block;
  width: 35%;
  padding: 8px;
}

.country-list-country {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--primary-text-color);
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.country-list-country img {

}

.country-list-country span {
  display: block;
  position: relative;
}

/*
a.country-list-country span::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 7px;
  background-color: #113e5d;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all .4s;
  opacity: 0;
  visibility: hidden;
}

a.country-list-country:hover span::before {
  left: -12px;
  opacity: 1;
  visibility: visible;
}
*/

div.country-list-country span::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  background: url(/hc/theming_assets/01KS4VADBZ3P5VZC0RNED9PECV) no-repeat center;
  background-size: contain;
  transition: all .3s ease;
}

div.country-list-country:hover span::after {
  transform: rotate(180deg);
}

.country-list-country__menu {
  position: absolute;
  max-width: 60px;
  top: calc(100% - 10px);
  left: 50%;
  transform: translate(-50%);
  z-index: 5;
  line-height: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.country-list-country__menu a {
  background-color: #00ADBA;
  padding: 5px 10px;
  color: #fff;
  display: block;
  transition: all .4s;
}

.country-list-country__menu a:hover {
  background-color: #ededed;
  color: #000;
}

div.country-list-country:hover .country-list-country__menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-btn-locale span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn-locale span::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url(/hc/theming_assets/01KS4VAD5RGXSRXQ4RS948HQXY) no-repeat center;
  background-size: contain;
}
