/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: rgba(224, 48, 35, 1);
  --secondary-color: #000000;
  --primary-bg-color: #F2F1EE;
  --primary-bg-color-always: #F2F1EE;
  --secondary-bg-color: #FFFFFF;
  --secondary-bg-color-always: #FFFFFF;
  --primary-text-color: #000000;
  --secondary-text-color: #000000;
  --link-color: #888888;
  --border-color: rgba(224, 48, 35, 1);
  --form-color: #FFFFFF;
  --form-text-color: #000000;
  --placeholder-text-color: #888888;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: rgba(224, 48, 35, 1);
  --primary-color-hover: #ad2318;
  --primary-color-active: #a02017;
  --secondary-color-hover: #000;
  --secondary-color-active: #000;
  --secondary-bg-color-hover: #f5f5f5;
  --secondary-bg-color-active: #f0f0f0;
  --secondary-text-color-hover: #000;
  --secondary-text-color-active: #000;
  --link-color-hover: dimgray;
  --link-color-active: #626262;

  --sidebar-bg-color: rgba(224, 48, 35, 1);
  --sidebar-bg-color-hover: #e86259;
  --sidebar-text-color: #ffffff;

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

  /* Other */
  --border-radius-base: 25px;
  --border-radius-small: 25px;
  --border-radius-button: 100px;
  --border-radius-input: 5px;
  --logo-height: 50px;

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

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

code, kbd, samp {
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-input);
}

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

.item-breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs--bottom {
  margin-top: 20px;
}

.breadcrumbs li {
  margin-right: 8px;
  display: block;
  position: relative;
  color: var(--primary-text-color);
}

.breadcrumbs li a {
  color: var(--primary-text-color);
  opacity: .5;
}

.breadcrumbs:not(.item-breadcrumbs):not(.breadcrumbs--bottom) li:last-child a {
  opacity: 1;
}

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

.breadcrumbs li + li::before {
  content: "•";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  color: var(--link-color);
}

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

.breadcrumbs li a:hover {
  text-decoration: none;
}

.item-breadcrumbs li a {
  text-decoration: none;
}

.item-breadcrumbs li a:hover {
  text-decoration: underline 1px;
}

/* 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: 40px;
}

.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: inline-flex;
  margin: 0;
  padding: 0;
  gap: 10px;
}

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

.attachments {
  margin: 24px 0;
}

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

.attachment-list__item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  list-style: none;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  padding: 10px 20px;
}

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

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

.attachment-list__item a {
  font-weight: bold;
  color: var(--primary-text-color);
}

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

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

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

.article-vote {
  margin: 100px 0;
  padding: 40px;
  text-align: center;
  border-radius: 150px;
  background-color: var(--secondary-bg-color);
}

.article-vote__title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 24px;
}

.article-vote__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.article-vote__controls .btn {
  width: 88px;
}

.article-vote__count {
  display: block;
  margin-top: 20px;
  line-height: 22px;
  color: var(--secondary-text-color);
}

@media (max-width: 767px) {
  .article-vote {
    margin: 40px 0;
    border-radius: 50px;
  }
}

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

.article-lists {
  margin: 100px 0;
}

.recent-articles-title,
.related-articles-title {
  margin-bottom: 18px;
}

.article-lists a {
  font-weight: bold;
  color: var(--primary-text-color);
}

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

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

@media (max-width: 767px) {
  .article-lists {
    margin: 40px 0;
  }

  .article-lists a {
    text-decoration: underline;
  }

  .article-lists a:hover {
    text-decoration: none;
  }
}

/* Comments */
@media (min-width: 991px) {
  section.articles {
    margin-top: 60px;
    max-width: 580px;
  }
}

.comments__container {
  --primary-bg-color: var(--secondary-bg-color-always);
  --secondary-bg-color: var(--primary-bg-color-always);
  --ck-color-base-border: var(--border-color);
  --ck-color-toolbar-border: var(--border-color);

  background-color: var(--primary-bg-color);
  border-radius: var(--border-radius-base);
}

[dir] .comments__container .ck.ck-toolbar {
  border-width: 2px;
}

.comments__container .comments__callout {
  display: block;
  margin: 0;
  padding: 40px;
  color: var(--secondary-text-color);
}

.comments__container .comments__list {
  padding-top: 40px;
}

.comments__container .comment {
  padding-right: 40px;
  padding-left: 40px;
}

.comments__container .comment + .comment {
  border-color: var(--secondary-bg-color);
}

.comments__callout:empty {
  display: none;
}

