@charset "UTF-8";

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DTETBC971T5KGY943YD') format('woff2'),
        url('/hc/theming_assets/01KY6N9DTKWJF0TH90D8A4DEA2') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DTA076J2KR30WMG5FKD') format('woff2'),
        url('/hc/theming_assets/01KY6N9DWWJRC73WECWNB7PKDE') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DKF3X9WCEJJZJ0GBBAJ') format('woff2'),
        url('/hc/theming_assets/01KY6N9DKM1FZEH2FP6EH2QY5T') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DKF0ZS5529D4DVK1R37') format('woff2'),
        url('/hc/theming_assets/01KY6N9DKRFEWP299WYV2S3W4D') format('woff');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DPQJE48VKKNR68GFSQ2') format('woff2'),
        url('/hc/theming_assets/01KY6N9DWYR3P08K53CFDNFQR4') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik';
    src: url('/hc/theming_assets/01KY6N9DGAD91GA6WQCXTGVK37') format('woff2'),
        url('/hc/theming_assets/01KY6N9DKP77N9HZB5E84GB7Q9') format('woff');
    font-weight: 700;
    font-style: italic;
}

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

html {
  height: 100%;
}

body {
  position: relative;
  min-height: 100%;
  background-color: #FFFFFF;
  color: #424242;
  font-family: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-bottom: 220px /* should be equal to or greater than height of footer */
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Aeonik", -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
  color: $heading_color;
}

h1 {
  font-size: 32px;
  font-weight: 600;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: rgba(5, 114, 230, 1);
  font-weight: 600;
  text-decoration: none;
}

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

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

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

input:focus {
  border: 1px solid rgba(5, 114, 230, 1);
}

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

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

select:focus {
  border: 1px solid rgba(5, 114, 230, 1);
}

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

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

textarea:focus {
  border: 1px solid rgba(5, 114, 230, 1);
}

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

.container-small {
  max-width: 800px;
}

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

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

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

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

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

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

.dropdown-toggle:focus {
  outline: 0;
}

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

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

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

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

.button::after, [role="button"]::after {
  color: rgba(5, 114, 230, 1);
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: rgba(5, 114, 230, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #034182;
  border-color: #034182;
}

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

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

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

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

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

.button-secondary {
  color: #546678;
  border: 1px solid #E6E6E6;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(42, 51, 60, 1);
  border: 1px solid #E6E6E6;
  background-color: #f7f7f7;
}

/***** Tables *****/

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

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

.table th,
.table th a {
  color: #546678;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

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

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

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

.table td {
  display: block;
}

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

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

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

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

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

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

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

.form-field input:focus {
  border: 1px solid rgba(5, 114, 230, 1);
}

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

.form-field input[type="text"]:focus {
  border: 1px solid rgba(5, 114, 230, 1);
}

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

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

.form-field .nesty-input:focus {
  border: 1px solid rgba(5, 114, 230, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(5, 114, 230, 1);
  text-decoration: none;
}

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

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

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

.form-field .optional {
  color: #546678;
  margin-left: 4px;
}

.form-field p {
  color: #546678;
  font-size: 12px;
  margin: 5px 0;
}

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

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

.form footer a {
  color: #546678;
  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: #034182;
}

/***** Header *****/
.header {
  background-color: #fff;
  /* border-bottom: 7px solid #007DBA; */
}

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

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

.logo {
  display: inline-block;
}

.logo img {
  max-height: 37px;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo .header-title {
  display: inline-block;
  margin-left: 10px;
  padding-top: 8px;
  font-size: 17px;
  color: #FFF;
}

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

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

.header, .language-selector {
  font-size: 14px;
  font-weight: 600;
}

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

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

.header .submit-a-request {
  display: none;
  width: auto;

  /* color: #FFF; */
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  position: absolute;
  top: calc(50% - 20px);
  &:hover,
  &:active {
    background: rgba(0,0,0,0.1);
    -webkit-box-shadow:inset 0px 0px 0px 1px #fff;
    -moz-box-shadow:inset 0px 0px 0px 1px #fff;
    box-shadow:inset 0px 0px 0px 1px #fff;
    text-decoration: underline;
  }
}

@media (min-width: 768px) {
  .header .submit-a-request {
    display: inline-block; 
  }
}

[dir="rtl"] .header .submit-a-request {
  padding: 0 0 0 20px;
}


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

.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: rgba(5, 114, 230, 1);
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

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

.nav-wrapper .menu-button .icon-menu {
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

.nav-wrapper .menu-button:hover, .nav-wrapper .menu-button:focus, .nav-wrapper .menu-button:active {
  background-color: transparent;
  color: rgba(5, 114, 230, 1);
}

.skip-navigation {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}

.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}

.language-selector {
  display: inline-block;
}

/***** 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: rgba(5, 114, 230, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: rgba(5, 114, 230, 1);
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: rgba(5, 114, 230, 1);
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

/***** Footer *****/
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
  padding: 45px 0;
  background: #f4f3f4;
  font-size: 12px;
  border-bottom: 4px solid #006BDE;
}

.footer a {
  color: #546678;
}

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

.footer-disclaimer-wrapper {
  width: 100%;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
  padding-bottom: 24px;
}

.footer-disclaimer-wrapper div {
  color: #666;
}



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



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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #666;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copyright {
  color: #666;
  font-size: 12px;
}




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

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

.breadcrumbs li {
  display: inline-block;
  font-size: 12px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Aeonik";
  font-weight: 600;
  /* text-transform: uppercase; */
  /* color: #004165; */
}

.breadcrumbs li + li::before {
  display: inline-block;
  content: "";
  margin: 0 4px;
  background: url(/hc/theming_assets/01KY6N9DTH40SAYH2XYXVQY7DY) no-repeat;
  height: 8px;
  width: 10px;
}

.breadcrumbs a {
  display: inline-block;
  color: #006BDE;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.category-container .breadcrumbs li:last-child,
.section-container .breadcrumbs li:last-child a {
  color: #1f1f1f;
}

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

.search input[type="search"] {
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  box-sizing: border-box;
  color: #666;
  height: 40px;
  padding-left: 20px;
  padding-right: 40px;
  -webkit-appearance: none;
  width: 100%;
  font-size: 16px;
}

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

.search input[type="search"]:focus {
  border: 1px solid rgba(5, 114, 230, 1);
  color: #555;
}

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

.search-full::after {
  display: none;
}

#submit-search {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  border: none;
  outline: none;
  background: transparent;
}

#submit-search:before {
  content: "\1F50D";
  vertical-align: middle;
  font-size: 16px;
  font-family: "copenhagen-icons";
  color: #006BDE;
  font-weight: bold;
}

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

.hero.section {
  margin-bottom: 0;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
}

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

.hero-title {
  font-size: 40px;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  margin-bottom: .25em;
}

.hero.section p {
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin-top: 0;
}

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

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

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: .75em;
  font-family: "Aeonik";

  font-weight: 600;
}

.page-header-description {
  margin: 0 0 30px 0;
  word-break: break-word;
  font-size: 18px;
}

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

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

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

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

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

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


.article-container, .section-content .sub-nav {
  margin-bottom: 10px;
}

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

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

