/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: #03a9f4;
  --secondary-color: #00bcd4;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #f5f8f9;
  --secondary-bg-color-always: #f5f8f9;
  --primary-text-color: #103552;
  --secondary-text-color: #8297a8;
  --link-color: #1a85da;
  --border-color: #DADDE2;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #027fb8;
  --primary-color-active: #0275a8;
  --secondary-color-hover: #008697;
  --secondary-color-active: #007888;
  --secondary-bg-color-hover: #e8eff1;
  --secondary-bg-color-active: #e2ebee;
  --secondary-text-color-hover: #768da0;
  --secondary-text-color-active: #70889b;
  --link-color-hover: #1364a3;
  --link-color-active: #125b96;
  --bg-image-opacity: 0.5;

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

  /* Other */
  --border-radius-base: 4px;
  --border-radius-small: calc(4px / 2);
  --border-radius-big: calc(4px * 2);
  --border-radius-button: 4px;
  --logo-height: 40px;

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

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

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

.fill-secondary {
  fill: var(--secondary-color);
}

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

.stroke-secondary {
  stroke: var(--secondary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Background */
.hc-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

[dir=rtl] .hc-background {
  left: auto;
  right: 0;
}

.hc-background .container,
.hc-background .row,
.hc-background .col {
  height: 100%;
}

.hc-background .col {
  position: relative;
}

@media (max-width: 991px) {
  .hc-background .col:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 767px) {
  .hc-background .col:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 575px) {
  .hc-background .col:nth-child(n+3) {
    display: none;
  }
}

.hc-background .col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: var(--border-color);
}

[dir=rtl] .hc-background .col::before {
  left: auto;
  right: 50%;
}

/* Header */
.header {
  position: relative;
  background-color: rgba(16, 53, 82, 1);
}

.header.with-welcome {
  background-color: transparent;
  position: absolute;
  z-index: 9;
  width: 100%;
}

.topbar,
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar {
  padding: 6px 0;
  border-bottom: var(--border-width) solid rgba(255, 255, 255, .2);
  color: #fff;
}

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

.topbar a {
  color: var(--white-color);
}

.topbar a:hover,
.topbar a:focus,
.topbar a:active {
  opacity: .5;
}

.topbar__soc {
  display: flex;
}

.topbar__soc a {
  display: block;
  font-size: 16px;
  margin-left: 12px;
}

[dir=rtl] .topbar__soc a {
  margin-left: 0;
  margin-right: 12px;
}

.header,
.welcome--margin {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .header,
  .welcome--margin {
    margin-bottom: 48px;
  }
}

.header__content {
  padding: 24px 0;
}

.header__logo-container {
  display: flex;
  align-items: center;
}

.header__logo {
  display: block;
}

.header__logo img {
  height: 40px;
}

.header__custom-link {
  display: block;
  margin-left: 30px;
}

[dir=rtl] .header__custom-link {
  margin-left: 0;
  margin-right: 30px;
}

.header__custom-link {
  margin-right: 8px;
  font-size: var(--text-font-size-small);
  text-transform: uppercase;
  font-weight: bold;
  color: var(--white-color);
}

.header__custom-link:hover,
.header__custom-link:focus,
.header__custom-link:active {
  opacity: .5;
  color: var(--white-color);
}

.header__right > * {
  margin-left: 12px;
}

[dir=rtl] .header__right > * {
  margin-left: 0;
  margin-right: 12px;
}

.btn.header__avatar {
  border-color: transparent;
}

.btn.header__avatar span {
  display: none;
}

.btn.header__search-btn {
  border-color: transparent;
  color: var(--white-color);
}

.btn.header__search-btn:hover,
.btn.header__search-btn:active {
  opacity: .5;
}

.header__search {
  position: relative;
}

.header__search form,
.header__search:not(.is-active) .fa-times,
.header__search.is-active .fa-search {
  display: none;
}

.header__search.is-active form {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
}

[dir=rtl] .header__search.is-active form {
  left: 0;
  right: auto;
}

.header__search.is-active form input {
  width: 100%;
}

.header__search.is-active .btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: var(--primary-color);
}

[dir=rtl] .header__search.is-active .btn {
  left: 0;
  right: auto;
}

.header__search.is-active .btn:hover {
  color: var(--primary-color-hover);
  opacity: 1;
}

.header__search.is-active .btn:active {
  color: var(--primary-color-active);
  opacity: 1;
}

[dir=ltr] .header__search .btn > * {
  margin-right: 0 !important;
}

[dir=rtl] .header__search .btn > * {
  margin-right: 0 !important;
}

.header__search .btn > * {
  margin-left: 0 !important;
}

.header__search [type=search] {
  border: none;
  min-height: 37px;
  height: 37px;
}

