/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #772583;
  --secondary-color: #49004e;
  --primary-bg-color: #ffffff;
  --primary-bg-color-always: #ffffff;
  --secondary-bg-color: #f1f1f1;
  --secondary-bg-color-always: #f1f1f1;
  --primary-text-color: #000000;
  --secondary-text-color: #2a3538;
  --link-color: #49004e;
  --border-color: #deece7;
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #4c1853;
  --primary-color-active: #411447;
  --secondary-color-hover: #100011;
  --secondary-color-active: #010002;
  --secondary-bg-color-hover: #e7e7e7;
  --secondary-bg-color-active: #e2e2e2;
  --secondary-text-color-hover: #212a2c;
  --secondary-text-color-active: #1d2427;
  --link-color-hover: #100011;
  --link-color-active: #010002;

  /* Text */
  --text-font-family: 'Montserrat', sans-serif;
  --heading-font-family: 'PP Right Grotesk Compact', 'Impact', 'Montserrat', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 46px;
  --heading-2-font-size: 46px;
  --heading-3-font-size: 32px;
  --heading-4-font-size: 24px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

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

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 0px 12px 5px rgb(0 0 0 / 15%);
  --duration: 400ms;
  --timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --assets-check-svg: url(/hc/theming_assets/01K040WNZEHYR1XBXZH1VE7NW7);
}

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

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

[dir] body,
[dir] html {
  margin: 0;
  padding: 0;
}

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

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

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

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

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

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

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

[dir] a.is-disabled {
  cursor: default;
}

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

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

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

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

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

[dir] figure {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2 {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: var(--heading-font-family);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 900;
  text-transform: uppercase;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--text-font-family);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.625rem;
}

h4,
.h4 {
  font-size: 1.438rem;
}

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

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

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

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

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

  h4,
  .h4 {
    font-size: var(--heading-4-font-size);
  }
}

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

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

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

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

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

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

.breadcrumbs li + li::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

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

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page .category-list__item {
  background-color: var(--secondary-bg-color);
}

.inner-page .category-list__item:hover,
.inner-page .category-list__item:active {
  box-shadow: none;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  flex-shrink: 0;
}

[dir="ltr"] .entry-info__avatar {
  padding-right: 12px;
}

[dir="rtl"] .entry-info__avatar {
  padding-left: 12px;
}

.avatar {
  position: relative;
  display: inline-block;
}

[dir] .user-avatar {
  border-radius: 100%;
}

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

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

.inner-page__rightbar + .inner-page__rightbar,
div + .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;
}

.article-share {
  display: flex;
  align-items: center;
  margin: 24px 0 0;
}

.share {
  display: flex;
  padding: 0;
  margin-left: 24px;
  font-size: var(--text-font-size-small);
}

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

.share svg {
  width: var(--text-font-size);
  height: var(--text-font-size);
}

.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 {
  margin: 40px 0;
}

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

.comments__title {
  margin: 0;
}

.comments__container {
  background-color: var(--primary-bg-color);
  padding: 40px;
}

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

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  display: flex;
  margin-bottom: 24px;
}

.comment__left {
  flex: 1 1 10px;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
}

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

.comment__heading {
  display: flex;
  align-items: center;
}

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

.comment__body {
  margin-top: 12px;
}

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