.blocks-item {
  border: 1px solid rgba(5, 114, 230, 1);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(5, 114, 230, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

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

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(5, 114, 230, 1);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}

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

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

.blocks-item-internal a {
  color: rgba(42, 51, 60, 1);
}

.blocks-item-link {
  color: rgba(5, 114, 230, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

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

.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(5, 114, 230, 1);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}

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

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

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

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

.home-section h2 {
  margin-bottom: 10px;
  text-align: center;
}

.faq-container {
  padding: 30px 0 60px;
  background-color: #F5F5F5;
}

.faq-header {
  text-align: center;
  font-weight: 600;
  color: #1D164C;
}

.knowledge-base {
  padding: 60px 0;
  h1 {
    margin-bottom: .25em;
  }
  p {
    color: $text-color;
  	font-size: 1.25rem;
  	font-weight: 400;
  	line-height: 1.25;
    margin-bottom: 1.25em;
  	margin-top: 0;
    text-align: center;
	}
  .blocks-list {
     margin: 0; 
  }
}

.blocks-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 600px) {
  .blocks-list {
    flex-direction: row;
    justify-content: space-between;
  }
}

.blocks-category {
  flex: 1 0 auto;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}

@media (min-width: 600px) {
  .blocks-category {
    align-self: flex-end;
    flex: 0 0 auto;
    width: 49%;
  }
  [dir="rtl"] .blocks-category {
    padding: 0 0 0 30px;
    a:after {
      display: none;
    }
  }
}

@media (min-width: 900px) {
  .blocks-category {
    width: 32%;
  }
}

.blocks-category a {
  color: rgba(42, 51, 60, 1);
  display: block;
  padding: 15px;
  background: #FFF;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  &:after {
    display: inline-block;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%23DDD' stroke-width='1.5' d='M8.752 5.03 15.75 12l-6.998 6.97'/%3E%3C/svg%3E"); 
    background-size: 24px 24px;
    height: 24px;
    position: absolute;
    right: .5em;
    top: calc(50% - 12px);
    width: 24px;
  }
  &:hover,
  &:active,
  &:focus {
    background: #f5f5f5;
    border-color: #E6E6E6;
    -webkit-box-shadow:inset 0px 0px 0px 1px #E6E6E6;
    -moz-box-shadow:inset 0px 0px 0px 1px #E6E6E6;
    box-shadow:inset 0px 0px 0px 1px #E6E6E6;
    text-decoration: underline;
    &:after { 
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%23494949' stroke-width='1.5' d='M8.752 5.03 15.75 12l-6.998 6.97'/%3E%3C/svg%3E"); 
  	}
  }
}

.blocks-category.empty-category {
  border: none;
}

.blocks-category-title {
  color: #006BDE;
  font-size: 1rem;
  font-weight: 400;
}

.blocks-article-item {
  margin-bottom: 15px;
}

/* Show only first 3 article links */
.blocks-article-item:nth-child(n+4) {
  display: none;
}

.blocks-section-link {
  font-size: 16px;
}

.blocks-see-all-link {
  font-weight: bold;
}

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

@media (min-width: 600px) {
  .promoted-articles {
    flex-direction: row;
    justify-content: space-between;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}


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

.promoted-articles-item a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 55px;
  background: #006BDE;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  &:after {
    display: inline-block;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='1.5' d='M8.752 5.03 15.75 12l-6.998 6.97'/%3E%3C/svg%3E"); 
    background-size: 24px 24px;
    height: 24px;
    position: absolute;
    right: .5em;
    top: calc(50% - 12px);
    width: 24px;
  }
  &:hover,
  &:focus,
  &:active {
    color: #fff;
    background: #006BDE;
    text-decoration: underline;
  } 
}

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

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