.comment-form {
  display: block;
  padding: 40px;
  border-top: var(--border-width) solid var(--secondary-bg-color);
}

@media (max-width: 767px) {
  .comments__container .comments__list {
    padding-top: 20px;
  }

  .comments__container .comment {
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .comment-form,
  .comments__container .comments__callout {
    padding: 20px;
  }

  .comments__container .comment + .comment {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .comments__title .meta {
    display: block;
  }
}

.comments__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

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

.comment-form__body textarea,
.comment-form__body #hc-wysiwyg {
  background-color: var(--primary-bg-color);
  border-color: var(--border-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--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  margin-bottom: 40px;
}

.comment__sidebar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

[dir] .comment__sidebar button,
[dir] .comment__sidebar a {
  display: block;
}

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

.comment__heading {
  margin-bottom: 20px;
}

.comment__heading,
.comment__heading > div,
.comment__heading .meta {
  display: flex;
  align-items: center;
}

.comment__heading > div,
.comment__heading .meta {
  gap: 12px;
  font-size: 14px;
}

.comment__heading > div > *,
.comment__heading .meta > * {
  display: block;
  position: relative;
}

.comment__heading > div > *::before,
.comment__heading .meta > *::before {
  content: '•';
  color: var(--primary-text-color);
  display: block;
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translate(50%, -50%);
}

.comment__heading .meta > *::before {
  content: '|';
}

.comment__heading > div > *:last-child::before,
.comment__heading .meta > *:last-child::before {
  display: none;
}

@media (max-width: 767px) {
  .comment__heading > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .comment__heading .meta {
    flex-wrap: wrap;
    row-gap: 0;
  }

  .comment__heading > div > *::before {
    display: none;
  }
}

.comment__heading a {
  color: var(--primary-text-color);
  font-weight: bold;
  text-decoration: underline 1px;
}

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

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

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

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

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

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

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

.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: 40px;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .my-activities-menu {
    justify-content: space-evenly;
  }
}

.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: 1400px) {
  #search-filter {
    padding-left: 20px;
  }
}

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

@media (min-width: 768px) and (max-width: 991px) {
  #search-filter {
    padding-left: 20px;
  }
}

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

#search-filter a {
  color: var(--primary-text-color);
}

#search-filter a.is-active {
  color: var(--primary-text-color);
  font-weight: bold;
}

.filter li {
  padding: 8px 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;
}

.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 p,
.markdown ul,
.markdown ol,
.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6,
.markdown pre,
.markdown iframe,
.markdown img {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.markdown a:not(.btn) {
  font-weight: bold;
  text-decoration: underline 1px;
  color: var(--primary-text-color);
}

.markdown a:not(.btn):hover {
  text-decoration: none;
  color: var(--link-color);
}

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

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

.markdown ul li,
.markdown ol li {
  margin-top: .5em;
  margin-bottom: .5em;
}

.markdown ul li::marker,
.markdown ol li::marker {
  color: var(--placeholder-text-color);
}

/* Milan */
.powered-by-zendesk {
  display: none;
}

.layout {
  width: 100%;
  max-width: 1700px;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin: 0 auto;
}

.layout-sidebar {
  flex: 1 1 35.71%;
  max-width: 35.71%;
  padding: 0 10px 100px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .layout-sidebar::before {
    content: '';
    display: block;
    width: 50vw;
    height: 100%;
    background-color: var(--secondary-bg-color);
    position: absolute;
    top: 0;
    right: 50%;
    z-index: -1;
  }
}

.layout-content {
  flex: 57.14%;
  max-width: 57.14%;
  padding: 80px 10px 200px;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .layout-content {
    display: flex;
    flex-direction: column;
  }

  .layout-content main[role=main] {
    flex: 1 1 10px;
  }
}

@media (min-width: 992px) and (max-width: 1440px) {
  .layout-sidebar {
    flex: 1 1 38%;
    max-width: 38%;
  }

  .layout-content {
    flex: 60%;
    max-width: 60%;
  }
}

@media (max-width: 991px) {
  .layout {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }

  .layout-sidebar,
  .layout-content {
    flex: none;
    max-width: 100%;
  }

  .layout-sidebar {
    padding: 0;
    z-index: 9;
  }

  .layout-content {
    padding: 40px 20px 100px;
  }
}

.sidebar {
  width: 100%;
  height: 100%;
  background-color: var(--sidebar-bg-color);
  color: var(--sidebar-text-color);
  border-radius: 0 0 100px 100px;
  position: relative;
  z-index: 2;
}

.sidebar a {
  color: var(--sidebar-text-color);
}

.sidebar__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 460px;
  background: url(/hc/theming_assets/01K47YGBPPNZKHWNWX2ND7EVD5) no-repeat center;
  background-size: cover;
  z-index: 0;
}