/*! CSS Used from: https://www.yotel.com/sites/default/files/css/css_2Id1oTbtyO_e5yR42HPSiV3YnbINcg_69fTem16lxIk.css ; media=all */
@media all {
  .yotel-nav__yotels-nav,
  .yotel-nav__yotels-nav ul {
    margin: 0;
  }
  img {
    vertical-align: middle;
  }
  [role="button"] {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  [class^="icon-"] {
    font-weight: normal;
    font-family: "icomoon" !important;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .icon-arrow:before {
    content: "\e905";
  }
  .yotel-accordion__trigger {
    position: relative;
    display: block;
  }
  .yotel-accordion__trigger:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    content: "";
    font-family: "Icomoon";
    right: 20px;
  }

  .yotel-accordion a,
  .yotel-accordion a:hover {
    color: var(--primary-text-color);
    text-decoration: none;
  }

  .yotel-accordion__link:hover i {
    transform: translateX(10px) rotate(0);
  }
  .yotel-accordion__link i {
    display: inline-block;
    font-weight: normal;
    transform: translateX(0px) rotate(0);
    transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    margin-left: 10px;
  }
  .yotel-accordion__content {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .yotel-accordion__content li:first-child {
    display: list-item;
  }
  .yotel-accordion__content li:first-child a {
    position: static;
    padding-right: 0;
    font-weight: normal;
  }
  @media (min-width: 768px) {
    .yotel-accordion--mobile-only .yotel-accordion__trigger {
      display: inline-block;
    }
    .yotel-accordion--mobile-only .yotel-accordion__trigger:after {
      content: none;
    }
    .yotel-accordion__trigger i {
      position: relative;
      top: 1px;
    }
    .yotel-accordion--mobile-only .yotel-accordion__content {
      max-height: none;
      display: block !important;
    }
  }
  .yotel-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .yotel-nav__yotels-nav-item {
    border-bottom: 1px solid #d9d9d6;
  }
  .yotel-nav__yotels-nav-item h2 {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 1.42rem 1rem;
    font-weight: bold;
    font-size: 1.438rem;
    font-family: "Montserrat", "Work Sans", arial, sans-serif;
  }
  .yotel-nav__yotels-nav-item h2 .icon-arrow {
    display: none;
  }
  .yotel-nav__yotels-nav-item h2 img {
    width: 44px;
    height: 44px;
    margin-right: 1.25rem;
  }
  .yotel-nav__yotels-nav-item li {
    padding: 12px 20px 12px 40px;
  }
  .yotel-nav__yotels-nav-item li a:hover,
  .yotel-nav__yotels-nav-item li a:focus {
    color: #772583;
    text-decoration: underline;
    transition: color 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .yotel-nav__yotels-nav-item li:first-child a {
    position: relative;
    font-weight: bold;
    padding-right: 20px;
  }
  .yotel-nav__yotels-nav-item li:first-child a:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    content: "";
    font-family: "icomoon";
    right: 0;
  }

  @media (max-width: 767px) {
    .yotel-nav__yotels-nav-item li:first-child a:after {
      display: none;
    }
  }
  .yotel-nav__yotels-nav-item .yotel-accordion__content li:first-child {
    display: list-item;
  }
  .yotel-nav__yotels-nav-item .yotel-accordion__content li:first-child a {
    position: static;
    padding-right: 0;
    font-weight: normal;
  }
  @media (min-width: 768px) {
    .yotel-nav__yotels .yotel-nav__yotels-nav {
      display: flex;
      padding: 20px;
    }
    .yotel-nav__yotels-nav-item {
      width: 33.33%;
      padding: 10px 20px 0;
      border-bottom: none;
      border-right: #d9d9d6 1px solid;
    }
    .yotel-nav__yotels-nav-item h2 {
      padding: 0 0 10px;
      font-size: 1.75rem;
    }
    .yotel-nav__yotels-nav-item h2 .icon-arrow {
      display: inline-block;
    }
    .yotel-nav__yotels-nav-item:first-of-type ul {
      -moz-column-count: 2;
      column-count: 2;
    }
    .yotel-nav__yotels-nav-item:last-of-type {
      border-right: none;
    }
    .yotel-nav__yotels-nav-item li {
      padding: 0 0 10px;
    }
    .yotel-nav__yotels-nav-item li:first-child {
      display: none;
    }
    .yotel-nav__yotels-nav-item .yotel-accordion__content li:first-child {
      display: list-item;
    }
    .yotel-nav__yotels-nav-item .yotel-accordion__content li:first-child a {
      position: static;
      padding-right: 0;
      font-weight: normal;
    }
    .yotel-nav__yotels-nav-item
    .yotel-accordion__content
    li:first-child
    a:after {
      display: none;
    }
  }
}

/**/
.my-activities-menu {
  display: flex;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.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 h4::after,
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}

.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

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

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ":";
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

/* Header */
.header {
  display: block;
  position: fixed;
  left: 0;
  width: 100%;
  background-color: var(--primary-bg-color);
  z-index: 99;
}

.header ul {
  list-style: none;
  padding-left: 0;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0.5rem;
}

@media (min-width: 768px) {
  .header-container {
    padding: 1.7rem 0.5rem;
  }
}

.logo {
  display: inline-block;
  height: var(--logo-height);
  position: relative;
}

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

.logo span {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
  color: var(--primary-text-color);
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .logo,
  .logo img {
    height: 23px;
  }
  #hotel_logo_name {
    display: none;
  }
}

.header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: calc(100% - 150px);
}

.header__nav-mobile {
  display: none;
}

.header__nav-item {
  display: flex;
  margin: 0 10px;
  padding: 0 10px;
}

.header__nav-item > a {
  color: var(--primary-text-color);
  font-weight: bold;
}

.header__nav-item > a:hover {
  color: var(--link-color);
}