.community-image {
  min-height: 300px;
  background-image: url(/hc/theming_assets/01KY6N9G5EMKGC6G30W36WQVN6);
  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(42, 51, 60, 1);
  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: #546678;
  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: rgba(5, 114, 230, 1);
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

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

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

/***** Category pages *****/
.category-container {
  display: flex;
  flex-direction: row;
}

.category-content {
  flex: 1;
}

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

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

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

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

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

.section-tree-title {
  font-size: 18px;
  font-weight: 600;
}

.section-tree-title a {
  color: #006BDE;
}

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

.article-list-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.article-list-item a {
  color: #006BDE;
}

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

.icon-star::before {
  color: rgba(5, 114, 230, 1);
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  flex-direction: row;
}

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

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

.section-list {
  margin: 40px 0;
}

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

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

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

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

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

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

@media (min-width: 1024px) {
  .article-container {
  }
}

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

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

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

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

.article-title {
  margin: 0;
  font-family: "Aeonik";
  color: #1a1a1a;
  font-weight: 600;
}

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

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

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

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

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

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

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: "Aeonik";
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

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

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

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

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

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

.article-body a:visited {
  color: #034182;
}

.article-body code {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #546678;
  font-style: italic;
  padding: 0 15px;
}

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

/.article-body table {
 / width: 100%;
  /border: 1px solid #D4D5D7;
 / border-radius: 4px;
 / border-collapse: separate;
/}

.article-body table,
.article-body th,
.article-body td {
  border: 1px solid #D4D5D7 !important; 
  border-collapse: collapse;
}


.article-body th,
.article-body thead td {
  background: #f2f2f2;
  border-bottom: 1px solid #DDD;
}

.article-body td,
.article-body th {
  padding: 10px;
  border-bottom: 1px solid #DDD;
}

.article-body td {
  height: 40px !important;
}

.article-body td p {
  margin: 0;
  padding: 0;
}

.article-body tbody tr:last-child td,
.article-body tbody tr:last-child th {
  border-bottom: none;
}

.article-body tr:first-child td:first-child,
.article-body tr:first-child th:first-child {
  border-top-left-radius: 4px;
}

.article-body tr:first-child td:last-child,
.article-body tr:first-child th:last-child {
  border-top-right-radius: 4px;
}


.article-body hr {
  background-color: #E5E5E5;
  height: 1px;
  border: 0;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


.article-body .toggle {
  margin-bottom: 10px;
  background: #F7F9F9;
  border-radius: 3px;
  border: 1px solid #E6E6E6;
}

.article-body .toggle-title {
  position: relative;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  color: $heading_color;
  cursor: pointer;
  user-select: none;
}

.article-body .toggle-title:after {
  content: "\E75F";
  position: absolute;
  right: 20px;
  font-family: "entypo";
  color: #666666;
}

.toggle.open .toggle-title:after {
  content: "\E75C";
}

.article-body .toggle-content {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 25px;
  color: rgba(42, 51, 60, 1);
}

.article-body .toggle.open .toggle-content {
  display: block;
}

.article-body .toggle2 {
  margin-bottom: 5px;
  background: #F0F2F4;
  border-radius: 2px;
  border: 1px solid #E6E6E6;
}

.article-body .toggle2-title:before {
  content: "\E75F";
  position: absolute;
  left: 15px;
  font-family: "entypo";
  color: #666;
}

.article-body .toggle2-title {
  position: relative;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 600;
  color: $heading_color;
  cursor: pointer;
  user-select: none;
}


.toggle2.open .toggle2-title:before {
  content: "\E75C";
}

.article-body .toggle2-content {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 25px;
  color: #484848;
}

.article-body .toggle2.open .toggle2-content {
  display: block;
}
.article-body .toggle3 {
  margin-bottom: 5px;
  background: #F0F2F4;
  border-radius: 2px;
  border: 1px solid #E6E6E6;
}

.article-body .toggle3-title:before {
  content: "\E75F";
  position: absolute;
  left: 15px;
  font-family: "entypo";
  color: #666;
}

.article-body .toggle3-title {
  position: relative;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 600;
  color: $heading_color;
  cursor: pointer;
  user-select: none;
}

.toggle3.open .toggle3-title:before {
  content: "\E75C";
}

.article-body .toggle3-content {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 25px;
  color: #484848;
}

.article-body .toggle3.open .toggle3-content {
  display: block;
}
.article-body .togglewarning {
  margin-bottom: 5px;
  background: #f2f2f2;
  border-radius: 2px;
  border: 1px solid #C6DFEA;
}

.article-body .togglewarning-title:before {
  content: "\E75F";
  position: absolute;
  left: 10px;
  font-family: "entypo";
  color: #D90000;
	font-weight: 800;

}

.article-body .togglewarning-title {
  position: relative;
  padding: 5px 30px;
  font-size: 14px;
  color: #004265;
  cursor: pointer;
  user-select: none;
}

.togglewarning.open .togglewarning-title:before {
  content: "\E75C";
}

.article-body .togglewarning-content {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 25px;
  color: #484848;
}

.article-body .togglewarning.open .togglewarning-content {
  display: block;
}


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

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

.article-comment-count {
  color: #546678;
  font-weight: 300;
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(5, 114, 230, 1);
  width: 18px;
  height: 18px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: rgba(5, 114, 230, 1);
}

.article-vote:hover {
  background-color: rgba(5, 114, 230, 1);
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #FFFFFF;
}

.article-vote .icon, .article-vote .search::after, .article-vote .recent-activity-item-comment span::before, .recent-activity-item-comment .article-vote span::before, .article-vote .article-vote::before, .article-vote .attachments .attachment-item::before, .attachments .article-vote .attachment-item::before, .article-vote .share a::before, .share .article-vote a::before, .article-vote .actions .dropdown-toggle::before, .actions .article-vote .dropdown-toggle::before, .article-vote .collapsible-nav-toggle::after, .article-vote .collapsible-sidebar-toggle::after {
  vertical-align: middle;
}

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

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

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

.article-return-to-top a {
  color: rgba(42, 51, 60, 1);
  display: block;
  padding: 20px 0;
}

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

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

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

.article-unsubscribe {
  background-color: rgba(5, 114, 230, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #034182;
  border-color: #034182;
}

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

.sidenav-item {
  border-radius: 4px;
  color: rgba(42, 51, 60, 1);
  display: block;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: rgba(5, 114, 230, 1);
  color: #FFFFFF;
  text-decoration: none;
}

.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(42, 51, 60, 1);
  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: #546678;
}

/***** 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: #546678;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: rgba(5, 114, 230, 1);
}

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

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

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

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

.comment-heading, .recent-articles-title,
.related-articles-title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

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

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

.comment-callout {
  color: #546678;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: rgba(5, 114, 230, 1);
}

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

.comment-sorter .dropdown-toggle {
  color: #546678;
  font-weight: 300;
  font-size: 13px;
}

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(5, 114, 230, 1);
  padding: 40px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

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

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: rgba(5, 114, 230, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

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

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

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

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

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

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

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #546678;
  font-style: italic;
  padding: 0 15px;
}

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

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

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

.vote-sum {
  color: #546678;
  display: block;
  margin: 3px 0;
}

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

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(5, 114, 230, 1);
}

.vote-up, .vote-down {
  color: #546678;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(5, 114, 230, 1);
}

.vote-voted:hover {
  color: #034182;
}

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

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

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #546678;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

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

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

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}

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

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

.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow [role="button"]:hover {
  background-color: rgba(5, 114, 230, 1);
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: rgba(5, 114, 230, 1);
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #034182;
  border-color: #034182;
}

.community-follow [role="button"]::after {
  border-left: 1px solid rgba(5, 114, 230, 1);
  content: attr(data-follower-count);
  color: rgba(5, 114, 230, 1);
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

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

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid rgba(5, 114, 230, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

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

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

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

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

.striped-list-title {
  color: rgba(5, 114, 230, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}

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

.striped-list-title:visited {
  color: #034182;
}

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

.striped-list-count {
  color: #546678;
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

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

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

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

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

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

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(42, 51, 60, 1);
    display: block;
    font-weight: 400;
  }
}

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

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: rgba(5, 114, 230, 1);
}

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

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

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

.status-label-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #546678;
}

.status-label-pending {
  background-color: #1f73b7;
  text-align: center;
}

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

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

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

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

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

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

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

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

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

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

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

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

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

.post-body a:visited {
  color: #034182;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #546678;
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: #546678;
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: rgba(5, 114, 230, 1);
  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-title {
  font-size: 18px;
  font-weight: 600;
}

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

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

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

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

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle::after {
  content: "\25BE";
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(5, 114, 230, 1);
}

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

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

.collapsible-nav-list li {
  color: rgba(42, 51, 60, 1);
  line-height: 45px;
  order: 1;
}

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

.collapsible-nav-list li a {
  color: rgba(42, 51, 60, 1);
  display: block;
}

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

.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(5, 114, 230, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: rgba(42, 51, 60, 1);
}

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

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}

/* 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-title {
  margin-top: 0;
}

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

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

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(5, 114, 230, 1);
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

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

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

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.requests-table-toolbar .organization-unsubscribe {
  background-color: rgba(5, 114, 230, 1);
  color: #FFFFFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Following table */
.subscriptions-unsubscribe a {
  background: rgba(5, 114, 230, 1);
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

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

.subscriptions-unsubscribe a:hover {
  background-color: #034182;
  text-decoration: none;
}

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

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

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

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

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

/* Contributions table */
.contributions-table td:last-child {
  color: #546678;
  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: #546678;
}

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #E6E6E6;
  color: #546678;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

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

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

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid rgba(5, 114, 230, 1);
}

.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 rgba(5, 114, 230, 1);
}

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

.request-title {
  width: 100%;
}

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

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

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

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

@media (min-width: 1024px) {
  .request-sidebar h2 {
    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: #546678;
  font-weight: 300;
  width: 40%;
}

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

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

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

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

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

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

.pagination * {
  display: inline-block;
}


.pagination li {
  border-radius: 50%;
  width: 30px;
  height: 30px;

}


.pagination li {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 11px;
}

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

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

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

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: rgba(42, 51, 60, 1);
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: #546678;
  padding: 10px 12px;
}


@media (min-width: 768px) {
  .pagination a,
  .pagination span {
    font-size: 13px;
    padding: 0;
    line-height: 30px;
  }
}

.pagination-current {
  background-color: rgba(5, 114, 230, 1);
}

.pagination-current a, .pagination-current span {
  color: #FFFFFF;
}

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

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

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

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




.pagination-next {
  width: auto !important;
}

.pagination-next a {
  font-size: 0;
  color: #006BDE;
  white-space: nowrap;
}

.pagination-next a::before {
  content: "Next\00a0\00a0›";
  font-size: 15px;
  font-weight: 500;
}


.pagination-prev {
  width: auto !important;
}






.pagination-prev {
  width: auto !important;
}

.pagination-prev a {
  font-size: 0;
  color: #006BDE;
  white-space: nowrap;
}

.pagination-prev a::before {
  content: "‹  Back";
  font-size: 15px;
  font-weight: 500;
}






.pagination-last {
  display: none;
}

.pagination-first {
  display: none;
}


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

.meta-group * {
  display: inline;
}

.meta-data {
  color: #546678;
  font-size: 13px;
}

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

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.actions .dropdown-toggle::before,
.collapsible-nav-toggle::after,
.collapsible-sidebar-toggle::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-facebook::before {
  content: "\e903";
}

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

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

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

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

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

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

.icon-search::after {
  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 {
  padding: 30px 0;
  background-color: #f7f7f7;
}

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

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

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

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

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

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

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

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

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

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

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

.profile-header .options [data-action="edit-profile"] {
  background-color: rgba(5, 114, 230, 1);
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: rgba(5, 114, 230, 1);
}

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

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

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

.profile-stats .stat-label {
  color: #546678;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-nav {
  background-color: #f2f2f2;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

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

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

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

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #546678;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

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

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

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item[aria-selected="true"] {
  background-color: #f2f2f2;
  color: inherit;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #666;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(5, 114, 230, 1);
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: ' \2304';
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

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

.search-results-list > li {
  padding: 20px 0;
}

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

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}

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

.search-results .meta-group > li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group > li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

.search-result-votes, .search-result-meta-count {
  color: #546678;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(5, 114, 230, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

.search-result-breadcrumbs li, .search-result-breadcrumbs li a, .search-result-breadcrumbs li a:visited {
  color: inherit;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 5px;
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}





/***** Sidebar *****/

.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.sidebar-panel {
  display: none;
  margin-right: 35px;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}

.sidebar-item {
  padding: 6px 0;
  font-size: 14px;
}

.sidebar-item .sidebar-item {
  padding: 10px 20px;
  padding-right: 0;
}

.sidebar-item.current {
  background: #F7F9F9;
  border-radius: 8px;
  padding-right: 20px;
}

.sidebar-item-title {
  position: relative;
  display: block;
  margin-bottom: 5px;
  color: #1a1a1a;
  cursor: pointer;
  text-decoration: none;

  /* allow long titles to wrap */
  padding-right: 25px;
  white-space: normal;
  line-height: 1.4;
}

.sidebar-item-title::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.sidebar-item.open > .sidebar-item-title::after {
  content: "–";
}

.sidebar-home .sidebar-item-title::after {
  display: none;
}

.sidebar-home .sidebar-item-title {
  color: #1a1a1a;
}

.sidebar-item-link {
  display: block;
  color: #006BDE;
  font-size: 14px;
  font-family: "Aeonik";
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sidebar-section {
  border-top: 1px solid #EEE;
  padding: 15px 0;
}

.sidebar-category-title, .sidebar-home .sidebar-item-title {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Aeonik';
}

.sidebar-section .sidebar-item-title {
  font-size: 13px;
}

@media (min-width: 768px) {
  #sidebar {
    flex: 1 0 30%;
  }

  .sidebar-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .sidebar-panel {
    display: block;
  }
}

#toc {
  display: none;
  background-color: #f2f2f2;
  padding: 25px 30px;
  margin: 0 0 2em 2em;
  float: right;
  width: 300px;
}

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

#toc + h2 {
  margin-top: 0;
}

#toc .toc-title {
  display: block;
  margin-top: 0;
  margin-bottom: 1em;
  border-top: none;
  padding-top: 0;
  font-size: 18px;
  text-transform: uppercase;
}

#toc .toc-links {
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  color: #484848;
  font-size: 14px;
}