[dir=ltr] .header__search [type=search] {
  padding-right: 37px;
}

[dir=rtl] .header__search [type=search] {
  padding-left: 37px;
}

.header__burger {
  display: none;
}

@media (min-width: 992px) {
  .header__right {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .topbar,
  .header__custom-link,
  .header__search-btn {
    display: none !important;
  }

  .header__burger {
    display: block;
  }

  .header__burger .btn > * {
    margin: 0 !important;
  }

  .header__burger .btn:not(.is-active) .fa-times {
    display: none;
  }

  .header__burger .btn.is-active .fa-bars {
    display: none;
  }

  .header__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(16, 53, 82, 1);
    padding: 16px;
    border-top: var(--border-width) solid rgba(255, 255, 255, .2);
    z-index: 99;
  }

  [dir=rtl] .header__right {
    right: 0;
    left: auto;
  }

  .header__right .btn:not(.header__avatar) {
    display: block;
    width: 100%;
  }

  .header__right > * {
    display: block;
    width: 100%;
    margin: 0;
  }

  .header__right > * + * {
    margin-top: 6px;
  }

  .header__search form,
  .header__search.is-active form {
    display: block !important;
    width: 100%;
    position: relative;
  }

  .btn.header__avatar {
    display: block;
    position: relative;
  }

  .btn.header__avatar span {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    width: calc(100vw - 100% - 32px);
    color: var(--white-color);
    transform: none !important;
    line-height: 37px;
    text-align: left;
  }

  [dir=rtl] .btn.header__avatar span {
    left: auto;
    right: 100%;
    text-align: right;
  }
}

/* Welcome */
.welcome {
  padding-top: 100px;
  padding-bottom: 60px;
  background: url(/hc/theming_assets/01HZPDXZWGRPPF07JF9V28BZ75) no-repeat center;
  background-size: cover;
  position: relative;
}

