@charset "UTF-8";

/* Fonts */
@font-face {
  font-family: "Inter";
  font-style:  normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/hc/theming_assets/01K5V3WV5ZA70Q8C1WFX87FVWB') format("woff2");
}

/***** css vars *****/

:root {
  --brand-color: #000000;
  --brand-text-color: #ffffff;
  --text-color: #999999;
  --link-color: #ffffff;
  --background-color: #ffffff;
  --heading-font: 'Inter', Arial, sans-serif;
  --text-font: 'Inter', Arial, sans-serif;
}

/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--text-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

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

a:hover, a:active, a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid var(--brand-color);
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/theming_assets/01HZPG01K0CSEFEXFEYA7ANQFD) no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid var(--brand-color);
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid var(--brand-color);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
}

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: initial;
}

.dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline;
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid var(--brand-color);
  border-radius: 4px;
  color: var(--brand-color);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, [role="button"] {
    width: auto;
  }
}

.button::after, [role="button"]::after {
  color: var(--brand-color);
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: var(--brand-color);
  color: var(--brand-text-color);
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: darken(var(--brand-color), 20%);
  border-color: darken(var(--brand-color), 20%);
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  background-color: var(--brand-color);
  border: 0;
  border-radius: 4px;
  color: var(--brand-text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large, input[type="submit"] {
    width: auto;
  }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
  background-color: darken(var(--brand-color), 20%);
}

.button-large[disabled], input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: lighten(var(--text-color), 20%);
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: var(--text-color);
  border: 1px solid #ddd;
  background-color: darken(var(--background-color), 3%);
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: lighten(var(--text-color), 20%);
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid var(--brand-color);
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-field input[type="text"]:focus {
  border: 1px solid var(--brand-color);
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid var(--brand-color);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid var(--brand-color);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}

.form-field.required > label::after {
  content: "*";
  color: #f00;
  margin-left: 2px;
}

.form-field .optional {
  color: lighten(var(--text-color), 20%);
  margin-left: 4px;
}

.form-field p {
  color: lighten(var(--text-color), 20%);
  font-size: 12px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(/hc/theming_assets/01HZPG01X2QBGJGZM50RGD8HJW) 99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: lighten(var(--text-color), 20%);
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: darken(var(--link-color), 20%);
}

/***** Header *****/
.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .header {
    padding: 0;
    width: 90%;
  }
}

.logo img {
  max-height: auto;
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}

.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] > a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  border: 0;
  color: #FFF;
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
}

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  color: #FFF;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper .icon-menu {
  border: 0;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
}

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

.nav-wrapper .icon-menu:hover, .nav-wrapper .icon-menu:focus, .nav-wrapper .icon-menu:active {
  background-color: transparent;
  color: var(--link-color);
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  border: 0;
  color: #FFF;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: #FFF;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #FFF;
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

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

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: var(--brand-color);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: var(--brand-text-color);
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
  clear: both !important;
}