#toc li {
  line-height: 1.4em;
  padding-bottom: 15px;
  margin-left: 0;
}

#toc li:last-child {
  padding-bottom: 0;
}

#toc .toc-link {
  color: #424242;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}

#toc .toc-link:hover {
  text-decoration: underline;
}


/*=========================================================
 * CUSTOM – ADDED 19.07.2024
 *========================================================= */

/** related content cards ---------------------------------------- **/

.related-content {
  border-top: 1px solid #E6E6E6;
  padding-top: 1rem;
  margin-top: 2rem;

  h3 {
    margin-bottom: 1rem;
  }
  h4 {
    margin-bottom: .75rem;
    margin-top: 0;
  }
}

.related-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: normal;
  align-content: stretch;

    @media (width < 1000px) {
    flex-wrap: wrap;
  }
}

.related-card {
  background: #f5f5f5;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  padding: 1.25rem 1.5rem;
  width: 32%;

  @media (width < 1000px) {
    flex-shrink: 0;
    margin-bottom: .5rem;
    width: 100%;
  }
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  li {
    margin-bottom: .5em;
    &:last-of-type {
      margin-bottom: 0;
    }
  } 
}

/*=========================================================
 * CUSTOM
 *========================================================= */

/** article banners ---------------------------------------- **/

.article-body .tip {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em; 
  padding: 18px 16px 16px 55px;
  border-radius: 8px;
  border: 1px solid #805FFF;
	background: #EBE5FF;
}

.article-body .tip strong:first-of-type {
  text-transform: uppercase;
}

.article-body .tip:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 13px;
  left: 11px;
  background-color: #6E50DE;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M16.0271 4.00773C11.6219 3.99343 8.03415 7.54359 8.00215 11.9488L8.00195 11.9763L8.00022 12.0038C7.85302 14.3612 8.88149 16.6388 10.7472 18.0872L10.7796 18.1123L10.8946 18.2177C11.8352 19.0785 13.0002 20.1447 13.0002 22.0001H11.0002C11.0002 21.096 10.5156 20.585 9.48732 19.6409C7.12725 17.7912 5.82455 14.9007 6.00245 11.9068C6.05712 6.41289 10.5361 1.9899 16.0336 2.00774C21.5315 2.02569 25.9818 6.47833 26.0001 11.9729C26.152 14.9591 24.836 17.831 22.4763 19.6657C21.4134 20.6609 21.0002 21.1238 21.0002 22.0001H19.0002C19.0002 20.1759 20.0849 19.1627 21.0817 18.2315L21.1796 18.14L21.2178 18.1106C23.0869 16.6736 24.1281 14.408 24.0016 12.0537L24.0002 12.0273V12.0008C23.9969 7.59556 20.4324 4.02213 16.0271 4.00773Z" fill="black"/><path d="M19.0002 30.0001H13.0002V28.0001H19.0002V30.0001Z" fill="black"/><path d="M11.0002 26.0001H21.0002V24.0001H11.0002V26.0001Z" fill="black"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M16.0271 4.00773C11.6219 3.99343 8.03415 7.54359 8.00215 11.9488L8.00195 11.9763L8.00022 12.0038C7.85302 14.3612 8.88149 16.6388 10.7472 18.0872L10.7796 18.1123L10.8946 18.2177C11.8352 19.0785 13.0002 20.1447 13.0002 22.0001H11.0002C11.0002 21.096 10.5156 20.585 9.48732 19.6409C7.12725 17.7912 5.82455 14.9007 6.00245 11.9068C6.05712 6.41289 10.5361 1.9899 16.0336 2.00774C21.5315 2.02569 25.9818 6.47833 26.0001 11.9729C26.152 14.9591 24.836 17.831 22.4763 19.6657C21.4134 20.6609 21.0002 21.1238 21.0002 22.0001H19.0002C19.0002 20.1759 20.0849 19.1627 21.0817 18.2315L21.1796 18.14L21.2178 18.1106C23.0869 16.6736 24.1281 14.408 24.0016 12.0537L24.0002 12.0273V12.0008C23.9969 7.59556 20.4324 4.02213 16.0271 4.00773Z" fill="black"/><path d="M19.0002 30.0001H13.0002V28.0001H19.0002V30.0001Z" fill="black"/><path d="M11.0002 26.0001H21.0002V24.0001H11.0002V26.0001Z" fill="black"/></svg>') center/contain no-repeat;
}

.article-body .info {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em; 
  padding: 18px 16px 16px 55px;
  border-radius: 8px;
  border: 1px solid #006BDE;
	background: #E5F2FF;
}

.article-body .info:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 13px;
  left: 11px;
  background-color: #006BDE;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M12 22V24H20V22H17V14H13V16H15V22H12Z" fill="black"/><path d="M14.5 9.5C14.5 8.67157 15.1716 8 16 8C16.8284 8 17.5 8.67157 17.5 9.5C17.5 10.3284 16.8284 11 16 11C15.1716 11 14.5 10.3284 14.5 9.5Z" fill="black"/><path d="M16 2C8.268 2 2 8.268 2 16C2 23.732 8.268 30 16 30C23.732 30 30 23.732 30 16C30 8.268 23.732 2 16 2ZM4 16C4 9.3726 9.3726 4 16 4C22.6274 4 28 9.3726 28 16C28 22.6274 22.6274 28 16 28C9.3726 28 4 22.6274 4 16Z" fill="black"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M12 22V24H20V22H17V14H13V16H15V22H12Z" fill="black"/><path d="M14.5 9.5C14.5 8.67157 15.1716 8 16 8C16.8284 8 17.5 8.67157 17.5 9.5C17.5 10.3284 16.8284 11 16 11C15.1716 11 14.5 10.3284 14.5 9.5Z" fill="black"/><path d="M16 2C8.268 2 2 8.268 2 16C2 23.732 8.268 30 16 30C23.732 30 30 23.732 30 16C30 8.268 23.732 2 16 2ZM4 16C4 9.3726 9.3726 4 16 4C22.6274 4 28 9.3726 28 16C28 22.6274 22.6274 28 16 28C9.3726 28 4 22.6274 4 16Z" fill="black"/></svg>') center/contain no-repeat;
}