.sidebar__bg--min {
  height: 405px;
}

.sidebar__bg-mask {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.35;
}

.sidebar__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  height: 100%;
  padding: 0 20px;
}

.sidebar__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar__welcome-title {
  display: none;
}

.sidebar__link-container {
  text-align: center;
  padding-top: 86px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

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

.logo--mobile {
  display: none;
}

@media (max-width: 991px) {
  .logo--mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
}

body:not(.big-sidebar) .sidebar__search-container {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media (min-width: 992px) {
  body:not(.big-sidebar) .sidebar__link-container ~ .sidebar__search-container {
    padding-top: 64px;
    padding-bottom: 100px;
  }
}

.sidebar__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sidebar-text-color);
  font-weight: bold;
}

.rounded-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__link svg {
  transform: rotate(180deg);
}

.sidebar__search-container {
  width: 100%;
  max-width: 340px;
}

.sidebar__search-container .search {
  display: block;
  position: relative;
}

.sidebar__search-container input[type=search] {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-button);
  background-color: transparent;
  height: 60px;
  padding: 0 60px 0 28px;
}

.sidebar__search-container input[type=search],
.sidebar__search-container input[type=search]:hover,
.sidebar__search-container input[type=search]:focus,
.sidebar__search-container input[type=search]:active {
  border-color: var(--sidebar-text-color);
  color: var(--sidebar-text-color);
  outline: none;
}

.sidebar__search-container [type=submit] {
  display: block;
  position: absolute;
  top: var(--border-width);
  right: var(--border-width);
  border: none;
  width: calc(60px - var(--border-width) * 2);
  height: calc(60px - var(--border-width) * 2);
  border-radius: var(--border-radius-button);
  background-color: transparent;
  color: var(--sidebar-text-color);
}

.sidebar__search-container [type=submit] svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sidebar__search-container [type=submit] svg,
.sidebar__search-container [type=submit] svg * {
  color: var(--sidebar-text-color);
}

.sidebar__search-container input[type=search]::-webkit-input-placeholder {
  color: var(--sidebar-text-color);
}

.sidebar__search-container input[type=search]::-moz-placeholder {
  color: var(--sidebar-text-color);
}

.sidebar__search-container input[type=search]:-ms-input-placeholder {
  color: var(--sidebar-text-color);
}

.sidebar__search-container input[type=search]:-moz-placeholder {
  color: var(--sidebar-text-color);
}

.sidebar__sidenav {
  width: 100%;
  max-width: 350px;
  padding: 100px 0;
}

.sidebar__sidenav-heading {
  text-align: center;
  margin: 0 0 40px;
}

.sidebar__contacts,
.sidebar__footer {
  text-align: center;
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .sidebar__footer {
    display: none;
  }
}

.sidebar__contacts h4 {
  margin: 0 0 10px;
}

.sidebar__contacts p {
  font-size: 14px;
  line-height: 17px;
  margin: 0 auto 24px;
  max-width: 170px;
}

.sidebar__contacts .btn {
  width: 220px;
}

.sidebar__footer h4 {
  margin: 0 0 18px;
}

.sidebar__footer-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar__footer-buttons > div > span,
.sidebar__footer-link {
  font-size: var(--text-font-size-small);
}

.sidebar__footer-link {
  font-weight: bold;
  text-decoration: underline 1px;
}

.sidebar__footer-link:hover {
  text-decoration: none;
}

.sidebar .dropdown__content {
  background-color: var(--sidebar-bg-color-hover);
  color: var(--sidebar-text-color);
  box-shadow: none;
  top: -150px;
}

.sidebar .dropdown__content a {
  color: var(--sidebar-text-color);
}

.sidebar .dropdown__content a:hover,
.sidebar .dropdown__content a:focus,
.sidebar .dropdown__content a:active {
  color: var(--sidebar-text-color);
  opacity: .5;
}

.sidebar .dropdown__chevron--ts,
.sidebar .dropdown__chevron--tm,
.sidebar .dropdown__chevron--te {
  border-top-color: var(--sidebar-bg-color-hover);
}

.sidebar .dropdown__chevron--bs,
.sidebar .dropdown__chevron--bm,
.sidebar .dropdown__chevron--be {
  border-bottom-color: var(--sidebar-bg-color-hover);
}