.footer a {
  color: lighten(var(--text-color), 20%);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector {
  color: lighten(var(--text-color), 20%);
  display: inline-block;
  font-weight: 300;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
  color: lighten(var(--text-color), 20%);
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a:visited {
  color: var(--link-color);
}

/***** Search field *****/
.search {
  position: relative;
}

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 30px;
  box-sizing: border-box;
  color: #999;
  height: 40px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid var(--brand-color);
  color: #555;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #777;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  left: 15px;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

.search-full input[type="search"] {
  border: 1px solid #fff;
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01HZPG0JPBT2TWTNBCXY0P89TF);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 30px;
}

.page-header-description {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

.blocks-item {
  border: 1px solid var(--brand-color);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--brand-color);
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: var(--brand-color);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: var(--brand-text-color);
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: var(--text-color);
}

.blocks-item-link {
  color: var(--brand-color);
  padding: 20px 30px;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/
.section h2 {
  margin-bottom: 10px;
  text-align: center;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  color: var(--text-color);
}

.promoted-articles-item .icon-lock::before {
  vertical-align: baseline;
}

.promoted-articles-item:last-child a {
  border: 0;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01HZPG0JXSZ89Y2QGDMNBC7Z4W);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: var(--text-color);
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: lighten(var(--text-color), 20%);
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: var(--brand-color);
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree-title {
  margin-bottom: 0;
}

.section-tree-title a {
  color: var(--text-color);
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item a {
  color: var(--text-color);
}

.article-list-item .icon-lock::before {
  vertical-align: baseline;
}

.icon-star::before {
  color: var(--brand-color);
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 50px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

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

.article-author {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    /* Take entire row */
  }
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 768px) {
  .article [role="button"] {
    width: auto;
  }
}

.article-info {
  max-width: 100%;
}

.article-meta {
  display: inline-block;
  vertical-align: middle;
}

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

.article-body ul, .article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .article-body ul, [dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol, .article-body li > ul, .article-body li > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body a:visited {
  color: darken(var(--link-color), 20%);
}

.article-body code {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--text-color), 20%);
  font-style: italic;
  padding: 0 15px;
}

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

.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.article-comment-count {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: var(--brand-color);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

.article-relatives > *:last-child {
  padding: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    padding-right: 20px;
  }
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  background: transparent;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
}

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: var(--brand-color);
}

.article-vote:hover {
  background-color: var(--brand-color);
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: var(--brand-text-color);
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

.article-more-questions {
  margin: 20px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: var(--text-color);
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: var(--brand-color);
  color: var(--brand-text-color);
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: darken(var(--brand-color), 20%);
  border-color: darken(var(--brand-color), 20%);
}

.sidenav-title {
  font-size: 15px;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  color: var(--text-color);
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: var(--brand-color);
  color: var(--brand-text-color);
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: var(--text-color);
  content: "\1F4CE";
  font-size: 15px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: lighten(var(--text-color), 20%);
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: lighten(var(--text-color), 20%);
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: var(--brand-color);
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

.share-googleplus::before {
  content: "\e902";
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: lighten(var(--text-color), 20%);
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: var(--brand-color);
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
  font-size: 13px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid var(--brand-color);
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

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

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: var(--brand-color);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: var(--text-font);
  line-height: 1.6;
  overflow-x: auto;
}

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

.comment-body ul, .comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul, [dir="rtl"] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol, .comment-body li > ul, .comment-body li > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body a:visited {
  color: darken(var(--link-color), 20%);
}

.comment-body code {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--text-color), 20%);
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

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

.vote-sum {
  color: lighten(var(--text-color), 20%);
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: var(--brand-color);
}

.vote-up::before, .vote-down::before {
  color: lighten(var(--text-color), 20%);
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: var(--brand-color);
}

.vote-voted:hover::before {
  color: darken(var(--brand-color), 20%);
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: darken(var(--background-color), 3%);
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: lighten(var(--text-color), 20%);
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZPG0JT4477RXZ7B19DNZT0G);
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header h4 {
  margin-bottom: 0;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow .dropdown {
  width: 100%;
}

.community-follow [role="button"] {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    width: auto;
  }
}

.community-follow [role="button"]:hover {
  background-color: var(--brand-color);
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: var(--brand-text-color);
  color: var(--brand-text-color);
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: var(--brand-color);
  color: var(--brand-text-color);
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid var(--brand-text-color);
  color: var(--brand-text-color);
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: darken(var(--brand-color), 20%);
  border-color: darken(var(--brand-color), 20%);
}

.community-follow [role="button"]::after {
  border-left: 1px solid var(--brand-color);
  content: attr(data-follower-count);
  color: var(--brand-color);
  display: inline-block;
  font-family: var(--heading-font);
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow [role="button"]::after {
    position: static;
  }
}

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid var(--brand-color);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: var(--link-color);
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: darken(var(--link-color), 20%);
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: var(--text-color);
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: var(--brand-color);
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: lighten(var(--text-color), 20%);
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #cc3340;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
  text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: var(--text-font);
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

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

.post-body ul, .post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .post-body ul, [dir="rtl"] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol, .post-body li > ul, .post-body li > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body a:visited {
  color: darken(var(--link-color), 20%);
}

.post-body code {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: darken(var(--background-color), 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--text-color), 20%);
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: var(--brand-color);
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: var(--text-color);
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: var(--text-color);
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid var(--brand-color);
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: var(--text-color);
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: darken(var(--background-color), 5%);
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: var(--brand-color);
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: var(--brand-color);
  color: var(--brand-text-color);
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: var(--brand-color);
  border-radius: 4px;
  color: var(--brand-text-color);
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: darken(var(--brand-color), 20%);
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

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

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: lighten(var(--text-color), 20%);
  font-size: 13px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: lighten(var(--text-color), 20%);
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: lighten(var(--text-color), 20%);
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid var(--brand-color);
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid var(--brand-color);
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: darken(var(--background-color), 3%);
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: var(--text-color);
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: lighten(var(--text-color), 20%);
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: var(--brand-color);
}

.pagination-current a, .pagination-current span {
  color: var(--brand-text-color);
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: lighten(var(--text-color), 20%);
  font-size: 13px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: darken(var(--background-color), 3%);
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background-color: var(--brand-color);
  border: 0;
  color: var(--brand-text-color);
  line-height: normal;
  padding: 8px 20px;
  outline-color: var(--brand-color);
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px var(--brand-color);
  border-radius: 4px;
  color: var(--brand-color);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: darken(var(--background-color), 5%);
  border: 0;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: lighten(var(--text-color), 20%);
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: darken(var(--background-color), 3%);
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: var(--background-color);
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -14px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-result-description {
  margin-top: 15px;
}

.search-result-votes, .search-result-meta-count {
  color: lighten(var(--text-color), 20%);
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: var(--brand-color);
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/* Custom Theme Code Additions */

/* Grid */

/* POSITIONING */

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.row-fluid [class^="col"] {
  margin: 0 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row-fluid .col-1,
.row-fluid .col-2,
.row-fluid .col-3,
.row-fluid .col-4,
.row-fluid .col-5,
.row-fluid .col-6,
.row-fluid .col-7,
.row-fluid .col-8,
.row-fluid .col-9,
.row-fluid .col-10,
.row-fluid .col-11,
.row-fluid .col-12 {
  width: 100%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}

@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }
  
  .row-fluid .col-1 {
    width: 8.33%;
  }

  .row-fluid .col-2 {
    width: 16.66%;
  }

  .row-fluid .col-3 {
    width: 25%;
  }

  .row-fluid .col-4 {
    width: 33.33%;
  }

  .row-fluid .col-5 {
    width: 41.66%;
  }

  .row-fluid .col-6 {
    width: 50%;
  }

  .row-fluid .col-7 {
    width: 58.33%;
  }

  .row-fluid .col-8 {
    width: 66.66%;
  }

  .row-fluid .col-9 {
    width: 75%;
  }

  .row-fluid .col-10 {
    width: 83.33%;
  }

  .row-fluid .col-11 {
    width: 91.66%;
  }

  .row-fluid .col-12 {
    width: 100% !important;
  }

  .hidden-sm {
    display: 98%;
  }
}

/* Typography */

h1,h2,h3,h4,h5,h6 {font-family: 'Inter', Arial, sans-serif !important; font-weight: bold}
p,span {font-family: 'Inter', Arial, sans-serif !important}

h1 {
  font-size: 2.81rem !important;
  line-height: 3.07rem !important;
  letter-spacing: -0.05555555555555555rem !important;
}

.white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text p, .white-text a, .white-text span {
  color: white !important;
}

.big-header {
  font-size: 76px !important;
  line-height: 80px !important;
  letter-spacing: -1.21 px !important;
  padding-bottom: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 45em) {
.big-header {
  font-size: 36px !important;
  line-height: 37px !important;
}
}

/* Menu System */

.header {
  height: 82px !important;
  border-bottom: 1px solid #262626;
}

.user-nav[aria-expanded="true"] {
  top: 82px !important;
  background: #000 !important;
  border: none;
  text-align: center !important;
  padding: 20px 0;
}

.user-nav[aria-expanded="true"] a {
  color: white !important;
  opacity: 1;
}

.user-nav[aria-expanded="true"] a:after {
  display: none;
}

.nav-wrapper .icon-menu {
  color: white !important;
  font-size: 18px !important;
}

.nav-wrapper a {
  font-family: 'Maison Neue', Helvetica, Arial, sans-serif !important; 
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1388888888888889rem;
  height: auto;
  color: #FFF !important;
}

.nav-wrapper a:hover {
  text-decoration: none;
  color: #FFF !important;
}

.nav-wrapper a:after {
  content: '/';
  padding-left: 25px;
  font-size: 10px;
  font-weight: 300;
  color: #FFF !important;
}

.nav-wrapper a:last-child:after {
  display: none !important;
}

.title-block {
  padding-bottom: 40px;
}

.title-block h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 15px;
  color: #868686;
  margin-bottom: 0;
}

/* Simple Header */

.simple-header {
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 45em) {
  .simple-header {
    padding: 15px 0;
  }
}

/* General */

.hero {
  height: 75vh;
}

.btn-outline {
  background: transparent;
  border: 1px solid black;
  color: black;
  margin-top: 20px;
  display: inline-block;
  font-family: 'Maison Neue';
  text-transform: uppercase;
  letter-spacing: 0.16666666666666666rem;
  padding-top: 0.8888888888888888rem;
  padding-bottom: 0.8888888888888888rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  font-size: 0.7777777777777778rem;
  transition: ease 0.25s all;
}

.btn-outline:hover, .btn-outline:focus {
  text-decoration: none;
  background: #000;
  color: white;
}

/* generic button stylings */

input[type="submit"] {
  background: transparent;
  border: 1px solid black;
  color: black;
  margin-top: 20px;
  display: inline-block;
  font-family: 'Maison Neue';
  text-transform: uppercase;
  letter-spacing: 0.16666666666666666rem;
  padding-top: 0.8888888888888888rem;
  padding-bottom: 0.8888888888888888rem;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  font-size: 0.7777777777777778rem;
  transition: ease 0.25s all;   
  width: 100%;
  border-radius: 0;
}

input[type="submit"]:hover {
  color: #FFF;
  background: #000;
}

input[type="submit"]:focus {
  color: #FFF;
  background: #000;
}

.sidenav-item {
  border-radius: 0;
}

/* Home Hero */

.home-hero .search {
  width: 100% !important;
  margin: 0 16px 0 30px !important;
  position: relative;
}

.home-hero .search:after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-color: #FFD300;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='14' viewBox='0 0 7 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.21007 12.7393C1.50301 13.1025 1.97731 13.1025 2.27025 12.7393L6.76999 7.16306C7.06293 6.80062 7.06293 6.21267 6.76999 5.84955L2.27025 0.274624C2.12417 0.09272 1.93207 0.00211203 1.74036 0.00211203C1.54825 0.00211203 1.35654 0.09272 1.21007 0.274624C0.91686 0.637072 0.91686 1.22501 1.21007 1.58813L5.17964 6.50699L1.21007 11.4252C0.91686 11.7883 0.91686 12.3762 1.21007 12.7393Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.21007 12.7393C1.50301 13.1025 1.97731 13.1025 2.27025 12.7393L6.76999 7.16306C7.06293 6.80062 7.06293 6.21267 6.76999 5.84955L2.27025 0.274624C2.12417 0.09272 1.93207 0.00211203 1.74036 0.00211203C1.54825 0.00211203 1.35654 0.09272 1.21007 0.274624C0.91686 0.637072 0.91686 1.22501 1.21007 1.58813L5.17964 6.50699L1.21007 11.4252C0.91686 11.7883 0.91686 12.3762 1.21007 12.7393Z' fill='black'/%3E%3C/svg%3E ");
  background-position: 50% 50%;
  background-size: 7px;
  background-repeat: no-repeat;
  display: none;
}

.search input[type="search"]:focus {
  border-color: #FFD300 !important;
}

.search input[type="search"] {
  border-radius: 0 !important;
  height: 50px !important;
}

.search input[type="search"]:focus {
  border-color: #000 !important;
}

/* Revised Search Homepage */

.search input[type="search"] {
  border-radius: 0 !important;
  height: 50px !important;
  background: transparent !important;
  border: none !important;
  border-width: 0 0 1px 0 !important;
  border-style: solid !important;
  border-color: #000 !important;
}

/* Homepage Hero */