.article-body .info strong:first-of-type {
  text-transform: uppercase;
}

.article-body .result {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em; 
  padding: 18px 16px 16px 55px;
  border-radius: 8px;
  border: 1px solid #16725D;
  background: #EAFBF7;
}

.article-body .result:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 13px;
  left: 11px;
  border-radius: 20px;
  background-color: #16725D;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M19.5859 9.00087L12 16.5859L8.41303 12.9998L6.99897 14.4142L12 19.4141L21.0001 10.4152L19.5859 9.00087Z" fill="black"/><path d="M14 0C6.268 0 0 6.268 0 14C0 21.732 6.268 28 14 28C21.732 28 28 21.732 28 14C28 6.268 21.732 0 14 0ZM2 14C2 7.3726 7.37257 2 14 2C20.6274 2 26 7.3726 26 14C26 20.6274 20.6274 26 14 26C7.37257 26 2 20.6274 2 14Z" fill="black"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M19.5859 9.00087L12 16.5859L8.41303 12.9998L6.99897 14.4142L12 19.4141L21.0001 10.4152L19.5859 9.00087Z" fill="black"/><path d="M14 0C6.268 0 0 6.268 0 14C0 21.732 6.268 28 14 28C21.732 28 28 21.732 28 14C28 6.268 21.732 0 14 0ZM2 14C2 7.3726 7.37257 2 14 2C20.6274 2 26 7.3726 26 14C26 20.6274 20.6274 26 14 26C7.37257 26 2 20.6274 2 14Z" fill="black"/></svg>') center/contain no-repeat;
}

.article-body .trade {  
  border-radius: 8px;
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em; 
  padding: 18px 16px 16px 55px;
  border: 1px solid #47319B;
  background: #EBE5FF;
}

