/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #03c8cd;
  --secondary-color: #ffae93;
  --primary-bg-color: #fcf4f2;
  --primary-bg-color-always: #fcf4f2;
  --secondary-bg-color: #ffffff;
  --secondary-bg-color-always: #ffffff;
  --primary-text-color: #000000;
  --secondary-text-color: #002e5b;
  --link-color: #03c8cd;
  --border-color: #EBE9E9;
  --placeholder-text-color: #9A9A9A;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #028d91;
  --primary-color-active: #027e82;
  --secondary-color-hover: #ff8056;
  --secondary-color-active: #ff7547;
  --secondary-bg-color-hover: #f5f5f5;
  --secondary-bg-color-active: #f0f0f0;
  --secondary-text-color-hover: #002447;
  --secondary-text-color-active: #001f3c;
  --link-color-hover: #028d91;
  --link-color-active: #027e82;

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

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

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

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

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

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

a.is-disabled {
  cursor: default;
}

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

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

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

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

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

figure {
  margin: 0;
}

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

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

.iframe {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  padding: 24px 0;
  background-color: var(--secondary-bg-color);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__right {
  gap: 12px;
}

.logo,
.logo img {
  display: block;
  height: var(--logo-height);
  width: auto;
}

.header .btn--primary:not(.no-hover):hover,
.header .btn--primary:not(.no-hover):active,
.header .btn--primary:not(.no-hover):focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.header .btn--secondary:not(.no-hover):hover,
.header .btn--secondary:not(.no-hover):active,
.header .btn--secondary:not(.no-hover):focus {
  background-color: var(--secondary-text-color);
  border-color: var(--secondary-text-color);
  color: #fff;
}

/* Welcome */

.welcome {
  padding: 48px 0 0;
  background-color: var(--secondary-text-color);
}

.welcome-container--secondary .welcome {
  background-color: var(--primary-color);
}

.welcome-container--secondary .welcome .breadcrumbs {
  margin-bottom: 48px;
}

.welcome-container--secondary .welcome__svg-1 path {
  fill: var(--secondary-color);
}

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

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

.welcome__title {
  margin-top: 0;
  margin-bottom: 37px;
  color: var(--white-color);
}

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

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

.welcome__search input[type=search] {
  height: 50px;
  outline: none;
  border: none;
}

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

.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] {
  color: transparent;
  background: var(--secondary-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 24px 24px;
  border-color: var(--secondary-color);
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}

.welcome__search input[type=submit]:hover,
.welcome__search input[type=submit]:focus,
.welcome__search input[type=submit]:active {
  color: transparent;
  background-color: var(--secondary-color-hover);
  border-color: var(--secondary-color-hover);
}

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

  .welcome__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

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

  .welcome__title {
    margin-bottom: 12px;
    font-size: var(--heading-4-font-size);
  }
}

.welcome-container {
  position: relative;
}

.welcome-vlak {
  width: 100%;
  max-height: 120px;
  position: relative;
}

.welcome__svg-1 {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  height: 310px;
  width: 950px;
}

.welcome__svg-2 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 53%;
  height: 232px;
  width: 950px;
}

@media (max-width: 991px) {
  .welcome__svg-1 {
    width: 100vw;
    height: 33vw;
  }

  .welcome__svg-2 {
    left: 50%;
    height: 24vw;
    width: 100vw;
  }
}

@media (max-width: 575px) {
  .welcome__svg-1 {
    width: 120vw;
    height: 39vw;
    left: 25%;
  }

  .welcome__svg-2 {
    width: 120vw;
    height: 28vw;
    left: 25%;
  }
}

.welcome__form-img-1,
.welcome__form-img-2 {
  display: block;
  position: absolute;
  height: 180px;
}

.welcome__form-img-1 {
  top: 0;
  right: 180px;
}

.welcome__form-img-2 {
  top: 100px;
  right: 0;
}

@media (max-width: 991px) {
  .welcome__form-img-1,
  .welcome__form-img-2 {
    display: none;
  }
}

/* Helpers */
.helpers {
  padding: 48px 0;
}

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

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

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

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

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

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

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

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

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

.category-list .container {
  position: relative;
  z-index: 2;
}

.category-list__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: var(--primary-color);
}

.category-list__bg svg {
  display: block;
  width: 100%;
  fill: var(--primary-bg-color);
}

@media (min-width: 1200px) {
  .category-list .container {
    max-width: 960px;
  }
}

.category-list .row {
  row-gap: 24px;
}

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

.category-list__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  height: 100%;
  padding: 24px 24px 48px;
  transition: border-color var(--duration) var(--timing-function);
  position: relative;
  border: 1px solid var(--secondary-bg-color);
}

.category-list__item:hover,
.category-list__item:focus,
.category-list__item:active {
  border-color: #03b570;
}

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

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

.category-list__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: var(--text-font-size-small);
  color: #03b570;
  position: absolute;
  bottom: 12px;
  right: 24px;
}

.category-list__item img {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .category-list__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

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

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

.promoted__title {
  margin: 0 0 33px;
  text-align: center;
}

.promoted__link {
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  text-decoration: underline;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  padding: 13px 24px;
  border-radius: var(--border-radius-base);
}

.promoted__link:hover {
  color: #fff;
  background-color: var(--secondary-color-hover);
  text-decoration: none;
}

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

.promoted__link span {
  display: block;
}

/* CTA */
.cta {
  padding: 36px 0;
}

@media (min-width: 1200px) {
  .cta .container {
    max-width: 1024px;
  }
}

.cta--secondary {
  background-color: var(--primary-color);
}

.cta__container {
  background-color: var(--secondary-text-color);
  color: #fff;
  border-radius: var(--border-radius-base);
  overflow: hidden;
  display: flex;
  position: relative;
}

.cta__img {
  width: 25%;
  background: no-repeat center;
  background-size: cover;
  position: relative;
}

.cta__img svg {
  display: block;
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  width: auto;
  fill: var(--secondary-text-color);
}

.cta__dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 16%;
  height: auto;
}

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