.welcome--sm,
.welcome--xs {
  padding-top: 80px;
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .welcome,
  .welcome--md {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .welcome--sm,
  .welcome--xs {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .welcome {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .welcome--md {
    padding-top: 160px;
    padding-bottom: 140px;
  }

  .welcome--sm,
  .welcome--xs {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .welcome {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .welcome--md {
    padding-top: 230px;
    padding-bottom: 160px;
  }

  .welcome--sm {
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .welcome--xs {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.welcome::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}

[dir=rtl] .welcome::before {
  left: auto;
  right: 0;
}

.welcome__title {
  color: var(--white-color);
  text-align: center;
}

.welcome__search {
  position: relative;
}

.welcome__search form {
  display: flex;
  width: 100%;
  position: relative;
}

.welcome__search [type="search"] {
  display: block;
  flex: 1 1 10px;
  max-width: 99%;
  border: none;
}

.welcome__search [type="submit"] {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
}

[dir=ltr] .welcome__search [type="submit"] {
  right: 0;
  border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
}

[dir=rtl] .welcome__search [type="submit"] {
  left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (min-width: 768px) {
  .welcome__search [type="search"] {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .welcome__search [type="submit"] {
    display: none;
  }
}

.welcome__wave {
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: auto;
  fill: var(--secondary-bg-color);
}

.section {
  margin-bottom: 40px;
}

.section__title,
.recent-activity-header {
  text-align: center;
  margin-bottom: 28px;
}

[dir=ltr] .section__title--left {
  text-align: left;
}

[dir=rtl] .section__title--left {
  text-align: right;
}

.section__description {
  margin-top: 24px;
  display: block;
}

.section__meta,
.section__subscribe {
  margin-top: 24px;
}

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

[dir=ltr] .section__meta > * + * {
  margin-left: 8px;
}

[dir=rtl] .section__meta > * + * {
  margin-right: 8px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 80px;
  }

  .section__title,
  .recent-activity-header {
    margin-bottom: 56px;
  }
}

/* Helpers */
.helpers {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) {
  .helpers {
    margin-top: -60px;
  }
}

.row.helpers__container {
  margin-right: 0;
  margin-left: 0;
  background-color: var(--primary-bg-color);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--duration) var(--timing-function);
  border-radius: var(--border-radius-big);
}

.helpers__container:hover,
.helpers__container:active {
  background-color: var(--secondary-bg-color);
}

.helpers__item {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}

.helpers__item:hover,
.helpers__item:active {
  box-shadow: var(--box-shadow);
  background-color: var(--primary-bg-color);
}

@media (max-width: 575px) {
  .helpers__item {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

@media (min-width: 576px) {
  .helpers__item {
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
    text-align: center;
  }

  [dir=ltr] .helpers__item + .helpers__item {
    border-left: var(--border-width) solid var(--border-color);
  }

  [dir=rtl] .helpers__item + .helpers__item {
    border-right: var(--border-width) solid var(--border-color);
  }
}

.helpers__icon {
  display: none;
}

@media (min-width: 576px) {
  .helpers__icon {
    display: block;
    margin-bottom: 16px;
  }
}

.helpers__icon img,
.helpers__icon svg {
  display: block;
  margin: 10px auto;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .helpers__icon img,
  .helpers__icon svg {
    margin: 20px auto;
    width: 60px;
    height: 60px;
  }
}

.helpers__title {
  color: var(--primary-text-color);
  transition: color var(--duration) var(--timing-function);
}

@media (min-width: 576px) {
  .helpers__title {
    margin-bottom: 13px;
  }
}

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

.helpers__item:hover,
.helpers__item:active {
  z-index: 3;
}

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

.helpers__item:hover::before,
.helpers__item:active::before {
  background-color: var(--primary-bg-color);
  box-shadow: var(--box-shadow);
}

/* Promoted articles */
.promoted .container {
  margin-bottom: -12px;
}

.promoted__link {
  display: block;
  margin-bottom: 12px;
}

/* Category list */
.category-list .container {
  margin-bottom: -30px;
}

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

.category-list__item {
  display: block;
  position: relative;
  padding: 24px 24px 64px;
  height: 100%;
  background-color: var(--primary-bg-color);
  border-radius: var(--border-radius-base);
}

.category-list__more {
  color: var(--primary-color);
  font-size: var(--text-font-size-small);
  display: block;
  position: absolute;
  right: 24px;
  bottom: 24px;
}

[dir=rtl] .category-list__more {
  left: 24px;
  right: auto;
}

.category-list__more i {
  font-size: 10px;
  margin-left: 4px;
  transition: all var(--duration) var(--timing-function);
}

[dir=rtl] .category-list__more i {
  margin-right: 4px;
  margin-left: 0;
}

.category-list__item:hover,
.category-list__item:active {
  box-shadow: var(--box-shadow);
}

.category-list__item:hover .category-list__more i,
.category-list__item:active .category-list__more i {
  transform: translateX(10px);
}

[dir=rtl] .category-list__item:hover .category-list__more i,
[dir=rtl] .category-list__item:active .category-list__more i {
  transform: translateX(-10px);
}

.category-list__title {
  display: block;
  color: var(--primary-text-color);
}

.category-list__description {
  display: block;
  margin-top: 12px;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

/* Category tree */
.category-tree {
  background-color: var(--primary-bg-color);
}

.category-tree__item + .category-tree__item {
  border-top: var(--border-width) solid var(--border-color);
}

.category-tree__heading {
  display: block;
  color: var(--primary-text-color);
  padding: 26px 40px 26px 0;
  position: relative;
}

[dir-rtl] .category-tree__heading {
  padding: 26px 0 26px 40px;
}

.category-tree__heading i {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transition: all var(--duration) var(--timing-function);
  transform: translateY(-50%);
  color: var(--secondary-text-color);
  opacity: .3;
}

[dir=rtl] .category-tree__heading i {
  left: 0;
  right: auto;
}

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

.category-tree__heading.is-active i {
  transform: rotate(180deg) translateY(50%);
  color: var(--primary-color);
  opacity: 1;
}

[dir=rtl] .category-tree__heading.is-active i {
  transform: rotate(-180deg) translateY(50%);
}

@media (min-width: 992px) {
  .category-tree__heading {
    font-size: 24px;
  }
}

.category-tree__content {
  padding: 22px 0 18px;
}

.category-tree__section {
  padding-bottom: 40px;
}

.category-tree__section-name {
  display: block;
  color: var(--primary-text-color);
  margin-bottom: 40px;
}

.category-tree__section-name:hover,
.category-tree__section-name:active {
  color: var(--primary-color);
}

.category-tree__subsections + .category-tree__articles {
  margin-top: 24px;
}

.category-tree__article {
  display: block;
}

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

.category-tree__subsection {
  display: block;
  padding: 6px 12px;
  border-radius: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-weight: bold;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

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

.category-tree__empty {
  color: var(--secondary-text-color);
  font-style: italic;
}

.category-tree__empty a {
  color: var(--secondary-text-color);
}

/* Recent activity */
.recent-activity-list {
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.recent-activity-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 24px 39px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.recent-activity-item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 100%;
  z-index: -1;
  background-color: var(--primary-bg-color);
}

[dir=rtl] .recent-activity-item::before {
  right: 15px;
  left: auto;
}

@media (min-width: 768px) {
  .recent-activity-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .recent-activity-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.recent-activity-item-parent {
  display: block;
  margin-bottom: 12px;
  font-size: var(--heading-4-font-size);
  color: var(--primary-text-color);
  font-weight: bold;
}

@media (min-width: 992px) {
  .recent-activity-item-parent {
    font-size: var(--heading-3-font-size);
  }
}

.recent-activity-item-parent:hover,
.recent-activity-item-parent:active {
  color: var(--primary-color);
}

.recent-activity-item-link {
  display: block;
  margin-bottom: 34px;
  font-size: var(--text-font-size-small);
  color: var(--primary-color);
}

.recent-activity-item-meta {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 13px;
  color: var(--secondary-text-color);
  position: absolute;
  left: 39px;
  bottom: 24px;
}

[dir=rtl] .recent-activity-item-meta {
  right: 39px;
  left: auto;
}

.recent-activity-accessibility-label {
  display: none;
}

[dir=ltr] .recent-activity-item-comment {
  margin-right: 12px;
}

[dir=rtl] .recent-activity-item-comment {
  margin-left: 12px;
}

.recent-activity-comment-icon::after {
  content: attr(data-comment-count);
}

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

/* CTA */
[dir] .cta__title {
  margin: 0 0 24px;
}

.cta__container {
  background-color: var(--primary-bg-color);
  display: flex;
}

.cta__content {
  padding: 24px;
  flex: 1 1 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta__image {
  display: none;
}

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

@media (min-width: 992px) {
  .cta__subtitle {
    font-size: 22px;
    margin-bottom: 44px;
  }
}

@media (min-width: 768px) {
  .cta__content {
    padding: 46px;
  }

  .cta__image {
    display: block;
    width: 44%;
    padding-bottom: 34%;
    background: no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }

  .cta__image::before {
    content: '';
    display: block;
    width: 10%;
    height: 105%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%) skewX(-5deg);
    background-color: var(--primary-bg-color);
  }

  [dir=rtl] .cta__image::before {
    left: auto;
    right: 0;
    transform: translateX(50%) skewX(5deg);
  }
}

/* Footer */
.footer {
  border-top: var(--border-width) solid var(--border-color);
  padding: 24px 0;
}

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

@media (min-width: 992px) {
  .footer {
    padding: 44px 0;
  }

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

@media (max-width: 991px) {
  .footer__pp {
    margin-top: 12px;
  }
}

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

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

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

[dir=rtl] .breadcrumbs li {
  margin-right: 0;
  margin-left: 24px;
}

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

[dir=rtl] .breadcrumbs li + li {
  padding-right: 28px;
}

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

[dir=rtl] .breadcrumbs li + li::before {
  right: 0;
  left: auto;
  transform: translateY(-50%) scale(-1, 1);
}

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

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

@media (min-width: 768px) {
  .inner-page-heading {
    margin-bottom: 40px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

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

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

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

[dir=rtl] .share li {
  margin: 0 0 0 12px;
}

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

[dir=ltr] .comment-form__mark-as-solved label {
  margin-left: 8px;
}

[dir=rtl] .comment-form__mark-as-solved label {
  margin-right: 8px;
}

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

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

.comment {
  position: relative;
  margin-bottom: 24px;
}

.comment__left {
  flex: 1 1 10px;
}

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

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

[dir=rtl] .comment__sidebar {
  margin-right: 12px;
  margin-left: 0;
  right: auto;
  left: 0;
}

[dir=rtl] .comment__sidebar ~ .comment__left {
  margin-left: 42px;
}

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

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

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

[dir=ltr] .user-avatar {
  margin-right: 12px;
}

[dir=rtl] .user-avatar {
  margin-right: 0;
}

.comment__body {
  margin-top: 12px;
}

[dir=rtl] .comment__body {
  text-align: right;
}

.comment__actions {
  margin-top: 4px;
}

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

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

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

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

[dir=rtl] .my-activities-menu__item {
  margin: 0 0 0 32px;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }

  [dir=rtl] .my-activities-menu__item {
    margin: 0 0 0 12px;
  }
}

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

[dir=ltr] .pagination-list li + li {
  margin-left: 4px;
}

[dir=rtl] .pagination-list li + li {
  margin-right: 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;
}

[dir=rtl] .my-activities thead .requests-sort-symbol {
  margin-right: 4px;
  margin-left: 0;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

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

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }

  [dir=rtl] #search-filter h3::after {
    margin-right: 8px;
    margin-left: 0;
  }
}


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

[dir=rtl] .community-badges img {
  margin-left: 4px;
  margin-right: 0;
}

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

[dir=rtl] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}

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

pre {
  border-radius: var(--border-radius-base);
  padding: 12px;
  overflow-x: auto;
  background-color: var(--primary-text-color);
  color: rgba(255, 255, 255, .85);
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type="search"] {
  padding-left: 42px;
}

.my-activities__search::before{
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f002";
  left: 15px;
  color: var(--secondary-text-color);
}

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

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}

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

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

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

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

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

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

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