@media (max-width: 991px) {
  .sidebar__bg {
    width: 100%;
    height: 100%;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
  }

  .sidebar__link-container {
    padding-top: 0;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .sidebar__link-container .logo,
  .sidebar__link-container .sidebar__footer-buttons {
    display: none;
  }

  .sidebar__link span:not([class]) {
    display: none;
  }

  .sidebar .rounded-icon {
    width: 60px;
    height: 60px;
  }

  body:not(.big-sidebar) .sidebar__search-container {
    max-width: 100%;
    padding: 170px 0 20px;
  }

  body:not(.big-sidebar) .sidebar__menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--sidebar-bg-color);
    border-radius: 0 0 50px 50px;
    z-index: 999;
    width: 100%;
    max-height: 96%;
    overflow-y: auto;
    padding: 0 20px;
    transform: translateY(-100%);
    visibility: hidden;
    transition: all .5s var(--timing-function);
  }

  body:not(.big-sidebar) .sidebar__menu.is-active {
    transform: translateY(0);
    visibility: visible;
  }

  .sidebar__menu-close {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9;
  }

  .sidebar__menu-open {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

/* Big sidebar */
.big-sidebar .layout-sidebar {
  flex: 1 1 42.85%;
  max-width: 42.85%;
  padding: 0 10px;
}

.big-sidebar .layout-content {
  flex: 1 1 42.85%;
  max-width: 42.85%;
  padding: 70px 10px 40px;
}

.big-sidebar .sidebar {
  border-radius: 0;
  background: transparent;
}

.big-sidebar .sidebar__bg {
  width: 50vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
  padding: 0;
}

.big-sidebar .sidebar__content {
  position: fixed;
  top: 0;
  width: calc(42.85% - 30px);
  max-width: 700px;
  height: 100vh;
}

.big-sidebar .sidebar__welcome-title {
  display: block;
  margin: 0 0 40px;
}

.big-sidebar .sidebar__sidenav,
.big-sidebar .sidebar__contacts,
.big-sidebar .sidebar__menu-open,
.big-sidebar .sidebar__menu-close {
  display: none;
}

.big-sidebar .sidebar__search-container {
  max-width: 100%;
  text-align: center;
}

.big-sidebar .sidebar__search-container .search {
  max-width: 460px;
  margin: 0 auto;
}

.big-sidebar .sidebar__search-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.big-sidebar .sidebar__link-container {
  padding: 0;
  position: absolute;
  top: 15%;
}

.big-sidebar .sidebar__footer {
  padding: 0;
  position: absolute;
  bottom: 40px;
}

.scroll-down {
  display: none;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .big-sidebar .sidebar__content {
    width: calc(50% - 40px);
  }

  .big-sidebar .layout-content {
    flex: 1 1 48%;
    max-width: 48%;
  }
}

@media (max-width: 991px) {
  .big-sidebar .layout-sidebar {
    flex: none;
    max-width: 100%;
    height: 98vh;
    padding: 0;
  }

  .big-sidebar .sidebar__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0 0 50px 50px;
  }

  .big-sidebar .sidebar__content {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .big-sidebar .sidebar__search-container {
    max-width: calc(100% - 40px);
    padding: 0;
  }

  .big-sidebar .sidebar__welcome-title {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .big-sidebar .sidebar__link span:not([class]) {
    display: block;
  }

  .big-sidebar .sidebar__link-container {
    top: 13%;
    left: 0;
    width: 100%;
  }

  .big-sidebar .scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
  }

  .big-sidebar .sidebar__footer {
    display: none;
  }

  .big-sidebar .scroll-down span:not([class]) {
    font-size: var(--heading-3-font-size);
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
  }

  .big-sidebar .scroll-down svg {
    transform: rotate(90deg);
  }

  .big-sidebar .layout-content {
    flex: none;
    max-width: 100%;
    padding: 40px 20px 100px;
  }
}

@media (max-height: 600px) {
  .big-sidebar .scroll-down span:not([class]) {
    display: none;
  }
}

/* Content */
.content-container {
  width: 100%;
  max-width: 820px;
}

.page-heading {
  margin: 0 0 40px;
}

.page-heading a {
  color: var(--primary-text-color);
  text-decoration: none;
}

.big-sidebar .page-heading {
  font-size: var(--heading-1-font-size);
  text-align: center;
  margin: 0 0 34px;
}

@media (max-width: 991px) {
  .page-heading {
    text-align: center;
  }

  .big-sidebar .page-heading {
    font-size: var(--heading-2-font-size);
    margin-bottom: 30px;
  }
}

.home-tabs__links {
  display: flex;
  gap: 20px;
}

.home-tabs__links a {
  display: block;
  flex: 1 0 25%;
  text-align: center;
  padding: 10px;
  position: relative;
  color: var(--primary-color);
  opacity: .25;
}

.home-tabs__links a::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background-color: currentColor;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  transition: height .2s ease-in-out;
}