.article-body .trade:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 13px;
  left: 11px;
  border-radius: 20px;
  background-color: #47319B;
  -webkit-mask: url('data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M26.2959%2025.29C26.6867%2024.9024%2027.3175%2024.9034%2027.7071%2025.293C28.0976%2025.6835%2028.0976%2026.3165%2027.7071%2026.707L27.7012%2026.7129C27.6988%2026.7152%2027.6953%2026.7179%2027.6924%2026.7207C27.6866%2026.7263%2027.6798%2026.7338%2027.6719%2026.7412C27.6561%2026.756%2027.6356%2026.7746%2027.6114%2026.7959C27.5624%2026.8387%2027.4957%2026.8934%2027.4121%2026.9561C27.2447%2027.0816%2027.0067%2027.2398%2026.6973%2027.3945C26.075%2027.7057%2025.1728%2028%2024%2028C22.7735%2028%2022.1094%2027.6728%2021.5528%2027.3945C21.1094%2027.1728%2020.7734%2027%2020%2027C19.2266%2027%2018.8907%2027.1728%2018.4473%2027.3945C17.8907%2027.6728%2017.2266%2028%2016%2028C14.7735%2028%2014.1094%2027.6728%2013.5528%2027.3945C13.1094%2027.1728%2012.7734%2027%2012%2027C11.2266%2027%2010.8907%2027.1728%2010.4473%2027.3945C9.8907%2027.6728%209.22659%2028%208.00003%2028C6.82727%2028%205.92505%2027.7057%205.30276%2027.3945C4.99336%2027.2398%204.75537%2027.0816%204.58792%2026.9561C4.50432%2026.8934%204.43764%2026.8387%204.3887%2026.7959C4.36441%2026.7746%204.34399%2026.756%204.32815%2026.7412C4.32023%2026.7338%204.31345%2026.7263%204.30765%2026.7207C4.30474%2026.7179%204.30123%2026.7152%204.29886%2026.7129L4.29593%2026.71C4.29593%2026.71%204.50006%2026.5%204.293%2026.707C3.90249%2026.3165%203.90249%2025.6835%204.293%2025.293C4.68254%2024.9034%205.31337%2024.9025%205.70413%2025.29C5.71764%2025.3019%205.74603%2025.3256%205.78714%2025.3564C5.86967%2025.4183%206.00681%2025.5102%206.19729%2025.6055C6.575%2025.7943%207.1728%2026%208.00003%2026C8.77344%2026%209.10937%2025.8272%209.55276%2025.6055C10.1094%2025.3272%2010.7735%2025%2012%2025C13.2266%2025%2013.8907%2025.3272%2014.4473%2025.6055C14.8907%2025.8272%2015.2266%2026%2016%2026C16.7734%2026%2017.1094%2025.8272%2017.5528%2025.6055C18.1094%2025.3272%2018.7735%2025%2020%2025C21.2266%2025%2021.8907%2025.3272%2022.4473%2025.6055C22.8907%2025.8272%2023.2266%2026%2024%2026C24.8273%2026%2025.425%2025.7943%2025.8028%2025.6055C25.9932%2025.5102%2026.1304%2025.4183%2026.2129%2025.3564C26.254%2025.3256%2026.2824%2025.3019%2026.2959%2025.29Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.1026%204.00488C19.6067%204.05621%2020%204.48232%2020%205V9H22L22.1026%209.00488C22.6067%209.05621%2023%209.48232%2023%2010V15.2568L27.1787%2016.0166C27.4739%2016.0703%2027.7297%2016.2531%2027.875%2016.5156C28.0202%2016.7782%2028.0401%2017.0925%2027.9287%2017.3711L25.9287%2022.3711C25.7237%2022.8838%2025.1416%2023.1336%2024.6289%2022.9287C24.1163%2022.7236%2023.8665%2022.1416%2024.0713%2021.6289L25.6162%2017.7637L17%2016.1973V22C17%2022.5177%2016.6067%2022.9438%2016.1026%2022.9951C16.0689%2022.9985%2016.0346%2023%2016%2023C15.9654%2023%2015.9312%2022.9986%2015.8975%2022.9951C15.3934%2022.9438%2015%2022.5177%2015%2022V16.1973L6.38382%2017.7637L7.92874%2021.6289C8.13361%2022.1416%207.88379%2022.7236%207.37112%2022.9287C6.85843%2023.1336%206.27638%2022.8838%206.07132%2022.3711L4.07132%2017.3711C3.96%2017.0925%203.97982%2016.7782%204.12503%2016.5156C4.27033%2016.2531%204.52613%2016.0703%204.82132%2016.0166L9.00003%2015.2568V10L9.00491%209.89746C9.05624%209.39334%209.48237%209.00002%2010%209H12V5L12.0049%204.89746C12.0562%204.39334%2012.4824%204.00002%2013%204H19L19.1026%204.00488ZM11%2014.8926L15.8213%2014.0166C15.8265%2014.0157%2015.8317%2014.0145%2015.8369%2014.0137C15.8557%2014.0106%2015.8746%2014.0089%2015.8936%2014.0068C15.9096%2014.0051%2015.9255%2014.0029%2015.9414%2014.002C15.9476%2014.0016%2015.9538%2014.0012%2015.96%2014.001H16.0401C16.0459%2014.0012%2016.0518%2014.0016%2016.0576%2014.002C16.0736%2014.0029%2016.0895%2014.0051%2016.1055%2014.0068C16.1244%2014.0088%2016.1434%2014.0106%2016.1621%2014.0137C16.1677%2014.0146%2016.1732%2014.0156%2016.1787%2014.0166L21%2014.8926V11H11V14.8926ZM14%209H18V6H14V9Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M26.2959%2025.29C26.6867%2024.9024%2027.3175%2024.9034%2027.7071%2025.293C28.0976%2025.6835%2028.0976%2026.3165%2027.7071%2026.707L27.7012%2026.7129C27.6988%2026.7152%2027.6953%2026.7179%2027.6924%2026.7207C27.6866%2026.7263%2027.6798%2026.7338%2027.6719%2026.7412C27.6561%2026.756%2027.6356%2026.7746%2027.6114%2026.7959C27.5624%2026.8387%2027.4957%2026.8934%2027.4121%2026.9561C27.2447%2027.0816%2027.0067%2027.2398%2026.6973%2027.3945C26.075%2027.7057%2025.1728%2028%2024%2028C22.7735%2028%2022.1094%2027.6728%2021.5528%2027.3945C21.1094%2027.1728%2020.7734%2027%2020%2027C19.2266%2027%2018.8907%2027.1728%2018.4473%2027.3945C17.8907%2027.6728%2017.2266%2028%2016%2028C14.7735%2028%2014.1094%2027.6728%2013.5528%2027.3945C13.1094%2027.1728%2012.7734%2027%2012%2027C11.2266%2027%2010.8907%2027.1728%2010.4473%2027.3945C9.8907%2027.6728%209.22659%2028%208.00003%2028C6.82727%2028%205.92505%2027.7057%205.30276%2027.3945C4.99336%2027.2398%204.75537%2027.0816%204.58792%2026.9561C4.50432%2026.8934%204.43764%2026.8387%204.3887%2026.7959C4.36441%2026.7746%204.34399%2026.756%204.32815%2026.7412C4.32023%2026.7338%204.31345%2026.7263%204.30765%2026.7207C4.30474%2026.7179%204.30123%2026.7152%204.29886%2026.7129L4.29593%2026.71C4.29593%2026.71%204.50006%2026.5%204.293%2026.707C3.90249%2026.3165%203.90249%2025.6835%204.293%2025.293C4.68254%2024.9034%205.31337%2024.9025%205.70413%2025.29C5.71764%2025.3019%205.74603%2025.3256%205.78714%2025.3564C5.86967%2025.4183%206.00681%2025.5102%206.19729%2025.6055C6.575%2025.7943%207.1728%2026%208.00003%2026C8.77344%2026%209.10937%2025.8272%209.55276%2025.6055C10.1094%2025.3272%2010.7735%2025%2012%2025C13.2266%2025%2013.8907%2025.3272%2014.4473%2025.6055C14.8907%2025.8272%2015.2266%2026%2016%2026C16.7734%2026%2017.1094%2025.8272%2017.5528%2025.6055C18.1094%2025.3272%2018.7735%2025%2020%2025C21.2266%2025%2021.8907%2025.3272%2022.4473%2025.6055C22.8907%2025.8272%2023.2266%2026%2024%2026C24.8273%2026%2025.425%2025.7943%2025.8028%2025.6055C25.9932%2025.5102%2026.1304%2025.4183%2026.2129%2025.3564C26.254%2025.3256%2026.2824%2025.3019%2026.2959%2025.29Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.1026%204.00488C19.6067%204.05621%2020%204.48232%2020%205V9H22L22.1026%209.00488C22.6067%209.05621%2023%209.48232%2023%2010V15.2568L27.1787%2016.0166C27.4739%2016.0703%2027.7297%2016.2531%2027.875%2016.5156C28.0202%2016.7782%2028.0401%2017.0925%2027.9287%2017.3711L25.9287%2022.3711C25.7237%2022.8838%2025.1416%2023.1336%2024.6289%2022.9287C24.1163%2022.7236%2023.8665%2022.1416%2024.0713%2021.6289L25.6162%2017.7637L17%2016.1973V22C17%2022.5177%2016.6067%2022.9438%2016.1026%2022.9951C16.0689%2022.9985%2016.0346%2023%2016%2023C15.9654%2023%2015.9312%2022.9986%2015.8975%2022.9951C15.3934%2022.9438%2015%2022.5177%2015%2022V16.1973L6.38382%2017.7637L7.92874%2021.6289C8.13361%2022.1416%207.88379%2022.7236%207.37112%2022.9287C6.85843%2023.1336%206.27638%2022.8838%206.07132%2022.3711L4.07132%2017.3711C3.96%2017.0925%203.97982%2016.7782%204.12503%2016.5156C4.27033%2016.2531%204.52613%2016.0703%204.82132%2016.0166L9.00003%2015.2568V10L9.00491%209.89746C9.05624%209.39334%209.48237%209.00002%2010%209H12V5L12.0049%204.89746C12.0562%204.39334%2012.4824%204.00002%2013%204H19L19.1026%204.00488ZM11%2014.8926L15.8213%2014.0166C15.8265%2014.0157%2015.8317%2014.0145%2015.8369%2014.0137C15.8557%2014.0106%2015.8746%2014.0089%2015.8936%2014.0068C15.9096%2014.0051%2015.9255%2014.0029%2015.9414%2014.002C15.9476%2014.0016%2015.9538%2014.0012%2015.96%2014.001H16.0401C16.0459%2014.0012%2016.0518%2014.0016%2016.0576%2014.002C16.0736%2014.0029%2016.0895%2014.0051%2016.1055%2014.0068C16.1244%2014.0088%2016.1434%2014.0106%2016.1621%2014.0137C16.1677%2014.0146%2016.1732%2014.0156%2016.1787%2014.0166L21%2014.8926V11H11V14.8926ZM14%209H18V6H14V9Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}

.article-body .warning {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em; 
  padding: 18px 16px 16px 55px;
  border: 1px solid #E58A00;
	background: #FFF5E5;
  border-radius: 8px;   
}

.article-body .warning:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 13px;
  left: 11px;
  background-color: #E58A00;
  -webkit-mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17%2012H15V21H17V12Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20d%3D%22M16%2023C15.1716%2023%2014.5%2023.6716%2014.5%2024.5C14.5%2025.3284%2015.1716%2026%2016%2026C16.8284%2026%2017.5%2025.3284%2017.5%2024.5C17.5%2023.6716%2016.8284%2023%2016%2023Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20d%3D%22M2.14519%2029.519C2.32652%2029.8176%202.65059%2030%203%2030H29C29.3494%2030%2029.6735%2029.8176%2029.8548%2029.519C30.0362%2029.2203%2030.0484%2028.8486%2029.8872%2028.5386L16.8872%203.5386C16.7151%203.20765%2016.3731%203%2016%203C15.627%203%2015.2849%203.20765%2015.1128%203.5386L2.11281%2028.5386C1.95159%2028.8486%201.96387%2029.2203%202.14519%2029.519ZM27.3493%2028H4.6507L4.6487%2027.9967L15.998%206.1714H16.002L27.3513%2027.9967L27.3493%2028Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
  mask: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M17%2012H15V21H17V12Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20d%3D%22M16%2023C15.1716%2023%2014.5%2023.6716%2014.5%2024.5C14.5%2025.3284%2015.1716%2026%2016%2026C16.8284%2026%2017.5%2025.3284%2017.5%2024.5C17.5%2023.6716%2016.8284%2023%2016%2023Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3Cpath%20d%3D%22M2.14519%2029.519C2.32652%2029.8176%202.65059%2030%203%2030H29C29.3494%2030%2029.6735%2029.8176%2029.8548%2029.519C30.0362%2029.2203%2030.0484%2028.8486%2029.8872%2028.5386L16.8872%203.5386C16.7151%203.20765%2016.3731%203%2016%203C15.627%203%2015.2849%203.20765%2015.1128%203.5386L2.11281%2028.5386C1.95159%2028.8486%201.96387%2029.2203%202.14519%2029.519ZM27.3493%2028H4.6507L4.6487%2027.9967L15.998%206.1714H16.002L27.3513%2027.9967L27.3493%2028Z%22%20fill%3D%22%231A1A1A%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}