.cta__content {
  flex: 1 1 10px;
  padding: 32px;
}

.cta__title {
  margin: 0 0 12px;
}

.cta__subtitle {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 32px;
}

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

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

/* Footer */
.footer {
  padding-top: 13vw;
  background-color: var(--secondary-text-color);
  color: #fff;
  position: relative;
}

.footer__bg {
  position: absolute;
  width: 120%;
  max-width: 120%;
  top: 0;
  left: -20%;
  right: auto;
  height: auto;
  fill: var(--primary-bg-color);
}

.footer__padding {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 3rem;
}

.footer__container {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.home-page .footer__bg {
  fill: var(--primary-color);
}

.footer .container {
  max-width: 100%;
  padding: 3rem 5%;
}

.footer-row {
  display: flex;
  justify-content: space-around;
  gap: 32px;
}

.footer__top-wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start;
}

.footer__menu-wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: start;
}

.footer-text {
  margin-top: 32px;
  max-width: 40ch;
  font-size: 1.313rem;
}

.footer__menu {
  display: flex;
  flex-direction: column;
}

.footer__menu a,
.footer__heading {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

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

.footer__heading {
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer__contacts {
  font-size: var(--text-font-size-small);
}

.footer__contacts a {
  text-decoration: underline;
}

.footer__heading--soc {
  padding-top: 0;
  font-size: 16px;
}

.footer__soc {
  display: flex;
  gap: .6rem;
}

.footer__soc a {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 10rem;
  align-items: center;
  padding: .4rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex;
}

.footer__soc a svg {
  width: 1.5rem;
  height: 1.5rem;
}

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

.footer-bottom {
  margin-top: 48px;
  padding: 32px 0 80px;
  border-top: 1px solid #fff;
  font-size: .875rem;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline 1px;
}

.footer-bottom a:hover {
  text-decoration: none;
}

.footer .logo,
.footer .logo img {
  height: auto;
  width: 170px;
}

.footer-col--logo {
  flex: 1 1 1px;
}

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

  .footer-col--logo {
    width: 100%;
  }

  .footer__top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .footer-text {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding-bottom: 4rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .footer__padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 2rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer__menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2.75rem;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 479px) {
  .footer__top-wrapper {
    grid-row-gap: 48px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer__menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .footer-text {
    font-size: 1.125rem;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* 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: 24px;
  color: var(--secondary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  display: flex;
  flex-direction: column;
  gap: 4px;
  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;
  font-size: var(--text-font-size-large);
  color: var(--secondary-text-color);
  font-weight: bold;
}

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

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

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

.welcome .breadcrumbs,
.welcome .breadcrumbs a {
  color: #fff;
}

.welcome .breadcrumbs li + li::before {
  color: #fff;
}

.page__title {
  margin: 0 0 24px;
  color: #fff;
}

@media (min-width: 768px) {
  .page__title {
    font-size: 58px;
  }
}

.page__description {
  color: #fff;
  margin: 0;
  font-weight: normal;
}

.btn.page__back {
  color: #fff !important;
  padding: 10px 24px;
  margin-top: 24px;
}

.rightbar-bg {
  display: none;
}

@media (max-width: 991px) {
  .inner-page__rightbar {
    margin-top: 32px;
  }

  .inner-page__rightbar a {
    font-weight: bold;
    color: var(--secondary-text-color);
  }
}

@media (min-width: 992px) {
  .inner-page__rightbar {
    position: relative;
    padding: 54px 0 54px 54px;
    min-height: 400px;
  }

  .inner-page__rightbar > *:not(.rightbar-bg) {
    position: relative;
    z-index: 2;
  }

  .inner-page__rightbar,
  .inner-page__rightbar a {
    color: #fff;
  }

  .inner-page__rightbar a {
    font-weight: bold;
  }

  .rightbar-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 54px);
    height: 100%;
    fill: var(--primary-color);
  }
}

.new-request__container {
  position: relative;
  padding: 56px;
}

.new-request__container form {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.new-request__container::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: var(--secondary-text-color);
  transform: rotate(-2deg);
}

.new-request__container label[for] {
  color: #fff;
  font-size: var(--text-font-size-large);
  font-weight: bold;
}

.new-request__container .form-field p {
  color: #fff;
}

[dir] .nesty-input:after,
[dir] .hc-multiselect-toggle:after {
  width: 10px;
  height: 10px;
  border-color: var(--secondary-color);
}

#upload-dropzone span,
#upload-dropzone a {
  color: var(--secondary-text-color);
  font-weight: bold;
}

.new-request__container [type="submit"] {
  color: #fff;
  padding: 14px 48px;
  margin-top: 24px;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-size: var(--text-font-size-large);
}

.new-request__container [type="submit"]:not(.no-hover):hover,
.new-request__container [type="submit"]:not(.no-hover):active,
.new-request__container [type="submit"]:not(.no-hover):focus {
  color: #fff;
  background-color: var(--secondary-color-hover);
  border-color: var(--secondary-color-hover);
}

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

.article-lock-box {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.article-lock-box__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px;
}

.article-lock-box__icon svg {
  display: block;
}

.article-lock-box__text h3 {
  margin: 0 0 12px;
}

.article-lock-box__text p {
  margin: 0;
}

.article-lock-box__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.article-lock-box__buttons .btn {
  text-decoration: none;
}

.suggestion-list h2 {
  color: var(--secondary-color);
}

.searchbox-suggestions::before {
  display: block;
  color: var(--secondary-color);
  margin: -24px 0 24px;
}