.home-tabs__links a:hover {
  opacity: .5;
  font-weight: bold;
}

.home-tabs__links a.is-active {
  opacity: 1;
  font-weight: bold;
}

.home-tabs__links a:hover::after,
.home-tabs__links a.is-active::after {
  height: 6px;
}

@media (min-width: 992px) {
  .home-tabs__links {
    justify-content: center;
  }

  .home-tabs__links a {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .home-tabs__links {
    flex-direction: column;
    gap: 30px;
  }
}

.home-tabs__container {
  padding: 80px 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
}

.home-tabs__container.is-active {
  display: flex;
}

/* Category blocks */
.category-blocks .row {
  row-gap: 20px;
}

.category-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 20px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius-base);
  height: 150px;
}

.category-block:hover,
.category-block:focus,
.category-block:active {
  color: #fff;
}

.category-block:hover {
  transform: translateY(-5px);
}

.category-block__title {
  display: block;
  width: 100%;
  height: 70px;
  font-size: var(--heading-3-font-size);
  line-height: 1.2;
  font-weight: bold;
}

.category-block__description {
  flex: 1 1 10%;
  margin-right: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: .75;
}

/* Article block */
.article-block {
  display: block;
  position: relative;
  padding: 20px 0;
}

.article-block .rounded-icon {
  position: absolute;
  bottom: 20px;
  right: 0;
  transition: all .3s var(--timing-function);
}

.article-block + .article-block {
  border-top: var(--border-width) solid var(--border-color);
}

.article-block__title {
  display: block;
  font-size: var(--heading-4-font-size);
  font-weight: bold;
  color: var(--primary-text-color);
  margin-bottom: 12px;
  transition: all .3s var(--timing-function);
}

.article-block__description {
  display: block;
  color: var(--primary-text-color);
  opacity: .5;
  padding-right: 60px;
}

.article-block:hover .rounded-icon {
  transform: translateX(-5px);
  color: var(--primary-color);
}

.article-block:hover .article-block__title {
  color: var(--primary-color);
}

/* Recent activity */
.recent-activity-header {
  display: none;
}

.recent-activity-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-right: -10px;
  margin-left: -10px;
}

.recent-activity-item {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 20px 30px;
  position: relative;
  z-index: 2;
}

.recent-activity-item::before {
  content: '';
  display: block;
  width: calc(100% - 20px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 10px;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-base);
  z-index: -1;
}

.recent-activity-item h3 {
  display: block;
  margin: 0 0 8px;
}

.recent-activity-item a {
  display: block;
  color: var(--primary-text-color);
  text-decoration: none;
}

.recent-activity-item a:hover {
  color: var(--primary-text-color);
  text-decoration: underline 1px;
}

.recent-activity-item h3 a:hover {
  text-decoration: underline 2px;
}

.recent-activity-item-meta {
  margin-top: 12px;
  font-size: var(--text-font-size-small);
  opacity: .5;
}

.recent-activity-item-comment {
  display: none;
}