.header__nav-item > a:hover span {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .header__nav-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: -10px;
  }

  .header__nav-mobile .header__nav-item {
    margin: 0;
  }

  [dir] .header__nav {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 72px;
    left: 0;
    background-color: var(--primary-bg-color);
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 999;
    height: calc(100vh - 72px);
    overflow-y: auto;
    transition: all var(--duration) var(--timing-function);
    transform: translateX(100%);
    visibility: hidden;
  }

  [dir] .header__nav.is-active {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav-yotels {
    order: 1;
  }

  .header__nav-menu {
    order: 2;
  }

  .header__nav-locales {
    order: 3;
  }

  .header__nav-yotels,
  .header__nav-menu {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  [dir] .header__nav-user,
  .header__nav-yotels > a,
  .header__nav-menu > a {
    display: none;
  }

  .header__nav-yotels [role="menu"],
  .header__nav-menu [role="menu"] {
    position: relative;
    top: unset !important;
    left: unset !important;
    transform: unset !important;
    opacity: 1;
    visibility: visible;
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .header__nav-locales [role="menu"] {
    width: calc(100vw - 40px);
  }
}

.icomoon,
.icomoon-dropdown {
  display: flex;
  align-items: center;
}

.icomoon::before,
.icomoon-dropdown::after {
  font-weight: normal;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icomoon-dropdown::after {
  position: relative;
  top: 2px;
  display: inline-block;
  font-weight: normal;
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  content: "";
  padding-left: 3px;
}

.icomoon-dropdown.is-active::after {
  transform: rotate(180deg);
}

.header__locale-name::before {
  content: "\e922";
  font-size: 2rem;
  line-height: 0;
}

.header__burger::before {
  z-index: 20;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1;
  content: "";
}

.header__burger.is-active::before {
  content: "";
}

.header__user::before {
  font-size: 2rem;
  line-height: 1;
  content: "";
}

.yotels-menu {
  position: fixed;
  top: auto !important;
  left: 50% !important;
  margin-top: 50px;
  width: 100%;
  background-color: var(--primary-bg-color-always);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--timing-function),
  transform var(--duration) var(--timing-function);
  transform: translateX(-50%);
  padding: 0 !important;
  overflow: hidden;
}

.yotels-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.yotel-nav__promo-holder {
  display: none;
}

.yotel__promo-banner {
  padding: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: var(--primary-color);
}

.yotel__promo-banner a {
  position: relative;
  display: block;
  font-weight: 700;
  padding-right: 20px;
}

.yotel__promo-banner a:after {
  position: absolute;
  top: 0;
  display: block;
  transform: rotate(270deg) translateY(0);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  content: "";
  font-family: "icomoon";
  right: 0;
}

.yotel__promo-banner a:hover {
  color: #fff;
}

.yotel__promo-banner a:hover:after,
.yotel__promo-banner a:focus:after {
  transform: rotate(270deg) translateY(10px);
}

@media (min-width: 768px) {
  .yotel-nav__promo-holder {
    display: block;
  }

  .yotel-nav__promo-holder--mobile {
    display: none;
  }

  .yotel__promo-banner a {
    display: inline-block;
    margin-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .yotel-nav__promo-holder--mobile {
    display: block;
    width: 100%;
    order: 10;
    margin-top: 25px;
  }
}

.welcome__title {
  text-transform: uppercase;
}

.welcome__search {
  position: relative;
  background: var(--primary-bg-color);
  border-radius: 0;
  box-shadow: 0 3px 23px 3px rgb(0 0 0 / 15%);
  display: flex;
  align-items: center;
  height: 80px;
}

.welcome__search form {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}

.welcome__search input[type="search"] {
  width: 100%;
  height: 80px;
  padding: 1rem 1.5rem;
  background: var(--primary-bg-color);
  border: none;
  outline: none !important;
  flex: 1 1 10px;
}

.welcome__search [type="submit"] {
  display: flex;
  align-items: center;
  margin: 0 20px;
  padding: 10px;
  min-width: 140px;
  height: 44px;
}

.welcome__search [type="submit"]::before {
  content: "\e947";
  font-weight: normal;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  text-transform: none;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-size: 1.5rem;
  line-height: 0;
  left: -5px;
}

@media (max-width: 767px) {
  .welcome__search {
    display: block;
  }
  .welcome__search::before {
    content: "\e947";
    font-weight: normal;
    font-family: "icomoon" !important;
    font-style: normal;
    font-variant: normal;
    display: block;
    text-transform: none;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 25px;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: var(--primary-color);
  }

  .welcome__search [type="submit"] {
    display: none;
  }

  .welcome__search input[type="search"] {
    height: 58px;
    padding: 10px 10px 10px 44px;
    border-radius: 12px;
  }

  .welcome__filter-link:hover {
    background: white;
  }

  .welcome__filter-link::after {
    display: none !important;
  }
}

.welcome__image {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  margin: -35px 0 0;
  overflow: hidden;
  height: 36vw;
  max-height: 600px;
}

.welcome--full-with {
  position: relative;
  z-index: 6;
}

.welcome--full-with .welcome__image {
  max-width: 100% !important;
  margin: 0;
  max-height: 500px;
}

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

.welcome--full-with .container {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .welcome__image {
    height: 100vw;
  }
  .welcome__image img {
    height: 100vw;
    width: unset;
    max-width: unset;
  }
}

.welcome__content {
  width: 100%;
  max-width: 680px;
  padding: 20px 25px 35px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.welcome__content h2 {
  line-height: 0.8;
  color: #fff;
}

.welcome__content p {
  margin: 0;
}

.welcome__content .welcome__search {
  margin-top: 20px;
}

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

.brands, .promoted {
  padding: 2rem 0 1rem;
}

.card,
.recent-articles,
.related-articles {
  display: block;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-button);
  height: calc(100% - 1.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-text-color);
  transition: all var(--duration) var(--timing-function);
}

.recent-articles,
.related-articles {
  height: auto;
}

.card:hover,
.recent-articles:hover,
.related-articles:hover {
  box-shadow: 0 0 12px 5px rgb(0 0 0 / 15%);
  border-color: var(--secondary-text-color);
}

.card__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}

.card__heading-logo {
  height: 26px;
}

.card__heading-icon {
  height: 42px;
}

.card__description {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--secondary-text-color);
}

.card__icon {
  color: var(--primary-color);
}

.card__icon-img {
  width: 75px;
  height: 75px;
  padding: 12px;
  margin-left: -12px;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  background-position: center;
  margin-right: 12px;
  background-image: url(/hc/theming_assets/01HZKN2PCXB8EWWGFZESTGZHZ0);
}

#category_13832389600925 {
  background-image: url(/hc/theming_assets/01HZKN2HTWW42S2CXF2G6040W9);
}

