@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #21242C;
  font-family: "Lato", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.33;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: auto;
  }
}
main > p {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

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

h4 {
  font-size: 16px;
}

a {
  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 0.12s ease-in-out;
}

input:focus {
  border: 1px solid #1865F2;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/hc/theming_assets/01HZH0C4RQ5CXF7X8GENWA29A3") 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 #1865F2;
}

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

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

textarea:focus {
  border: 1px solid #1865F2;
}

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

/* @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::after {
  color: inherit;
}
.dropdown-toggle {
  color: #000;
}
/***** Buttons *****/
@media (min-width: 768px) {
  .button,
  [role="button"] {
    width: auto;
  }
}

.button::after,
[role="button"]::after {
  color: #1865F2;
}

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

.button-large,
input[type="submit"] {
  background-color: #1865F2;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  min-width: 130px;
  min-height: 40px;
  padding: 0px 20px;
  position: relative;
}

@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 {
  text-decoration: none;
}

.button-large:active,
input[type="submit"]:active {
  background-color: #1b50b3;
}

.button-large::before,
input[type="submit"]::before {
  box-shadow: inset 0 0 0 2px #1865F2;
  border-radius: 7px;
  content: "";
  display: none;
  position: absolute;
  left: -3px;
  top: -3px;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
}

.button-large:hover::before,
.button-large:active::before,
.button-large:focus::before,
input[type="submit"]:hover::before,
input[type="submit"]:active::before,
input[type="submit"]:focus::before {
  display: block;
}

.button-large:active::before,
input[type="submit"]:active::before {
  box-shadow: inset 0 0 0 2px #1b50b3;
}

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

.button-secondary {
  color: rgba(77,84,102,0.64);
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  color: rgba(33, 36, 44, 0.64);
  border: 1px solid #ddd;
  background-color: darken($color_5, 3%);
}

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

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

.table th,
.table th a {
  color: rgba(33, 36, 44, 0.64);
  font-size: 14px;
  font-weight: 400;
  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-required-indicator {
  color: #d92916;
}

.form-field {
  margin-bottom: 40px;
}

.form-field label {
  display: block;
  font-size: 14px;
  color: #21242C;
  margin-bottom: 8px;
}

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

.form-field input:focus {
  border: 1px solid #1865F2;
}

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

.form-field input[type="text"]:focus {
  border: 1px solid #1865F2;
}

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

.form-field input[type="checkbox"]:focus {
  outline: 1px solid #1865F2;
  outline-offset: 0px;
}

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

.form-field .nesty-input:focus {
  border: 1px solid #1865F2;
  text-decoration: none;
}

.form-field textarea {
  border-color: #909296;
  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 p {
  color: rgba(33, 36, 44, 0.64);
  font-size: 12px;
  margin: 8px 0;
}

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

.form footer {
  text-align: right;
  margin-bottom: 40px;
}

.form footer a {
  color: rgba(77,84,102,0.64);
  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($color_4, 20%);
}

/* SECTION: HEADER
   ----------------------------- */
.header {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(33, 36, 44, 0.16);
  height: 60px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.header__content {
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  position: relative;
}

.header__nav {
  height: 100%;
  display: none;
}

.header__nav-section {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__menu-mobile {
  display: none;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header__menu-mobile {
    display: none;
  }
  .header__nav {
    display: flex;
  }
}

.header__menu-mobile.active {
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(33, 36, 44, 0.08);
  border-top: solid 1px rgba(33, 36, 44, 0.16);
  display: block;
  position: absolute;
  right: 0px;
  left: 0px;
  top: 60px;
  z-index: 1;
}

.header__menu-mobile > a {
  color: rgba(33, 36, 44, 0.64);
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding: 16px;
  line-height: 20px;
}

.header__menu-mobile > a.active {
  color: #1865F2;
}

.header__menu-mobile #user {
  display: none;
}

.header .header__menu-mobile .login {
  display: flex;
  color: rgba(33, 36, 44, 0.64);
  line-height: 20px;
}

.header__nav-link {
  color: rgba(33, 36, 44, 0.64);
  align-items: center;
  display: flex;
  font-weight: 700;
  height: 100%;
  line-height: 20px;
  padding: 0 16px;
  position: relative;
}

.header__nav-link.active {
  color: #1865F2;
}

.header__nav-link.active:hover {
  text-decoration: none;
}

.header__nav-link.active::after {
  background-color: #1865F2;
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  bottom: 0;
  height: 4px;
  width: calc(100% - 32px);
}

.header__report-link {
  display: none;
  color: #1865F2;
}

@media (min-width: 768px) {
  .header__report-link {
    display: flex;
  }
}

.header .login {
  border: none;
  display: none;
  height: 100%;
  font-size: 16px;
  color: #1865F2;
  font-weight: 700;
  align-items: center;
}

.header .login:hover,
.header .login:focus {
  background-color: transparent;
  text-decoration: underline;
}

.header__nav-section .login {
  display: none;
}

@media (min-width: 768px) {
  .header__nav-section .login {
    display: flex;
    margin: 0 16px;
    line-height: 20px;
  }
}

.header__menu-button {
  align-self: flex-end;
  background: url(/hc/theming_assets/01HZH0CRRWFJ3CV166XG5PHT2V) no-repeat center;
  border: none;
  font-size: 0;
  height: 64px;
  margin-left: auto;
  width: 64px;
}

.header__menu-button[aria-expanded="true"] {
  background: url(/hc/theming_assets/01HZH0CTN5P8TA3GCYVX42PTHP) no-repeat center;
}

.header__menu-button:hover {
  background-color: transparent;
  border: none;
}

@media (min-width: 768px) {
  .header__menu-button {
    display: none;
  }
}

/* Logo */
.header__logo {
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logo img {
  height: 28px;
  width: 176px;
}

@media (min-width: 768px) {
  .header__logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/***** 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: $color_4;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

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

.user-info > [role="button"]::after {
  color: #1865F2;
  /*   margin-top: 4px; */
  font-size: 16px;
}

#user {
  padding: 0 16px;
  height: 100%;
}

#user .btn {
  height: 100%;
  display: flex;
  align-items: center;
}

#user #user-name {
  display: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1865F2;
}

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

#user #user-name:active {
  color: #1b50b3;
}

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

#user-menu > a {
  font-size: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

#user-dropdown {
  border-color: rgba(33, 36, 44, 0.16);
  border-radius: 4px;
  box-shadow: 0px 8px 8px 0px rgba(33, 36, 44, 0.1);
  padding: 4px 0;
  margin-top: -8px;
}

#user-dropdown [role="menuitem"]:hover {
  background-color: #1865F2;
  color: #ffffff;
}

#user-dropdown::before,
#user-dropdown::after {
  display: none;
}

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

/***** User avatar *****/
.with-image > .user-avatar {
  display: none;
}

.avatar {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
}

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

.avatar .icon-agent::before {
  background: url(/hc/theming_assets/01HZH0CFD40MJZW87RDFWM6HTS) no-repeat;
  background-size: cover;
  filter: drop-shadow(0 1px 3px rgba(33, 36, 44, 0.08));
  bottom: 0;
  content: "";
  position: absolute;
  right: 0;
  height: 20px;
  width: 20px;
}

/* SECTION: FOOTER
   ----------------------------- */
.footer {
  background-color: #0a2a66;
  color: #8295ba;
  padding: 36px 0 8px;
  position: relative;
}

@media (min-width: 768px) {
  .footer {
    padding: 48px 20px 8px;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
  }
}

.footer__first-section {
  /*   flex: 2; */
  text-align: center;
  margin: 0;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__first-section {
    text-align: left;
    margin: 0 40px 40px 0;
    width: 40%;
  }
}

.footer__description {
  font-size: 20px;
  line-height: 30px;
  margin: 0px;
  max-width: 440px;
  color: #8295ba;
}

.footer__description p {
  margin: 0;
}

.footer__description p:first-child {
  margin-bottom: 1em;
}