.recent-activity-controls {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .recent-activity-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .recent-activity-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Helpers */
.helpers .row {
  row-gap: 20px;
}

.helper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.helper__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.helper__description {
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 25px;
  flex: 1 1 10px;
}

@media (max-width: 767px) {
  .helper .btn {
    display: flex;
    max-width: 220px;
    margin: 0 auto;
  }
}

/* Footer */
.footer {
  padding-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer__soc {
    max-width: 50%;
  }
}

.footer__soc-title {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer__soc ul .btn {
  width: 26px;
  height: 26px;
  font-size: 12px;
  line-height: 1;
  padding: 0;
}

.footer__soc ul .btn:hover {
  transform: translateY(-3px);
}

.footer__soc ul {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

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

.footer__phone {
  display: block;
  color: var(--primary-text-color);
  font-size: var(--text-font-size-small);
  font-weight: bold;
  margin-bottom: 8px;
}

.footer__address {
  color: var(--primary-text-color);
  font-size: var(--text-font-size-small);
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .footer__bottom .sidebar__footer-link {
    color: var(--primary-text-color);
    opacity: 1;
  }
}

/* Page breadcrumbs */
.page-breadcrumbs {
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .page-breadcrumbs .breadcrumbs {
    justify-content: center;
  }
}

/* Page heading */
.page-header {
  margin-bottom: 40px;
}

.page-header__title {
  margin: 0;
}

.page-header__description {
  margin-top: 10px;
  color: var(--secondary-text-color);
}

.page-header__subscribe,
.page-header__links {
  margin-top: 20px;
}


/* Category tree */
.category-tree .row {
  row-gap: 40px;
}

.category-tree__section {
  max-width: 340px;
}

.category-tree__section-name {
  display: block;
  color: var(--primary-text-color);
  padding-bottom: 20px;
  border-bottom: var(--border-width) solid var(--primary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-tree__article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--primary-text-color);
}

.category-tree__article span {
  flex: 1 1 10px;
}

.category-tree__article svg {
  transition: all .3s var(--timing-function);
}

.category-tree__article:hover svg {
  transform: translateX(-5px);
}

.category-tree__more {
  margin-top: 20px;
}

.category-tree__subsections {
  gap: 5px;
}

.category-tree__subsection {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-input);
  padding: 10px 20px;
  font-size: var(--text-font-size-small);
}

.category-tree__subsection:hover {
  color: rgba(255, 255, 255, .75);
}

@media (max-width: 991px) {
  .category-tree__section-name {
    font-size: var(--heading-3-font-size);
  }

  .category-tree__section {
    max-width: 100%;
  }
}

/* Article */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.article-meta .comment__heading {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .page {
    max-width: 820px;
  }
}

.page-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

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

.article-share {
  text-align: center;
  margin: 40px 0;
}

.article-share h4 {
  margin: 0 0 5px;
  font-size: 14px;
}

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

  }
}

.request-form footer {
  text-align: right;
}

.request-form [type=submit] {
  min-width: 220px;
}

@media (max-width: 767px) {
  .request-form [type=submit] {
    width: 100%;
    height: 60px;
    margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .sidebar__sticky.is-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow: hidden;
  }
}

@media (max-width: 991px) {
  .sidebar__sticky {
    height: auto !important;
  }
}

/* Other color variants */
/* Sky style */
.theme-style-sky .layout-sidebar::before {
  display: none;
}

.theme-style-sky h1,
.theme-style-sky .h1,
.theme-style-sky h2,
.theme-style-sky .h2,
.theme-style-sky h3,
.theme-style-sky .h3,
.theme-style-sky h4,
.theme-style-sky .h4,
.theme-style-sky h5,
.theme-style-sky .h5,
.theme-style-sky h6,
.theme-style-sky .h6 {
  color: var(--secondary-text-color);
}

.theme-style-sky .sidebar .sidebar__menu *,
.theme-style-sky .sidebar__welcome-title {
  color: var(--sidebar-text-color);
}

.theme-style-sky .markdown a:not(.btn) {
  color: var(--link-color);
}

/* Sabbath style */
.theme-style-sabbath .layout-sidebar::before {
  display: none;
}

.theme-style-sabbath .sidebar__link-container a {
  color: var(--white-color);
}

.theme-style-sabbath .sidebar__welcome-title,
.theme-style-sabbath .sidebar__search-container [type=submit] svg,
.theme-style-sabbath .sidebar__search-container [type=submit] svg *,
.theme-style-sabbath .home-tabs__links a,
.theme-style-sabbath .breadcrumbs li a,
.theme-style-sabbath .category-tree__article,
.theme-style-sabbath .comment .articles__link,
.theme-style-sabbath .comment__heading a,
.theme-style-sabbath .recent-activity-item a,
.theme-style-sabbath .article-lists a,
.theme-style-sabbath h1,
.theme-style-sabbath .h1,
.theme-style-sabbath h2,
.theme-style-sabbath .h2,
.theme-style-sabbath h3,
.theme-style-sabbath .h3,
.theme-style-sabbath h4,
.theme-style-sabbath .h4,
.theme-style-sabbath h5,
.theme-style-sabbath .h5,
.theme-style-sabbath h6,
.theme-style-sabbath .h6 {
  color: var(--secondary-text-color);
}

.theme-style-sabbath .sidebar__search-container input[type=search],
.theme-style-sabbath .sidebar__search-container input[type=search]:hover,
.theme-style-sabbath .sidebar__search-container input[type=search]:focus,
.theme-style-sabbath .sidebar__search-container input[type=search]:active {
  border-color: var(--secondary-text-color);
  color: var(--secondary-text-color);
}