#category_6469103862685 {
  background-image: url(/hc/theming_assets/01HZKN2NXMHXDPESWN2ATR8GVN);
}

#category_12506604493085 {
  background-image: url(/hc/theming_assets/01HZKN2P2XPJ4MAZP5CD3HQSWQ);
}

#category_6654588570141 {
  background-image: url(/hc/theming_assets/01HZKN2PHC710T1GFFS8C2QTTN);
}

#category_6654632165917 {
  background-image: url(/hc/theming_assets/01HZKN2WA2BX1FD0H2YSQGN2N1);
}

#category_6654915020701 {
  background-image: url(/hc/theming_assets/01HZKN2PJAHV5MJ2M757JAB2X1);
}

#category_6654745894685 {
  background-image: url(/hc/theming_assets/01HZKN2QCH7B7Z3PYJWH30FV25);
}

#category_6654871315229 {
  background-image: url(/hc/theming_assets/01HZKN2TMJHQ59EB60XKRP0B9R);
}

#category_6654742279965 {
  background-image: url(/hc/theming_assets/01HZKN2NRP91YV1GVDXHKDQQQ5);
}

#category_6654702022301 {
  background-image: url(/hc/theming_assets/01HZKN2PCXB8EWWGFZESTGZHZ0);
}

#category_6654654163741 {
  background-image: url(/hc/theming_assets/01HZKN2JTQ8M50SPJYPQBXSHSP);
}

#category_6660013950877 {
  background-image: url(/hc/theming_assets/01HZKN2JDHTJG2MDBBY4QGN0CE);
}

#category_8706143110813 {
  background-image: url(/hc/theming_assets/01HZKN2GRRSA7FBT8DP0A8FQN0);
}

.card__title,
.recent-articles-title,
.related-articles-title {
  display: block;
  font-family: var(--text-font-family);
  text-transform: unset;
  font-weight: 600;
  font-size: 18px;
  padding-right: 1rem;
  margin: 0;
  color: var(--primary-text-color);

}

.card__title ~ .card__description {
  margin-top: 11px;
}

.powered-by-zendesk {
  display: none;
}

.category-boxes {
  background-color: var(--secondary-bg-color);
  padding: 3.25rem 0;
}

.category-boxes .card {
  padding: 1rem 1.5rem 1.5rem;
  background-color: var(--primary-bg-color);
  border-radius: var(--border-radius-base);
  border-color: var(--primary-text-color);
  margin-bottom: 0;
  height: 100%;
}

.category-boxes .col-12 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.category-boxes .card__icon-img {
  margin-bottom: 36px;
}