.home-hero {
  height: 74vh !important;
  width: 100%;
  background-color: #FFF;
  margin-bottom: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.home-hero:before {
  position: absolute;
  display: block;
  content: '';
  left: 5%;
  top: 0;
  width: 39vw;
  height: 39vw;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url(/hc/theming_assets/01HZPG0FCZWR6HBK4Z2Q0ZF3CQ);
  z-index: 1;
  pointer-events: none;
}

.home-hero:after {
  position: absolute;
  display: block;
  content: '';
  right: 5%;
  bottom: 0;
  width: 50vw;
  height: 50vw;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-image: url(/hc/theming_assets/01HZPG0EZZTF4NS1648QG37S8E);
  z-index: 1;
  pointer-events: none;
}

.home-hero .big-header {
  padding-top: 75px;
}

@media only screen and (max-width: 45em) {
  .home-hero .big-header {
    padding-top: 100px !important;
  }
}

@media only screen and (max-width: 70em) {
  .home-hero:before {
    left: -50px !important;
  }
  .home-hero:after {
    right: 0px !important;
  }
}

@media only screen and (max-width: 60em) {
  .home-hero:before {
    left: -100px !important;
  }
  .home-hero:after {
    right: -100px !important;
  }
}

@media only screen and (max-width: 50em) {
  .home-hero:before {
    left: -100px !important;
    width: 400px;
    height: 400px;
  }
  .home-hero:after {
    right: -100px !important;
    width: 600px;
    height: 600px;
  }
}

@media only screen and (max-width: 40em) {
  .home-hero:before {
    left: -100px !important;
    width: 400px;
    height: 400px;
  }
  .home-hero:after {
    right: -100px !important;
    width: 500px;
    height: 500px;
  }
}

.home-hero .search {
  width: 70% !important;
  margin: 0 auto !important;
}

@media only screen and (max-width: 40em) {
  .home-hero .big-header {
     padding: 0 50px;
  }
}

.logo img {
  max-width: 180px;
  height: 100px;
  max-height: auto !important;
}

@media only screen and (max-width: 45em) {
  .logo img {
    max-width: 140px;
    height: 60px;
    max-height: auto !important;
  }
}

.home-hero--logo {
  position: absolute;
  display: block;
  background: transparent;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 100px;
  margin: 0 auto 40px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='123' viewBox='0 0 520 123'%3E%3Cpath id='Form_1' data-name='Form 1' fill='%23000' d='M194.945,48.017c-0.59-3.294-3.289-8.449-10.876-8.449-5.651,0-9.362,3.635-9.362,7.6,0,3.294,2.108,5.912,6.492,6.757l8.349,1.606c10.88,2.111,16.7,9.205,16.7,17.651,0,9.21-7.677,18.5-21.587,18.5-15.854,0-22.854-10.22-23.781-18.748l10.793-2.875c0.5,5.914,4.639,11.234,13.07,11.234,6.241,0,9.7-3.126,9.7-7.348,0-3.463-2.616-6.166-7.253-7.095l-8.346-1.688c-9.53-1.943-15.686-8.109-15.686-17.146,0-10.643,9.53-18.752,20.828-18.752,14.5,0,20.07,8.783,21.419,15.54Zm55.094,30.492c-2.108,7.18-8.686,13.174-18.889,13.174-11.384,0-21.419-8.191-21.419-22.211,0-13.263,9.781-21.877,20.406-21.877,12.819,0,20.492,8.191,20.492,21.537,0,1.606-.168,3.294-0.168,3.463H220.779c0.25,5.491,4.888,9.46,10.457,9.46,5.225,0,8.095-2.617,9.444-6.334Zm-10.457-13.6c-0.168-4.137-2.867-8.191-9.276-8.191a8.986,8.986,0,0,0-9.277,8.191h18.553ZM254.6,90.418V48.86h10.708v5.069c2.279-4.054,7.591-6.252,12.142-6.252,5.652,0,10.2,2.452,12.315,6.926,3.285-5.066,7.673-6.926,13.152-6.926,7.673,0,15.01,4.645,15.01,15.8V90.418H307.051V65.755c0-4.478-2.193-7.857-7.336-7.857-4.806,0-7.673,3.717-7.673,8.194V90.418H280.908V65.755c0-4.478-2.275-7.857-7.332-7.857-4.892,0-7.759,3.635-7.759,8.194V90.418H254.6Zm67.982,16.048V48.86h10.879v5.069c1.854-3.209,6.492-6,12.73-6,12.142,0,19.143,9.291,19.143,21.623,0,12.586-7.842,21.878-19.562,21.878-5.737,0-9.953-2.28-11.975-5.069v20.1H322.583ZM344,57.984c-5.734,0-10.372,4.309-10.372,11.657s4.638,11.74,10.372,11.74,10.285-4.309,10.285-11.74C354.287,62.292,349.735,57.984,344,57.984Zm25.93,32.434V29.266h11.215V90.418H369.932ZM392.39,28.252a6.926,6.926,0,1,1-6.914,7.012A6.916,6.916,0,0,1,392.39,28.252Zm-5.565,62.166V48.86h11.216V90.418H386.825ZM414.619,69.64c0,7.517,4.892,11.74,10.625,11.74a9.493,9.493,0,0,0,9.527-7.012l9.867,3.295c-1.854,6.926-8.349,14.02-19.394,14.02-12.228,0-21.84-9.288-21.84-22.043,0-12.84,9.444-22.046,21.5-22.046,11.3,0,17.708,7.008,19.476,14.02L434.353,65c-1.013-3.463-3.629-7.012-9.194-7.012C419.426,57.984,414.619,62.123,414.619,69.64Zm72.9,8.869c-2.108,7.18-8.686,13.174-18.889,13.174-11.384,0-21.419-8.191-21.419-22.211,0-13.263,9.781-21.877,20.406-21.877,12.819,0,20.492,8.191,20.492,21.537,0,1.606-.168,3.294-0.168,3.463H458.264c0.251,5.491,4.889,9.46,10.457,9.46,5.225,0,8.095-2.617,9.444-6.334Zm-10.457-13.6c-0.169-4.137-2.867-8.191-9.277-8.191a8.983,8.983,0,0,0-9.275,8.191h18.552Zm16.591-29.065V49.568h-3.3V35.844h-5.311V32.732h13.914v3.112h-5.308Zm23.119,13.724v-11.8l-4.837,11.8h-2.723L504.38,37.863V49.568h-3.131V32.732h4.316l5.049,12.16,4.93-12.16H520V49.568h-3.223ZM75.6,18.07L82.658,6.086s-7.049-3.324-7.566,3.964c-0.205,2.9-2.006,4.017-3.671,4.017a3.322,3.322,0,0,1,.04-6.643,3.158,3.158,0,0,1,.688.072c1-3.2-2.079-4.184-3.86-3.2A4.2,4.2,0,0,0,65.945,0,3.832,3.832,0,0,0,63.6,4.3c-1.781-.983-4.855,0-3.86,3.2a3.155,3.155,0,0,1,.688-0.072,3.322,3.322,0,0,1,.04,6.643c-1.665,0-3.465-1.122-3.671-4.017-0.517-7.288-7.875-4.489-7.875-4.489L56.29,18.07H75.6Zm44.387,40.1c11.084-1.348,10.967-10.357,10.967-10.357-13.912,2.385-21.687-5.322-21.687-5.322s8.714,3.69,15.671-.013c6.833-3.638,5.89-11.3,5.89-11.3-16.105,5.273-21.918-.439-21.918-0.439s6.511,1.357,11.992-1.935c7.545-4.53,4.223-11.247,4.223-11.247-12.157,5.712-17.672,2.825-17.672,2.825s6.142-.126,9.589-6.968c2.692-5.345-1.766-9.439-1.766-9.439-6.112,9.068-15.846,7.755-22.453,11.567-4.387,2.531-.393,7.193-0.393,7.193,4.265-1.61,8.07,3.179,8.07,10.31,0,10.159-8.314,15.8-17.127,15.8-8.96,0-12.909-3.9-12.909-13.131,0-3.857.935-5.366,3.773-5.366a4.53,4.53,0,0,1,3.97,2.083,11.15,11.15,0,0,0,1.705-5.856c0-4.427-3.156-5.511-6.8-5.511H54.779c0,2.436.8,5.22,3.4,6.055,0,0-.855,7.028-1.847,14.767-0.642,5-4.577,6.959-8.909,6.959-8.275,0-17.156-5.256-17.156-15.8,0-6.07,3.267-12.052,8.07-10.31,1.5-1.694,2.8-4.933-.052-6.976-4.985-3.57-16.915-2.6-22.795-11.785,0,0-4.458,4.094-1.765,9.439,3.447,6.842,9.588,6.968,9.588,6.968S17.8,23.266,5.645,17.554c0,0-3.321,6.717,4.223,11.247,5.482,3.292,11.992,1.935,11.992,1.935s-5.812,5.712-21.918.439c0,0-.942,7.661,5.891,11.3,6.956,3.7,15.671.013,15.671,0.013S13.729,50.195-.184,47.81c0,0-.118,9.009,10.967,10.357,8.773,1.067,16.045-5.141,16.045-5.141s-2.241,8.512-22.75,11.355c0,0,5.139,9.039,17.609,5.838,8.328-2.138,13.363-9.469,13.363-9.469s-3.4,10.787-20.883,17.315c0,0,5.452,6.152,17.108,1.318,9.84-4.08,13.931-13.975,13.931-13.975S43.934,74.425,35.411,83.4a8.953,8.953,0,0,0,4.857-.262c8.1-3.32,13.2-8.654,14.518-17.017,0,0,2.362,2.286,1.776,6.823-0.808,6.256-11.216,13.28-11.216,13.28l1.417,2.12c-2.556,1.505-6.439,3.795-7.9,4.637-3.029-1.871-6.8-4.142-7.565-4.6-2.694-1.613-7.974-1.486-8.655,4.929,2.5-2.782,4.663-2.356,7.429-.968,0.467,0.234,2.8,1.594,4.911,2.885-1.383.8-2.349,1.361-2.508,1.456-2.694,1.613-5.082,6.332.237,9.969-1.262-3.524.136-5.23,2.666-7.013,0.234-.165,1.584-0.982,3.389-2.063,1.1,0.693,2.657,1.779,2.935,1.988,2.477,1.858,3.823,3.6,2.458,7.089,5.424-3.478,3.176-8.266.531-9.958-0.124-.079-1.345-0.935-2.1-1.4,1.016-.6,4.152-2.471,6.3-3.755l1.375,2.057,8.957-5.442a14.432,14.432,0,0,1,.062,3.436c-0.812,6.629-4.466,12.669-12.652,18.148a6.575,6.575,0,0,0,6.629,4.39c4.14,0,6.882-4.644,8.446-8.664-1.834,7.179-1.7,12.767,3.643,17.538,5.16-4.665,5.539-10.362,3.706-17.538,1.563,4.02,4.306,8.664,8.446,8.664a6.576,6.576,0,0,0,6.629-4.39c-8.186-5.479-11.84-11.519-12.652-18.148a14.413,14.413,0,0,1,.061-3.431l8.936,5.437,1.381-2.066c2.147,1.284,5.295,3.158,6.313,3.764-0.753.467-1.974,1.322-2.1,1.4-2.645,1.692-4.893,6.48.531,9.958-1.365-3.485-.019-5.231,2.458-7.089,0.278-.209,1.836-1.294,2.936-1.988,1.806,1.081,3.155,1.9,3.389,2.063,2.531,1.783,3.928,3.489,2.666,7.013,5.319-3.637,2.93-8.356.237-9.969-0.158-.095-1.125-0.655-2.508-1.456,2.107-1.291,4.444-2.651,4.91-2.885,2.766-1.388,4.928-1.814,7.43.968-0.681-6.415-5.961-6.542-8.655-4.929-0.77.461-4.536,2.732-7.565,4.6-1.461-.844-5.357-3.141-7.912-4.646L85.4,86.225s-10.289-7.041-11.2-13.28c-0.675-4.648,1.776-6.823,1.776-6.823,0.96,7.6,6.393,14.078,14.607,16.88a11.489,11.489,0,0,0,4.768.4c-8.523-8.976-9.795-17.993-9.795-17.993s4.091,9.9,13.931,13.975c11.656,4.834,17.108-1.318,17.108-1.318C99.119,71.537,95.719,60.75,95.719,60.75s5.035,7.331,13.364,9.469c12.471,3.2,17.609-5.838,17.609-5.838-20.509-2.843-22.75-11.355-22.75-11.355S111.213,59.234,119.987,58.167Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 50%;
}


@media only screen and (max-width: 45em) {
  .home-hero--logo {

  }
}


/* Homepage Top Blocks */

.home-top-blocks {
  padding: 60px 0px;
  background: #ffd300;
}

.home-top-blocks--container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.home-top-block {
  background: rgba(0,0,0,.05);
  border-radius: 12px;
  padding: 50px;
}

.home-top-block h2,
.home-top-block a {
  font-weight: 400;
  color: #000000;
  margin-bottom: 0px;
}

.home-top-block--icon {
  display: block;
  height: 34px;
  width: 34px;
  margin: 0 auto 20px auto;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  background-position: 50% 50%;
  transition: ease 0.15s all;
}

.wordpress-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' xml:space='preserve' height='500' width='500' version='1.0' viewBox='0 0 5.5555557 5.5555555'%3E%3Cg transform='matrix(1.0755 0 0 1.0755 -3.5103 -1.6684)'%3E%3Cpath fill='%23000' d='m5.8465 1.9131c0.57932 0 1.1068 0.222 1.5022 0.58547-0.1938-0.0052-0.3872 0.11-0.3952 0.3738-0.0163 0.5333 0.6377 0.6469 0.2853 1.7196l-0.2915 0.8873-0.7939-2.3386c-0.0123-0.0362 0.002-0.0568 0.0465-0.0568h0.22445c0.011665 0 0.021201-0.00996 0.021201-0.022158v-0.13294c0-0.012193-0.00956-0.022657-0.021201-0.022153-0.42505 0.018587-0.8476 0.018713-1.2676 0-0.0117-0.0005-0.0212 0.01-0.0212 0.0222v0.13294c0 0.012185 0.00954 0.022158 0.021201 0.022158h0.22568c0.050201 0 0.064256 0.016728 0.076091 0.049087l0.3262 0.8921-0.4907 1.4817-0.8066-2.3758c-0.01-0.0298 0.0021-0.0471 0.0308-0.0471h0.25715c0.011661 0 0.021197-0.00996 0.021197-0.022158v-0.13294c0-0.012193-0.00957-0.022764-0.021197-0.022153-0.2698 0.014331-0.54063 0.017213-0.79291 0.019803 0.39589-0.60984 1.0828-1.0134 1.8639-1.0134l-0.0000029-0.0000062zm1.9532 1.1633c0.17065 0.31441 0.26755 0.67464 0.26755 1.0574 0 0.84005-0.46675 1.5712-1.1549 1.9486l0.6926-1.9617c0.1073-0.3036 0.2069-0.7139 0.1947-1.0443h-0.000004zm-1.2097 3.1504c-0.2325 0.0827-0.4827 0.1278-0.7435 0.1278-0.2247 0-0.4415-0.0335-0.6459-0.0955l0.68415-1.9606 0.70524 1.9284v-1e-7zm-1.6938-0.0854c-0.75101-0.35617-1.2705-1.1213-1.2705-2.0075 0-0.32852 0.071465-0.64038 0.19955-0.92096l1.071 2.9285 0.000003-0.000003zm0.95023-4.4367c1.3413 0 2.4291 1.0878 2.4291 2.4291s-1.0878 2.4291-2.4291 2.4291-2.4291-1.0878-2.4291-2.4291 1.0878-2.4291 2.4291-2.4291zm0-0.15354c1.4261 0 2.5827 1.1566 2.5827 2.5827s-1.1566 2.5827-2.5827 2.5827-2.5827-1.1566-2.5827-2.5827 1.1566-2.5827 2.5827-2.5827z'/%3E%3C/g%3E%3C/svg%3E");
}