.theme-style-sabbath .sidebar__search-container input[type=search]::-webkit-input-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-sabbath .sidebar__search-container input[type=search]::-moz-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-sabbath .sidebar__search-container input[type=search]:-ms-input-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-sabbath .sidebar__search-container input[type=search]:-moz-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-sabbath .category-block {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}

.theme-style-sabbath .category-block:hover,
.theme-style-sabbath .category-block:focus,
.theme-style-sabbath .category-block:active {
  color: var(--primary-color-hover);
}

.theme-style-sabbath .page-header__title,
.theme-style-sabbath .category-tree__article svg,
.theme-style-sabbath .recent-articles-title,
.theme-style-sabbath .related-articles-title {
  color: var(--primary-color);
}

.theme-style-sabbath .category-tree__section-name {
  border-color: var(--border-color);
}

.theme-style-sabbath .btn--color-secondary,
.theme-style-sabbath .subscribe-btn button,
.theme-style-sabbath .request-form [type=submit] {
  color: var(--secondary-color);
  background-color: transparent;
  border-color: var(--secondary-color);
}

.theme-style-sabbath .btn--color-secondary:not(.no-hover):hover,
.theme-style-sabbath .subscribe-btn button:not(.no-hover):hover,
.theme-style-sabbath .request-form [type=submit]:not(.no-hover):hover {
  color: var(--primary-bg-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.theme-style-sabbath .sidenav__item__article.is-active {
  font-weight: bold;
}

.theme-style-sabbath .sidenav__item__article.is-active::before {
  display: none;
}

.theme-style-sabbath .article-vote {
  background-color: var(--sidebar-bg-color);
  color: var(--sidebar-text-color);
}

.theme-style-sabbath .category-block__description,
.theme-style-sabbath .article-vote__count {
  color: var(--sidebar-text-color);
}

.theme-style-sabbath .article-vote__controls .btn {
  color: var(--sidebar-text-color);
  border-color: var(--sidebar-text-color);
}

.theme-style-sabbath .article-vote__controls .btn:not(.no-hover):hover,
.theme-style-sabbath .article-vote__controls .btn:not(.no-hover):active,
.theme-style-sabbath .article-vote__controls .btn:not(.no-hover).is-active {
  color: var(--sidebar-bg-color);
  background-color: var(--sidebar-text-color);
  border-color: var(--sidebar-text-color);
}

.theme-style-sabbath .btn--secondary {
  color: var(--primary-bg-color) !important;
}

.theme-style-sabbath .sidebar .sidebar__menu * {
  color: var(--sidebar-text-color);
}

.theme-style-sabbath .hc-multiselect-toggle li span {
  color: var(--white-color);
}

.theme-style-sabbath .markdown a:not(.btn) {
  color: var(--link-color);
}

.theme-style-sabbath .article-vote__title {
  color: var(--sidebar-text-color);
}

/* Purple Rain style */
.theme-style-rain .layout-sidebar::before {
  display: none;
}

.theme-style-rain .recent-articles-title,
.theme-style-rain .related-articles-title {
  color: var(--white-color);
}

.theme-style-rain .home-tabs__links a {
  color: var(--primary-text-color);
  opacity: 0.5;
}

.theme-style-rain .meta {
  color: var(--primary-text-color);
}

.theme-style-rain .sidebar__link-container a,
.theme-style-rain .sidebar__welcome-title,
.theme-style-rain .sidebar__search-container [type=submit] svg,
.theme-style-rain .sidebar__search-container [type=submit] svg *,
.theme-style-rain .home-tabs__links a.is-active,
.theme-style-rain .category-tree__article,
.theme-style-rain .recent-activity-item a,
.theme-style-rain .article-lists a,
.theme-style-rain h1,
.theme-style-rain .h1,
.theme-style-rain h2,
.theme-style-rain .h2,
.theme-style-rain h3,
.theme-style-rain .h3,
.theme-style-rain h4,
.theme-style-rain .h4,
.theme-style-rain h5,
.theme-style-rain .h5,
.theme-style-rain h6,
.theme-style-rain .h6 {
  color: var(--secondary-text-color);
}

.theme-style-rain .sidebar__search-container input[type=search],
.theme-style-rain .sidebar__search-container input[type=search]:hover,
.theme-style-rain .sidebar__search-container input[type=search]:focus,
.theme-style-rain .sidebar__search-container input[type=search]:active {
  border-color: var(--secondary-text-color);
  color: var(--secondary-text-color);
}

.theme-style-rain .sidebar__search-container input[type=search]::-webkit-input-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-rain .sidebar__search-container input[type=search]::-moz-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-rain .sidebar__search-container input[type=search]:-ms-input-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-rain .sidebar__search-container input[type=search]:-moz-placeholder {
  color: var(--secondary-text-color);
}

.theme-style-rain .category-block {
  color: var(--primary-bg-color);
  background-color: var(--secondary-color);
}

.theme-style-rain .category-block:hover,
.theme-style-rain .category-block:focus,
.theme-style-rain .category-block:active {
  color: var(--primary-bg-color);
}

.theme-style-rain .page-header__title,
.theme-style-rain .category-tree__article svg {
  color: var(--primary-color);
}

.theme-style-rain .category-tree__section-name {
  border-color: var(--border-color);
  color: var(--primary-text-color);
}

.theme-style-rain .btn--color-secondary,
.theme-style-rain .subscribe-btn button,
.theme-style-rain .request-form [type=submit] {
  color: var(--secondary-color);
  background-color: transparent;
  border-color: var(--secondary-color);
}

.theme-style-rain .btn--color-secondary:not(.no-hover):hover,
.theme-style-rain .subscribe-btn button:not(.no-hover):hover,
.theme-style-rain .request-form [type=submit]:not(.no-hover):hover {
  color: var(--primary-bg-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.theme-style-rain .sidenav__item__article.is-active {
  font-weight: bold;
}

.theme-style-rain .sidenav__item__article.is-active::before {
  display: none;
}

.theme-style-rain .article-vote {
  background-color: var(--sidebar-bg-color);
  color: var(--sidebar-text-color);
}

.theme-style-rain .category-block__description,
.theme-style-rain .article-vote__count {
  color: var(--sidebar-text-color);
}

.theme-style-rain .article-vote__controls .btn {
  color: var(--sidebar-text-color);
  border-color: var(--sidebar-text-color);
}

.theme-style-rain .article-vote__controls .btn:not(.no-hover):hover,
.theme-style-rain .article-vote__controls .btn:not(.no-hover):active,
.theme-style-rain .article-vote__controls .btn:not(.no-hover).is-active {
  color: var(--sidebar-bg-color);
  background-color: var(--sidebar-text-color);
  border-color: var(--sidebar-text-color);
}

.theme-style-rain .btn--primary,
.theme-style-rain [type="submit"],
.theme-style-rain .subscribe-btn [role="button"],
.theme-style-rain .share a,
.theme-style-rain .comment__actions [type="button"],
.theme-style-rain .btn--secondary,
.theme-style-rain .btn--primary:not(.no-hover):hover,
.theme-style-rain [type="submit"]:not(.no-hover):hover,
.theme-style-rain .subscribe-btn [role="button"]:not(.no-hover):hover,
.theme-style-rain .share a:not(.no-hover):hover,
.theme-style-rain .comment__actions [type="button"]:not(.no-hover):hover,
.theme-style-rain .btn--secondary:not(.no-hover):hover {
  color: var(--primary-bg-color);
}

.theme-style-rain .sidebar .sidebar__menu *,
.theme-style-rain .article-vote__title {
  color: var(--sidebar-text-color);
}

.theme-style-rain .hc-multiselect-toggle li span {
  color: var(--white-color);
}

.theme-style-rain .markdown a:not(.btn) {
  color: var(--link-color);
}

.theme-style-rain .footer__soc ul .btn,
.theme-style-rain .footer__soc ul .btn:hover,
.theme-style-rain .footer__soc ul .btn:active,
.theme-style-rain .footer__soc ul .btn:focus {
  color: var(--primary-bg-color);
  background-color: var(--primary-text-color);
  border-color: var(--primary-text-color);
}

.theme-style-rain .share a,
.theme-style-rain .share a:hover,
.theme-style-rain .share a:focus,
.theme-style-rain #upload-dropzone span,
.theme-style-rain #upload-dropzone span a {
  color: var(--primary-bg-color);
}

.theme-style-rain #upload-dropzone {
  background-color: var(--primary-text-color);
}

.theme-style-rain .btn--color-primary:not(.no-hover):hover,
.theme-style-rain .subscribe-btn button:not(.no-hover):hover,
.theme-style-rain .recent-activity-controls a:hover,
.theme-style-rain .request-form [type=submit]:not(.no-hover):hover {
  color: var(--primary-bg-color);
}