.category-boxes .card__title {
  text-transform: uppercase;
}

.category-boxes .card__description {
  margin-bottom: 0;
}

.category-icon-0::before {
  content: "\e909";
}

.category-icon-1::before {
  content: "\e91c";
}

.category-icon-2::before {
  content: "\e950";
}

.category-icon-3::before {
  content: "\e94a";
}

.category-icon-4::before {
  content: "\e95f";
}

.category-icon-5::before {
  content: "\e932";
}

@media (max-width: 767px) {
  .category-boxes .col-12 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .category-boxes .card__icon-img {
    margin-bottom: 0;
  }
}

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

.promoted__heading a {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.promoted__heading a::after {
  content: "\e911";
  font-weight: normal;
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotate(270deg);
  display: inline-block;
}

/*! CSS Used from: https://www.yotel.com/sites/default/files/css/css_83Sy8MHfDxOdXRCSjZGqCFUsgWVZU0q6oF07pa0RnTU.css ; media=all */
@media all {
  .visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
  }
  .social-media-links--platforms {
    padding-left: 0;
  }
  .social-media-links--platforms.horizontal li {
    display: inline-block;
    text-align: center;
    padding: 0.2em 0.35em;
  }
}

/*! CSS Used from: https://www.yotel.com/sites/default/files/css/css_K0E3_w5XaBcW99kYEHG_4Xdq6PHc4P7n8asEz7n9YqE.css ; media=all */
@media all {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(1px, 1px, 1px, 1px);
  }
  .dropdown-content {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  }
  ::placeholder {
    color: #515151;
  }
  .dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 100px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    transform-origin: 0 0;
  }
  .dropdown-content:focus {
    outline: 0;
  }
  .dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
  }
  .dropdown-content li:hover {
    background-color: #eee;
  }
  .dropdown-content li:focus {
    outline: none;
  }
  .dropdown-content li > a {
    font-size: 16px;
    color: #212529;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
  }
  .dropdown-trigger {
    cursor: pointer;
  }
  .icon-chevron:before {
    content: "\e911";
  }
  .icon-facebook:before {
    content: "\e91b";
  }
  .icon-globe:before {
    content: "\e922";
  }
  .icon-instagram:before {
    content: "\e92b";
  }
  .icon-linkedin:before {
    content: "\e931";
  }
  .icon-twitter:before {
    content: "\e957";
  }
  .icon-youtube:before {
    content: "\e95d";
  }
  .yotel-language-selector {
    display: none;
    padding: 0 0.5rem;
  }
  @media (min-width: 768px) {
    .yotel-language-selector {
      display: flex;
      margin: 0 10px;
      padding: 0 10px;
      font-weight: bold;
    }
    .yotel-language-selector:hover span,
    .yotel-language-selector:focus span {
      color: #772583;
      text-decoration: underline;
      transition: color 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }
  }
  .yotel-footer {
    padding-top: 10px;
    color: white;
    background-color: #772583;
  }
  .yotel-footer h2 {
    margin: 0;
  }
  .yotel-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .yotel-footer a {
    color: #fff;
  }
  .yotel-footer a:hover {
    text-decoration: underline;
  }
  .yotel-footer a.dropdown__menuitem {
    color: var(--primary-text-color);
  }

  .yotel-footer__info {
    padding-top: 1.5rem;
    font-size: 0.75rem;
    border-top: 1px solid #ffffff;
  }
  .yotel-footer__block {
    font-size: 0.875rem;
  }
  .yotel-footer__block h2 {
    position: relative;
    padding: 1rem 0;
    font-weight: bold;
    font-size: 16px;
    font-family: "Montserrat", "Work Sans", arial, sans-serif;
    line-height: 1.5;
    border-bottom: 1px solid #ffffff;
    color: #fff;
  }
  .yotel-footer__block--about ul {
    padding: 5px 0;
    border-bottom: 1px solid #ffffff;
  }
  .yotel-footer__block--about li {
    padding: 8px 10px;
  }
  .yotel-footer__block--footer a {
    position: relative;
    display: block;
    padding: 1rem 0;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
  }
  .yotel-footer__block--footer a:after {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
    content: "";
    font-family: "Icomoon";
    right: 0;
  }
  .yotel-footer__block--yotel-accessibility-info {
    padding: 24px 1rem;
  }
  .yotel-footer__block--social-media-links-block {
    padding: 24px 0;
  }
  .yotel-footer__block--legal {
    padding: 0;
    font-size: 0.75rem;
  }
  .yotel-footer__block--legal ul {
    display: flex;
    padding: 0;
  }
  .yotel-footer__block--legal li:after {
    content: "|";
    display: inline-block;
    padding: 0;
    padding-right: 3px;
  }
  .yotel-footer__block--legal li:last-child:after {
    content: none;
  }
  .yotel-footer__block--yotel-copyright {
    font-size: 0.75rem;
  }
  .yotel-footer__copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem 0;
  }
  .yotel-footer__copyright img {
    width: 70px;
  }
  .yotel-footer__logo {
    width: 100%;
    padding-top: 1.5rem;
    text-align: right;
  }
  .yotel-footer .social-media-links--platforms {
    display: flex;
    padding: 0;
  }
  .yotel-footer .social-media-links--platforms.horizontal li {
    margin: 0 10px 10px 0;
    padding: 0;
  }
  .yotel-footer .social-media-link-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 2rem;
    color: #772583;
    background-color: #ffffff;
    transition: background-color 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .yotel-footer .social-media-link-icon:hover,
  .yotel-footer .social-media-link-icon:focus {
    background-color: #d9d9d6;
  }
  @media (min-width: 768px) {
    .yotel-footer {
      padding: 50px 0 0;
    }
    .yotel-footer__container {
      display: flex;
    }
    .yotel-footer__section {
      padding: 0 0 20px;
    }
    .yotel-footer__info {
      padding: 20px 0 0;
    }
    .yotel-footer h2 {
      padding: 0 0 14px;
      border-bottom: none;
    }
    .yotel-footer h2:after {
      content: none;
    }
    .yotel-footer__block--about ul {
      padding: 0;
      border-bottom: none;
    }
    .yotel-footer__block--about li {
      padding: 4px 0;
    }
    .yotel-footer__block--footer a {
      padding: 0 0 16px;
      border-bottom: none;
    }
    .yotel-footer__block--footer a:after {
      content: none;
    }
    .yotel-footer__block--legal {
      padding: 0;
    }
    .yotel-footer__block--legal li:after {
      padding: 0 1.5rem;
    }
    .yotel-footer__block--yotel-copyright {
      display: inline-block;
      padding: 0 1.5rem;
    }
    .yotel-footer__block--yotel-accessibility-info {
      padding: 0 1rem;
      padding-right: 2rem;
    }
    .yotel-footer__block--social-media-links-block {
      padding: 0;
    }
    .yotel-footer__block-holder .yotel-footer__block {
      width: 100%;
    }
    .yotel-footer__info {
      padding: 1rem 0;
    }
    .yotel-footer__info .yotel-footer__container {
      justify-content: space-between;
    }
    .yotel-footer__info .yotel-footer__block {
      width: auto;
    }
    .yotel-footer__copyright {
      padding: 0;
    }
    .yotel-footer__copyright span {
      display: block;
    }
    .yotel-footer__logo {
      width: auto;
      padding: 0;
    }
    .yotel-footer .social-media-links--platforms {
      flex-wrap: wrap;
    }
    .yotel-footer .social-media-links--platforms.horizontal li:nth-child(5n) {
      margin-right: 0;
    }
  }
  .yotel-language-selector {
    display: block;
    margin: 0;
    padding: 0;
  }
  .yotel-language-selector:hover span,
  .yotel-language-selector:focus span {
    color: #772583;
    text-decoration: underline;
    transition: color 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .yotel-language-selector .dropdown-trigger {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: bold;
    text-decoration: none;
  }
  .yotel-language-selector .dropdown-trigger span {
    padding: 0 5px;
  }
  .yotel-language-selector .dropdown-trigger:hover,
  .yotel-language-selector .dropdown-trigger:focus {
    text-decoration: none;
  }
  .yotel-language-selector .dropdown-trigger:hover span,
  .yotel-language-selector .dropdown-trigger:focus span {
    color: #772583;
    text-decoration: underline;
    transition: color 0.4s ease-in-out;
  }
  .yotel-footer .yotel-language-selector .dropdown-trigger:hover span,
  .yotel-footer .yotel-language-selector .dropdown-trigger:focus span {
    color: #ffffff;
  }
  .yotel-language-selector .dropdown-trigger .icon-globe {
    font-size: 2rem;
    line-height: 0;
  }
  .yotel-footer .yotel-language-selector .dropdown-trigger {
    padding: 0;
  }
  .yotel-language-selector .dropdown-trigger .icon-chevron {
    position: relative;
    top: 2px;
  }
  .yotel-language-selector .dropdown-content {
    margin-top: 1rem;
    padding: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #f1f1f1;
    border-radius: 20px;
  }
  @media (min-width: 768px) {
    .yotel-language-selector {
      display: none;
      box-sizing: content-box;
      min-width: 145px;
    }
    .yotel-footer .yotel-language-selector {
      display: block;
      margin: 0 0 1rem;
      padding: 0;
    }
    .yotel-footer .yotel-language-selector .dropdown-trigger {
      padding: 0;
    }
    .yotel-footer .yotel-language-selector span:hover,
    .yotel-footer .yotel-language-selector span:focus {
      color: #ffffff;
    }
  }
  [class^="icon-"],
  [class*=" icon-"] {
    font-weight: normal;
    font-family: "icomoon" !important;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.main {
  padding: 60px 0;
}

.main__title {
  margin-bottom: 40px;
  padding: 0 15px;
}

.markdown > * {
  margin: 1em 0;
}

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

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

.article-list,
.recent-articles ul,
.related-articles ul {
  display: block;
  padding-left: 0;
  margin: 1.2rem 0 0;
}

.article-list li,
.recent-articles ul li,
.related-articles ul li {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0.25rem 0;
}

.article-list a,
.recent-articles a,
.related-articles a {
  color: var(--primary-text-color);
}

.article-list a:hover,
.recent-articles a:hover,
.related-articles a:hover {
  color: var(--link-color);
}

.more-button-container {
  margin-top: 1.5rem;
}

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

.subsection-list a {
  font-weight: bold;
}

.section__subscribe {
  margin-top: 1.5rem;
}

/* Yotels */
.yotels {
  margin: 48px 0;
}

.yotels .row {
  margin-right: -8px;
  margin-left: -8px;
}

.slider-container {
  margin: 0 -15px;
  padding: 0 15px;
}

.yotels .col-6 {
  padding: 8px;
}

.yotels__item {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--primary_text_color);
  padding: 8px 0;
}

.yotels__item + .yotels__item {
  margin-top: 16px;
}

.yotels__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -8px;
  width: calc(100% + 16px);
  height: 100%;
  border-radius: 24px;
  border: 1px solid var(--primary-color);
  opacity: 0;
  transition: all var(--duration) var(--timing-function);
}