.gear-icon {
background-image: url("data:image/svg+xml,%3Csvg width='43' height='44' viewBox='0 0 43 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.8479 4.61378C19.5244 5.36489 20.4878 5.79372 21.4986 5.79372C22.5094 5.79372 23.4727 5.36489 24.1493 4.61378L25.8739 2.72118C26.8867 1.6001 28.4952 1.23765 29.8909 1.81605C31.2865 2.39444 32.1673 3.78855 32.0904 5.29753L31.961 7.85017C31.9104 8.85714 32.2878 9.83856 33.0001 10.552C33.7125 11.2655 34.6932 11.6444 35.7001 11.5953L38.2523 11.4658C39.7601 11.3915 41.1517 12.2733 41.7285 13.6685C42.3053 15.0637 41.9428 16.671 40.8228 17.6833L38.9232 19.3972C38.1732 20.0748 37.7451 21.0384 37.7451 22.0492C37.7451 23.0601 38.1732 24.0237 38.9232 24.7013L40.8228 26.4152C41.9437 27.4281 42.3061 29.0369 41.7278 30.4328C41.1495 31.8286 39.7556 32.7095 38.2469 32.6327L35.6946 32.5032C34.6855 32.4513 33.7017 32.8296 32.9872 33.5442C32.2727 34.2587 31.8945 35.2427 31.9464 36.252L32.0759 38.8046C32.1427 40.3056 31.2632 41.688 29.8754 42.2633C28.4877 42.8386 26.8883 42.4837 25.8739 41.3755L24.1584 39.4774C23.4812 38.7273 22.5181 38.2993 21.5077 38.2993C20.4973 38.2993 19.5341 38.7273 18.857 39.4774L17.1342 41.3755C16.1213 42.489 14.5191 42.8478 13.1281 42.2727C11.7372 41.6976 10.856 40.3121 10.9249 38.8083L11.0562 36.2556C11.1081 35.2464 10.7299 34.2624 10.0154 33.5478C9.30091 32.8332 8.31709 32.455 7.30799 32.5069L4.75573 32.6363C3.24758 32.7151 1.85309 31.836 1.2735 30.4413C0.693903 29.0465 1.05463 27.4379 2.1743 26.4243L4.07208 24.7104C4.82212 24.0328 5.25016 23.0692 5.25016 22.0584C5.25016 21.0475 4.82212 20.0839 4.07208 19.4063L2.1743 17.6833C1.05839 16.6709 0.698193 15.0668 1.27412 13.6744C1.85004 12.282 3.23807 11.4012 4.74296 11.4731L7.29523 11.6026C8.30627 11.6557 9.29233 11.277 10.0079 10.5606C10.7235 9.84424 11.1012 8.85767 11.047 7.84652L10.9249 5.29206C10.8543 3.78758 11.7349 2.40049 13.1263 1.8244C14.5177 1.24832 16.1209 1.60703 17.1342 2.72118L18.8479 4.61378Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.5 30.485C26.1619 30.485 29.9412 26.7057 29.9412 22.0438C29.9412 17.3819 26.1619 13.6026 21.5 13.6026C16.8381 13.6026 13.0588 17.3819 13.0588 22.0438C13.0588 26.7057 16.8381 30.485 21.5 30.485Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");  
}