.article-body .warning strong:first-of-type {
  text-transform: uppercase;
}

.article-body .geo {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 18px 16px 16px 55px;
  border-radius: 8px;
  border: 1px solid #1D164C;
    background: #EDEBF9;
}


.article-body .geo:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 18px;
  left: 14px;
  background-color: #1D164C; 
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2 2 8.268 2 16s6.268 14 14 14M12.447 4.535a12.4 12.4 0 0 0-.916 1.914C10.66 8.715 10.108 11.71 10.014 15H4.041c.408-4.948 3.819-9.045 8.406-10.465M16 4c.312 0 .72.16 1.206.694.486.535.97 1.364 1.396 2.473.769 1.998 1.29 4.74 1.383 7.833h-7.97c.093-3.092.614-5.835 1.383-7.833.426-1.11.91-1.938 1.396-2.473S15.688 4 16 4m5.986 11c-.094-3.29-.646-6.285-1.517-8.551a12.4 12.4 0 0 0-.916-1.914C24.14 5.955 27.551 10.052 27.96 15zm-2.001 2c-.093 3.092-.614 5.835-1.383 7.833-.426 1.11-.91 1.938-1.396 2.473S16.312 28 16 28s-.72-.16-1.206-.694c-.486-.535-.97-1.364-1.396-2.473-.769-1.998-1.29-4.74-1.383-7.833zm-.432 10.465c.342-.57.647-1.215.916-1.914.871-2.266 1.423-5.261 1.517-8.551h5.973c-.408 4.948-3.819 9.045-8.406 10.465m-7.106 0C7.86 26.045 4.449 21.948 4.04 17h5.973c.094 3.29.646 6.285 1.517 8.551.269.699.574 1.344.916 1.914"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M16 30c7.732 0 14-6.268 14-14S23.732 2 16 2 2 8.268 2 16s6.268 14 14 14M12.447 4.535a12.4 12.4 0 0 0-.916 1.914C10.66 8.715 10.108 11.71 10.014 15H4.041c.408-4.948 3.819-9.045 8.406-10.465M16 4c.312 0 .72.16 1.206.694.486.535.97 1.364 1.396 2.473.769 1.998 1.29 4.74 1.383 7.833h-7.97c.093-3.092.614-5.835 1.383-7.833.426-1.11.91-1.938 1.396-2.473S15.688 4 16 4m5.986 11c-.094-3.29-.646-6.285-1.517-8.551a12.4 12.4 0 0 0-.916-1.914C24.14 5.955 27.551 10.052 27.96 15zm-2.001 2c-.093 3.092-.614 5.835-1.383 7.833-.426 1.11-.91 1.938-1.396 2.473S16.312 28 16 28s-.72-.16-1.206-.694c-.486-.535-.97-1.364-1.396-2.473-.769-1.998-1.29-4.74-1.383-7.833zm-.432 10.465c.342-.57.647-1.215.916-1.914.871-2.266 1.423-5.261 1.517-8.551h5.973c-.408 4.948-3.819 9.045-8.406 10.465m-7.106 0C7.86 26.045 4.449 21.948 4.04 17h5.973c.094 3.29.646 6.285 1.517 8.551.269.699.574 1.344.916 1.914"/></svg>') center/contain no-repeat;
}





/* =================================
   HERO – LEFT ALIGNED LAYOUT
   ================================= */

.hero--custom {
  background: #fff;
  height: auto;
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero__content {
  text-align: left;
}

.hero__content .hero-title {
  font-size: 40px;
  margin-bottom: 12px;
  color: #006BDE;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #424242;
}

.hero__content .search {
  max-width: 520px;
}

.search-disclaimer {
  margin-top: 8px;
  font-size: 13px;
  color: #424242;
}

.hero__media {
  text-align: right;
}

.hero__image {
  max-width: 100%;
  border-radius: 16px;
}



@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__media {
    text-align: center;
  }
}




/* STEP 2 – Show hero subtitle and disclaimer */

.hero--custom p {
  color: #1a1a1a;
}

.hero--custom .search-disclaimer {
  font-size: 13px;
  margin-top: 8px;
  color: #424242;
}



/* STEP 3 – Constrain hero image size */

.hero--custom .hero__media img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* =========================================
   HERO – SEARCH BAR (Image 2 match)
   ========================================= */

.hero--custom .search {
  max-width: 520px;
}

/* Search input */
.hero--custom .search-full input[type="search"] {
  height: 48px;
  border-radius: 999px;
  border: 1px solid #cfd5dd;
  background-color: #ffffff;
  font-size: 15px;
  padding-left: 24px;
  padding-right: 56px;
  color: #424242;
}

/* Placeholder text */
.hero--custom .search-full input::placeholder {
  color: #6f6F6F;
}

/* Search button */
.hero--custom #submit-search {
  width: 48px;
}

.hero--custom #submit-search:before {
  color: #006BDE;
  font-size: 18px;
}



/* =========================================
   HERO – FORCE FONT SIZES (Image 2 match)
   ========================================= */

/* Subtitle */
.hero.section.hero--custom .hero__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #424242;
}

/* Search disclaimer */
.hero.section.hero--custom .search-disclaimer {
  font-size: 13px;
  line-height: 1.4;
  color: #6F6F6F;
	font-style: italic;
  padding-left: 24px;

}








/* HERO – spacing between search and disclaimer */
.hero.section.hero--custom .search-disclaimer {
  margin-top: 8px; /* increase spacing */
}



/* HERO – Custom SVG search button */

.hero--custom #submit-search:before {
  content: none;
}

.hero--custom #submit-search {
  background: url(/hc/theming_assets/01KY6N9DQ0F7CPY3F1WJP3J9M6) center no-repeat;
  background-size: 38px 38px;
  width: 48px;
  height: 48px;
}




/* HERO – disable background image for custom hero */
.hero.hero--custom {
  background-image: none;
}


/* HERO – rounded right-hand image */
.hero--custom .hero__media {
  border-radius: 16px;
  overflow: hidden;
}




/* =========================================
   SEARCH – INSTANT AUTOCOMPLETE DROPDOWN
   ========================================= */

/* Allow dropdown to escape hero container */
.hero--custom,
.hero__grid,
.hero__content {
  overflow: visible;
}

/* Zendesk instant search dropdown */
.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin-top: 8px;
}