.footer__second-section {
  flex: 1;
  align-self: stretch;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer__second-section {
    padding: 0;
  }
}

.footer__links {
  columns: 2;
  padding: 0;
}

@media (min-width: 768px) {
  .footer__links {
    columns: 3;
  }
}

.footer__links ul {
  padding: 0;
}

.footer__links > li {
  break-inside: avoid-column;
  padding-bottom: 32px;
}

.footer__links h3 {
  font-size: 12px;
  line-height: 14px;
  min-height: 32px;
  margin: 0;
}

.footer__links ul li {
  margin: 0;
  padding-right: 8px;
  min-height: 16px;
  margin-bottom: 16px;
}

.footer a {
  color: #ffffff;
}

.footer-language-selector {
  color: #ffffff;
}

.footer__language-select {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 12px;
}

@media (min-width: 768px) {
  .footer__language-select {
    justify-content: flex-start;
    padding: 0 20px;
  }
}

.footer__language-text {
  padding: 0 8px 0 0;
}

.footer__bottom {
  padding: 0;
  margin: 20px 20px 0;
  justify-content: space-between;
  text-align: center;
}

.footer__bottom-inner {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

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

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom-menu {
  padding: 20px 0 0;
}

.footer__bottom-element {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
}

@media (min-width: 768px) {
  .footer__bottom-menu {
    display: flex;
    padding: 0;
  }

  .footer__bottom-element {
    margin-right: 16px;
  }
}

.footer-language-selector {
  color: rgba(77,84,102,0.64);
  display: inline-block;
  font-weight: 300;
}

.footer__bottom-social-media {
  display: flex;
  margin-top: 20px;
}

.footer__bottom-social-media a img {
  height: 24px;
  width: 24px;
  margin: 0 4px;
}

@media (min-width: 768px) {
  .footer__bottom-social-media {
    margin: 0;
    padding: 8px 0;
  }

  .footer__bottom-social-media a img {
    margin: 0 0 0 8px;
  }
}

/*Language dropdown */
.language-selector > .dropdown-menu {
  background-color: #021e39;
}
.language-selector .dropdown-menu [role="menuitem"]:hover {
  background-color: #021e39;
}

@media (min-width: 768px) {
  .bottom {
    display: flex;
    text-align: left;
  }
  .bottom-menu {
    display: flex;
  }
}

.language-text {
  display: inline-block;
  margin: 0px 5px 10px 0px;
}
.language-selector {
  background-color: #021e39;
  padding: 5px;
  font-size: 11px;
}
.dropdown-menu {
  background-color: #021e39;
}
.title {
  font-weight: 600;
  margin-left: 10px;
  font-size: 12px;
}
.subtitle {
  margin-top: 35px;
}
.element {
  margin: 15px 10px 0px;
  font-size: 12px;
}
.langauge-select {
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
}
.community a:hover {
  color: rgb(255, 255, 255);
}
.community-description > a:hover {
  text-decoration: none;
}
.community-button {
  color: rgba(255, 255, 255, 0.902);
  font-size: 18px;
  border: 1px solid #fff;
  border-radius: 4px;
  margin: 35px auto 0;
  padding: 10px;
  max-width: 95%;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  transition: background-color 0.6s ease-out;
}

.community-button:hover {
  background-color: #fff;
  color: #558eb4;
  text-decoration: none;
}

@media (min-width: 768px) {
  .first {
    text-align: left;
    position: relative;
    margin: 0;
  }
  .second {
    display: flex;
  }
  .second-mobile {
    display: none;
  }
  .langauge-select {
    position: absolute;
    bottom: 0;
    right: auto;
  }
}

/* SECTION: BREADCRUMBS
   ----------------------------- */
.breadcrumbs {
  margin: 64px 0 0 0;
  padding: 0;
  max-width: 580px;
}

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

.breadcrumbs li {
  display: inline;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 12px 4px 0;
  vertical-align: middle;
}

/* Hide the last breadcrumb (which is the current page) */
.breadcrumbs li:last-child {
  display: none;
}

.breadcrumbs li + li::before {
  background: url(/hc/theming_assets/01HZH0CF8NFKXFTEGDRDAFB84N) no-repeat;
  background-size: 16px 16px;
  content: "";
  display: inline-block;
  margin: 0 12px 0 0;
  height: 16px;
  width: 16px;
  vertical-align: middle;
}

.breadcrumbs li a {
  color: rgba(33, 36, 44, 0.64);
  font-weight: 400;
  font-size: 16px;
}

/* SECTION: SEARCH
   ----------------------------- */
.search-title {
  color: #21242C;
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .search-title {
    display: block;
    font-size: 44px;
    line-height: 48px;
  }
}

.search {
  position: relative;
}

.search::before {
  top: 50%;
  transform: translateY(-50%);
  content: "";
  color: rgba(33, 36, 44, 0.64);
  position: absolute;
  right: 24px;
  height: 24px;
  width: 24px;
  background: url(/hc/theming_assets/01HZH0C5C4MZHPJBJJV0S8CZ3T) no-repeat;
}

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

.hero-inner .search input[type="search"] {
  box-shadow: 0 1px 0 0 rgba(33, 36, 44, 0.16);
}

.search input[type="search"] {
  border: none;
  -webkit-appearance: none;
  border-radius: 4px;
  box-sizing: border-box;
  height: 64px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #21242C;
  padding: 0 24px;
}

.search input[type="search"]::-webkit-input-placeholder {
  font-size: 18px;
  color: rgba(33, 36, 44, 0.64);
  line-height: 20px;
  text-align: left;
  font-weight: 400;
}

.search input[type="search"]:-moz-placeholder {
  /* Firefox 18- */
  font-size: 18px;
  color: rgba(33, 36, 44, 0.64);
  line-height: 20px;
  text-align: left;
  font-weight: 400;
  -moz-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -ms-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
}

.search input[type="search"]::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 18px;
  color: rgba(33, 36, 44, 0.64);
  text-align: left;
  font-weight: 400;
  -moz-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -ms-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
}

.search input[type="search"]:-ms-input-placeholder {
  font-size: 18px;
  color: rgba(33, 36, 44, 0.64);
  line-height: 20px;
  text-align: left;
  font-weight: 400;
  -moz-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
  -ms-transform: matrix(1, 0, 0, 1.00006975933031, 0, 0);
}

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

/***** Hero component *****/
.hero {
  background-size: cover;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(/hc/theming_assets/01HZH0CNCXNTCK1W8K9X9GGKK8);
  min-height: 320px;
  height: 100%;
  height: 50vh;
  max-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.webp .hero {
  background-image: url(/hc/theming_assets/01HZH0CR1PMY3RD8M9NNTTSE3Q);
}

.hero-bg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  display: block;
  position: absolute;
}

.hero-bg::before {
  background-image: url(/hc/theming_assets/01HZH0CT1TQBHRGRP2Z2GD3Z7Y);
  background-size: 330px 200px;
  bottom: 100px;
  left: -160px;
  height: 200px;
  width: 330px;
}

.webp .hero-bg::before {
  background-image: url(/hc/theming_assets/01HZH0CSW4CZC9Q99EQFMQPA6J);
}

.hero-bg::after {
  background-image: url(/hc/theming_assets/01HZH0CJWEC3CYGHHDBMKXW672);
  background-size: 325px 175px;
  top: -50px;
  right: -90px;
  height: 175px;
  width: 325px;
  transform: rotate(-25deg);
}