.pages-icon {
background-image: url("data:image/svg+xml,%3Csvg width='40' height='51' viewBox='0 0 40 51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2.5' y='3.54684' width='35' height='43.3621' rx='1.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.5 15.936H37.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 46.909V15.936' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

/* Homepage Quickstart Video */

.home-quickstart {
  height: 500px;
  background: #000;
  width: 100%;
  margin-bottom: 0;
}

@media only screen and (max-width: 45em) {
  .home-quickstart {
    height: auto;
  }
}

.quickstart-left {
  background: #000;
  overflow: hidden;
  height: 100%;
  position: relative;
  cursor:pointer;
  transition: ease 0.5s all;
}

@media only screen and (max-width: 45em) {
.quickstart-left {
  height: 300px;
}
}

.quickstart-left:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: #000;
  background-image: url(/hc/theming_assets/01HZPG0J3HBECNDEYZ9ME49CQV);
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.25;
  cursor:pointer;
  transition: ease 0.5s all;
}

.quickstart-left:hover:before {
  opacity: 0.5;
}

.quickstart-left:after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_2' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 149.5 147' style='enable-background:new 0 0 149.5 147;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bopacity:0.6;%7D .st1%7Bfill:%23FED232;%7D%0A%3C/style%3E%3Cg id='Ellipse_1_copy_3_1_' class='st0'%3E%3Cimage style='overflow:visible;opacity:0.5;enable-background:new ;' width='108' height='106' xlink:href='14E2B7E7E29C7F98.png' transform='matrix(1 0 0 1 23.415 19.25)'%3E%3C/image%3E%3Cpath d='M74.4,29c20.7,0,38.7,16.7,38.7,37.4s-18,37.4-38.7,37.4S35.7,87,35.7,66.4S53.8,29,74.4,29z'/%3E%3C/g%3E%3Cpath id='Shape_2_copy_3_1_' class='st1' d='M74.4,29.4c20.4,0,37,16.6,37,37s-16.6,37-37,37s-37-16.6-37-37S54,29.4,74.4,29.4 M74.4,26.4c-22.1,0-40,17.9-40,40s17.9,40,40,40s40-17.9,40-40l0,0C114.4,44.3,96.5,26.4,74.4,26.4z'/%3E%3Cpath class='st1' d='M67.6,51.7l21.8,13.6c0.7,0.4,0.9,1.3,0.4,1.9c-0.1,0.2-0.3,0.3-0.4,0.4L67.6,81.1c-0.7,0.4-1.5,0.2-1.9-0.4 c-0.1-0.2-0.2-0.5-0.2-0.7V52.8c0-0.8,0.6-1.4,1.4-1.4C67.1,51.4,67.3,51.5,67.6,51.7z'/%3E%3C/svg%3E%0A");
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor:pointer;
}

.quickstart-right {
  background: #F2F1F1;
  height: 100%;
  padding: 150px;
}

@media only screen and (max-width: 70em) {
.quickstart-right {
  padding: 50px;
}
}

@media only screen and (max-width: 45em) {
  .quickstart-right {
    background: #F2F1F1;
    height: 300px;
    padding: 50px;
  }
}

.quickstart-right h2 {
  font-size: 62px;
  line-height: 64px;
  font-weight: bold;
  color: #2C2C2C;
}

@media only screen and (max-width: 45em) {
  .quickstart-right h2 {
    font-size: 32px;
    line-height: 34px;
  }
}

.quickstart-right p {
  color: #9E9E9F;
}

/* Homepage Popular Articles */

.home-popular {
  padding: 60px 0 60px 0;
  margin: 0 0;
}

.home-popular-section {
  padding-bottom: 50px;
}

.home-popular .home-popular-block h4 {
  color: #2C2C2C;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 10px !important;
}

.home-popular .home-popular-block h3 {
  color: #2C2C2C;
  font-size: 32px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 20px !important;
}

.home-popular .home-popular-block li {
  margin-bottom: 4px;
}

.home-popular .home-popular-block li a {
  color: #6B6B6B;
}

.home-popular .home-popular-block ul {
}

.home-popular .all-videos-link {
  margin-top: 20px;
}

.home-popular .all-videos-link a {
  font-style: normal; font-weight: bold;
}

/* Homepage Topics */

.home-topics {
  background: #000;
  padding: 100px 0;
  margin: 0 0;
}

.home-topic-block {
  height: 450px;
  background:#2C2C2C;
  border: 10px solid black;
  padding: 150px;
  transition: ease 1s all;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 70em) {
  .home-topic-block { 
    padding: 50px;
  }
}

.home-topic-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;  
  display: block;
  z-index: -1;
  transition: ease 1s all;
}

.home-topic-block div {
  z-index: 1;
}

.home-topic-block a {
  height: 100%;
  width: 100%;
}

.home-topic-block:hover:before {
  transform: scale(1.15);
}

@media only screen and (max-width: 70em) {
  .home-topic-block {
    background-size: cover%;
  }
}

.home-topic-block-1:before {
  background-image: url(/hc/theming_assets/01HZPG04S9THJXNM3N5RNR9A4X);
}

.home-topic-block-2:before {
  background-image: url(/hc/theming_assets/01HZPG05MFW1RVZ8X6AA09WA2R);
}

.home-topic-block-3:before {
  background-image: url(/hc/theming_assets/01HZPG06E320PT61954QA6Y3P7);
}

.home-topic-block-4:before {
  background-image: url(/hc/theming_assets/01HZPG0570B1WJR8NE50YBZWKW);
}

.home-topic-block span {
  font-size: 12px; 
  line-height: 14px;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-family: 'Maison Neue';
}

.home-topic-block:first-child .home-topic-block--subheader:after {
  content: 'Test2';
}

.home-topic-block .home-topic-block--subheader:after {
  content: 'Test';
}

.home-topic-block .home-topic-block--subheader:after {
  content: 'Test';
}

.home-topic-block .home-topic-block--subheader:after {
  content: 'Test';
}

.home-topic-block h3 {
  font-size: 48px;
  line-height: 54px;
  margin: 0 0;
}

.home-topic-block a:hover {
  text-decoration: none;
}

/* Homepage Hacks */

.home-hacks {
  background-color: #FFD300;
  height: 460px;
  overflow: hidden;
  margin-bottom: 0;
}

.home-hacks .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hacks img {
  max-width: 100%;
  width: 400px;
  position: relative;
  margin-top: 20px;
}

.home-hacks h4 {
  font-size: 50px;
  line-height: 48px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -1.67px;
  padding-right: 100px;
  margin-top: -40px;
}