.yotels__item:hover::before {
  opacity: 1;
}

.yotels__item img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 16px;
}

.yotels__item span {
  display: block;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.yotels__item span i {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  font-style: normal;
}

@media (min-width: 992px) {
  .yotels__item span {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .slider-container {
    overflow-y: auto;
  }

  .yotels .row {
    flex-wrap: nowrap;
  }

  .yotels .col-6 {
    width: 300px;
    max-width: 300px;
    flex: 1 0 300px;
  }
}

.welcome__filter-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 0;
  background-color: var(--primary-bg-color);
  height: 80px;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.welcome__filter-link::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-right: 1px solid #d9d9d6;
}

.welcome__filter-link:hover::after,
.welcome__filter-link.is-active::after {
  display: none;
}

.welcome__filter-link:hover {
  background-color: #f1f1f1;
}

.welcome__filter-link.is-active {
  background-color: var(--primary-bg-color);
  box-shadow: 0 0 22px rgb(146 7 167 / 20%);
}

.welcome__filter-link span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

[dir] .welcome__filter-link input {
  display: block;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 14px;
  height: 21px;
  min-height: 21px;
  border-radius: 0;
  outline: none !important;
  cursor: pointer;
}

@media (min-width: 768px) {
  .welcome__filter {
    flex-basis: 35%;
  }
}

.welcome__filter .dropdown__content {
  transition: none;
}

@media (min-width: 481px) and (max-width: 991px) {
  .welcome__filter .dropdown__content {
    width: 280px !important;
  }
}

@media (max-width: 480px) {
  .welcome__filter .dropdown__content {
    width: calc(100vw - 30px) !important;
  }
}

[dir] .welcome__filter-content {
  padding: 24px 0;
  max-height: 370px;
  min-width: 240px;
  overflow-y: auto;
}

.welcome__filter-item {
  display: block;
  position: relative;
  padding: 8px 30px 8px 70px;
  color: var(--primary-text-color);
}

.welcome__filter-item:hover {
  background-color: #f1f1f1;
  color: var(--primary-text-color);
}

.welcome__filter-item img {
  display: block;
  position: absolute;
  left: 30px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.welcome__filter-item b {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.welcome__filter-item span {
  font-size: 14px;
  font-weight: normal;
}

.welcome__filter-clear {
  display: none;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 0.75rem;
  line-height: 18px;
  text-align: center;
  background: #d9d9d6;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  border: none;
  outline: none !important;
  position: absolute;
  top: calc(1rem + 21px);
  right: 0.4rem;
}

.welcome__filter-clear::before {
  content: "\e914";
  font-weight: normal;
  font-family: 'icomoon' !important;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.welcome__filter-clear:hover {
  color: white;
  background: #63666a;
}

.welcome__filter.is-filed .welcome__filter-clear {
  display: flex;
}

[dir] .searchbox-suggestions ul {
  display: block;
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius-base);
}

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

.searchbox-suggestions ul li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--primary-text-color);
  font-weight: 500;
}

.searchbox-suggestions ul li a:hover {
  text-decoration: underline;
}

.searchbox-suggestions ul li + li a {
  border-top: var(--border-width) solid var(--border-color);
}

.suggestion-list {
  position: relative;
}

.suggestion-list label {
  position: absolute;
  top: -10px;
  z-index: 5;
  display: inline-block;
  padding: 0px 5px;
  font-size: 1rem;
  color: #772583;
  text-align: left;
  background: white;
  left: 10px;
  font-weight: 700;
  margin: 0;
}

.breadcrumbs-container {
  padding: 31px 0;
  border-bottom: #f1f1f1 1px solid;
}

.content-tags-add-hint {
  display: block;
  padding-top: 16px;
}

/* CTA */
.cta {
  padding: 72px 0;
  border-top: var(--border-width) solid var(--border-color);
  text-align: center;
}

.cta__title {
  margin: 0 0 12px;
}

.cta__subtitle {
  display: block;
  font-size: 20px;
  color: var(--secondary-text-color);
  margin-bottom: 32px;
}

.cta__link {
  text-decoration: underline;
  font-weight: bold;
}

.cta__link:hover,
.cta__link:focus,
.cta__link:active {
  text-decoration: none;
}

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

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

.cta--article {
  padding-bottom: 0;
  border: none;
}

body .pika-title {
  margin: -8px -8px 0;
  background-color: var(--primary-color);
}

body .pika-label {
  background-color: var(--primary-color);
  color: #fff;
}

body .pika-table th {
  color: var(--primary-color);
}

body .pika-prev, body .pika-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  -webkit-filter: invert(100%); /* Safari/Chrome */
  filter: invert(100%);
}