.webp .hero-bg::after {
  background-image: url(/hc/theming_assets/01HZH0CDVJ762TQ2ZKP0Z4S2CQ);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    background-image: url(/hc/theming_assets/01HZH0CRM12K8NY9FPV8R3R8E8);
  }

  .webp .hero {
    background-image: url(/hc/theming_assets/01HZH0CW9T099F99VHZDR5NMR5);
  }

  .hero-bg::before {
    background-image: url(/hc/theming_assets/01HZH0C7Z1NX9G7KTM4NZY5W4G);
  }

  .webp .hero-bg::before {
    background-image: url(/hc/theming_assets/01HZH0C7KKKQ0ED061HZZD9XWD);
  }

  .hero-bg::after {
    background-image: url(/hc/theming_assets/01HZH0CE19JG8CGP846XJDNGWJ);
  }

  .webp .hero-bg::after {
    background-image: url(/hc/theming_assets/01HZH0CYGBWST9BXENFGXJMXCZ);
  }
}

@media (min-width: 768px) {
  .hero-bg {
    height: 440px;
  }

  .hero-bg::before {
    background-size: 495px 300px;
    bottom: 20px;
    left: -240px;
    height: 300px;
    width: 495px;
  }

  .hero-bg::after {
    background-size: 487px 262px;
    top: 20px;
    right: -140px;
    height: 262px;
    width: 487px;
    transform: none;
  }
}

@media (min-width: 1160px) {
  .hero-bg::before {
    background-size: 660px 400px;
    top: 30px;
    left: -300px;
    height: 400px;
    width: 660px;
  }

  .hero-bg::after {
    background-size: 650px 350px;
    top: 20px;
    right: -140px;
    height: 350px;
    width: 650px;
  }
}

.hero-inner {
  padding: 0 24px;
  position: relative;
  max-width: 600px;
  width: 100%;
  z-index: 1;
}

.page-header {
  display: flex;
  margin: 24px 0 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 {
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 44px;
    line-height: 48px;
  }
}

.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;
  min-height: 35px;
  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;
}

.category__description {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 48px;
}

/***** 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 {
  border-bottom: 1px solid #ddd;
  color: rgba(33, 36, 44, 0.64);
  display: block;
  padding: 15px 0;
}

.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/01HZH0D2QFKJKM7279A1PA65K2);
  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: rgba(33, 36, 44, 0.64);
  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: rgba(77,84,102,0.64);
  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: #1865F2;
  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 *****/
@media (min-width: 768px) {
  .category-container {
    display: flex;
    justify-content: flex-end;
  }
}

.category-content {
  flex: 1;
  margin-bottom: 40px;
}

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

@media (min-width: 768px) {
  .section-container .section-list {
    column-count: 2;
    column-gap: 80px;
  }
}

.section-list__item {
  break-inside: avoid-column;
}

.section-list__item:last-child .section-list__item-content {
  border: none;
}

.section-list__item a {
  color: #21242C;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  height: 100%;
  min-height: 66px;
}

.section-list__item-content {
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  display: flex;
  align-items: center;
  margin-left: 24px;
  height: 100%;
  min-height: 66px;
  width: 100%;
  padding: 20px 0;
  font-weight: 700;
}

.category-content .section-list__item:nth-child(3),
.category-content .section-list__item:last-child {
  border: none;
}

/* SECTION: SECTION TREE
   ----------------------------- */
.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
}

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

.section-tree .section {
  flex: initial;
  margin: 0 0 64px;
}

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

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

.section-tree-title {
  margin-bottom: 8px;
}

.section-tree-title a {
  color: #21242C;
  display: inline-block;
  font-family: "Source Serif Pro", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  max-width: 320px;
}

.see-all-articles {
  display: block;
  /*   padding: 15px 0; */
  color: #1865F2;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .section-container .article-list {
    column-count: 2;
    column-gap: 80px;
  }
}

.article-list__item {
  break-inside: avoid-column;
}

.article-list__item:last-child .article-list__item-content {
  border: none;
}

.article-list__item a {
  color: #21242C;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  height: 100%;
  min-height: 66px;
}

.article-list__item-content {
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  display: flex;
  align-items: center;
  margin-left: 24px;
  height: 100%;
  min-height: 66px;
  width: 100%;
  padding: 20px 0;
}

/* Hide any articles after the 3rd one */
.section-tree .article-list__item:nth-child(n + 4) {
  display: none;
}

.category-content .article-list__item:nth-child(3) .article-list__item-content,
.category-content .article-list__item:last-child .article-list__item-content {
  border: none;
}

.icon-star::before {
  color: #1865F2;
  font-size: 18px;
}

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

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

.section-content {
  flex: 1;
}

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

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

/* SECTION: ARTICLE
   ----------------------------- */
.article__breadcrumbs {
  margin-bottom: 16px;
}

.article__container {
  display: flex;
  flex-direction: column;
  margin-bottom: 104px;
}

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

@media (min-width: 768px) {
  .article__container {
    align-items: center;
    margin-bottom: 144px;
  }

  .article__breadcrumbs {
    max-width: 720px;
    margin: 0 auto 24px;
  }

  .article {
    flex: 1 0 66%;
    max-width: 720px;
    min-width: 640px;
  }
}