/* Dropdown list items */
.search-autocomplete-results li {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.search-autocomplete-results li:last-child {
  border-bottom: none;
}

/* Result links */
.search-autocomplete-results a {
  color: #006BDE;
  font-weight: 500;
  text-decoration: none;
}

.search-autocomplete-results a:hover {
  text-decoration: underline;
}











/* HEADER – align nav with hero image edge (exact match) */

@media (min-width: 1024px) {
  .header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .header .nav-wrapper,
  .header .user-nav {
    margin-right: 0px; /* matches hero grid gap */
  }
}






/* HEADER – site title (ANZ Digital Services Help) */

.logo a {
  display: flex;
  align-items: center;
  gap: 16.75px;
}

/* Title text */
.header-title {
  font-family: "Aeonik";
  font-size: 16px;
  font-weight: 600;
  color: #1D164C;   /* required colour */
  line-height: 1;
  white-space: nowrap;
}





/* HEADER – lock logo + title layout */

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header title styling */
.header-title {
  font-family: "Aeonik";
  font-size: 16px;
  font-weight: 600;
  color: #1D164C; /* required colour */
  white-space: nowrap;
  line-height: 1;
}

/* Prevent layout shift on desktop */
@media (min-width: 1024px) {
  .header-inner {
    min-height: 64px;
  }
}




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

.logo img {
  display: block;
  height: 32px;
  width: auto;
}

.logo .header-title {
  margin-left: 0px;
  font-family: "Aeonik";
  font-size: 20px;
  font-weight: 600;
  color: #1D164C; /* or #fff if header is dark */
  white-space: nowrap;
}





/* =========================================
   HEADER – Top navigation colour (ANZ blue)
   ========================================= */

.header .nav-wrapper a,
.header .nav-wrapper button {
  color: #006BDE;
  font-weight: 600;
}

/* Hover / focus */
.header .nav-wrapper a:hover,
.header .nav-wrapper button:hover,
.header .nav-wrapper a:focus,
.header .nav-wrapper button:focus {
  color: #006BDE;
  text-decoration: underline;
}

/* Language selector text */
.header .language-selector .dropdown-toggle {
  color: #006BDE;
}












/* HEADER – hide language selector arrow safely 
.header .language-selector .dropdown-toggle::after {
  opacity: 0;
}*/






/* HEADER – visually drop Status Page to match language selector 
.header .status-page-link {
  position: relative;
  top: 2px;
}
*/




/* HEADER – return Contact link to normal flow */
@media (min-width: 768px) {
  .header .submit-a-request {
    position: relative;
    top: auto;
  }
}




/* Desktop: align header nav with hero/image edges */
@media (min-width: 1024px) {
  .header-inner {
    padding-left: 0;
    padding-right: 0;
  }
}




/* =========================================
   LANGUAGE DROPDOWN – final styling (match Image 5)
   ========================================= */

/* Language items – match nav text colour */
.header .language-selector .dropdown-menu a {
  color: #1a1a1a;        /* black text as header nav */
  font-weight: 400;
  padding: 8px 16px;    /* establishes left/right rhythm */
}

/* Hover behaviour remains consistent */
.header .language-selector .dropdown-menu a:hover {
  text-decoration: underline;
}

/* Disclaimer block */
.header .language-selector .language-disclaimer {
  margin-top: 8px;
  padding: 8px 16px;          /* <-- matches language item padding */
  border-top: 1px solid #E6E6E6;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;             /* muted disclaimer tone */
}
























@media (min-width: 1024px) {
  .promoted-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }

  .promoted-articles-item {
    margin: 0;
    width: 100%;
  }

  .promoted-articles-item a {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    white-space: normal;
  }

  .promoted-articles-item a::after {
    display: none;
  }
}





/* =========================================
   SUPPORT CATEGORIES – ANZ visual update
   ========================================= */

.blocks-category a {
  /* layout */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* typography */
  font-size: 15px;
  font-weight: 400;
  color: #006BDE;            /* ANZ blue */

  /* visual */
  border: 1.5px solid #006BDE;
  background: transparent;

  /* spacing */
  padding: 16px;
  line-height: 1.4;

  /* remove truncation */
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

/* Remove arrow icon (Support Categories only) */
.blocks-category a::after {
  display: none;
}




/* =========================================
   SUPPORT CATEGORIES – fix heading spacing
   ========================================= */

.knowledge-base .faq-header {
  margin-bottom: 24px;
}




/* RIGHT PANEL – section headers should be black (match Image 9) */
.section-tree-title a {
  color: #1a1a1a;
}





/* ================================
   SIDEBAR – colour rules
   ================================ */

/* 1. All sidebar section headers = black */
.sidebar-item-title,
.sidebar-category-title {
  color: #1a1a1a;
}

/* Keep section headers black on hover */
.sidebar-item-title:hover,
.sidebar-category-title:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* 2. Article links default = black */
.sidebar-item-link {
  color: #1a1a1a;
}

/* 3. ONLY the current article = blue */
.sidebar-item.current .sidebar-item-link,
.sidebar-item-link.current {
  color: #006BDE; /* ANZ blue */
  font-weight: 600;
}

/* Optional: underline current article for clarity */
.sidebar-item.current .sidebar-item-link {
  text-decoration: none;
}




/* =========================================
   SIDEBAR TYPOGRAPHY RULES
   ========================================= */

/* 1. Category + Section headers = bold */
.sidebar-item-title,
.sidebar-category-title {
  font-weight: 600; /* bold */
  color: #1a1a1a;
}

/* 2. ALL article titles = normal weight */
.sidebar-item-link {
  font-weight: 400; /* not bold */
  color: #1a1a1a;
}

/* 3. Current article */
.sidebar-item.current .sidebar-item-link {
  color: #006BDE;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}




/* =========================================
   SIDEBAR – normalize header font sizes
   ========================================= */

/* Category headers */
.sidebar-category-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

/* Section headers – match category size */
.sidebar-item-title {
  font-size: 15px;  /* same as category */
  font-weight: 400;
  line-height: 1.4;
}


/* Article titles */
.sidebar-item-link {
  font-size: 15px;
  line-height: 1.4;
}






/* =========================================
   ARTICLE HEADER – TITLE + CONTROLS
   ========================================= */

.article-header-row {
  display: flex;
  align-items: flex-end;        /* bottom-align to title */
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

/* Title should not add bottom spacing */
.article-header-row .article-title {
  margin-bottom: 0;
  flex: 1;
}

/* Controls aligned right */
.accordion-controls {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

/* Button appearance (link-style) */
.accordion-controls button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #006BDE;
  cursor: pointer;
}

.accordion-controls button:hover {
  text-decoration: underline;
}




/* =========================================
   ARTICLE HEADER – MOBILE STACK
   ========================================= */

@media (max-width: 767px) {
  .article-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .accordion-controls {
    margin-top: 8px;
  }
}



/* Default: only show Expand all */
.accordion-collapse-all {
  display: none;
}







.refresh {
  background-color: #D7F4EE;
  color: #2A333C;

  
/* ✅ full border first */
border: 1px solid #175647;

/* ✅ override left border */
border-left: 5px solid #175647;


  border-radius: 4px;
  padding: 18px 22px 18px 14px; /* ✅ reduce left padding */
  margin: 24px 0;

  display: flex;
  align-items: center;  /* ✅ THIS is the key */
}



.refresh::before {
  content: "";

  width: 28px;
  height: 28px;

  display: inline-block;
  margin-right: 12px;

  background: url('/hc/theming_assets/01KY6N9DKAB9A3NXK9ESKE8YM0') no-repeat center;
  background-size: 28px 28px;

  /* ✅ REMOVE this if you have it */
  position: relative;
  top: 2px;

  flex-shrink: 0;
}






.refresh strong {
  margin-right: 6px;
}




.search-highlight {
  background-color: #FFEB3B;
  padding: 0 2px;
}




.two-column {
  display: flex;
  gap: 40px;
  margin: 20px 0;
}

.two-column .column {
  flex: 1;
}

.three-column {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}

.three-column .column {
  flex: 1;
}

/* ✅ This part fixes mobile layout */
@media (max-width: 768px) {
  .two-column,
  .three-column {
    flex-direction: column;
  }
}






.error {
  background-color: #FBEBE9;
  color: #2A333C; /* same text colour as others */

  border: 1px solid #8E211A;
  border-left: 5px solid #8E211A;

  border-radius: 4px;
  padding: 18px 22px 18px 14px;
  margin: 24px 0;

  display: flex;
  align-items: center;
}

/* ✅ Icon */
.error::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;

  background: url('/hc/theming_assets/01KY6N9DMMG2Z5D1A7A2GEXGMA') no-repeat center;
  background-size: contain;
}