body .pika-prev {
  left: 0;
}

body .pika-next {
  right: 0;
}

[dir] .pika-table tr td,
[dir] .pika-table .col abbr,
[dir] .pika-button {
  color: var(--secondary-text-color);
}

[dir] .is-selected .pika-button {
  background-color: var(--primary-color);
  color: #fff;
}

[dir] .pika-button:hover {
  background-color: var(--secondary-bg-color) !important;
  color: var(--primary-color) !important;
}

[dir] .is-selected .pika-button:hover {
  background-color: var(--primary-color-hover) !important;
  color: #fff !important;
}

.filter-arrow {
  display: none;
}

.is-disabled .filter-arrow {
  display: inline-block;
}

.filter-link {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.filter-link::before {
  content: '';
  display: block;
  width: calc(100% + 16px);
  height: calc(100% + 10px);
  border-radius: var(--border-radius-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--secondary-bg-color);
  opacity: 0;
  visibility: hidden;
  transition: all .1s ease-in-out;
}

.filter-link.is-disabled::before {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  border-radius: var(--border-radius-base);
  border: 1px solid var(--border-color);
}

.sidebar__category + .sidebar__category {
  border-top: 1px solid var(--border-color);
}

.sidebar__category-block {
  display: block;
  padding: 1rem 1rem 1rem 48px;
  color: var(--primary-text-color);
  font-weight: bold;
  position: relative;
}

.sidebar__category-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  left: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar__category-block:hover,
.sidebar__category-block.is-active,
.is-active > .sidebar__category-block {
  color: var(--primary-color);
}

.sidebar__category-sections {
  padding: 0 1rem 1rem;
}

.sidebar__section {
  display: block;
  padding: .75rem;
  color: var(--primary-text-color);
}

.sidebar__section + .sidebar__section {
  border-top: 1px solid var(--border-color);
}

.sidebar__section:hover,
.sidebar__section.is-active {
  color: var(--primary-color);
}

.section-card {
  padding-left: 15px;
}

.section-card + .section-card {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
}

.card-article {
  display: block;
  position: relative;
  padding: 24px 36px 24px 18px;
  border-radius: var(--border-radius-base);
}

.card-article::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(-45deg);
}

.card-article:nth-child(even) {
  background-color: var(--secondary-bg-color);
}

.card-article:hover,
.card-article:nth-child(even):hover {
  background-color: var(--secondary-bg-color-hover);
}

.card-article .card__description {
  margin-bottom: 0;
}