.article__header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article__header h1 {
  margin: 0;
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

@media (min-width: 768px) {
  .article__header h1 {
    font-size: 44px;
    line-height: 48px;
    max-width: 640px;
  }
}

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

.article__updated {
  color: rgba(33, 36, 44, 0.64);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 20px 0 24px;
}

.article-subscribe,
.article-unsubscribe {
  border: none;
  border-radius: 4px;
  color: #1865F2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  min-width: 120px;
  min-height: 40px;
  line-height: 20px;
  padding: 0 16px;
  position: relative;
  text-decoration: none;
}

.article-subscribe:hover,
.article-unsubscribe:hover,
.article-unsubscribe:focus,
.article-subscribe:focus {
  text-decoration: none;
}

.article-subscribe:active,
.article-unsubscribe:active {
  background: #b5cefb;
}

.article-subscribe::before,
.article-unsubscribe::before {
  display: block;
  box-shadow: inset 0 0 0 1px rgba(33, 36, 44, 0.50);
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 4px;
  height: calc(100% + 2px);
  width: calc(100% + 2px);
}

.article-subscribe:hover::before,
.article-unsubscribe:hover::before {
  box-shadow: inset 0 0 0 2px #1865F2;
}

.article-subscribe:active::before,
.article-unsubscribe:active::before {
  box-shadow: inset 0 0 0 2px #1b50b3;
}

.article__subscribe-mobile {
  display: block;
  margin-bottom: 48px;
}

.article__subscribe-desktop {
  display: none;
}

@media (min-width: 768px) {
  .article__subscribe-desktop {
    height: 40px;
    position: absolute;
    right: 20px;
    top: 0;
  }
}

@media (min-width: 768px) {
  .article__subscribe-desktop {
    display: block;
    margin: 0 0 0 0;
  }
}

@media (min-width: 768px) {
  .article__subscribe-mobile {
    display: none;
  }
}

.article__content {
  line-height: 1.6;
  margin: 24px 0;
  word-wrap: break-word;
}

.article__body > p {
  margin: 1.5em 0;
}

.article__body a {
  color: #1865F2;
  font-weight: 500;
}

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

.article__body ul {
  list-style-type: disc;
}

.article__body code {
  background: darken($color_5, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article__body pre {
  background: darken($color_5, 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: rgba(77,84,102,0.64);
  font-style: italic;
  padding: 0 15px;
}

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

.article__footer {
  border-top: 1px solid #dbdcdd;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 48px;
  text-align: center;
  margin-top: 40px;
}

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

.article__votes-question {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 8px;
}

.article__votes-count {
  color: rgba(33, 36, 44, 0.64);
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 24px;
}

.article__votes-controls {
  display: flex;
  justify-content: center;
}

.article__vote {
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  margin: 0 8px;
  position: relative;
}

.article__vote::before {
  box-shadow: inset 0 0 0 1px rgba(33, 36, 44, 0.50);
  border-radius: 4px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.article__vote:hover::before {
  box-shadow: inset 0 0 0 2px #1865F2;
}

.article__vote::after {
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}

.article__vote-up::after {
  background-image: url(/hc/theming_assets/01HZH0CBS0QSGTY1SEA86V3F69);
}

.article__vote-down::after {
  background-image: url(/hc/theming_assets/01HZH0C8DH1SYN5VEFA05CSG5Q);
}

.article__vote:active::before,
.article__vote[aria-selected="true"]::before {
  box-shadow: inset 0 0 0 2px #1b50b3;
}

.article__vote:active,
.article__vote[aria-selected="true"] {
  background-color: #b5cefb;
}

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

.sidenav-item {
  border-radius: 4px;
  color: rgba(33, 36, 44, 0.64);
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article,
.sidenav-item:hover {
  background-color: #1865F2;
  color: $color_2;
  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: rgba(33, 36, 44, 0.64);
  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: rgba(33, 36, 44, 0.64);
}

/***** 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: rgba(77,84,102,0.64);
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: #1865F2;
}

.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: 24px 0 12px;
  max-width: 720px;
}

.comment:last-child {
  border: none;
}

@media (min-width: 768px) {
  .comment {
    padding: 32px 0;
  }
}

.comment-heading {
  font-family: "Source Serif Pro", serif;
  font-size: 25px;
  line-height: 30px;
  margin: 0 0 16px;
}

.comment-overview {
  display: flex;
  flex-direction: column;

  padding: 24px 0;
  max-width: 720px;
}

@media (min-width: 768px) {
  .comment-overview {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.comment-sorter > a {
  border: 1px solid rgba(33, 36, 44, 0.16);
  border-radius: 4px;
  color: #21242C;
  display: flex;
  align-items: center;
  font-size: 16px;
  height: 40px;
  padding: 16px;
  text-decoration: none;
  min-width: 180px;
}

.comment-sorter > a::after {
  color: rgba(33, 36, 44, 0.50);
  margin-left: auto;
}

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

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

.comment-wrapper.comment-official {
  border: 2px solid #1865F2;
  border-radius: 4px;
  padding: 40px 20px 20px;
}

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

.comment-info {
  min-width: 0;
  width: 100%;
}

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

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

.add-badge {
  display: flex;
  align-items: center;
}

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

[dir="rtl"] .comment-avatar {
  margin-left: 16px;
  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-list {
  margin-bottom: 48px;
}

.comment-form {
  display: flex;
  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;
}

.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: #1865F2;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  line-height: 1.6;
}

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

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

.comment-body a {
  color: #1865F2;
}

.comment-body a:visited {
  color: #093c9b;
}

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

.comment-body pre {
  background: darken($color_5, 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: rgba(77,84,102,0.64);
  font-style: italic;
  padding: 0 15px;
}

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

.comment-callout {
  color: rgba(33, 36, 44, 0.64);
  font-size: 16px;
  line-height: 20px;
}

.comment-callout a {
  color: #1865F2;
  font-weight: 600;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: flex;
  text-align: center;
  align-items: center;
}

.vote-up,
.vote-down {
  padding: 12px;
}

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

.vote-sum {
  color: rgba(33, 36, 44, 0.64);
  display: block;
  font-size: 14px;
  line-height: 18px;
  min-width: 16px;
}

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

.vote-up::before,
.vote-down::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
}

.vote-up::before {
  background: url(/hc/theming_assets/01HZH0CVCD3RYZXFVQ4ECWMP7X) no-repeat;
}

.vote-down::before {
  background: url(/hc/theming_assets/01HZH0C5RYKBWYZY24ERC796HX) no-repeat;
}

.vote-up:hover::before,
.vote-up.vote-voted::before {
  background: url(/hc/theming_assets/01HZH0CSPEHCSDXE8HNKCFHYMC) no-repeat;
}

.vote-down:hover::before,
.vote-down.vote-voted::before {
  background: url(/hc/theming_assets/01HZH0CQGDPHY2ZQ924PH11012) no-repeat;
}

.vote-voted::before {
  color: #1865F2;
}

.vote-voted:hover::before {
  color: #093c9b;
}

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

.actions .dropdown-toggle::before {
  background: url(/hc/theming_assets/01HZH0CQMTDZPNTVPPR7A6DH27) no-repeat center;
  content: "";
  display: block;
  padding: 12px;
  height: 16px;
  width: 16px;
}

/***** Community *****/
.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-footer-new-post,
.post-header-new-post {
  background: #c3eefe;
  border-radius: 4px;
  padding: 24px;
  margin: 16px 16px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
}

.post-header-new-post {
  display: none;
  margin: 0;
}

@media (min-width: 1024px) {
  .post-footer-new-post {
    display: none;
  }

  .post-header-new-post {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 16px;
    max-width: 240px;
  }
}

.post-footer-new-post h3,
.post-header-new-post h3 {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.post-footer-new-post h3 {
  margin-right: 16px;
}

.post-header-new-post h3 {
  margin-bottom: 16px;
}

.post-to-community .new-post-button {
  height: 40px;
  min-height: auto;
  font-size: 14px;
  line-height: 18px;
  min-width: 96px;
  padding: 16px;
}

/* Community topic page */
.topic-header {
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  margin-top: 48px;
  width: 100%;
}

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

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

.topic-header-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.button-container {
  display: block;
  margin: 8px 0 16px;
}

@media (min-width: 768px) {
  .button-container {
    margin-bottom: 8px;
  }
}

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

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

.community-follow:empty {
  display: none;
}

@media (min-width: 768px) {
  .community-follow {
    margin-top: 0;
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    min-width: 144px;
  }
}

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

.community-follow [role="button"] {
  border-radius: 4px;
  color: #1865F2;
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  padding: 0 12px;
  position: relative;
  width: 100%;
}

.community-follow [role="button"]:hover {
  text-decoration: none;
}

.community-follow [role="button"]:active,
.community-follow [role="button"][aria-selected="true"] {
  background-color: #b5cefb;
  color: #1b50b3;
}

.community-follow [role="button"]::before {
  box-shadow: inset 0 0 0 1px rgba(33, 36, 44, 0.50);
  border-radius: 4px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.community-follow [role="button"]:hover::before {
  box-shadow: inset 0 0 0 2px #1865F2;
}

.community-follow [role="button"]:active::before,
.community-follow [role="button"][aria-selected="true"]::before {
  box-shadow: inset 0 0 0 2px #1b50b3;
}

.community-follow [role="button"]:hover::after {
  border-color: #1865F2;
}

.community-follow [role="button"]:active::after,
.community-follow [role="button"][aria-selected="true"]::after {
  border-color: #1b50b3;
}

.community-follow [role="button"]::after {
  border-left: 1px solid rgba(33, 36, 44, 0.50);
  content: attr(data-follower-count);
  color: rgba(33, 36, 44, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 12px;
  margin-left: 12px;
  height: 100%;
  position: absolute;
  right: 12px;
  top: 0;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    justify-content: center;
    height: 32px;
    font-size: 14px;
    line-height: 18px;
    padding: 0 48px 0 0;
  }

  .community-follow [role="button"]::after {
    margin: 0;
    padding: 0 12px;
    right: 0;
    min-width: 24px;
  }
}

.community-topic-description {
  color: #21242C;
  font-size: 16px;
  line-height: 22px;
  max-width: 560px;
}

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

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

@media (min-width: 768px) {
  .striped-list-item {
    flex-direction: column;
  }
}

.striped-list li:last-child .striped-list-item {
  border: none;
}

.striped-list-item:hover,
.striped-list-item:focus {
  text-decoration: none;
}

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

.striped-list-info {
  width: 100%;
  max-width: 560px;
}

.striped-list-title {
  color: #21242C;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

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

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

.striped-list-count {
  color: rgba(33, 36, 44, 0.64);
  display: flex;
  font-weight: 400;
  font-size: 14px;
  flex-shrink: 0;
  margin: 8px 0 0;
}

@media (min-width: 768px) {
  .striped-list-count {
    flex-direction: row;
    margin: 0 0 0 auto;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  background: rgba(33, 36, 44, 0.16);
  content: "";
  display: inline-block;
  margin: 0 24px;
  width: 1px;
  height: 12px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    content: "";
    margin: 0 16px;
  }
}

.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: rgba(33, 36, 44, 0.64);
    display: block;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  .post-overview-item {
    margin-left: 16px;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  border: 1px solid rgba(33, 36, 44, 0.50);
  border-radius: 4px;
  color: rgba(33, 36, 44, 0.64);
  font-size: 12px;
  font-weight: 700;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label-planned {
  color: #00a60e;
  border-color: #00a60e;
}

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

.status-label-official {
  background: #1865F2;
  border: none;
  border-radius: 0;
  color: #ffffff;
  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 {
  text-align: center;
}

.status-label-open {
  background-color: #e03b30;
  border-color: #e03b30;
  color: #ffffff;
}

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

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

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

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

.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;
  max-width: 720px;
}

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

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

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

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

@media (min-width: 768px) {
  .post-header {
    margin-bottom: 24px;
  }

  .post-header .community-follow {
    right: 16px;
  }

  .post-header .status-label {
    margin-bottom: 32px;
  }
}

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

.post-header .community-follow {
  margin: 24px 0;
}

.post-title {
  margin-bottom: 24px;
  width: 100%;
  max-width: 640px;
}

@media (min-width: 768px) {
  .post-title {
  }
}

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

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

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

.post-author-name {
  color: #21242C;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
}

.post-actions-wrapper,
.comment-actions-container {
  display: flex;
}

.post-actions {
  margin-right: 16px;
}

.post-actions:last-child {
  margin: 0;
}

.post-content {
  line-height: 1.6;
  word-break: break-word;
}

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

.post-info {
  min-width: 0;
  width: 100%;
}
.post-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 16px;
}

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

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

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

.post-body a {
  color: #1865F2;
}

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

.post-body pre {
  background: darken($color_5, 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: rgba(77,84,102,0.64);
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: rgba(77,84,102,0.64);
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: #1865F2;
  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: 80px;
  max-width: 720px;
}

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

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border: 1px solid rgba(33, 36, 44, 0.16);
  border-radius: 4px;
  flex-direction: column;
  max-height: 45px;
  padding: 0 12px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    border-radius: 0;
    height: auto;
    padding: 0;
    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: #21242C;
  font-size: 15px;
  font-weight: 700;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    font-size: 16px;
    line-height: normal;
    margin-right: 40px;
  }
  [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: rgba(33, 36, 44, 0.64);
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    text-decoration: underline;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

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

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

.collapsible-nav-list li[aria-selected="true"] a {
  color: rgba(33, 36, 44, 0.64);
}

.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 *****/
.request-page-container {
  margin-bottom: 64px;
}

.my-activities-nav {
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  margin: 48px 0 32px;
}

@media (min-width: 768px) {
  .my-activities-nav {
    margin: 48px 0 64px;
  }  
  
  .my-activities-nav::after {
    background: rgba(33, 36, 44, 0.16);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  
  .my-activities-sub-nav::after {
    background: rgba(33, 36, 44, 0.16);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
}

.my-activities-sub-nav {
  background-color: transparent;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
 	.my-activities-sub-nav {
    margin-bottom: 24px;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #1865F2;
}

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

@media (min-width: 768px) {
  .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%;
}

.search .requests-search[type="search"] {
  border: 1px solid rgba(33, 36, 44, 0.16);
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  padding: 0 12px;
  width: 100%;
}

.search .requests-search[type="search"]::before {
  border: 1px solid rgba(33, 36, 44, 0.16);
  height: 40px;
  padding: 0 8px;
  width: 100%;
}

.search .requests-search[type="search"]::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 20px;
}

.search .requests-search[type="search"]:-moz-placeholder {
  font-size: 16px;
  line-height: 20px;
}

.search .requests-search[type="search"]::-moz-placeholder {
  font-size: 16px;
  line-height: 20px;
}

.search .requests-search[type="search"]:-ms-input-placeholder {
  font-size: 16px;
  line-height: 20px;
}

.requests-table-toolbar .search::before {
  right: 12px;
}

.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 {
  color: rgba(33, 36, 44, 0.64);
  font-size: 14px;
  line-height: 20px;
  margin: 24px 0 8px;
}

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

.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: #1865F2;
  color: $color_2;
}

.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 {
  border-radius: 4px;
  color: #1865F2;
  display: inline-block;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

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

.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;
  max-height: 40px;
  max-width: 40px;
}

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

/* Contributions table */
.contributions-container {
  margin: 0 auto 64px;
}

.contributions-table td:last-child {
  color: rgba(77,84,102,0.64);
  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: rgba(33, 36, 44, 0.64);
  margin: 48px 0;
}

/* SECTION: REQUEST
   ----------------------------- */
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 104px;
}

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

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

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

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

.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;
  cursor: pointer;
  display: flex;
  padding: 8px 15px;
  width: 100%;
}

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

.request-main .comment-show-container-content {
  align-self: center;
  color: rgba(77,84,102,0.64);
  margin-left: 10px;
}

.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 #1865F2;
}

.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 #1865F2;
}

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

.request-title {
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  width: 100%;
}

.request-title:empty {
  display: none;
}

@media (min-width: 1024px) {
  .request-title {
    font-size: 44px;
    line-height: 48px;
    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($color_5, 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: rgba(77,84,102,0.64);
  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;
}

/* SECTION: NEW REQUEST
   ----------------------------- */
.boolean {
  position: relative;
}

.back {
  background: none;
  border: none;
  font-size: 16px;
  color: #1865F2;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  max-width: 18%;
  margin: 0 0 48px;
  display: none;
  padding: 0;
}

.back::before {
  background: url(/hc/theming_assets/01HZH0CBXSGV1NWYCF08D4XKGH) no-repeat;
  content: "";
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}

.suggestion-list {
  display: none;
}

.boolean label {
  position: absolute;
  left: 30px;
  top: 2px;
}

.boolean input[type="checkbox"] {
  transform: scale(2);
  -webkit-transform: scale(2);
  margin-left: 6px;
}

.request-form-container {
  margin-bottom: 104px;
}

@media (min-width: 768px) {
  .community-enabled .request-form-container {
    display: flex;
    align-items: flex-start;
  }
  
  .requests-help {
    flex: 1;
  }
}

.request-form-left {
  flex: 2;
  min-height: 700px;
  max-width: 100%;
}

.requests-help {
  margin-left: 20px;
  font-size: 16px;
  line-height: 20px;
  display: none;
}

.request-help {
  display: flex;
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #ddd;
}

.request-help:last-child {
  border: none;
}

.request-help > .img-container {
  flex: 1;
  padding-right: 10px;
  margin-top: 6px;
}

.img-container > img {
  width: 20px;
  height: 25px;
}

.requests-help > h3 {
  display: none;
}

.request-help > a {
  font-size: 16px;
  color: #21242C;
  line-height: 29px;
  text-align: left;
}

@media (min-width: 768px) {
  .requests-help {
    display: block;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin-bottom: 30px;
  }

  .request-form-left {
    max-width: 65%;
    padding: 0 20px 0 0;
  }
}

.submit-request-divider {
  margin: 0;
}

.upload-dropzone {
  border-color: #909296;
  margin-bottom: 25px;
}

.request-form-description {
  border: 1px solid #000;
  border-radius: 4px;
  padding: 19px;
  margin-bottom: 20px;
}

.request-form-description h3 {
  margin: 0;
  font-weight: 400;
}

.request-form-description h5 {
  margin: 0;
  font-weight: 400;
}

.popup-container {
  background-color: #edf3fe;
  border-radius: 4px;
  color: #21242C;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 64px;
  padding: 24px;
}

.help-message {
  font-size: 16px;
  line-height: 20px;
}

.help-message a {
  color: #1865F2;
  font-weight: 700;
}

.popup-button {
  background-color: #1865F2;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 8px 16px;
  position: relative;
  margin: 16px 0 0;
  min-width: 104px;
}

.popup-button:active {
  background-color: #1b50b3;
}

.popup-button::before {
  border-radius: 7px;
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
}

.popup-button:hover::before {
  box-shadow: inset 0 0 0 2px #1865F2;
}

.popup-button:active::before {
  box-shadow: inset 0 0 0 2px #1b50b3;
}

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

  .popup-button {
    margin: 0 0 0 24px;
  }
}

/* SECTION: PAGINATION
   ----------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  margin: 48px 0 144px;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.pagination li {
  border-bottom: 1px solid #d3d3d5;
  border-top: 1px solid #d3d3d5;
  border-left: 1px solid #d3d3d5;
  position: relative;
  margin: 0 0 4px;
}

.pagination li::before {
  border-right: 1px solid #d3d3d5;
  content: '';
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: -1px;
  top: 0;
  width: 100%;
  z-index: -1;
}

.pagination a,
.pagination-current span {
  color: rgba(33, 36, 44, 0.64);
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 32px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .pagination a,
  .pagination-current span {
    min-width: 40px;
  }
}

.pagination li:first-child {
  border-left: 1px solid #d3d3d5;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination li:last-child,
.pagination li:last-child::before {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

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

.pagination a,
.pagination span {
  color: rgba(33, 36, 44, 0.64);
  font-size: 16px;
  line-height: 20px;
}

.pagination-current span {
  color: #1865F2;
  font-weight: 700;
  position: relative;
}

.pagination-current span::before {
  background-color: #1865F2;
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: -1px;
  height: 4px;
  width: calc(100% + 2px);
}

.pagination li:first-child span::before {
  border-radius: 0 0 0 4px;
}

[dir="rtl"] .pagination li:first-child span::before {
  border-radius: 0 0 4px 0;
}

.pagination li:last-child span::before {
  border-bottom-right-radius: 4px;
  border-radius: 0 0 4px 0;
}

[dir="rtl"] .pagination li:last-child span::before {
  border-radius: 0 0 0 4px;
}

.pagination-next a,
.pagination-last a,
.pagination-prev a,
.pagination-first a {
  font-size: 0;
}

.pagination-next a::before,
.pagination-last a::before,
.pagination-prev a::before,
.pagination-first a::before {
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}

.pagination-next a::before {
  background-image: url(/hc/theming_assets/01HZH0CF8NFKXFTEGDRDAFB84N);
}

.pagination-last a::before {
  background-image: url(/hc/theming_assets/01HZH0CCEPF653FRKD6F52X988);
}

.pagination-prev a::before {
  background-image: url(/hc/theming_assets/01HZH0CET946CMHS53WS1GE4YK);
}

.pagination-first a::before {
  background-image: url(/hc/theming_assets/01HZH0CZ0107142HEFC3J85PT4);
}

/***** 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,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after {
  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-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-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 {
  margin: 64px 0 0;
  position: relative;
}

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

@media (min-width: 768px) {
  .profile-header {
    margin: 104px 0 48px;
  }

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

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

.profile-header .profile-info .description {
  max-width: 640px;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  margin-bottom: 32px;
}

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

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

.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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  line-height: 40px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .profile-header .basic-info .name {
    font-size: 44px;
    line-height: 48px;
  }
}

.name > a {
  color: #21242C;
}

.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: 8px 0;
  }

  .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: none;
  color: #1865F2;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 8px 0;
}

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

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

.profile-stats .stat {
  display: flex;
}

.profile-stats .stat-label {
  color: rgba(33, 36, 44, 0.64);
  min-width: 100px;
  text-align: right;
  margin-right: 32px;
}

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

.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) {
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    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: 0px;
  }
  [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 #1865F2;
  border-radius: 4px;
  color: #1865F2;
  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 {
  border: 0;
  margin: 16px 0;
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
}

@media (min-width: 768px) {
  .profile-nav {
    margin-bottom: 48px;
  }
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    max-width: 720px;
  }
}

.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: rgba(77,84,102,0.64);
  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;
  padding-bottom: 30px;
  position: relative;
}

.profile-contribution-breadcrumbs {
  margin: 0;
}

.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: 16px 0 24px;
}

.profile-contribution-list > .profile-contribution {
  padding-bottom: 30px;
}

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

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

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

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

[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-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-container {
  display: flex;
  justify-content: space-between;
  margin: 0 0 48px;
}

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

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

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

.profile-activity-header {
  display: flex;
  align-items: center;
}

[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;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description {
  font-size: 14px;
  line-height: 18px;
  color: #21242C;
  font-weight: 600;
}

.profile-activity-description span {
  font-weight: 400;
  color: rgba(33, 36, 44, 0.64);
}

.profile-activity-description time {
  font-weight: 400;
  color: rgba(33, 36, 44, 0.64);
}

.profile-activity-contribution {
  border: 1px solid rgba(33, 36, 44, 0.16);
  border-radius: 4px;
  padding: 24px;
  margin: 16px 0 48px;
}

.profile-activity::before {
  background: #ffffff;
  position: absolute;
  top: -8px;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: $color_5;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: rgba(33, 36, 44, 0.64);
  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-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  border-radius: 50%;
  padding: 2px 4px 0px 12px;
  left: -22px;
  width: 28px;
  line-height: 40px;
  background-position: 50% 50%;
}

.profile-activity-created-comment::before {
  content: "\1f4ac";
  border-radius: 50%;
  padding: 2px 6px 0px 7px !important;
  left: -22px;
  width: 28px;
  line-height: 40px;
  background-position: 50% 50%;
}

/* SECTION: SEARCH RESULTS PAGE
   ----------------------------- */
.search-results__container .page-header {
  margin-top: 16px;
}

.search-results__container .page-header h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}

@media (min-width: 768px) {
  .search-results__container .page-header h1 {
    font-size: 25px;
    line-height: 30px;
  }
}

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

.search-results__column--community {
  margin-top: 48px;
}

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

  .search-results__column--knowledge-base {
    margin-right: 40px;
  }

  .search-results__column--community {
    margin-top: 0;
    margin-left: 40px;
  }
}

.search-results__column {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 45%;
}

.search-results__column-title {
  font-family: "Source Serif Pro", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

@media (min-width: 768px) {
  .search-results__column-title {
    font-size: 44px;
    line-height: 48px;
  }
}

.search-result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: 24px;
  min-height: 160px;
}

.search-result__link {
  color: #21242C;
}

.search-result__link:hover {
  text-decoration: none;
}

.search-result__header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.search-result__header .article-icon {
  margin-right: 16px;
}

.search-result__header h3 {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

.search-result__link:hover .search-result__header h3 {
  text-decoration: underline;
}

.search-result__description {
  color: rgba(33, 36, 44, 0.64);
  font-size: 16px;
  line-height: 20px;
  margin-left: 40px;
  max-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result__description em {
  background: #c3eefe;
  border-radius: 2px;
  color: #21242C;
  font-style: normal;
  padding: 0 2px;
}

.time-search-result::after {
  content: "—";
  margin: 0 4px;
}

.search-result__footer {
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  margin: 24px 0 0 40px;
}

.search-result:last-child .search-result__footer {
  border: none;
}

.search-result__breadcrumbs {
  margin: 0 24px 0 0;
}

.search-result__breadcrumbs li {
  margin-bottom: 0;
}

/* Hide help center breadcrumb because it's redundant */
.search-result__breadcrumbs li:first-child {
  display: none;
}

.search-result__breadcrumbs li:nth-child(2)::before {
  display: none;
}

.search-result__breadcrumbs li a {
  font-size: 14px;
  line-height: 18px;
}

.search-result__votes {
  color: rgba(33, 36, 44, 0.64);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
}

.search-result__votes::before {
  background: url(/hc/theming_assets/01HZH0CVCD3RYZXFVQ4ECWMP7X) no-repeat;
  content: "";
  display: inline-block;
  height: 16px;
  margin-right: 8px;
  width: 16px;
}

.search-tab {
  display: inline;
  margin: 0 60px 0 0;
  cursor: pointer;
  padding-bottom: 21px;
}
.search-tab:hover {
  color: #1865F2;
}
#product_updates_tabs {
  margin-bottom: 20px;
}

.title_search_result {
  color: #1865F2;
  border-bottom: 3px solid;
  padding-bottom: 21px;
  position: relative;
}

.border-search-result {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

@media (min-width: 768px) {
  .border-search-result {
    width: 90%;
  }
}

/* Home PAGE */

.main-categories-container {
  max-width: 1440px;
}

.main-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px 0;
}

.category {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
}

.secondary-category {
  border: 1px solid rgba(33, 36, 44, 0.16);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 16px;
  margin: 32px 0 0;
  max-width: 320px;
  width: 100%;
}

.secondary-category__link {
  color: #21242C;
}

.category-link:hover,
.category-link:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .main-categories {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 24px 0;
  }

  .category {
    flex: 1 1 50%;
  }

  .secondary-category {
    margin: 64px 0 0;
    max-width: 240px;
    flex: 1 1 100px;
  }
}

@media (min-width: 1160px) {
  .category,
  .secondary-category {
    flex: 1 1 33.333%;
  }

  .secondary-category {
    margin: 80px 0 0;
    max-width: 320px;
    flex: 1 1 200px;
  }
}

.home-category-icon {
  height: 88px;
  width: 88px;
}

@media (min-width: 768px) {
  .home-category-icon {
    height: 176px;
    width: 176px;
  }
}

.category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-title {
  color: #21242C;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 24px;
  font-family: "Source Serif Pro", serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 16px;
  min-height: 56px;
  max-width: 200px;
}

.category-link:hover .category-title,
.category-link:focus .category-title {
  text-decoration: underline;
}

.category-description {
  color: #21242C;
  font-size: 16px;
  line-height: 20px;
  max-width: 264px;
  margin-bottom: 48px;
  min-height: 60px;
}

.community-title {
  font-size: 30px;
  color: rgb(255, 255, 255);
  line-height: 1;
  text-align: center;
}

.community-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.902);
  line-height: 1.5;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 500px;
  width: 100%;
  margin: 35px auto 0;
}

.community {
  min-height: 388px;
  background-position: center;
  background-size: cover;
}

/* Categories PAGE */
.moreTopics {
  padding-top: 10px;
  color: #1865F2;
  display: block;
  text-decoration: underline;
  font-size: 18px;
}

.articles-title {
  font-size: 16px;
}

/* SECTION: COMMUNITY HOMEPAGE (TOPIC LIST PAGE)
   --------------------------------------------------- */
.blocks-item-description {
  color: rgb(160, 160, 160);
}

.header-community {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px !important;
}

.header-community .topic-title {
  max-width: 640px;
}

.bottom-border-simbold {
  position: absolute;
  left: 30px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1865F2;
}

.blocks-item-int {
  border-bottom: 1px solid #1865F2;
  box-sizing: border-box;
  color: #1865F2;
  justify-content: center;
  max-width: 100%;
  text-decoration: none;
  position: relative;
}
.blocks-item-int p {
  color: #000;
}

.container {
  position: relative;
}

.latest-news__container {
  padding-bottom: 24px;
}

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

.latest-news__title {
  font-family: "Source Serif Pro";
  font-size: 25px;
  line-height: 30px;
  margin: 0;
}

.latest-news__all-button {
  color: #1865F2;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.latest-news__list {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.latest-news__item {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .latest-news__list {
    min-height: 182px;
    flex-direction: row;
    justify-content: space-between;
  }

  .latest-news__item {
    margin-bottom: 48px;
    max-width: 520px;
  }

  .latest-news__item:first-child {
    margin-right: 40px;
  }

  .latest-news__item:last-child {
    margin-left: 40px;
  }
}

.latest-news__item-link {
  color: #21242C;
}

.latest-news__item-link:hover,
.latest-news__item-link:focus {
  text-decoration: none;
}

.latest-news__item-body {
  font-size: 16px;
  line-height: 22px;
}

.latest-news__item-timestamp {
  color: rgba(33, 36, 44, 0.64);
}

.latest-news__item-timestamp::after {
  content: "—";
  margin: 0 4px;
}

.latest-news__item-read-more {
  color: #1865F2;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.latest-news__item-link:hover .latest-news__item-read-more {
  text-decoration: underline;
}

.community-topics__container {
  max-width: 1240px;
  padding-top: 16px;
}

.topics {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .topics {
    margin-top: 64px;
  }
}

.blocks__item-link {
  color: #21242C;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blocks__item-link:hover,
.blocks__item-link:focus {
  text-decoration: none;
}

.blocks__item-title {
  font-family: "Source Serif Pro", serif;
  font-size: 25px;
  line-height: 30px;
  flex: 1;
  margin: 0;
}

.topic-tab:hover .blocks__item-title,
.topic-tab:focus .blocks__item-title {
  text-decoration: underline;
}

.blocks__item-description {
  color: rgba(33, 36, 44, 0.64);
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

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

.blocks__item-meta {
  margin: 16px 0 24px;
}

.meta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.meta-data {
  font-size: 14px;
  line-height: 18px;
  color: rgba(33, 36, 44, 0.64);
}

.meta-data::before {
  background-color: rgba(33, 36, 44, 0.16);
  content: "";
  display: inline-block;
  height: 12px;
  margin: 0 12px;
  width: 1px;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .meta-data::before {
    margin: 0 24px;
  }
}

.meta-data:first-child::before {
  display: none;
}

.topic-follow {
  float: right;
  display: inline-block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .topics-item .topic-title {
    width: 80%;
  }
}

.striped-list-title {
  color: #000;
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-number {
  display: inline;
}

@media (min-width: 768px) {
  .striped-list-number {
    display: inline;
  }
}

.green-like {
  width: 16px;
  margin-right: 5px;
}

.blocks-item {
  position: relative;
}

.blocks-item:hover a {
  text-decoration: none;
}

.bottom-border-simbol {
  position: absolute;
  left: 40px;
  bottom: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1865F2;
  display: none;
}

.simbol-active {
  display: block;
}

@media (min-width: 768px) {
  .blocks-item {
    flex: 1 0 100%;
    max-width: 29%;
  }
}

.striped-list {
  padding: 0 0 35px 0;
}

#topics-tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.border-bottom-topics {
  box-shadow: inset 0 -1px 0 0 rgba(33, 36, 44, 0.16);
  height: 2px;
  width: 100%;
  margin: 0 auto;
}

.border-bottom-topics-active {
  box-shadow: inset 0 2px 0 0 #1865F2;
}

#topics-tabs .topic-tab {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 8px 0 0 0;
  position: relative;
  text-align: left;
}

@media (min-width: 785px) {
  #topics-tabs .topic-tab {
    width: 33.333%;
    padding: 8px 16px 0;
  }
}

@media (min-width: 1140px) {
  #topics-tabs .topic-tab {
    padding: 8px 40px 0;
  }
}

.tab-all-posts {
  width: 100%;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .tab-all-posts {
    padding: 0 16px 64px;
  }
}

@media (min-width: 1140px) {
  .tab-all-posts {
    padding: 0 40px 64px;
  }
}

.tab-posts {
  width: 100%;
}

.tab-post {
  background: #f7f8fa;
  position: relative;
}

.tab-post::after {
  background-color: rgba(33, 36, 44, 0.16);
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 24px);
}

.tab-post:last-of-type::after {
  display: none;
}

.tab-post a {
  color: #21242C;
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .tab-post a {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.tab-post a:hover,
.tab-post a:focus {
  text-decoration: none;
}

.post-name-details h3 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px;
  max-width: 560px;
}

.tab-post a:hover .post-name-details h3 {
  text-decoration: underline;
}

.user-create {
  font-size: 14px;
  color: rgba(33, 36, 44, 0.64);
}

.votes-comment {
  font-size: 14px;
  color: rgba(33, 36, 44, 0.64);
  position: absolute;
  right: 24px;
  bottom: 24px;
}

@media (min-width: 768px) {
  .votes-comment {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

.votes {
  margin-right: 32px;
}

.post-tab-user {
  margin-right: 25px;
}

.see-all-posts-url {
  background: #f7f8fa;
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  display: block;
  padding: 16px 24px 32px;
  text-decoration: none;
}

.see-all-posts {
  color: #1865F2;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

.see-all-posts:hover,
.see-all-posts:focus {
  color: #1865F2;
  text-decoration: underline;
}

.all-recent-posts {
  color: #1865F2;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 104px;
}

@media (min-width: 768px) {
  .all-recent-posts {
    margin: 0 40px 104px;
  }
}

.last-posts {
  padding: 45px 0 20px;
  margin-top: 30px;
}

@media (min-width: 785px) {
  .posts-container {
    display: flex;
  }
}

.posts-noteworthy,
.posts-inspiring {
  flex: 1;
  position: relative;
  margin-bottom: 60px;
}

@media (min-width: 785px) {
  .posts-noteworthy {
    margin-right: 20px;
  }

  .posts-inspiring {
    margin-left: 20px;
  }
}

.posts-title {
  font-family: "Source Serif Pro", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
}

.last-see-all-post {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  color: #1865F2;
}

@media (min-width: 785px) {
  .posts-noteworthy {
    margin-bottom: 45px;
  }

  .posts-inspiring {
    margin-bottom: 45px;
  }
}

#noteworthy,
#inspiring {
  min-height: 300px;
  margin: 16px 0;
}

.lastest-post {
  display: flex;
}

.lastest-posts-title {
  overflow: hidden;
  margin-bottom: 16px;
}

.lastest-post a {
  color: #21242C;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  padding: 20px 0 0;
  width: 100%;
}

.lastest-post a:hover {
  text-decoration: none;
}

.lastest-post a::before {
  background: url(/hc/theming_assets/01HZH0CW31HRZP09QTA6SMMM76) no-repeat;
  content: "";
  display: block;
  height: 24px;
  margin-right: 24px;
  width: 24px;
  flex-shrink: 0;
}

.lastest-post a:hover .lastest-posts-title {
  text-decoration: underline;
}

.post-title-url {
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  width: 100%;
  padding-bottom: 24px;
}

.lastest-post:last-child .post-title-url {
  border: none;
}

.about-post {
  font-size: 14px;
  color: rgb(160, 160, 160);
}

.contributors .contributors-person-post {
  text-align: left;
  padding-left: 90px;
  height: 37px;
}
.contributors .contributors-person-post a {
  color: #000;
}

/* Community-userprofile PAGE */

.display-desktop {
  display: none;
}

.display-mobile {
  display: block;
}

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

  .display-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .user-profile {
    display: flex;
  }
}
.user-overview {
  flex: 3;
}

.profile-information {
  flex: 1;
}

.profile-information.display-desktop {
  margin-left: 24px;
  max-width: 260px;
}

.profile-information.display-mobile .label {
  margin: 0;
  width: 100%;
}

.profile-information.display-mobile .stat-label {
  flex: 1;
}

.stat-img {
  flex: 0 1 auto;
  width: 30px;
  height: 30px;
}

.label {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  margin-left: 15px;
}

.stat-value {
  color: #21242C;
  min-width: 100px;
  flex: 1;
}

.stat {
  padding: 8px 0px;
  flex-direction: row;
}

.profile-contribution-title a {
  font-size: 16px;
  color: #21242C;
  line-height: 20px;
}

.profile-contribution-header span {
  display: inline-block;
  margin: 8px 0;
}

.profile-contribution-body {
  font-size: 14px;
  color: rgba(33, 36, 44, 0.64);
  line-height: 18px;
}
.content-container {
  border-bottom: 1px solid #ddd;
}
/* Section PAGE */
.section-content {
  flex: 1;
  margin-bottom: 35px;
}

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

.section-description {
  color: #8d8d8d;
  margin-bottom: 10px;
  font-size: 18px !important;
  color: rgb(131, 131, 131);
  line-height: 1.5em;
  text-align: center;
}

@media (min-width: 768px) {
  .section-content {
    font-size: 16px;
  }
}

/*Featured Articles*/
.promoted-articles {
  padding: 60px 0 60px;
  max-width: 760px;
  margin: 0 auto;
}

.promoted-article-title {
  font-size: 25px;
  color: #21242C;
  font-family: "Source Serif Pro", serif;
  font-weight: 600;
  flex: 1;
}

@media (min-width: 1160px) {
  .promoted-articles {
    padding: 104px 0 144px;
    display: flex;
    flex-direction: row;
    max-width: none;
  }

  .promoted-article-title {
    margin: 16px 0;
  }

  .promoted-article-ul {
    max-width: 640px;
    width: 100%;
  }
}

.promoted-article-item {
  color: #21242C;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}

.promoted-article-item:hover .articles-title {
  text-decoration: underline;
}

.promoted-article-item__icon {
  height: 24px;
  width: 24px;
  margin-right: 24px;
}

.promoted-article-item__content {
  border-bottom: 1px solid rgba(33, 36, 44, 0.16);
  min-height: 66px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.promoted-article-li:last-child .promoted-article-item__content {
  border: none;
}

.article-promoted {
  overflow: hidden;
  height: auto;
  max-height: unset;
}

@media (min-width: 1440px) {
  .article-promoted {
    height: 80px;
    overflow: visible;
  }
}

.border-bottom {
  position: absolute;
  bottom: 0;
  width: 90%;
  height: 1px;
  background-color: #d8d8d8;
}

.category-icon-size {
  display: block;
  width: 100%;
  float: left;
  text-align: center;
}

.category-icon-size img {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  width: 60px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .category-icon-size img {
    margin-right: 30px;
    margin-top: 0px;
  }
  .community-button {
    max-width: 200px;
  }

  .article-promoted {
    height: 104px;
    overflow: hidden;
  }
  .category-icon-size {
    display: inline-block;
    width: auto;
    text-align: left;
  }
}

/* New Post */

.new-post-footer {
  margin-top: 35px;
}

/* Error page */
.error-page {
  margin: 64px auto;
}

@media (min-width: 768px) {
  .error-page {
  	margin: 144px auto;
  }
}

.error-page > h1 {
  font-size: 50px;
}
.error-page > a {
  color: #1865F2;
}
/*Community post page */
.dropdown > .dropdown-menu {
  background-color: #ffffff;
}

.profile-contribution-breadcrumbs > li > a {
  font-size: 14px;
  line-height: 18px;
}

.form-field > p > a {
  font-weight: normal;
  color: #1865F2;
  text-decoration: underline;
}

/* Sorters */
.sorters {
  display: flex;
  flex-wrap: wrap;
}
.sorter {
  color: rgba(33, 36, 44, 0.64);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  margin-right: 32px;
  padding: 12px 0;
  position: relative;
}

@media (min-width: 768px) {
  .sorter {
    padding: 16px 0;
    margin-right: 40px;
  }
}

.selected {
  color: #1865F2;
}

.selected::after {
  background: #1865F2;
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.faded {
  display: none;
}

/*Custom community badge code */

.moderator:after {
  content: "Community Moderator";
  background-color: #1865F2;
  border-radius: 4px;
  color: #ffffff;
  margin-left: 8px;
  padding: 4px 8px;
  font-size: 12px;
}

.Ambassador:after {
  content: "Ambassador";
  background-color: MediumBlue;
  border-radius: 3px;
  color: white;
  margin-left: 8px;
  padding: 2px 5px;
  font-size: 10px;
}

.support-advocate:after {
  content: "Support Advocate";
  background-color: Grey;
  border-radius: 3px;
  color: white;
  margin-left: 8px;
  padding: 2px 5px;
  font-size: 10px;
}

.add-badge {
  /* empty class for badges; For reference only */
}