@media only screen and (max-width: 45em) {
  .home-hacks {
     padding-top: 100px;
     height: auto;
     margin-bottom: -50px;
     text-align: center;
  }
  .home-hacks .row {
    flex-direction: column-reverse !important;
  }
  .home-hacks h4 {
    padding-right: 0;
  }
  .home-hacks img {
    bottom: -100px;
    margin-top: -50px;
  }
}

.home-bottom {
  padding: 200px 0 400px 0;
  background-color: #f9f9f9;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: -100px;
}

@media only screen and (max-width: 70em) {
.home-bottom {
  padding: 150px 0 220px 0;
}
}

@media only screen and (max-width: 45em) {
.home-bottom {
  padding: 75px 0px 175px 0;
}
}

.home-bottom h2 {
  font-size: 60px;
  line-height: 62px;
  text-align: left;
  margin-bottom: 26px;
  color: #2C2C2C;
}

@media only screen and (max-width: 70em) {
.home-bottom h2 {
  font-size: 40px;
  line-height: 42px;
}
}

@media only screen and (max-width: 45em) {
.home-bottom h2 {
  font-size: 36px;
  line-height: 37px;
}
}

.home-bottom p {
  color: #9E9E9F;
}

.home-bottom img {
  position: absolute;
  width: 100%;
  max-width: 1300px;
  right: -390px;
  top: 50%;
  transform: translate(0%, -50%);
  transition: ease 1s all;
}

@media only screen and (max-width: 70em) {
  .home-bottom img {
    right: -350px;
  }
}

@media only screen and (max-width: 45em) {
  .home-bottom img {
    display: none;
  }
}

.footer {
  margin-top: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
}

.scroll-down {
    cursor: pointer;
    position: absolute;
    bottom: 75px;
    width: 100%;
    z-index: 105;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.blocks-item {
  flex: 1 0 300px;
  border-radius: 0 !important;
}

.knowledge-base {
  margin: 0 auto;
}

.blocks-item a {
    padding-top: 0.8888888888888888rem;
    padding-bottom: 0.8888888888888888rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

.blocks-item h4 {
  font-size: 0.7777777777777778rem;
  letter-spacing: 0.16666666666666666rem;
  text-transform: uppercase;
}

.article-body img {box-shadow: 18px 18px 18px rgba(0,0,0,0.05); margin-bottom: 40px}

.article-body a {text-decoration: underline; font-weight: bold;}

.article-title {
  margin-bottom: 10px;
}

/* Video modal */

@keyframes modal-video{from{opacity:0}to{opacity:1}}@keyframes modal-video-inner{from{transform:translate(0, 100px)}to{transform:translate(0, 0)}}.modal-video{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.85);z-index:1000000;cursor:pointer;opacity:1;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video;-webkit-transition:opacity .3s ease-out;-moz-transition:opacity .3s ease-out;-ms-transition:opacity .3s ease-out;-o-transition:opacity .3s ease-out;transition:opacity .3s ease-out}.modal-video-close{opacity:0}.modal-video-close .modal-video-movie-wrap{-webkit-transform:translate(0, 100px);-moz-transform:translate(0, 100px);-ms-transform:translate(0, 100px);-o-transform:translate(0, 100px);transform:translate(0, 100px)}.modal-video-body{max-width:940px;width:100%;height:100%;margin:0 auto;display:table}.modal-video-inner{display:table-cell;vertical-align:middle;width:100%;height:100%}.modal-video-movie-wrap{width:100%;height:0;position:relative;padding-bottom:56.25%;background-color:#333;animation-timing-function:ease-out;animation-duration:.3s;animation-name:modal-video-inner;-webkit-transform:translate(0, 0);-moz-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-ms-transition:-ms-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal-video-movie-wrap iframe{position:absolute;top:0;left:0;width:100%;height:100%}.modal-video-close-btn{position:absolute;z-index:2;top:-35px;right:-35px;display:inline-block;width:35px;height:35px;overflow:hidden;border:none;background:transparent}.modal-video-close-btn:before{transform:rotate(45deg)}.modal-video-close-btn:after{transform:rotate(-45deg)}.modal-video-close-btn:before,.modal-video-close-btn:after{content:'';position:absolute;height:2px;width:100%;top:50%;left:0;margin-top:-1px;background:#fff;border-radius:5px;margin-top:-6px}

/* Navbar Hide */


/* Submit Page */

.submit-page-container {
  display: flex;
  justify-content: space-between;
}

.request-form {
  margin-bottom: 100px;
}

@media only screen and (max-width: 70em) {
  .submit-page-container {
    display: block;
  }
}

.faq-sidebar {
  width: 300px;
}

@media only screen and (max-width: 70em) {
  .faq-sidebar {
    width: 100%;
  }
  .popular-block--list {
    float: left;
    width: 50%;
  }
  .popular-block--list:after {
    content: '';
    float: none;
    clear: both;
  }
}

@media only screen and (max-width: 45em) {
  .faq-sidebar {
    width: 100%;
  }
  .popular-block--list {
    float: none;
    width: 100%;
    clear: both;
  }
}

@media only screen and (max-width: 70em) {
  .submit-page-container .form {
    margin: 0 auto;
  }
  .submit-page-header {
    text-align: center;
  }
}

/* Popular Block */

.popular-block h3 {
  color: #2C2C2C;
  font-size: 32px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 20px !important;
}

.popular-block li {
  margin-bottom: 4px;
}

.popular-block li a {
  color: #6B6B6B;
}

.popular-block ul {
  margin-bottom: 50px;
}

.popular-block .all-videos-link {
  margin-top: 20px;
}

.popular-block .all-videos-link a {
  font-style: normal; font-weight: bold;
}

.popular-block img {
  width: 100%;
  max-width: 100%;
}

@media only screen and (max-width: 70em) {
  .popular-block img {
    max-width: 400px;
    margin-top: -50px;
  }
}

@media only screen and (max-width: 45em) {
  .popular-block img {
    margin-top: 0px;
  }
}

.no-margin-bottom {margin-bottom: 0 !important;}

/* Hide Downvotes */
.article-vote-label {display: none !important;}
.display-for-support-staff.article-vote-label {display: block !important;}

.search-result-votes {display: none !important;}

/* 2025 updates */
	html {
		background: #000;
	}
	.home-hero {
		background-color: #0e0e0e;
    background-image: url(/hc/theming_assets/01K5V6K5EH6GXMC15KEXB8Z3WW);
		background-size: cover;
	}
	.home-hero:before,
	.home-hero:after {
		display: none;
	}
	.hero-inner {
		max-width: 860px
	}
	.big-header {
		color: white;
		font-size: 86px !important;
		line-height: 96px !important;
	}
	.search input[type="search"] {
		background-color: rgba(255,255,255,.1) !important;
		border-radius: 8px !important;
		border: 1px solid rgba(255,255,255,.18) !important;
		height: auto !important;
		padding: 19px 50px;
		font-weight: 400;
		font-size: 16px;
		color: white !important;
		backdrop-filter: blur(20px);
	}
	.search input[type="search"]:focus {
		border: 1px solid rgba(255,255,255,.35) !important;
	}
	.search input[type="search"]::placeholder {
		color: #777;
		font-weight: 400;
		font-size: 16px
	}
	.search::before {
		content: '';
		background-color: transparent;
		background-image: url(/hc/theming_assets/01K5V4PHFSW0VDDZKFMH427A1Y);
		width: 16px;
		height: 16px;
		left: 26px;
		z-index: 100;
	}
	.home-hero--logo {
		width: 220px;
		background-image: url(/hc/theming_assets/01K5V5K4364QK1D1WRGE3144N6);
	}
	.quickstart-right {
		background: #1f1f1f;
	}
	.quickstart-right h2 {
		color: white;
	}
	.quickstart-right p {
		color: #9E9E9F;
		font-weight: 400;
	}
  .hc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
  }
.home-popular {
  background-color: #161616;
}
  .home-category {
    background: #0f0f0f;
      border-radius: 12px;
      padding: 26px;
  }
  .home-category h4 {
    font-size: 24px;
      font-weight: 500;
      margin-bottom: 30px;
  }
.home-category sup {
  color: #777;
  padding-right: 6px;
}
.old-school {
	border: 1px solid #222;
    margin-top: 26px;
    padding: 26px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.old-school p {
		margin: 0px;
    font-size: 15px;
    line-height: 28px;
}
.old-school p a {
    color: #999;
}
.old-school p a span {
	font-weight: 500;
    color: #ddd;
}
  .home-category p {
    font-size: 14px;
      line-height: 24px;
      width: 400px;
      margin-bottom: 0px;
      color: #666;
      font-weight: 450;
  }
	.home-popular {
		background: #141414;
		padding: 80px 0 60px 0;
	}
	.home-popular .title-block h3,
	.page-header h1 {
		letter-spacing: -.5px;
		font-size: 46px;
		line-height: 50px;
		color: #ffffff;
		margin-bottom: 0;
		font-weight: 500;
		text-transform: none;
	}
	.page-header h1 {
		margin-bottom: 80px;
	}
	.section-container .page-header h1 {
		margin-bottom: 50px
	}
	.home-hacks h4 {
		color: black;
	}
	.btn-outline {
		border-radius: 6px;
		padding: 12px 26px;
		font-family: 'Inter';
		font-weight: 550;
		font-size: 12px;
		letter-spacing: 2px
	}
	.home-popular .title-block h3 span {
		opacity: .5;
	}
	.home-popular .home-popular-block h4,
	.category-content .section h3 a {
		color: white;
		font-weight: 400;
		margin-bottom: 26px !important;
	}
	.category-content .section h3 {
		font-size: 28px;
    	line-height: 28px;
		margin-bottom: 26px !important;
	}
	.home-popular .home-popular-block h4 a {
		color: white;
		transition: all .2s ease;
	}
	.home-popular .home-popular-block li,
	.article-list li {
		margin-left: 8px;
		margin-bottom: 10px;
		position: relative;
		line-height: 28px;
	}
	.article-list li {
		margin-left: 0px;
	}
	.home-popular .home-popular-block li a,
	.article-list li a{
		color: #888;
		font-weight: 400;
		font-size: 17px;
		margin-left: 2px;
		display: inline-block;
	}
	.home-popular .home-popular-block li a:hover,
	.article-list li a:hover {
		color: white;
		text-decoration: none;
	}
  .section-article-count {
      padding-left: 8px;
      opacity: .5;
  }
	.home-popular .home-popular-block li sup,
	.article-list li sup {
		color: #eee;
		width: 24px;
		height: 24px;
		line-height: 24px;
		position: absolute;
		font-size: 11px;
		font-weight: 450;
		top: -4px;
		background: #222222;
		border-radius: 50%;
		margin-right: 10px;
		text-align: center;
		top: 1px;
	}
	.article-list,
  .section-list {
		padding-bottom: 4px;
    background: #0d0d0d;
    border-radius: 12px;
	}
	::marker {
		color: #444;
	}
	.article-list-item,
	.section-list-item {
		margin: 0px !important;
		border: 0px;
		padding: 16px 26px;
		font-size: 17px;
    border-bottom: 1px solid #2a2a2a;
	}
.article-list li a {
  color: #999;
}
	.article-list-item:last-child,
	.section-list-item:last-child {
		border: none;
	}
	/* category view */
	.simple-header {
		background: black;
		padding: 50px 0px;
	}
	.simple-header img {
		max-width: 220px
	}
	main[role="main"] {
		background: #141414;
		padding-bottom: 80px
	}
	.container-divider {
		border-color: #0e0e0e;
		display: none;
	}
  .category-section {
    flex: 0 0 100% !important;
  }
	.sub-nav {
		background: #1a1a1a;
		padding: 0px;
		margin-bottom: 80px
	}
	.sub-nav .search input[type="search"] {
		background-color: rgba(255,255,255,.03) !important;
		border-radius: 0px !important;
		border: 0px !important;
		height: 50px !important;
		padding: 0px 40px;
		font-weight: 400;
		font-size: 16px;
		color: white !important;
		backdrop-filter: blur(20px);
	}
	.sub-nav .search::before {
		left: 15px;
		z-index: 100;
	}
	.breadcrumbs {
		margin-left: 30px;
	}
  .search-result-breadcrumbs {
    margin-left: 0px !important;
  }
	.breadcrumbs li {
		color: #aaa;
		font-weight: 450;
	}
	.breadcrumbs li a {
		color: #bbb !important;
	}
	.breadcrumbs li a:hover {
		color: #fff !important;
		text-decoration: none;
	}
	.breadcrumbs li + li::before {
		color: #777;
		margin: 0 5px;
	}
	.breadcrumbs li[title="Semplice"] a {
		color: white !important;
		font-weight: 500;
	}
	.category-container {
		justify-content: center;
	}
	.section-container {
		justify-content: flex-start;
	}
	.category-content {
		flex: 0 0 100%;
	}
	.category-content .section-tree {
		justify-content: flex-start;
		gap: 40px;
	}
	.category-content .section {
		margin-bottom: 20px
	}
	.section-tree .see-all-articles {
		color: #bbb;
		margin-left: 0px;
		margin-top: -5px;
		background: #1a1a1a;
		display: inline-block;
		padding: 10px 20px;
		font-size: 13px;
		border-radius: 8px;
		margin-top: 20px;
		letter-spacing: .1px
	}
	.section-tree .see-all-articles:hover {
		background: #333333;
		text-decoration: none;
	}
	footer.footer {
		background: #000;
		padding: 20px 0px;
	}
	footer.footer p {
		color: #999 !important;
	}
	footer.footer a:hover {
		color: #ddd !important;
		text-decoration: none !important;
	}
	/* article view */
	.article-container {
		justify-content: center;
	}
	.article {
		max-width: 74%;
	}
	.article-header {
		border-bottom: 1px solid #333;
		padding-bottom: 0px;
		margin-bottom: 26px !important;
	}
	.article-content {
		margin-top: 0px;
	}
	.article-header h1 {
		font-size: 60px !important;
		line-height: 70px !important;
		color: #ffffff;
		font-weight: 600;
		text-wrap: balance;
		letter-spacing: -.4px !important;
		margin-bottom: 16px !important;
	}
	.meta-data {
		font-family: Georgia;
		font-style: italic;
		font-size: 14px;
		color: #777;
	}
	.article p,
	.article ul {
		line-height: 1.8;
		font-size: 16px;
		margin: 0px;
		margin-bottom: 26px;
	}
	.article ul {
		margin: 0px;
		margin-bottom: 26px;
	}
	.article-content h1,
	.article-content h2,
	.article-content h3,
	.article-content h4,
	.article-content h5,
	.article-content h6 {
		font-weight: 550;
		color: #eee;
		margin: 0px;
		margin-bottom: 26px;
		letter-spacing: 0px !important;
	}
	.article .article-content h1 {
		font-size: 34px !important;
	}
	.article .article-content h2 {
		font-size: 26px !important;
	}
	.article p a,
	.article .wysiwyg-underline, 
	.article-body a {
		font-weight: 400;
		text-decoration-color: #777;
		text-underline-offset: 2px
	}
  .article p.notice {
      border: 1px solid #ff6b0087;
      border-radius: 8px;
      padding: 10px 16px;
      font-size: 14px;
      color: #cb9269;
      background-color: #ff6b0017;
  }
	.article hr {
		margin: 0px;
		margin-bottom: 26px;
		border: 1px solid #2f2f2f;
	}
	.article table {
		font-size: 16px;
	}
	.wysiwyg-table {
		border-radius: 10px;
		margin-bottom: 26px !important;
		background: #1a1a1a;
		padding: 10px 16px;
	}
	.article table tr td {
		padding: 8px;
		border-bottom: 1px solid #2f2f2f !important;
	}
	.article table tr:last-child td {
		border: none !important;
	}
	.article ::marker {
		color: #666;
	}
	.article-content ol {
    list-style: none;
    margin: 0px 0px 26px 20px;
		counter-reset: list-counter;
	}
	.article-content ol li {
		counter-increment: list-counter;
		position: relative;
		line-height: 30px
	}
	.article-content ol li::before {
		content: counter(list-counter);
		position: relative;
		color: #eee;
		width: 24px;
		height: 24px;
		line-height: 24px;
		position: absolute;
		font-size: 11px;
		font-weight: 450;
		top: -4px;
		background: #222222;
		border-radius: 50%;
		margin-right: 10px;
		text-align: center;
		top: 4px;
		left: -34px;
	}
	.article-content p strong,
	.article-content li strong {
		font-weight: 600;
		color: #ccc;
	}
	.article footer .article-votes {
		border-radius: 10px;
		margin-bottom: 26px !important;
		background: #1a1a1a;
	}
	.article .article-footer {
		display: none;
	}
	.article .article-votes {
		border: 0px;
		padding: 26px !important;
	}
	.article .article-vote {
		background: transparent;
		border: 1px solid #3a3a3a;
		color: #888;
		margin: 10px 5px;
		min-width: 90px;
		width: auto;
		border-radius: 6px;
	}
	.article .article-vote:hover {
		background: #222;
	}
	.article .article-vote::before {
		margin-right: 6px;
		transition: all .15s ease;
	}
	.article .article-vote:hover::before {
		color: #bbb;
	}
	.article .article-vote::after {
		color: #bbb;
	}
	.article-relatives {
		border: 0px;
	}
	.related-articles-title {
		font-size: 32px !important;
		font-weight: 500;
		color: white;
		border-bottom: 1px solid #2f2f2f;
		padding-bottom: 26px
	}
	.related-articles ul {
		list-style: disc;
		margin-left: 26px;
	}
	.related-articles ul li {
		margin-bottom: 4px
	}
	.related-articles ul li a {
		color: #888;
		text-decoration: none;
	}
	.related-articles ul li a:hover {
		color: #ddd;
	}
	.article-body img {
  	margin: 0px;
	}
.article-return-to-top {
  display: none !important;
}
/* search results */
.search-result h3 {
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: 500;
}
.search-results-list > li {
  padding: 30px 0px;
}
.search-results-list > li:first-child {
  border-top: 1px solid #444;
}
.pagination li:hover:not(.pagination-current) {
  background-color: #444;
}
.pagination li a:hover:not(.pagination-current) {
  color: #ffffff !important;
}
/* video tutorialss */
.video-tutorials.home-popular {
  background: #000000;
  padding: 80px 0 80px 0
}
.vt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.smp-tutorial {
	padding: 0px 8px;
	transition: all .3s ease-out;
	cursor: pointer;
	.inner {
		background-color: #1B1B1B;
		transition: all .3s ease-out;
		border-radius: 8px;
		padding: 16px;
		padding-bottom: 10px;
    a {
      text-decoration: none !important;
    }
		p.title {
			font-size: 24px;
			line-height: 32px;
			letter-spacing: -.1px;
			font-weight: 350;
			color: white;
			transition: all .3s ease-out;
			margin: 10px 0px 60px 16px;
		}
		.tutorial-image {
			width: 100%;
			display: flex;
			justify-content: center;
			position: relative;
      margin-bottom: 40px;
			.tutorial-play {
				position: absolute;
				top: 50%;
				translate: 0px -70%;
				font-size: 0px;
				opacity: 0;
				transition: all .3s ease-out;
			}
		}
		.dashboard-tutorial-svg,
		.dashboard-tutorial-svg-cn {
			transition: all .3s ease-out;
		}
	}
}
.smp-tutorial:hover {
	transition: all .15s ease-out;
	scale: 1.05;
	.inner {
		p.title {
			color: #000000;
			transition: all .15s ease-out;
		}
		background-color: #ffd300;
		transition: all .15s ease-out;
		.dashboard-tutorial-svg {
			transition: all .15s ease-out;
			fill: rgba(#0E0E0E, .15);
		}
		.dashboard-tutorial-svg-cn {
			transition: all .15s ease-out;
			fill: rgba(#0E0E0E, .15);
		}
		.tutorial-image .tutorial-play {
			transition: all .15s ease-out;
			translate: 0px -50%;
			opacity: 1;
		}
	}
}
/* code */
.article-body pre {
    background: #82828208;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    line-height: 22px;
    overflow: auto;
    white-space: pre;
}
.article-body code {
    border: none;
    border-radius: 3px;
    padding: 0px;
    margin: 0px;
    color: #beab97;
}
/* responsive video */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 26px;
}
/* search */
zd-autocomplete {
  background: #222222;
  border-radius: 12px;
  overflow: hidden;
}
zd-autocomplete-header {
	background: #1a1a1a;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
}
zd-autocomplete-option {
  color: #ddd;
  padding: 16px 18px;
  border: 0px !important;
  border-bottom: 1px solid #404040 !important;
  background: transparent !important;
  box-shadow: none !important;
}
zd-autocomplete-option:before,
zd-autocomplete-option:after,
zd-autocomplete-breadcrumbs-multibrand:before,
zd-autocomplete-breadcrumbs-multibrand:after {
  display: none !important;
}
zd-autocomplete-breadcrumbs-multibrand {
  display: block;
  color: #888;
}
zd-autocomplete-option:hover {
  background: #2a2a2a !important;
}
	/* request send */
.submit-page-header {
  font-weight: 500;
  color: #ffffff;
}
	.form-field input[type="text"],
	textarea,
  .form-field .nesty-input {
    border: 1px solid #444;
    border-radius: 6px;
    background: #222;
    padding: 14px 16px;
    width: 100%;
    color: #dddddd;
}
.form-field .nesty-input {
  line-height: 9px;
}
input[type="submit"] {
  	background: #ffd300;
    border-radius: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 6px;
}
input[type="submit"]:hover {
  	background: #cfab00 !important;
    color: black;
}
	/** mobile **/
	@media only screen and (max-width: 70em) {
		.home-popular {
			padding: 60px 0 40px 0;
		}
		h1.big-header {
			font-size: 74px !important;
			line-height: 84px !important;
		}
		.home-popular .title-block h3, .page-header h1 {
			font-size: 42px;
    	line-height: 46px;
		}
		.article {
			max-width: 86%;
		}
		.sub-nav {
			margin-bottom: 70px;
		}
    .section .container {
      width: 100%;
      padding: 0px 30px;
    }
    .col-12 {
      width: 100%;
      margin: 0px !important;
    }
    .vt-inner {
      margin-bottom: 16px !important;
    }
    .home-category p {
      width: 100%;
      font-size: 13px;
      line-height: 20px;
    }
    .home-top-blocks {
      padding: 50px 0px;
    }

    .home-top-blocks--container {
      gap: 30px;
    }

    .home-top-block {
      padding: 30px;
    }

    .home-top-block h2,
    .home-top-block a {
      font-size: 20px;
    }
	}
	@media only screen and (max-width: 56em) {
    .video-tutorials {
      display: none;
    }
		.home-popular {
			padding: 60px 0 40px 0;
		}
		h1.big-header {
			font-size: 58px !important;
			line-height: 68px !important;
		}
		.home-popular .title-block h3, .page-header h1 {
			font-size: 36px;
    	line-height: 40px;
		}
		.article {
			max-width: 100%;
		}
		.sub-nav {
			margin-bottom: 30px;
		}
		.article-header h1 {
			font-size: 46px !important;
			line-height: 58px !important;
			color: #ffffff;
			font-weight: 600;
			text-wrap: balance;
			letter-spacing: -.4px !important;
			margin-bottom: 16px !important;
		}
		.breadcrumbs {
			margin: 10px 18px
		}
    .home-category {
      padding: 20px;
    }
    .home-category h4 {
      font-size: 18px;
    }
    .home-category p {
      width: 100%;
      font-size: 13px;
      line-height: 20px;
    }
    .home-top-blocks {
      padding: 40px 0px;
    }

    .home-top-blocks--container {
      gap: 20px;
    }

    .home-top-block {
      padding: 20px;
    }

    .home-top-block h2,
    .home-top-block a {
      font-size: 17px;
    }
	}
	@media only screen and (max-width: 40em) {
    .video-tutorials {
      display: none;
    }
    .hc-grid {
      grid-template-columns: 1fr;
    }
		.home-popular {
			padding: 30px 0 20px 0;
		}
		h1.big-header {
			font-size: 38px !important;
			line-height: 48px !important;
		}
		.home-popular .title-block h3, .page-header h1 {
			font-size: 28px;
    	line-height: 38px;
		}
    .sub-headline {
      font-size: 14px;
    }
		.article {
			max-width: 100%;
		}
		.sub-nav {
			margin-bottom: 30px;
		}
    .article-header {
      margin-top: 0px !important;
    }
		.article-header h1 {
			font-size: 34px !important;
			line-height: 44px !important;
			color: #ffffff;
			font-weight: 600;
			text-wrap: balance;
			letter-spacing: -.4px !important;
			margin-bottom: 16px !important;
		}
		.breadcrumbs {
			margin: 10px 18px
		}
    .home-category {
      padding: 20px;
    }
    .home-category h4 {
      font-size: 18px;
    }
    .home-category p {
      width: 100%;
      font-size: 13px;
      line-height: 20px;
    }
    .home-top-blocks {
      padding: 30px 0px;
    }

    .home-top-blocks--container {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .home-top-block {
      padding: 16px;
    }

    .home-top-block h2,
    .home-top-block a {
      font-size: 16px;
    }
    .home-top-block--icon {
      margin: 0 auto 10px auto
    }
	}