@charset "UTF-8";
/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

body {
  background-color: #FFFFFF;
  color: rgba(35, 36, 33, 1);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: rgba(138, 141, 238, 100);
  text-decoration: none;
}
a:visited {
  color: rgba(141, 224, 205, 100);
}
a:hover, a:active, a:focus {
  text-decoration: underline;
}

.hbs-form input,
.hbs-form textarea, .search input,
.search textarea {
  color: #000;
  font-size: 14px;
}
.hbs-form input, .search input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
  /* We use the :where selector to not increase the specificity of the selector */
}
.hbs-form input:where(:not([type=checkbox])), .search input:where(:not([type=checkbox])) {
  outline: none;
}
.hbs-form input:where(:not([type=checkbox])):focus, .search input:where(:not([type=checkbox])):focus {
  border: 1px solid rgba(27, 127, 137, 100);
}
.hbs-form input[disabled], .search input[disabled] {
  background-color: #ddd;
}
.hbs-form select, .search select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
.hbs-form select:focus, .search select:focus {
  border: 1px solid rgba(27, 127, 137, 100);
}
.hbs-form select::-ms-expand, .search select::-ms-expand {
  display: none;
}
.hbs-form textarea, .search textarea {
  border: 1px solid #87929D;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
.hbs-form textarea:focus, .search textarea:focus {
  border: 1px solid rgba(27, 127, 137, 100);
}

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

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

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

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

.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, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
  background-color: transparent;
  border: 1px solid rgba(27, 127, 137, 100);
  border-radius: 4px;
  color: rgba(27, 127, 137, 100);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 768px) {
  .button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
    width: auto;
  }
}
.button:visited, .pagination-next-link:visited, .pagination-prev-link:visited, .pagination-first-link:visited, .pagination-last-link:visited, .subscriptions-subscribe button:visited, .requests-table-toolbar .organization-subscribe button:visited, .community-follow button:visited, .article-subscribe button:visited, .section-subscribe button:visited, .split-button button:visited {
  color: rgba(27, 127, 137, 100);
}
.button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .subscriptions-subscribe button:hover, .requests-table-toolbar .organization-subscribe button:hover, .community-follow button:hover, .article-subscribe button:hover, .section-subscribe button:hover, .split-button button:hover, .button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .subscriptions-subscribe button:active, .requests-table-toolbar .organization-subscribe button:active, .community-follow button:active, .article-subscribe button:active, .section-subscribe button:active, .split-button button:active, .button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .subscriptions-subscribe button:focus, .requests-table-toolbar .organization-subscribe button:focus, .community-follow button:focus, .article-subscribe button:focus, .section-subscribe button:focus, .split-button button:focus, .button.button-primary, .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link, .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected=true], .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected=true], .community-follow button.button-primary, .article-subscribe button.button-primary, .article-subscribe button[data-selected=true], .section-subscribe button.button-primary, .section-subscribe button[data-selected=true], .split-button button.button-primary {
  background-color: rgba(27, 127, 137, 100);
  color: #FFFFFF;
  text-decoration: none;
}
.button.button-primary:hover, .button-primary.pagination-next-link:hover, .button-primary.pagination-prev-link:hover, .button-primary.pagination-first-link:hover, .button-primary.pagination-last-link:hover, .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button[data-selected=true]:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button[data-selected=true]:hover, .community-follow button.button-primary:hover, .article-subscribe button.button-primary:hover, .article-subscribe button[data-selected=true]:hover, .section-subscribe button.button-primary:hover, .section-subscribe button[data-selected=true]:hover, .split-button button:hover, .button.button-primary:focus, .button-primary.pagination-next-link:focus, .button-primary.pagination-prev-link:focus, .button-primary.pagination-first-link:focus, .button-primary.pagination-last-link:focus, .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button[data-selected=true]:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button[data-selected=true]:focus, .community-follow button.button-primary:focus, .article-subscribe button.button-primary:focus, .article-subscribe button[data-selected=true]:focus, .section-subscribe button.button-primary:focus, .section-subscribe button[data-selected=true]:focus, .split-button button.button-primary:focus, .button.button-primary:active, .button-primary.pagination-next-link:active, .button-primary.pagination-prev-link:active, .button-primary.pagination-first-link:active, .button-primary.pagination-last-link:active, .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button[data-selected=true]:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button[data-selected=true]:active, .community-follow button.button-primary:active, .article-subscribe button.button-primary:active, .article-subscribe button[data-selected=true]:active, .section-subscribe button.button-primary:active, .section-subscribe button[data-selected=true]:active, .split-button button.button-primary:active {
  background-color: #0a3034;
  border-color: #0a3034;
}
.button[data-disabled], [data-disabled].pagination-next-link, [data-disabled].pagination-prev-link, [data-disabled].pagination-first-link, [data-disabled].pagination-last-link, .subscriptions-subscribe button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .community-follow button[data-disabled], .article-subscribe button[data-disabled], .section-subscribe button[data-disabled], .split-button button[data-disabled] {
  cursor: default;
}

.button-large, .hbs-form input[type=submit] {
  cursor: pointer;
  background-color: rgba(27, 127, 137, 100);
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}
@media (min-width: 768px) {
  .button-large, .hbs-form input[type=submit] {
    width: auto;
  }
}
.button-large:visited, .hbs-form input[type=submit]:visited {
  color: #FFFFFF;
}
.button-large:hover, .button-large:active, .button-large:focus, .hbs-form input[type=submit]:hover, .hbs-form input[type=submit]:active, .hbs-form input[type=submit]:focus {
  background-color: #0a3034;
}
.button-large[disabled], .hbs-form input[type=submit][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #575952;
  border: 1px solid #87929D;
  background-color: transparent;
}
.button-secondary:visited {
  color: #575952;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(35, 36, 33, 1);
  border: 1px solid #87929D;
  background-color: #f7f7f7;
}

/***** Split button *****/
.split-button {
  display: flex;
}

.split-button button {
  background-color: rgba(27, 127, 137, 100);
  border: 0;
  color: #FFFFFF;
  height: 32px;
  line-height: 16px;
  outline-color: rgba(27, 127, 137, 100);
}

[dir=rtl] .split-button button:not(:only-child):first-child {
  border-left: 1px solid #FFFFFF;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):first-child {
  border-right: 1px solid #FFFFFF;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}
[dir=rtl] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}
.table th,
.table th a {
  color: #575952;
  font-size: 13px;
  text-align: left;
}
[dir=rtl] .table th,
[dir=rtl] .table th a {
  text-align: right;
}
.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}
.table td {
  display: block;
}
@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}
@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}
@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

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

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

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

.form-field input {
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}
.form-field input:focus {
  border: 1px solid rgba(27, 127, 137, 100);
}

.form-field input[type=text] {
  border: 1px solid #87929D;
  border-radius: 4px;
}
.form-field input[type=text]:focus {
  border: 1px solid rgba(27, 127, 137, 100);
}

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

.form-field .nesty-input {
  border-radius: 4px;
  border: 1px solid #87929D;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}
.form-field .nesty-input:focus {
  border: 1px solid rgba(27, 127, 137, 100);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle {
  border: 1px solid #87929D;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(27, 127, 137, 100);
  text-decoration: none;
}

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

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

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

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

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

.form footer a {
  color: #575952;
  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: rgba(141, 224, 205, 100);
}

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

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

.logo span {
  margin: 0 10px;
  color: rgba(27, 127, 137, 100);
}

.logo a {
  display: inline-block;
}

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

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}
.user-nav[aria-expanded=true] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}
.user-nav[aria-expanded=true] > a {
  display: block;
  margin: 20px;
}
.user-nav[aria-expanded=true] > .user-nav-list li {
  display: block;
}
.user-nav[aria-expanded=true] > .user-nav-list a {
  display: block;
  margin: 20px;
}

.user-nav-list {
  display: block;
  list-style: none;
}
.user-nav-list > li {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .nav-wrapper-desktop {
    display: inline-block;
  }
}
.nav-wrapper-desktop a {
  border: 0;
  color: rgba(138, 141, 238, 100);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}
@media (min-width: 768px) {
  .nav-wrapper-desktop a {
    display: inline-block;
  }
}
[dir=rtl] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}
.nav-wrapper-desktop a:hover, .nav-wrapper-desktop a:focus, .nav-wrapper-desktop a:active {
  background-color: transparent;
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .nav-wrapper-mobile {
    display: none;
  }
}
.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  border: 0;
  width: auto;
  min-width: 71px;
  cursor: pointer;
}
.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.nav-wrapper-mobile .menu-button-mobile[aria-expanded=true] .icon-menu {
  background: #f3f3f3;
}
.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 2;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=false] {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=true] {
  display: block;
}
.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 4px 0;
}
.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #ddd;
  padding: 0;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(35, 36, 33, 1);
  cursor: pointer;
  text-align: start;
}
.nav-wrapper-mobile .menu-list-mobile-items button:active, .nav-wrapper-mobile .menu-list-mobile-items button:focus, .nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}
.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(35, 36, 33, 1);
}
.nav-wrapper-mobile .menu-list-mobile-items a:active, .nav-wrapper-mobile .menu-list-mobile-items a:focus, .nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #f3f3f3;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}
.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}
[dir=rtl] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}

.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;
}
[dir=rtl] .skip-navigation {
  left: initial;
  right: -999px;
}
.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}
[dir=rtl] .skip-navigation:focus, [dir=rtl] .skip-navigation:active {
  left: initial;
  right: auto;
}

#zd-modal-container ~ .skip-navigation {
  display: none;
}

/***** 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 > button {
  border: 0;
  color: rgba(138, 141, 238, 100);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}
.user-info > button:hover, .user-info > button:focus {
  color: rgba(138, 141, 238, 100);
  background-color: transparent;
}
.user-info > button::after {
  color: rgba(138, 141, 238, 100);
  padding-right: 15px;
}
[dir=rtl] .user-info > 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 {
  color: rgba(27, 127, 137, 100);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: #FFFFFF;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding: 30px 0;
}
.footer a {
  color: #575952;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}
.footer-language-selector button {
  color: #575952;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #575952;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}
.breadcrumbs li {
  color: #575952;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}
.breadcrumbs li a:visited {
  color: rgba(138, 141, 238, 100);
}

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

.search {
  border-color: #87929D;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
}
.search:focus-within {
  border-color: rgba(27, 127, 137, 100);
}
.search input[type=search],
.search .clear-button {
  background-color: #fff;
  border-radius: 30px;
  border: none;
}
.search-full input[type=search], .search-full .clear-button {
  border-color: #fff;
}
.search input[type=search] {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #666;
  flex: 1 1 auto;
  height: 40px;
  width: 100%;
}
.search input[type=search]:focus {
  color: #555;
}
.search input[type=search]::-webkit-search-decoration, .search input[type=search]::-webkit-search-cancel-button, .search input[type=search]::-webkit-search-results-button, .search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search input[type=search]:-webkit-autofill, .search input[type=search]:-webkit-autofill:hover, .search input[type=search]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: none;
  flex: none;
  justify-content: center;
  padding: 0 15px;
}
.search .clear-button:hover {
  background-color: rgba(27, 127, 137, 100);
  color: #fff;
}
.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(27, 127, 137, 100);
}
.search-has-value .clear-button {
  display: flex;
}

[dir=ltr] .search input[type=search] {
  padding-left: 40px;
  padding-right: 20px;
}
[dir=ltr] .search-has-value input[type=search] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}
[dir=ltr] .search-has-value input[type=search]:focus {
  border-right-color: rgba(27, 127, 137, 100);
}
[dir=ltr] .search .clear-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}
[dir=ltr] .search .clear-button:focus {
  border-left-color: rgba(27, 127, 137, 100);
}

[dir=rtl] .search input[type=search] {
  padding-left: 20px;
  padding-right: 40px;
}
[dir=rtl] .search-has-value input[type=search] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}
[dir=rtl] .search-has-value input[type=search]:focus {
  border-left-color: rgba(27, 127, 137, 100);
}
[dir=rtl] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}
[dir=rtl] .search .clear-button:focus {
  border-right-color: rgba(27, 127, 137, 100);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
}
[dir=rtl] .search-icon {
  left: auto;
  right: 15px;
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01KBZCMPTC4F51EEBK21RNNKQ7);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    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: 10px;
}
.page-header-description {
  font-style: italic;
  margin: 0 0 30px 0;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}
.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .sub-nav {
    flex-direction: row;
  }
}
.sub-nav .breadcrumbs {
  margin: 0;
}
.sub-nav .search-container {
  max-width: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .sub-nav .search-container {
    flex: 0 1 300px;
  }
}
.sub-nav input[type=search]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}
.blocks-item {
  border: 1px solid rgba(27, 127, 137, 100);
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(27, 127, 137, 100);
  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(27, 127, 137, 100);
}
.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}
.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}
.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}
.blocks-item-internal a {
  color: rgba(35, 36, 33, 1);
}
.blocks-item-link {
  color: rgba(27, 127, 137, 100);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}
.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active {
  color: inherit;
  text-decoration: none;
}
.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(27, 127, 137, 100);
  text-decoration: none;
}
.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}
.blocks-item-description {
  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;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}
.promoted-articles-item {
  flex: 1 0 auto;
}
@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%; /* Three columns on desktop */
  }
  [dir=rtl] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}
.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}
.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.promoted-articles-item .icon-lock {
  vertical-align: baseline;
}
.promoted-articles-item:last-child a {
  border: 0;
}
@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}
.community-image {
  min-height: 300px;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01J4PF42S14CZDB0RB3SDJXG2G);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}
.community a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.community a:visited {
  color: rgba(141, 224, 205, 100);
}
.community a:hover, .community a:active, .community a:focus {
  color: rgba(233, 254, 156, 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 h3 {
  margin: 0;
}
.recent-activity-item-parent {
  font-size: 16px;
  font-weight: 600;
}
.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  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;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-activity-item-meta {
  color: rgba(35, 36, 33, 1);
  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 {
  display: inline-block;
  font-size: 13px;
}
.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-controls {
  padding-top: 15px;
}
.recent-activity-controls a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.recent-activity-controls a:visited {
  color: rgba(141, 224, 205, 100);
}
.recent-activity-controls a:hover, .recent-activity-controls a:active, .recent-activity-controls a:focus {
  color: rgba(233, 254, 156, 100);
}
.recent-activity-accessibility-label {
  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;
}
.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(27, 127, 137, 100);
  width: 16px;
  height: 16px;
}
.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  margin-left: 3px;
}
[dir=rtl] .recent-activity-comment-icon:after {
  margin-left: 0;
  margin-right: 3px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}
.category-content {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}
.section-tree .section {
  flex: initial;
  max-width: 100%;
}
@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%; /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}
.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.section-tree-title a {
  color: rgba(35, 36, 33, 1);
}
.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article-list-item a {
  color: rgba(35, 36, 33, 1);
}

.icon-star {
  color: rgba(27, 127, 137, 100);
  font-size: 18px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}
.section-content {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}
.section-list {
  margin: 40px 0;
}

.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: rgba(35, 36, 33, 1);
  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 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
}
.article-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}
.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}
.article-avatar {
  margin-right: 10px;
}
.article-author {
  margin-bottom: 10px;
}
.article-title {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%; /* Take entire row */
  }
}
.article-title .icon-lock {
  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 {
  display: flow-root;
}
.article-body a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.article-body a:visited {
  color: rgba(141, 224, 205, 100);
}
.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: rgba(233, 254, 156, 100);
}
.article-body img {
  height: auto;
  max-width: 100%;
}
.article-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figure.image {
  display: table;
  margin: 0 auto;
}
.article-body figure.image > img {
  display: block;
  width: 100%;
}
.article-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir=rtl] .article-body ul,
[dir=rtl] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}
.article-body ul {
  list-style-type: disc;
}
.article-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #575952;
  font-style: italic;
  padding: 0 15px;
}
.article-body > p:last-child {
  margin-bottom: 0;
}
.article-content {
  line-height: 1.6;
  margin: 40px 0;
  word-wrap: break-word;
}
.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.article-comment-count {
  color: #575952;
}
.article-comment-count:hover {
  text-decoration: none;
}
.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(27, 127, 137, 100);
  width: 18px;
  height: 18px;
}
.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}
@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
    max-width: 17%;
  }
}
.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-votes-question {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0;
}
.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}
.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}
.article-more-questions a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.article-more-questions a:visited {
  color: rgba(141, 224, 205, 100);
}
.article-more-questions a:hover, .article-more-questions a:active, .article-more-questions a:focus {
  color: rgba(233, 254, 156, 100);
}
.article-return-to-top {
  border-top: 1px solid #87929D;
}
@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}
.article-return-to-top a {
  color: rgba(35, 36, 33, 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 {
  transform: rotate(0.5turn);
}
.article td > p:first-child,
.article th > p:first-child {
  margin-top: 0;
}
.article td > p:last-child,
.article th > p:last-child {
  margin-bottom: 0;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
}
.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.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 .attachment-icon {
  color: rgba(35, 36, 33, 1);
  left: 0;
  position: absolute;
  top: 5px;
}
[dir=rtl] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #575952;
}

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

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

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #575952;
}
.share a:hover {
  text-decoration: none;
  color: rgba(27, 127, 137, 100);
}
.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** 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: #575952;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}
.comment-callout a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.comment-callout a:visited {
  color: rgba(141, 224, 205, 100);
}
.comment-callout a:hover, .comment-callout a:active, .comment-callout a:focus {
  color: rgba(233, 254, 156, 100);
}
.comment-sorter {
  display: inline-block;
  float: right;
}
.comment-sorter .dropdown-toggle {
  color: #575952;
  font-size: 13px;
}
[dir=rtl] .comment-sorter {
  float: left;
}
.comment-wrapper {
  display: flex;
  position: relative;
}
.comment-wrapper.comment-official {
  border: 1px solid rgba(27, 127, 137, 100);
  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 1 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(27, 127, 137, 100);
}
.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flow-root;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}
.comment-body a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.comment-body a:visited {
  color: rgba(141, 224, 205, 100);
}
.comment-body a:hover, .comment-body a:active, .comment-body a:focus {
  color: rgba(233, 254, 156, 100);
}
.comment-body img {
  height: auto;
  max-width: 100%;
}
.comment-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figure.image {
  display: table;
  margin: 0 auto;
}
.comment-body figure.image > img {
  display: block;
  width: 100%;
}
.comment-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.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 :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #575952;
  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: #575952;
  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(27, 127, 137, 100);
}

.vote-up, .vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #575952;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(27, 127, 137, 100);
}

.vote-voted:hover {
  color: #0a3034;
}

/***** 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 button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01J4PF42BPXBYRZHPZKG0G8PVP);
  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 button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .community-follow button {
    width: auto;
  }
}
.community-follow button:hover {
  background-color: rgba(27, 127, 137, 100);
}
.community-follow button:hover::after, .community-follow button:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.community-follow button[data-selected=true] {
  background-color: rgba(27, 127, 137, 100);
  color: #FFFFFF;
}
.community-follow button[data-selected=true]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.community-follow button[data-selected=true]:hover {
  background-color: #0a3034;
  border-color: #0a3034;
}
.community-follow button::after {
  border-left: 1px solid rgba(27, 127, 137, 100);
  content: attr(data-follower-count);
  color: rgba(27, 127, 137, 100);
  display: inline-block;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}
@media (min-width: 768px) {
  .community-follow button::after {
    position: static;
  }
}
[dir=rtl] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(27, 127, 137, 100);
  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(138, 141, 238, 100);
  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: rgba(141, 224, 205, 100);
}
.striped-list .meta-group {
  margin: 5px 0;
}
.striped-list-count {
  color: #575952;
  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 {
  text-align: center;
}
@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(35, 36, 33, 1);
    display: block;
  }
}

/***** 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(27, 127, 137, 100);
}
.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: #575952;
}
.status-label-pending, .status-label-pending-moderation {
  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-request {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .status-label-request {
    max-width: 150px;
  }
}

/***** 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: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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 {
  display: flow-root;
}
.post-body a {
  color: rgba(138, 141, 238, 100);
  text-decoration: underline;
}
.post-body a:visited {
  color: rgba(141, 224, 205, 100);
}
.post-body a:hover, .post-body a:active, .post-body a:focus {
  color: rgba(233, 254, 156, 100);
}
.post-body img {
  height: auto;
  max-width: 100%;
}
.post-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figure.image {
  display: table;
  margin: 0 auto;
}
.post-body figure.image > img {
  display: block;
  width: 100%;
}
.post-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.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 :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #575952;
  font-style: italic;
  padding: 0 15px;
}
.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.post-comment-count {
  color: #575952;
}
.post-comment-count:hover {
  text-decoration: none;
}
.post-comment-count .icon-comments {
  color: rgba(27, 127, 137, 100);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}
.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;
  }
}

/***** Community Badges *****/
/* Styles labels used next to the authors of article comments, community posts, and community comments */
.community-badge-title {
  background-color: #04444d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
}

.community-badge-titles {
  display: inline;
}

.community-badge-achievement {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}
.community-badge-achievement img {
  width: 100%;
  height: 100%;
}

.community-badge-achievements {
  display: flex;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge {
  margin: 2px;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}
.profile-info .community-badge-achievement {
  height: 40px;
  width: 40px;
}
.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* 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: 22.5px;
  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-icon {
  display: none;
}
.collapsible-nav-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}
.collapsible-nav-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}
.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(27, 127, 137, 100);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}
.collapsible-nav-list li {
  color: rgba(35, 36, 33, 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(35, 36, 33, 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(27, 127, 137, 100);
    order: 1;
  }
}
.collapsible-nav-list li[aria-selected=true] a,
.collapsible-nav-list li.current a {
  color: rgba(35, 36, 33, 1);
}

.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: 22.5px;
  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-icon {
  display: none;
}
.collapsible-sidebar-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}
.collapsible-sidebar-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}
.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(27, 127, 137, 100);
}
.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-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;
  }
}
@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }
  [dir=rtl] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
}
.requests-table-toolbar .organization-subscribe button {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}
.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 */
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}
.subscriptions-table td:last-child {
  display: block;
}
@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}
.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}
.subscriptions-table .user-avatar {
  margin-right: 10px;
}
.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

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

.no-activities {
  color: #575952;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}
.request-container .comment-container {
  min-width: 0;
}
.request-breadcrumbs {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}
.request-main {
  flex: 1 0 auto;
  order: 1;
}
.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}
.request-main .comment-fields.shown {
  display: block;
}
.request-main .request-submit-comment.shown {
  display: inline;
}
@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}
.request-main .comment-form-controls {
  display: block;
}
.request-main .comment-ccs {
  display: block;
}
.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #575952;
  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(27, 127, 137, 100);
}
.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(27, 127, 137, 100);
}
.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 {
  line-break: strict;
  color: #575952;
  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-next, .pagination-prev, .pagination-first, .pagination-last {
  display: inline-block;
}
.pagination-first-link, .pagination-last-link {
  padding: 0 10px;
}
.pagination-first-text, .pagination-last-text {
  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;
}
.pagination-next-link {
  padding-right: 10px;
}
.pagination-next-text {
  margin-right: 10px;
}
[dir=rtl] .pagination-next-link {
  padding-left: 10px;
}
[dir=rtl] .pagination-next-text {
  margin-left: 10px;
}
.pagination-prev-link {
  padding-left: 10px;
}
.pagination-prev-text {
  margin-left: 10px;
}
[dir=rtl] .pagination-prev-link {
  padding-right: 10px;
}
[dir=rtl] .pagination-prev-text {
  margin-right: 10px;
}

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

.meta-group-opposite {
  float: right;
}

[dir=rtl] .meta-group-opposite {
  float: left;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #575952;
  font-size: 13px;
}
.meta-data:not(:last-child)::after {
  content: "·";
  margin: 0 5px;
}

/* 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: 80px;
  height: 80px;
}

.profile-avatar .icon-agent {
  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;
  line-height: 25px;
  vertical-align: middle;
  display: inline;
}

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

.user-profile-actions {
  width: 100%;
  margin-bottom: 15px;
}

.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: #575952;
  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(27, 127, 137, 100);
  border-radius: 4px;
  color: rgba(27, 127, 137, 100);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}
.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  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: #575952;
  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-badges-items {
  margin-top: 25px;
}
.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}
.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}
.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}
.profile-badges-item-image img {
  max-height: 40px;
}
[dir=rtl] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}
.profile-badges-item-title, .profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}
.profile-badges-item-title {
  font-weight: 600;
}
.profile-badges-item-description, .profile-badges-item-metadata-description {
  color: #575952;
  font-size: 13px;
  margin: 0;
}
.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}
[dir=rtl] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.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-icon {
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}
[dir=rtl] .profile-contribution-icon {
  right: 0;
}
.profile-contribution-icon svg {
  vertical-align: middle;
}

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

.private-activity-icon {
  margin-right: 10px;
}
[dir=rtl] .private-activity-icon {
  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-icon {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
}
[dir=rtl] .profile-activity-icon {
  right: 0;
}
@media (min-width: 768px) {
  .profile-activity-icon {
    left: -14px;
  }
  [dir=rtl] .profile-activity-icon {
    right: -14px;
  }
}

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

/***** 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 {
  border-radius: 4px;
  padding: 10px 36px;
  margin-bottom: 4px;
  color: rgba(35, 36, 33, 1);
}
.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  text-decoration: none;
}
.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}
.search-results-sidebar .sidenav-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 0;
}
.search-results-sidebar .sidenav-tag .content-tag {
  background: #E9EBED;
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
}
.search-results-sidebar .sidenav-tag .content-tag .label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.000427656px;
  color: #49545C;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}
.search-results-sidebar .sidenav-tag .content-tag .close-icon {
  color: #555555;
  vertical-align: middle;
  display: inline-block;
}
.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(138, 141, 238, 100);
}
.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: " ⌄";
  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 .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}
.search-results .no-results .headline {
  color: #2F3941;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.45px;
}
.search-results .no-results .action-prompt {
  color: #68737D;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
}
.search-results .no-results .action-prompt a {
  color: rgba(138, 141, 238, 100);
}
.search-results .no-results .action-prompt a:visited {
  color: rgba(138, 141, 238, 100);
}

.search-result-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-result-title {
  font-size: 16px;
  margin-bottom: 0;
}
.search-result-votes, .search-result-meta-count {
  color: #575952;
  font-size: 13px;
}
.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(27, 127, 137, 100);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
[dir=ltr] .search-result-votes, [dir=ltr] .search-result-meta-count {
  margin-left: 20px;
}
[dir=rtl] .search-result-votes, [dir=rtl] .search-result-meta-count {
  margin-right: 20px;
}
.search-result-meta-container {
  color: #666;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .search-result-meta-container {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .search-result-meta-container nav {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  [dir=ltr] .search-result-meta-container .meta-data {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  [dir=rtl] .search-result-meta-container .meta-data {
    margin-right: 20px;
  }
}
.search-result-meta-container .meta-data::after {
  content: none;
}
.search-result-breadcrumbs {
  margin: 0;
}
.search-result-description {
  margin-top: 10px;
  margin-bottom: 0;
  word-break: break-word;
}

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

/***** Notifications *****/
.notification {
  border: 1px solid;
  display: table;
  font-family: sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height 0.2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon, .notification-inline.notification-error::before, .notification-text, .notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before, .notification-error .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}

/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before, .notification-notice .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before, .notification-alert .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon::before, .notification-inline.notification-error::before {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */
.notification-dismiss, a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
[dir=rtl] .notification-inline {
  text-align: right;
}
.notification-inline[aria-hidden=true] {
  display: none;
}
.notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
  margin: -2px 5px 0 0;
}
[dir=rtl] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}
.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}
.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir=rtl] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

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

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}
.dropdown-toggle:hover {
  text-decoration: none;
}
.dropdown-toggle > * {
  display: inline-block;
}
.dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8dcde;
  border-radius: 3px;
  box-shadow: 0px 20px 30px 0px rgba(23, 73, 77, 0.15);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}
[dir=rtl] .dropdown-menu {
  text-align: right;
}
.dropdown-menu [role=separator] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}
.dropdown-menu [role=menuitem],
.dropdown-menu [role=menuitemradio] {
  color: #2f3941;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}
[dir=rtl] .dropdown-menu [role=menuitem],
[dir=rtl] .dropdown-menu [role=menuitemradio] {
  padding: 7px 20px 7px 40px;
}
.dropdown-menu [role=menuitem]:hover, .dropdown-menu [role=menuitem]:focus,
.dropdown-menu [role=menuitemradio]:hover,
.dropdown-menu [role=menuitemradio]:focus {
  background: rgba(31, 115, 183, 0.08);
  text-decoration: none;
  color: #2f3941;
}
.dropdown-menu [role=menuitem][aria-selected=true], .dropdown-menu [role=menuitem][aria-checked=true],
.dropdown-menu [role=menuitemradio][aria-selected=true],
.dropdown-menu [role=menuitemradio][aria-checked=true] {
  cursor: default;
}
.dropdown-menu [role=menuitem][aria-selected=true]::after, .dropdown-menu [role=menuitem][aria-checked=true]::after,
.dropdown-menu [role=menuitemradio][aria-selected=true]::after,
.dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}
[dir=rtl] .dropdown-menu [role=menuitem][aria-selected=true]::after, [dir=rtl] .dropdown-menu [role=menuitem][aria-checked=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}
.dropdown-menu [role=menuitem][hidden], .dropdown-menu [role=menuitem][aria-hidden=true],
.dropdown-menu [role=menuitemradio][hidden],
.dropdown-menu [role=menuitemradio][aria-hidden=true] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir=rtl] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}
[dir=rtl] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

.content-tags > p {
  color: #68737D;
  margin-top: 32px;
  margin-bottom: 4px;
}
.content-tags-add-hint {
  color: #68737D;
  font-size: 14px;
}

.content-tag-list {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
}
.content-tag-list li {
  border-right: 1px solid #C2C8CC;
  margin-bottom: 4px;
}
[dir=ltr] .content-tag-list li {
  padding-right: 8px;
  margin-right: 8px;
}
[dir=rtl] .content-tag-list li {
  padding-left: 8px;
  margin-left: 8px;
}
.content-tag-list li:last-child {
  border: none;
}

/***** WYSIWYG Editor *****/
#hc-wysiwyg {
  border: 1px solid #87929D;
}

/***** Upload Dropzone *****/
.upload-dropzone {
  border: 1px solid #87929D;
}

/***** Summary component *****/
zd-summary-block {
  background: #f3f6f6;
}
[dir=ltr] zd-summary-block {
  border-left-color: #859fa1;
}
[dir=rtl] zd-summary-block {
  border-right-color: #859fa1;
}

/* ==========================================================================
   WEBBULA SUPPORT — ALWAYS READY EXPERIENCE
   Version 2.0.0
   Brand layer intentionally lives after Copenhagen so Zendesk-native
   behaviors remain intact while presentation is fully Webbula.
   ========================================================================== */

:root {
  --wb-void: #06272c;
  --wb-void-soft: #0d353b;
  --wb-stream: #1b7f89;
  --wb-drift: #11c5ce;
  --wb-echo: #8a8dee;
  --wb-spark: #e9fe9c;
  --wb-ether: #8de0cd;
  --wb-cloud: #f3f7f5;
  --wb-paper: #ffffff;
  --wb-ink: #17272a;
  --wb-muted: #607073;
  --wb-line: #dbe5e1;
  --wb-line-dark: rgba(255,255,255,.16);
  --wb-shadow: 0 22px 70px rgba(6, 39, 44, .10);
  --wb-radius-sm: 8px;
  --wb-radius-md: 16px;
  --wb-radius-lg: 28px;
  --wb-shell: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--wb-paper);
  color: var(--wb-ink);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

body,
button,
input,
select,
textarea {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--wb-void);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

a,
a:visited {
  color: var(--wb-stream);
}

a:hover,
a:focus,
a:active {
  color: var(--wb-void);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--wb-echo);
  outline-offset: 3px;
}

::selection {
  background: var(--wb-spark);
  color: var(--wb-void);
}

.container,
.wb-shell {
  width: min(calc(100% - 48px), var(--wb-shell));
  max-width: var(--wb-shell);
  margin-inline: auto;
  padding-inline: 0;
}

.container-divider {
  display: none;
}

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

/* ---------- Shared utility language ---------- */

.wb-eyebrow {
  margin: 0 0 18px;
  color: var(--wb-spark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.wb-eyebrow--dark {
  color: var(--wb-stream);
}

.wb-text-link,
.wb-text-link:visited {
  align-items: center;
  color: var(--wb-void);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 9px;
  text-decoration: none;
}

.wb-text-link span {
  font-size: 18px;
  transition: transform .18s ease;
}

.wb-text-link:hover,
.wb-text-link:focus {
  color: var(--wb-stream);
  text-decoration: none;
}

.wb-text-link:hover span,
.wb-text-link:focus span {
  transform: translate(3px, -3px);
}

.wb-text-link--light,
.wb-text-link--light:visited {
  color: var(--wb-paper);
}

.wb-text-link--light:hover,
.wb-text-link--light:focus {
  color: var(--wb-spark);
}

.wb-button,
.wb-button:visited,
.submit-a-request,
.submit-a-request:visited {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 22px;
  text-decoration: none !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.wb-button:hover,
.wb-button:focus,
.submit-a-request:hover,
.submit-a-request:focus {
  transform: translateY(-1px);
}

.wb-button--void,
.wb-button--void:visited {
  background: var(--wb-void);
  color: var(--wb-paper);
}

.wb-button--void:hover,
.wb-button--void:focus {
  background: var(--wb-stream);
  color: var(--wb-paper);
}

.wb-button--outline,
.wb-button--outline:visited {
  background: transparent;
  border-color: var(--wb-void);
  color: var(--wb-void);
}

.wb-button--outline:hover,
.wb-button--outline:focus {
  background: var(--wb-void);
  color: var(--wb-paper);
}

.button,
.button-primary,
input[type="submit"] {
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
}

.button-primary,
input[type="submit"] {
  background: var(--wb-void);
  border-color: var(--wb-void);
  color: var(--wb-paper);
}

.button-primary:hover,
.button-primary:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--wb-stream);
  border-color: var(--wb-stream);
  color: var(--wb-paper);
}

/* ---------- Header ---------- */

.wb-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--wb-line);
  box-shadow: none;
  height: auto;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wb-header-inner {
  align-items: center;
  display: flex;
  gap: 34px;
  margin: 0 auto;
  max-width: var(--wb-shell);
  min-height: 82px;
  padding: 14px 24px;
  width: 100%;
}

.wb-logo {
  flex: 0 0 auto;
}

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

.wb-logo img {
  display: block;
  height: auto;
  max-height: 47px;
  max-width: 250px;
  width: auto;
}

.wb-site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.wb-site-nav a,
.wb-site-nav a:visited {
  color: var(--wb-ink);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.wb-site-nav a::after {
  background: var(--wb-drift);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  width: 100%;
}

.wb-site-nav a:hover::after,
.wb-site-nav a:focus::after {
  transform: scaleX(1);
}

.wb-account-nav {
  align-items: center;
  display: flex;
  margin-left: 0;
}

.wb-account-nav .user-nav-list {
  align-items: center;
  display: flex;
  gap: 20px;
}

.wb-account-nav .user-nav-list > li > a:not(.wb-header-cta),
.wb-account-nav .user-nav-list > li > a:not(.wb-header-cta):visited,
.wb-account-nav .sign-in,
.wb-account-nav .sign-in:visited {
  color: var(--wb-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.wb-header-cta,
.wb-header-cta:visited {
  background: var(--wb-void);
  color: var(--wb-paper) !important;
  padding-inline: 20px;
}

.wb-header-cta:hover,
.wb-header-cta:focus {
  background: var(--wb-stream);
  color: var(--wb-paper) !important;
}

.wb-account-nav .user-info {
  margin-left: 16px;
}

.wb-account-nav .dropdown-toggle {
  color: var(--wb-ink);
}

.nav-wrapper-mobile {
  display: none;
  margin-left: auto;
}

.menu-button-mobile {
  background: transparent;
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  color: var(--wb-void);
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.menu-list-mobile {
  background: var(--wb-paper);
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-md);
  box-shadow: var(--wb-shadow);
  right: 20px;
  top: 72px;
  width: min(330px, calc(100vw - 40px));
}

.menu-list-mobile .item a,
.menu-list-mobile .item a:visited {
  color: var(--wb-ink);
  font-weight: 600;
}

.menu-list-mobile .wb-mobile-site-link a {
  font-size: 17px;
}

.skip-navigation {
  background: var(--wb-spark);
  color: var(--wb-void) !important;
  font-weight: 700;
  left: 12px;
  padding: 12px 18px;
  top: 12px;
}

/* ---------- Homepage hero ---------- */

.wb-home-hero {
  background:
    radial-gradient(circle at 78% 38%, rgba(28,190,200,.13), transparent 26%),
    radial-gradient(circle at 60% 0%, rgba(138,141,238,.08), transparent 32%),
    var(--wb-void);
  color: var(--wb-paper);
  overflow: hidden;
  position: relative;
}

.wb-home-hero::after {
  background: linear-gradient(90deg, transparent, rgba(141,224,205,.26), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.wb-home-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  min-height: 610px;
  padding-block: 88px 92px;
}

.wb-home-hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.wb-home-hero h2 {
  color: var(--wb-paper);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .96;
  margin: 0;
  max-width: 820px;
}

.wb-home-hero h2 span {
  color: var(--wb-ether);
  display: block;
}

.wb-hero-lede {
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 690px;
}

.wb-hero-search {
  background: var(--wb-paper);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  color: var(--wb-void);
  margin-top: 38px;
  max-width: 720px;
  position: relative;
}

.wb-hero-search .search-icon {
  color: var(--wb-stream);
  left: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.wb-hero-search .search {
  margin: 0;
}

.wb-hero-search .search input[type="search"] {
  background: transparent;
  border: 0 !important;
  border-radius: 14px;
  color: var(--wb-ink);
  font-size: 17px;
  height: 66px;
  padding: 0 60px 0 58px;
  width: 100%;
}

.wb-hero-search .search input[type="search"]::placeholder {
  color: #78888a;
}

.wb-hero-search .search input[type="search"]:focus {
  box-shadow: 0 0 0 3px var(--wb-echo);
  outline: 0;
}

.wb-hero-search .search-clear-button {
  right: 18px;
}

.wb-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 22px;
}

.wb-home-hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 430px;
  opacity: .98;
  position: relative;
}

.wb-home-hero-art::before {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  content: "";
  height: 470px;
  position: absolute;
  width: 470px;
}

.wb-home-hero-art svg {
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.2));
  max-width: 470px;
  transform: translateY(16px);
  width: 100%;
}

/* ---------- Home content ---------- */

.wb-home-topics,
.wb-category-content,
.wb-section-content {
  background: var(--wb-paper);
  padding: 100px 0 112px;
}

.wb-section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr);
  margin-bottom: 48px;
}

.wb-section-heading h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500;
  margin: 0;
  max-width: 780px;
}

.wb-section-heading > p {
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 5px;
}

.wb-section-heading--compact {
  display: block;
  margin-bottom: 34px;
}

.wb-section-heading--compact h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.wb-topic-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wb-topic-card {
  min-height: 320px;
}

.wb-topic-card-link,
.wb-topic-card-link:visited {
  background: var(--wb-cloud);
  border: 1px solid transparent;
  border-radius: var(--wb-radius-md);
  color: var(--wb-ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px;
  padding: 32px;
  position: relative;
  text-decoration: none;
  transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.wb-topic-card:nth-child(3n+2) .wb-topic-card-link {
  background: #edf8f5;
}

.wb-topic-card:nth-child(3n) .wb-topic-card-link {
  background: #f1f1fb;
}

.wb-topic-card-link:hover,
.wb-topic-card-link:focus {
  background: var(--wb-void);
  border-color: var(--wb-void);
  box-shadow: var(--wb-shadow);
  color: var(--wb-paper);
  text-decoration: none;
  transform: translateY(-4px);
}

.wb-topic-card-kicker {
  color: var(--wb-stream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.wb-topic-card-link:hover .wb-topic-card-kicker,
.wb-topic-card-link:focus .wb-topic-card-kicker {
  color: var(--wb-ether);
}

.wb-topic-card h3 {
  color: inherit;
  font-size: clamp(27px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.03;
  margin: 60px 48px 16px 0;
}

.wb-topic-card p {
  color: var(--wb-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 90%;
}

.wb-topic-card-link:hover p,
.wb-topic-card-link:focus p {
  color: rgba(255,255,255,.72);
}

.wb-card-arrow {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  bottom: 26px;
  display: flex;
  font-size: 18px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 26px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  width: 40px;
}

.wb-topic-card-link:hover .wb-card-arrow {
  background: var(--wb-spark);
  border-color: var(--wb-spark);
  color: var(--wb-void);
  transform: rotate(4deg);
}

.wb-home-popular {
  background: var(--wb-cloud);
  padding: 104px 0;
}

.wb-home-popular-grid {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(270px, .65fr) minmax(0, 1.2fr);
}

.wb-home-popular-intro h2 {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  margin: 0;
}

.wb-home-popular-intro > p:last-child {
  color: var(--wb-muted);
  font-size: 17px;
  margin: 24px 0 0;
  max-width: 420px;
}

.wb-promoted-list {
  border-top: 1px solid var(--wb-line);
}

.wb-promoted-list li {
  border-bottom: 1px solid var(--wb-line);
}

.wb-promoted-list a,
.wb-promoted-list a:visited {
  align-items: center;
  color: var(--wb-ink);
  display: flex;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  gap: 16px;
  min-height: 96px;
  padding: 18px 64px 18px 0;
  position: relative;
  text-decoration: none;
}

.wb-promoted-list a:hover,
.wb-promoted-list a:focus {
  color: var(--wb-stream);
  text-decoration: none;
}

.wb-promoted-list .wb-card-arrow {
  bottom: auto;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.wb-promoted-list a:hover .wb-card-arrow {
  background: var(--wb-void);
  border-color: var(--wb-void);
  color: var(--wb-paper);
  transform: translateY(-50%) rotate(4deg);
}

.wb-support-cta {
  background: var(--wb-ether);
  padding: 76px 0;
}

.wb-support-cta-inner {
  align-items: center;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.wb-support-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  margin: 0;
  max-width: 760px;
}

.wb-support-cta p:not(.wb-eyebrow) {
  color: rgba(6,39,44,.72);
  font-size: 17px;
  margin: 18px 0 0;
  max-width: 680px;
}

.wb-support-cta-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 18px;
}

.wb-support-cta--compact {
  padding-block: 58px;
}

.wb-support-cta--compact h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.wb-home-community {
  padding: 74px 0;
}

.wb-home-community-inner {
  align-items: center;
  border-bottom: 1px solid var(--wb-line);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 74px;
}

.wb-home-community h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  margin: 0;
}

.wb-home-activity {
  padding: 0 0 90px;
}

/* ---------- Page hero / breadcrumbs / compact search ---------- */

.wb-page-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(28,190,200,.13), transparent 30%),
    var(--wb-void);
  color: var(--wb-paper);
  padding: 34px 0 82px;
}

.wb-page-hero-top {
  margin-bottom: 54px;
}

.wb-page-hero .breadcrumbs,
.wb-page-hero .breadcrumbs li,
.wb-page-hero .breadcrumbs a,
.wb-page-hero .breadcrumbs a:visited {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.wb-page-hero .breadcrumbs li + li::before {
  color: rgba(255,255,255,.35);
}

.wb-page-hero-grid {
  align-items: end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.wb-page-hero h1 {
  color: var(--wb-paper);
  font-size: clamp(46px, 5.7vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  margin: 0;
  max-width: 880px;
}

.wb-page-lede {
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 790px;
}

.wb-page-search {
  background: var(--wb-paper);
  border-radius: 12px;
  color: var(--wb-void);
  position: relative;
}

.wb-page-search .search-icon {
  color: var(--wb-stream);
  left: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.wb-page-search .search {
  margin: 0;
}

.wb-page-search .search input[type="search"] {
  background: transparent;
  border: 0 !important;
  border-radius: 12px;
  font-size: 15px;
  height: 58px;
  padding: 0 48px 0 50px;
  width: 100%;
}

.wb-page-search .search input[type="search"]:focus {
  box-shadow: 0 0 0 3px var(--wb-echo);
}

.wb-follow-control {
  margin-top: 28px;
}

.wb-follow-control .button {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: var(--wb-paper);
}

.wb-follow-control .button:hover {
  background: var(--wb-paper);
  color: var(--wb-void);
}

/* ---------- Category ---------- */

.wb-section-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wb-section-card {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-md);
  min-height: 330px;
  padding: 30px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.wb-section-card:hover {
  box-shadow: var(--wb-shadow);
  transform: translateY(-2px);
}

.wb-section-card-head {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.wb-section-card-head h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  margin: 0;
}

.wb-section-card-head h2 a,
.wb-section-card-head h2 a:visited {
  color: var(--wb-void);
  text-decoration: none;
}

.wb-section-card-head h2 a:hover,
.wb-section-card-head h2 a:focus {
  color: var(--wb-stream);
}

.wb-round-arrow,
.wb-round-arrow:visited {
  align-items: center;
  border: 1px solid var(--wb-line);
  border-radius: 50%;
  color: var(--wb-void);
  display: flex;
  flex: 0 0 auto;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  width: 42px;
}

.wb-round-arrow:hover,
.wb-round-arrow:focus {
  background: var(--wb-spark);
  border-color: var(--wb-spark);
  color: var(--wb-void);
  text-decoration: none;
}

.wb-article-preview-list {
  margin-bottom: 26px;
}

.wb-article-preview-list li + li {
  border-top: 1px solid var(--wb-line);
}

.wb-article-preview-list a,
.wb-article-preview-list a:visited {
  align-items: center;
  color: var(--wb-ink);
  display: flex;
  font-size: 15px;
  gap: 9px;
  line-height: 1.45;
  padding: 12px 0;
  text-decoration: none;
}

.wb-article-preview-list a:hover,
.wb-article-preview-list a:focus {
  color: var(--wb-stream);
}

.wb-promoted-dot {
  background: var(--wb-echo);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

/* ---------- Section ---------- */

.wb-section-content {
  padding-top: 88px;
}

.wb-section-content-grid {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.wb-subsection-wrap {
  background: var(--wb-cloud);
  border-radius: var(--wb-radius-md);
  margin-bottom: 70px;
  padding: 30px;
}

.wb-subsection-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wb-subsection-grid a,
.wb-subsection-grid a:visited {
  align-items: center;
  background: var(--wb-paper);
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  color: var(--wb-ink);
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  min-height: 68px;
  padding: 15px 18px;
  text-decoration: none;
}

.wb-subsection-grid a:hover,
.wb-subsection-grid a:focus {
  border-color: var(--wb-stream);
  color: var(--wb-stream);
}

.wb-article-index-list {
  border-top: 1px solid var(--wb-line);
}

.wb-article-index-list li {
  border-bottom: 1px solid var(--wb-line);
}

.wb-article-index-list a,
.wb-article-index-list a:visited {
  align-items: center;
  color: var(--wb-ink);
  display: flex;
  font-size: 18px;
  gap: 16px;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px 58px 16px 0;
  position: relative;
  text-decoration: none;
}

.wb-article-index-list a:hover,
.wb-article-index-list a:focus {
  color: var(--wb-stream);
}

.wb-article-index-list .wb-card-arrow {
  bottom: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wb-article-index-list a:hover .wb-card-arrow {
  background: var(--wb-void);
  border-color: var(--wb-void);
  color: var(--wb-paper);
}

.wb-promoted-label {
  background: var(--wb-spark);
  border-radius: 999px;
  color: var(--wb-void);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-right: 8px;
  padding: 5px 8px;
  text-transform: uppercase;
}

.wb-section-help {
  position: sticky;
  top: 114px;
}

.wb-mini-help-card {
  background: var(--wb-void);
  border-radius: var(--wb-radius-md);
  color: var(--wb-paper);
  padding: 28px;
}

.wb-mini-help-card h2 {
  color: var(--wb-paper);
  font-size: 32px;
  font-weight: 500;
  margin: 0;
}

.wb-mini-help-card > p:not(.wb-eyebrow) {
  color: rgba(255,255,255,.67);
  margin: 18px 0 26px;
}

.wb-mini-help-card .wb-button--void {
  background: var(--wb-spark);
  color: var(--wb-void);
}

.wb-empty-state {
  background: var(--wb-cloud);
  border-radius: var(--wb-radius-md);
  padding: 30px;
}

/* ---------- Existing sub-navigation on secondary templates ---------- */

.sub-nav {
  align-items: center;
  border-bottom: 1px solid var(--wb-line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 0 50px;
  padding: 26px 0;
}

.sub-nav .breadcrumbs {
  margin: 0;
}

.breadcrumbs li,
.breadcrumbs a,
.breadcrumbs a:visited {
  color: var(--wb-muted);
  font-size: 13px;
}

.sub-nav .search-container {
  flex: 0 0 340px;
  position: relative;
}

.sub-nav .search-container .search-icon {
  color: var(--wb-stream);
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.sub-nav .search input[type="search"] {
  background: var(--wb-cloud);
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  height: 44px;
  padding: 0 42px 0 42px;
}

.sub-nav .search input[type="search"]:focus {
  background: var(--wb-paper);
  border-color: var(--wb-stream);
}

/* ---------- Article experience ---------- */

.article-container {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: 250px minmax(0, 1fr);
  margin: 0 auto 110px;
  max-width: 1180px;
  padding: 0;
}

.article-sidebar {
  border: 0;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 120px;
  width: auto;
}

.article-sidebar .collapsible-sidebar {
  background: var(--wb-cloud);
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-md);
  padding: 22px;
}

.article-sidebar .sidenav-title {
  color: var(--wb-stream);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.article-sidebar ul {
  border-top: 1px solid var(--wb-line);
}

.article-sidebar li + li {
  border-top: 1px solid var(--wb-line);
}

.article-sidebar .sidenav-item,
.article-sidebar .sidenav-item:visited {
  color: var(--wb-muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  padding: 11px 0;
  text-decoration: none;
}

.article-sidebar .sidenav-item:hover,
.article-sidebar .sidenav-item:focus {
  color: var(--wb-stream);
}

.article-sidebar .sidenav-item.current-article {
  color: var(--wb-void);
  font-weight: 700;
}

.article-sidebar .article-sidebar-item {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
}

.article {
  max-width: none;
  min-width: 0;
}

.article-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--wb-line);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
  padding-bottom: 30px;
}

.article-title {
  color: var(--wb-void);
  flex-basis: 100%;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0 0 24px;
}

.article-author {
  color: var(--wb-muted);
  font-size: 13px;
}

.article-meta a {
  font-weight: 600;
}

.article-subscribe {
  margin-left: auto;
}

.article-subscribe .button {
  border-color: var(--wb-void);
  color: var(--wb-void);
}

.article-body {
  color: #293a3d;
  font-size: 17px;
  line-height: 1.78;
  max-width: 820px;
}

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

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 1.45em;
}

.article-body h2 {
  color: var(--wb-void);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 2.2em 0 .65em;
}

.article-body h3 {
  color: var(--wb-void);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.16;
  margin: 1.8em 0 .65em;
}

.article-body h4 {
  color: var(--wb-void);
  font-size: 20px;
  margin: 1.6em 0 .55em;
}

.article-body a,
.article-body a:visited {
  color: var(--wb-stream);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(27,127,137,.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover,
.article-body a:focus {
  color: var(--wb-void);
  text-decoration-color: var(--wb-void);
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body ul {
  list-style: none;
}

.article-body ul > li {
  padding-left: .4em;
  position: relative;
}

.article-body ul > li::before {
  background: var(--wb-drift);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: -1em;
  position: absolute;
  top: .72em;
  width: 7px;
}

.article-body ol {
  list-style: decimal;
}

.article-body li + li {
  margin-top: .55em;
}

.article-body blockquote {
  background: var(--wb-cloud);
  border-left: 4px solid var(--wb-stream);
  border-radius: 0 var(--wb-radius-sm) var(--wb-radius-sm) 0;
  color: var(--wb-void);
  font-size: 18px;
  margin: 2em 0;
  padding: 22px 26px;
}

.article-body pre {
  background: var(--wb-void);
  border: 0;
  border-radius: var(--wb-radius-sm);
  color: #eaf7f2;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
  padding: 22px;
}

.article-body code {
  background: #eef3f1;
  border-radius: 5px;
  color: var(--wb-void);
  font-size: .9em;
  padding: .15em .35em;
}

.article-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.article-body img {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  box-shadow: 0 10px 30px rgba(6,39,44,.08);
  height: auto;
  margin: 1em auto;
  max-width: 100%;
}

.article-body table {
  border: 1px solid var(--wb-line);
  border-collapse: separate;
  border-radius: var(--wb-radius-sm);
  border-spacing: 0;
  display: block;
  margin: 2em 0;
  max-width: 100%;
  overflow-x: auto;
}

.article-body th {
  background: var(--wb-cloud);
  color: var(--wb-void);
  font-weight: 700;
  text-align: left;
}

.article-body td,
.article-body th {
  border-bottom: 1px solid var(--wb-line);
  border-right: 1px solid var(--wb-line);
  padding: 12px 14px;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-body td:last-child,
.article-body th:last-child {
  border-right: 0;
}

.article-attachments {
  background: var(--wb-cloud);
  border-radius: var(--wb-radius-sm);
  margin-top: 36px;
  padding: 20px;
}

.content-tags {
  border-top: 1px solid var(--wb-line);
  margin-top: 40px;
  padding-top: 24px;
}

.content-tag-item {
  background: var(--wb-cloud);
  border: 0;
  border-radius: 999px;
}

.article-footer {
  border-top: 1px solid var(--wb-line);
  margin-top: 48px;
  padding-top: 24px;
}

.article-votes {
  background: var(--wb-cloud);
  border: 0;
  border-radius: var(--wb-radius-md);
  margin-top: 34px;
  padding: 28px;
  text-align: left;
}

.article-votes-question {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 18px;
}

.article-votes-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.article-vote {
  border-color: var(--wb-void);
  border-radius: 999px;
  color: var(--wb-void);
}

.article-vote.button-primary {
  background: var(--wb-void);
  color: var(--wb-paper);
}

.article-more-questions {
  background: var(--wb-ether);
  border-radius: var(--wb-radius-md);
  color: var(--wb-void);
  font-size: 16px;
  margin-top: 22px;
  padding: 24px;
}

.article-more-questions a,
.article-more-questions a:visited {
  color: var(--wb-void);
  font-weight: 700;
  text-decoration: underline;
}

.article-return-to-top {
  font-size: 13px;
  font-weight: 700;
  margin-top: 24px;
}

.article-relatives {
  border-top: 1px solid var(--wb-line);
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 60px;
  padding-top: 42px;
}

.article-relatives > * {
  margin: 0;
}

.recent-articles h2,
.related-articles h2 {
  font-size: 24px;
  font-weight: 500;
}

.recent-articles li,
.related-articles li {
  margin: 10px 0;
}

.recent-articles a,
.related-articles a {
  font-size: 14px;
  line-height: 1.45;
}

.article-comments {
  margin-top: 60px;
}

/* ---------- Search results ---------- */

.search-results {
  display: grid;
  gap: 62px;
  grid-template-columns: 230px minmax(0, 1fr);
  margin-bottom: 100px;
}

.search-results-sidebar {
  border: 0;
  padding: 0;
}

.search-results-sidebar .filters-in-section {
  border-bottom: 1px solid var(--wb-line);
  padding: 0 0 24px;
}

.search-results-sidebar .sidenav-title {
  color: var(--wb-void);
  font-size: 13px;
  font-weight: 700;
}

.search-results-sidebar .sidenav-item {
  color: var(--wb-muted);
  font-size: 13px;
  padding: 7px 0;
}

.search-results-sidebar .sidenav-item.current,
.search-results-sidebar .sidenav-item:hover {
  color: var(--wb-stream);
}

.search-results-column {
  min-width: 0;
}

.search-results-subheading {
  color: var(--wb-muted);
}

.search-result-list {
  border-top: 1px solid var(--wb-line);
}

.search-result-list-item {
  border-bottom: 1px solid var(--wb-line);
  padding: 26px 0;
}

.search-result-title {
  font-size: 22px;
  font-weight: 600;
}

.search-result-title a,
.search-result-title a:visited {
  color: var(--wb-void);
}

.search-result-title a:hover {
  color: var(--wb-stream);
}

.search-result-description {
  color: var(--wb-muted);
  line-height: 1.65;
}

/* ---------- Forms / request surfaces ---------- */

.form,
.request-container,
.my-activities-header,
.requests-table-toolbar,
.requests,
.contributions,
.subscriptions,
.community,
.profile-header,
.error-page {
  max-width: 980px;
}

.form {
  margin-bottom: 100px;
}

.form-field label {
  color: var(--wb-void);
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select,
.hbs-form input,
.hbs-form textarea,
.hbs-form select {
  background-color: var(--wb-paper);
  border: 1px solid #bdcbc7;
  border-radius: 8px;
  color: var(--wb-ink);
  min-height: 46px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.hbs-form input:focus,
.hbs-form textarea:focus,
.hbs-form select:focus {
  border-color: var(--wb-stream) !important;
  box-shadow: 0 0 0 3px rgba(138,141,238,.24);
}

.form-field .nesty-input {
  border-color: #bdcbc7;
  border-radius: 8px;
  min-height: 46px;
}

.request-form footer {
  background: transparent;
}

.my-activities-header {
  border-bottom: 1px solid var(--wb-line);
  margin-bottom: 36px;
  padding-bottom: 26px;
}

.my-activities-header h1,
.error-page h1,
.container > h1 {
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 500;
  letter-spacing: -.05em;
}

.requests-table,
.table {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
}

.requests-table th,
.table th {
  background: var(--wb-cloud);
  color: var(--wb-void);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.requests-table td,
.requests-table th,
.table td,
.table th {
  border-color: var(--wb-line);
}

/* ---------- Pagination ---------- */

.pagination {
  margin-top: 44px;
}

.pagination-list {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.pagination-list li a,
.pagination-list li span {
  align-items: center;
  border: 1px solid var(--wb-line);
  border-radius: 999px;
  color: var(--wb-ink);
  display: flex;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 10px;
}

.pagination-list li.current span,
.pagination-list li a:hover {
  background: var(--wb-void);
  border-color: var(--wb-void);
  color: var(--wb-paper);
  text-decoration: none;
}

/* ---------- Footer ---------- */

.wb-footer {
  background: var(--wb-void);
  border-top: 0;
  color: rgba(255,255,255,.7);
  margin-top: 0;
  padding: 0;
}

.wb-footer-inner {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.3fr);
  margin: 0 auto;
  max-width: var(--wb-shell);
  padding: 76px 24px 64px;
}

.wb-footer-brand {
  max-width: 370px;
}

.wb-footer-logo {
  display: inline-block;
}

.wb-footer-logo img {
  background: var(--wb-paper);
  border-radius: 8px;
  display: block;
  max-height: 52px;
  max-width: 250px;
  object-fit: contain;
  padding: 6px 10px;
}

.wb-footer-brand p {
  color: rgba(255,255,255,.66);
  font-size: 15px;
  line-height: 1.6;
  margin: 24px 0 20px;
}

.wb-footer-email,
.wb-footer-email:visited {
  color: var(--wb-ether);
  font-weight: 600;
}

.wb-footer-email:hover {
  color: var(--wb-spark);
}

.wb-footer-nav {
  display: grid;
  gap: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wb-footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.wb-footer-column h2 {
  color: var(--wb-ether);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.wb-footer-column a,
.wb-footer-column a:visited {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  text-decoration: none;
}

.wb-footer-column a:hover,
.wb-footer-column a:focus {
  color: var(--wb-spark);
}

.wb-footer-bottom {
  border-top: 1px solid var(--wb-line-dark);
}

.wb-footer-bottom-inner {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--wb-shell);
  min-height: 68px;
  padding: 14px 24px;
}

.wb-footer .language-selector .dropdown-toggle {
  color: rgba(255,255,255,.75);
}

.wb-footer .dropdown-menu a {
  color: var(--wb-ink);
}

/* ---------- Legacy community surfaces ---------- */

.community-header,
.community-topic-header,
.community-post-page,
.community-topic-list {
  color: var(--wb-ink);
}

.community h1,
.community h2,
.community h3 {
  color: var(--wb-void);
}

.topic-list,
.post-list,
.community-post,
.profile-activity-list {
  border-color: var(--wb-line);
}

.topic-list-item,
.post-list-item,
.community-post {
  border-color: var(--wb-line);
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .wb-site-nav {
    gap: 20px;
  }

  .wb-site-nav a {
    font-size: 13px;
  }

  .wb-account-nav .user-nav-list {
    gap: 13px;
  }

  .wb-home-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .wb-home-hero-art::before {
    height: 380px;
    width: 380px;
  }

  .article-container {
    gap: 44px;
    grid-template-columns: 220px minmax(0, 1fr);
    padding-inline: 24px;
  }
}

@media (max-width: 1024px) {
  .wb-site-nav,
  .nav-wrapper-desktop {
    display: none !important;
  }

  .nav-wrapper-mobile {
    display: block !important;
  }

  .wb-header-inner {
    min-height: 74px;
  }

  .wb-logo img {
    max-height: 42px;
    max-width: 220px;
  }

  .wb-home-hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    min-height: 560px;
  }

  .wb-home-hero-art {
    min-height: 330px;
  }

  .wb-home-hero-art::before {
    height: 320px;
    width: 320px;
  }

  .wb-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-section-content-grid {
    gap: 46px;
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .article-container {
    display: block;
  }

  .article-sidebar {
    margin-bottom: 34px;
    position: static;
  }

  .article-sidebar .collapsible-sidebar {
    padding: 18px;
  }

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

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

@media (max-width: 820px) {
  .container,
  .wb-shell {
    width: min(calc(100% - 36px), var(--wb-shell));
  }

  .wb-home-hero-grid {
    display: block;
    min-height: 0;
    padding-block: 74px 76px;
  }

  .wb-home-hero h2 {
    max-width: 700px;
  }

  .wb-home-hero-art {
    display: none;
  }

  .wb-section-heading,
  .wb-home-popular-grid,
  .wb-page-hero-grid {
    display: block;
  }

  .wb-section-heading > p {
    margin-top: 22px;
    max-width: 680px;
  }

  .wb-home-popular-intro {
    margin-bottom: 44px;
  }

  .wb-page-search {
    margin-top: 38px;
    max-width: 560px;
  }

  .wb-section-card-grid {
    grid-template-columns: 1fr;
  }

  .wb-section-content-grid {
    display: block;
  }

  .wb-section-help {
    margin-top: 58px;
    position: static;
  }

  .wb-mini-help-card {
    max-width: 520px;
  }

  .search-results {
    display: block;
  }

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

  .wb-footer-inner {
    display: block;
  }

  .wb-footer-brand {
    margin-bottom: 50px;
  }

  .sub-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .sub-nav .search-container {
    flex-basis: auto;
    width: 100%;
  }

  .article-relatives {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .wb-shell {
    width: min(calc(100% - 28px), var(--wb-shell));
  }

  .wb-header-inner {
    padding-inline: 14px;
  }

  .wb-logo img {
    max-height: 36px;
    max-width: 190px;
  }

  .wb-home-hero-grid {
    padding-block: 58px 62px;
  }

  .wb-home-hero h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .wb-hero-lede {
    font-size: 17px;
  }

  .wb-hero-search {
    margin-top: 30px;
  }

  .wb-hero-search .search input[type="search"] {
    font-size: 15px;
    height: 60px;
  }

  .wb-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .wb-home-topics,
  .wb-category-content,
  .wb-section-content {
    padding: 72px 0 78px;
  }

  .wb-section-heading {
    margin-bottom: 34px;
  }

  .wb-topic-grid {
    grid-template-columns: 1fr;
  }

  .wb-topic-card,
  .wb-topic-card-link {
    min-height: 280px;
  }

  .wb-topic-card h3 {
    margin-top: 48px;
  }

  .wb-home-popular {
    padding: 76px 0;
  }

  .wb-support-cta {
    padding: 58px 0;
  }

  .wb-support-cta-inner,
  .wb-home-community-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wb-support-cta-actions {
    align-items: flex-start;
  }

  .wb-page-hero {
    padding: 26px 0 60px;
  }

  .wb-page-hero-top {
    margin-bottom: 38px;
  }

  .wb-page-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .wb-section-card {
    min-height: 0;
    padding: 24px;
  }

  .wb-subsection-grid {
    grid-template-columns: 1fr;
  }

  .article-container {
    margin-bottom: 74px;
    padding-inline: 14px;
  }

  .article-title {
    font-size: clamp(38px, 11vw, 50px);
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 30px;
  }

  .article-body h3 {
    font-size: 24px;
  }

  .article-votes {
    padding: 22px;
  }

  .wb-footer-inner {
    padding: 58px 18px 48px;
  }

  .wb-footer-nav {
    gap: 32px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* ---------- Request page ---------- */

.wb-request-section {
  padding: 86px 0 110px;
}

.wb-request-layout {
  align-items: start;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
}

.wb-request-aside {
  position: sticky;
  top: 118px;
}

.wb-request-aside h2 {
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 500;
  margin: 0;
}

.wb-request-aside > p:last-child {
  color: var(--wb-muted);
  line-height: 1.7;
  margin: 22px 0 0;
}

.wb-request-form-shell {
  background: var(--wb-cloud);
  border-radius: var(--wb-radius-md);
  margin: 0;
  max-width: none;
  padding: 34px;
}

.wb-request-form-shell .form-field:first-child {
  margin-top: 0;
}

.wb-article-eyebrow {
  flex-basis: 100%;
  margin-bottom: 14px;
}

@media (max-width: 820px) {
  .wb-request-layout {
    display: block;
  }

  .wb-request-aside {
    margin-bottom: 38px;
    max-width: 620px;
    position: static;
  }
}

@media (max-width: 640px) {
  .wb-request-section {
    padding: 64px 0 80px;
  }

  .wb-request-form-shell {
    border-radius: 12px;
    padding: 20px;
  }
}


/* ---------- Website utility rail ---------- */

.wb-utility-bar {
  background: var(--wb-void);
  color: var(--wb-paper);
}

.wb-utility-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--wb-shell);
  min-height: 30px;
  padding: 4px 24px;
}

.wb-utility-inner > div {
  align-items: center;
  display: flex;
  gap: 18px;
}

.wb-utility-inner a,
.wb-utility-inner a:visited {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.wb-utility-inner a:hover,
.wb-utility-inner a:focus {
  color: var(--wb-spark);
}

@media (max-width: 640px) {
  .wb-utility-inner {
    padding-inline: 14px;
  }

  .wb-utility-inner > div {
    gap: 12px;
  }
}


/* Search result list selectors for Copenhagen v4 markup */
.search-results-list {
  border-top: 1px solid var(--wb-line);
}

.search-results-list > li {
  border-bottom: 1px solid var(--wb-line);
  padding: 28px 0;
}

.search-results-list > li article > header {
  margin-bottom: 10px;
}

.search-result-title-container {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.search-result-title {
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 0;
}

.search-result-title a,
.search-result-title a:visited {
  color: var(--wb-void);
  text-decoration: none;
}

.search-result-title a:hover,
.search-result-title a:focus {
  color: var(--wb-stream);
}

.search-result-meta-container,
.search-result-breadcrumbs,
.search-result-icons {
  color: var(--wb-muted);
  font-size: 12px;
}

.search-result-description {
  color: var(--wb-muted);
  line-height: 1.65;
  margin-top: 12px;
}


/* ==========================================================================
   Zuvo Help Center v2.1 corrective layer
   Support-first density, mobile containment, accessibility and pillar cards
   ========================================================================== */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.wb-header,
.wb-header-inner,
.wb-header-inner > * {
  min-width: 0;
}

.wb-header-inner {
  box-sizing: border-box;
  gap: 18px;
  width: 100%;
}

.wb-logo {
  flex: 0 1 auto;
  min-width: 0;
}

.wb-logo-home {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  max-width: 100%;
  min-height: 44px;
  text-decoration: none;
}

.wb-logo-context {
  border-left: 1px solid var(--wb-line);
  color: var(--wb-void);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding-left: 10px;
  text-transform: uppercase;
}

.wb-site-nav a,
.wb-account-nav a,
.wb-account-nav button {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.wb-account-nav .dropdown-toggle {
  min-height: 44px;
  padding: 8px 10px;
}

.wb-user-label {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.wb-user-name {
  color: var(--wb-muted);
  display: inline-block;
  font-size: 12px;
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-wrapper-mobile {
  flex: 0 0 auto;
  margin-left: auto;
  max-width: 52px;
  min-width: 44px;
}

.menu-button-mobile {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  min-width: 44px;
  padding: 0;
  width: 44px;
}

.menu-list-mobile {
  box-sizing: border-box;
  max-width: calc(100vw - 28px);
  right: 14px;
}

.menu-list-mobile .item > a,
.menu-list-mobile .item > button,
.menu-list-mobile .my-profile {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  min-height: 44px;
  padding-block: 10px;
}

/* Make the hero a support utility first, brand moment second. */
.wb-home-hero-grid {
  min-height: 490px;
}

.wb-home-hero-copy {
  padding-block: 64px;
}

.wb-home-hero h1 {
  color: var(--wb-paper);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 10px 0 24px;
  max-width: 720px;
}

.wb-home-hero h1 span {
  color: var(--wb-ether);
}

.wb-home-hero-art {
  min-height: 390px;
}

.wb-home-hero-art svg {
  max-height: 360px;
}

.wb-hero-lede {
  max-width: 660px;
}

.wb-hero-search {
  margin-top: 28px;
}

.wb-hero-actions {
  margin-top: 14px;
}

.wb-home-topics {
  padding-top: 68px;
}

.wb-section-heading--topics {
  margin-bottom: 34px;
}

.wb-section-heading--topics h2 {
  max-width: 680px;
}

.wb-topic-grid {
  counter-reset: wb-pillar;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wb-topic-card {
  counter-increment: wb-pillar;
  min-height: 300px;
}

.wb-topic-card-link {
  min-height: 300px;
  padding: 28px;
}

.wb-topic-card-number::before {
  color: var(--wb-stream);
  content: "0" counter(wb-pillar);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 30px;
}

.wb-topic-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.08;
  margin: 12px 0 14px;
  max-width: 340px;
}

.wb-topic-card-description {
  color: var(--wb-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 46px;
  max-width: 350px;
}

.wb-topic-card:nth-child(2n) .wb-topic-card-link {
  background: #f0f9f6;
}

.wb-topic-card:nth-child(3n) .wb-topic-card-link {
  background: #edf7f8;
}

.wb-topic-card-link:hover,
.wb-topic-card-link:focus-visible {
  transform: translateY(-3px);
}

.wb-topic-card-link:focus-visible,
.wb-logo-home:focus-visible,
.menu-button-mobile:focus-visible,
.wb-footer a:focus-visible {
  outline: 3px solid var(--wb-spark);
  outline-offset: 3px;
}

/* Footer navigation labels are visual labels, not document headings. */
.wb-footer-heading {
  color: var(--wb-ether);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.wb-footer-column a,
.wb-footer-column a:visited {
  color: rgba(255,255,255,.88);
  line-height: 1.45;
  min-height: 32px;
}

.wb-footer-brand p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 1024px) {
  .wb-header-inner {
    justify-content: space-between;
    padding-inline: 20px;
  }

  .wb-logo {
    max-width: calc(100% - 64px);
  }

  .wb-logo img {
    height: auto;
    max-width: min(220px, 100%);
  }

  .wb-home-hero-grid {
    min-height: 460px;
  }

  .wb-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .wb-home-hero-grid {
    padding-block: 54px 58px;
  }

  .wb-home-hero-copy {
    padding-block: 0;
  }

  .wb-home-hero h1 {
    font-size: clamp(46px, 10vw, 66px);
    max-width: 650px;
  }

  .wb-home-topics {
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .wb-utility-bar {
    display: none;
  }

  .wb-header-inner {
    gap: 10px;
    min-height: 64px;
    padding-inline: 14px;
  }

  .wb-logo {
    flex: 1 1 auto;
    max-width: calc(100% - 54px);
  }

  .wb-logo-home {
    gap: 7px;
    max-width: 100%;
  }

  .wb-logo img {
    max-height: 34px;
    max-width: min(176px, calc(100% - 44px));
  }

  .wb-logo-context {
    font-size: 10px;
    padding-left: 7px;
  }

  .nav-wrapper-mobile {
    margin-left: 0;
    width: 44px;
  }

  .menu-list-mobile {
    left: auto;
    max-width: calc(100vw - 28px);
    right: 14px;
    width: min(320px, calc(100vw - 28px));
  }

  .wb-home-hero-grid {
    padding-block: 46px 50px;
  }

  .wb-home-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    margin-bottom: 18px;
  }

  .wb-hero-lede {
    font-size: 16px;
    line-height: 1.55;
  }

  .wb-hero-search {
    margin-top: 24px;
  }

  .wb-hero-search .search input[type="search"] {
    height: 56px;
  }

  .wb-home-topics {
    padding: 54px 0 66px;
  }

  .wb-topic-grid {
    grid-template-columns: 1fr;
  }

  .wb-topic-card,
  .wb-topic-card-link {
    min-height: 0;
  }

  .wb-topic-card-link {
    padding: 24px;
  }

  .wb-topic-card-number::before {
    margin-bottom: 20px;
  }

  .wb-topic-card h3 {
    margin-top: 10px;
  }

  .wb-topic-card-description {
    margin-bottom: 40px;
  }
}


/* Zuvo Help Center v2.1.1 — supplied Webbula hero mark */
.wb-home-hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
}

.wb-home-hero-logo-mark {
  display: block;
  height: auto;
  max-height: 310px;
  width: min(340px, 72%);
}

@media (max-width: 1024px) {
  .wb-home-hero-logo-mark {
    max-height: 270px;
    width: min(300px, 68%);
  }
}

@media (max-width: 820px) {
  .wb-home-hero-art {
    display: none;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.2
   Header simplification, unified pill buttons, corrected search shell,
   accessible hover/focus interactions
   ========================================================================== */

/* Header: Help Center only */
.wb-header {
  background: #fff;
  border-bottom: 1px solid rgba(10, 45, 49, .12);
}

.wb-header-inner {
  min-height: 78px;
  gap: 22px;
}

.wb-logo {
  display: flex;
  align-items: center;
}

.wb-logo-home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.wb-logo-home img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 220px;
}

.wb-site-nav {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.wb-site-nav > a:not(.wb-button) {
  align-items: center;
  border-radius: 999px;
  color: var(--wb-void);
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.wb-account-nav {
  align-items: center;
  display: flex;
}

.wb-sign-in,
.wb-account-nav .dropdown-toggle {
  border-radius: 999px;
}

/* Unified pill button system */
.wb-button,
.button,
input[type="submit"],
button[type="submit"],
.search-submit,
.pagination-next-link,
.pagination-prev-link {
  align-items: center;
  border-radius: 999px !important;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
}

.wb-button {
  border: 1.5px solid var(--wb-void);
  font-weight: 700;
  padding: 11px 20px;
  text-decoration: none;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.wb-button--void {
  background: var(--wb-void);
  border-color: var(--wb-void);
  color: #fff !important;
}

.wb-button--outline {
  background: transparent;
  border-color: var(--wb-void);
  color: var(--wb-void) !important;
}

/* All button-like native links get a consistent pill treatment where applicable */
.new-request,
.submit-a-request,
.request-submit,
.article-vote,
.community-follow,
.follow,
.dropdown-toggle {
  border-radius: 999px !important;
}

/* Search: one surface, one radius, no mismatched nested background */
.wb-hero-search {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.wb-hero-search .search,
.wb-hero-search form.search {
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  margin: 0;
  padding: 0;
  position: relative;
}

.wb-hero-search .search::before,
.wb-hero-search .search::after,
.wb-hero-search form.search::before,
.wb-hero-search form.search::after {
  content: none !important;
}

.wb-hero-search .search input[type="search"],
.wb-hero-search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  background: #fff !important;
  border: 2px solid rgba(21, 52, 56, .38) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  color: var(--wb-void);
  height: 60px;
  line-height: 1.2;
  margin: 0;
  outline: 0;
  padding: 0 24px 0 54px !important;
  width: 100%;
}

.wb-hero-search .search-icon {
  color: var(--wb-stream);
  left: 20px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Accessible interaction states:
   never rely on color alone; focus remains visible and hover remains reversible. */
.wb-site-nav > a,
.wb-sign-in,
.wb-button,
.wb-topic-card-link,
.wb-promoted-list a,
.wb-text-link,
.wb-footer a,
.menu-list-mobile a,
.menu-list-mobile button {
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    text-decoration-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.wb-site-nav > a:not(.wb-button):hover,
.wb-site-nav > a:not(.wb-button):focus-visible,
.wb-sign-in:hover,
.wb-sign-in:focus-visible {
  background: rgba(141, 224, 205, .22);
  color: var(--wb-void);
}

.wb-button--void:hover {
  background: #0d3f45;
  border-color: #0d3f45;
  color: #fff !important;
  transform: translateY(-1px);
}

.wb-button--outline:hover {
  background: var(--wb-void);
  color: #fff !important;
  transform: translateY(-1px);
}

.wb-text-link:hover,
.wb-footer a:hover,
.wb-promoted-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .22em;
}

.wb-topic-card-link:hover {
  border-color: var(--wb-stream);
  box-shadow: 0 10px 28px rgba(10, 45, 49, .10);
  transform: translateY(-2px);
}

.wb-topic-card-link:hover .wb-card-arrow,
.wb-topic-card-link:focus-visible .wb-card-arrow {
  background: var(--wb-spark);
  border-color: var(--wb-void);
  color: var(--wb-void);
}

.wb-site-nav > a:focus-visible,
.wb-sign-in:focus-visible,
.wb-button:focus-visible,
.wb-text-link:focus-visible,
.wb-topic-card-link:focus-visible,
.wb-promoted-list a:focus-visible,
.wb-footer a:focus-visible,
.menu-button-mobile:focus-visible,
.menu-list-mobile a:focus-visible,
.menu-list-mobile button:focus-visible,
.wb-account-nav button:focus-visible,
.wb-hero-search input[type="search"]:focus-visible {
  outline: 3px solid var(--wb-spark) !important;
  outline-offset: 3px !important;
}

.wb-hero-search input[type="search"]:focus-visible {
  border-color: var(--wb-stream) !important;
  box-shadow: 0 0 0 4px rgba(141, 224, 205, .22) !important;
}

/* Remove any inherited inverse text treatment from alternating topic cards.
   Cards stay readable at rest; hover adds emphasis without reducing contrast. */
.wb-topic-card:nth-child(2n) .wb-topic-card-link,
.wb-topic-card:nth-child(3n) .wb-topic-card-link {
  color: var(--wb-void);
}

.wb-topic-card:nth-child(2n) .wb-topic-card-kicker,
.wb-topic-card:nth-child(3n) .wb-topic-card-kicker,
.wb-topic-card:nth-child(2n) h3,
.wb-topic-card:nth-child(3n) h3 {
  color: var(--wb-void);
}

.wb-topic-card:nth-child(2n) .wb-topic-card-description,
.wb-topic-card:nth-child(3n) .wb-topic-card-description {
  color: var(--wb-muted);
}

/* Mobile header */
@media (max-width: 1024px) {
  .wb-site-nav,
  .wb-account-nav {
    display: none;
  }

  .nav-wrapper-mobile {
    display: block;
  }

  .wb-header-inner {
    min-height: 68px;
  }

  .wb-logo-home img {
    height: 30px;
    max-width: 190px;
  }
}

@media (max-width: 640px) {
  .wb-header-inner {
    min-height: 62px;
  }

  .wb-logo-home img {
    height: 28px;
    max-width: 170px;
  }

  .wb-hero-search .search input[type="search"],
  .wb-hero-search input[type="search"] {
    height: 56px;
    padding-left: 50px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-site-nav > a,
  .wb-sign-in,
  .wb-button,
  .wb-topic-card-link,
  .wb-promoted-list a,
  .wb-text-link,
  .wb-footer a,
  .menu-list-mobile a,
  .menu-list-mobile button {
    transition: none !important;
  }

  .wb-button--void:hover,
  .wb-button--outline:hover,
  .wb-topic-card-link:hover {
    transform: none !important;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.3
   Article readability + desktop sidebar correction
   ========================================================================== */

/* Fix the collapsed desktop sidebar caused by Copenhagen's legacy 17% max-width. */
.article-container.wb-article-layout {
  grid-template-columns: 220px minmax(0, 760px);
  gap: 56px;
  justify-content: center;
  max-width: 1120px;
}

.article-container.wb-article-layout .article-sidebar {
  box-sizing: border-box;
  flex: none !important;
  max-width: none !important;
  min-width: 0;
  width: 220px;
}

.article-container.wb-article-layout .article-sidebar .collapsible-sidebar {
  box-sizing: border-box;
  border-radius: 14px;
  padding: 18px;
  width: 100%;
}

.article-container.wb-article-layout .article-sidebar ul {
  margin: 0;
  padding: 0;
}

.article-container.wb-article-layout .article-sidebar li {
  list-style: none;
}

.article-container.wb-article-layout .article-sidebar .sidenav-item,
.article-container.wb-article-layout .article-sidebar .sidenav-item:visited {
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  margin: 2px 0;
  padding: 9px 10px;
}

.article-container.wb-article-layout .article-sidebar .sidenav-item.current-article {
  background: rgba(141, 224, 205, .20);
  color: var(--wb-void);
  font-weight: 600;
}

.article-container.wb-article-layout .article-sidebar .sidenav-item:hover {
  background: rgba(141, 224, 205, .14);
  color: var(--wb-void);
  text-decoration: none;
}

.article-container.wb-article-layout .article-sidebar .sidenav-item:focus-visible {
  background: rgba(141, 224, 205, .14);
  outline: 3px solid var(--wb-spark);
  outline-offset: 2px;
}

/* Article header should feel like documentation, not a landing-page hero. */
.article {
  max-width: 760px;
}

.article-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
}

.wb-article-eyebrow {
  font-size: 10px;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.article-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 18px;
}

/* Normal documentation body weight and scale. */
.article-content {
  line-height: 1.65;
  margin-top: 28px;
}

.article-body {
  color: #293a3d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 720px;
}

.article-body p,
.article-body li,
.article-body td,
.article-body dd,
.article-body figcaption {
  font-size: 1em;
  font-weight: 400;
}

.article-body strong,
.article-body b {
  font-weight: 600;
}

.article-body p {
  margin: 0 0 1.05em;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.15em;
  margin-top: .75em;
}

.article-body li + li {
  margin-top: .35em;
}

.article-body h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin: 1.8em 0 .55em;
}

.article-body h3 {
  font-size: clamp(20px, 2.1vw, 24px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.22;
  margin: 1.55em 0 .5em;
}

.article-body h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin: 1.4em 0 .45em;
}

.article-body h5,
.article-body h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 1.3em 0 .4em;
}

.article-body a,
.article-body a:visited {
  font-weight: 500;
}

.article-body table {
  font-size: 14px;
  line-height: 1.5;
  margin: 1.5em 0;
}

.article-body th {
  font-weight: 600;
}

.article-body td,
.article-body th {
  padding: 10px 12px;
}

/* Reduce the visual weight of article utility boxes too. */
.article-votes {
  border-radius: 14px;
  padding: 22px;
}

.article-votes-question {
  font-size: 18px;
  font-weight: 500;
}

.article-more-questions {
  border-radius: 14px;
  font-size: 14px;
  padding: 20px;
}

.article-relatives {
  margin-top: 44px;
  padding-top: 32px;
}

.recent-articles h2,
.related-articles h2 {
  font-size: 20px;
  font-weight: 600;
}

/* Tablet: remove sticky sidebar before it becomes cramped. */
@media (max-width: 1023px) {
  .article-container.wb-article-layout {
    display: block;
    max-width: 760px;
  }

  .article-container.wb-article-layout .article-sidebar {
    margin-bottom: 28px;
    position: static;
    width: 100%;
  }

  .article-container.wb-article-layout .article-sidebar .collapsible-sidebar {
    width: 100%;
  }

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

@media (max-width: 640px) {
  .article-title {
    font-size: 32px;
  }

  .article-body {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body h3 {
    font-size: 20px;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.4
   Category card palette + consistent Void hover/focus behavior
   ========================================================================== */

/* Deliberately distinct light card surfaces.
   Repeats as a 3-color rhythm across the 6 support pillars. */
.wb-topic-card:nth-child(3n + 1) .wb-topic-card-link {
  background: #F1F6F3;
}

.wb-topic-card:nth-child(3n + 2) .wb-topic-card-link {
  background: #E8F6F1;
}

.wb-topic-card:nth-child(3n) .wb-topic-card-link {
  background: #E6F3F6;
}

/* Resting state */
.wb-topic-card .wb-topic-card-link,
.wb-topic-card .wb-topic-card-link:visited {
  border: 1.5px solid transparent;
  color: var(--wb-void);
}

.wb-topic-card .wb-topic-card-number::before,
.wb-topic-card .wb-topic-card-kicker {
  color: var(--wb-stream);
}

.wb-topic-card .wb-topic-card-description {
  color: var(--wb-muted);
}

.wb-topic-card .wb-card-arrow {
  background: transparent;
  border: 1.5px solid var(--wb-void);
  color: var(--wb-void);
}

/* Every card: light -> Void on hover and keyboard focus. */
.wb-topic-card .wb-topic-card-link:hover,
.wb-topic-card .wb-topic-card-link:focus-visible {
  background: var(--wb-void) !important;
  border-color: var(--wb-void);
  box-shadow: 0 12px 30px rgba(10, 45, 49, .14);
  color: #fff;
  transform: translateY(-2px);
}

.wb-topic-card .wb-topic-card-link:hover h3,
.wb-topic-card .wb-topic-card-link:focus-visible h3,
.wb-topic-card .wb-topic-card-link:hover .wb-topic-card-kicker,
.wb-topic-card .wb-topic-card-link:focus-visible .wb-topic-card-kicker,
.wb-topic-card .wb-topic-card-link:hover .wb-topic-card-number::before,
.wb-topic-card .wb-topic-card-link:focus-visible .wb-topic-card-number::before,
.wb-topic-card .wb-topic-card-link:hover .wb-topic-card-description,
.wb-topic-card .wb-topic-card-link:focus-visible .wb-topic-card-description {
  color: #fff !important;
}

.wb-topic-card .wb-topic-card-link:hover .wb-card-arrow,
.wb-topic-card .wb-topic-card-link:focus-visible .wb-card-arrow {
  background: var(--wb-spark);
  border-color: var(--wb-spark);
  color: var(--wb-void);
}

.wb-topic-card .wb-topic-card-link:focus-visible {
  outline: 3px solid var(--wb-spark) !important;
  outline-offset: 4px !important;
}

.wb-topic-card:nth-child(2n) .wb-topic-card-link:hover,
.wb-topic-card:nth-child(2n) .wb-topic-card-link:focus-visible,
.wb-topic-card:nth-child(3n) .wb-topic-card-link:hover,
.wb-topic-card:nth-child(3n) .wb-topic-card-link:focus-visible {
  background: var(--wb-void) !important;
}

@media (prefers-reduced-motion: reduce) {
  .wb-topic-card .wb-topic-card-link:hover,
  .wb-topic-card .wb-topic-card-link:focus-visible {
    transform: none;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.5
   Unified search-field shell + focus geometry
   ========================================================================== */

/*
 * Zendesk splits a populated search into the input + clear-button segments.
 * The visible field treatment belongs on the parent .search shell so the
 * border, radius, hover and focus indicator always describe one control.
 */

/* Shared search shell used on category/page search and article sub-nav search. */
.wb-page-search .search,
.sub-nav .search-container .search {
  align-items: stretch;
  background: #fff !important;
  border: 2px solid rgba(21, 52, 56, .38) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  display: flex;
  margin: 0;
  overflow: hidden;
  position: relative;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease;
}

/* Focus indicator follows the complete pill, including Zendesk's clear button. */
.wb-page-search .search:focus-within,
.sub-nav .search-container .search:focus-within {
  border-color: var(--wb-stream) !important;
  box-shadow: 0 0 0 4px rgba(141, 224, 205, .28) !important;
  outline: 0;
}

/* Category/page search: same visual language and scale as homepage search. */
.wb-page-search .search {
  min-height: 60px;
}

.wb-page-search .search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--wb-void);
  flex: 1 1 auto;
  font-size: 17px;
  height: 60px;
  margin: 0;
  min-width: 0;
  outline: 0 !important;
  padding: 0 18px 0 54px !important;
}

.wb-page-search .search input[type="search"]:focus,
.wb-page-search .search input[type="search"]:focus-visible {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.wb-page-search .search-icon {
  color: var(--wb-stream);
  left: 20px;
  width: 20px;
  height: 20px;
}

/* Article/breadcrumb search: same shell treatment, intentionally compact. */
.sub-nav .search-container .search {
  min-height: 44px;
}

.sub-nav .search-container .search input[type="search"] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--wb-void);
  flex: 1 1 auto;
  height: 44px;
  margin: 0;
  min-width: 0;
  outline: 0 !important;
  padding: 0 12px 0 42px !important;
}

.sub-nav .search-container .search input[type="search"]:focus,
.sub-nav .search-container .search input[type="search"]:focus-visible {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* Zendesk's clear button belongs inside the same pill; no second "capsule". */
.wb-page-search .search .clear-button,
.sub-nav .search-container .search .clear-button {
  align-items: center;
  align-self: stretch;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #68787a;
  display: none;
  flex: 0 0 auto;
  justify-content: center;
  margin: 0;
  min-width: 44px;
  outline: 0;
  padding: 0 14px;
}

.wb-page-search .search.search-has-value .clear-button,
.sub-nav .search-container .search.search-has-value .clear-button {
  display: flex;
}

/* Undo Copenhagen's segmented-radius rules when the field has a value. */
[dir="ltr"] .wb-page-search .search-has-value input[type="search"],
[dir="rtl"] .wb-page-search .search-has-value input[type="search"],
[dir="ltr"] .sub-nav .search-container .search-has-value input[type="search"],
[dir="rtl"] .sub-nav .search-container .search-has-value input[type="search"] {
  border-radius: 0 !important;
  border-color: transparent !important;
}

[dir="ltr"] .wb-page-search .search .clear-button,
[dir="rtl"] .wb-page-search .search .clear-button,
[dir="ltr"] .sub-nav .search-container .search .clear-button,
[dir="rtl"] .sub-nav .search-container .search .clear-button {
  border-radius: 0 !important;
  border-color: transparent !important;
}

/* Clear-button interaction remains obvious without changing the field geometry. */
.wb-page-search .search .clear-button:hover,
.sub-nav .search-container .search .clear-button:hover {
  background: rgba(141, 224, 205, .22) !important;
  color: var(--wb-void);
}

.wb-page-search .search .clear-button:focus-visible,
.sub-nav .search-container .search .clear-button:focus-visible {
  background: rgba(141, 224, 205, .22) !important;
  box-shadow: inset 0 0 0 2px var(--wb-stream) !important;
  color: var(--wb-void);
  outline: 0 !important;
}

/* Keep icon centered regardless of the clear button appearing. */
.wb-page-search,
.sub-nav .search-container {
  position: relative;
}

@media (max-width: 640px) {
  .wb-page-search .search {
    min-height: 56px;
  }

  .wb-page-search .search input[type="search"] {
    font-size: 15px;
    height: 56px;
    padding-left: 50px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-page-search .search,
  .sub-nav .search-container .search {
    transition: none !important;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.6
   Restore support actions + remove legacy category search wrapper surface
   ========================================================================== */

/* The category hero wrapper used to be its own white rounded rectangle.
   The actual .search element is now the only visible surface. */
.wb-page-search {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit;
  overflow: visible;
  padding: 0 !important;
}

/* Match the homepage search geometry exactly. */
.wb-page-search .search {
  background: #fff !important;
  border: 2px solid rgba(21, 52, 56, .38) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  min-height: 60px;
  overflow: hidden;
  width: 100%;
}

.wb-page-search .search input[type="search"] {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  height: 60px;
}

/* Ensure the restored header/support actions participate in the pill system. */
.wb-site-nav .wb-button,
.wb-site-nav .wb-button:visited {
  color: #fff !important;
  min-height: 44px;
  white-space: nowrap;
}

.wb-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.wb-hero-actions .wb-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

@media (max-width: 640px) {
  .wb-page-search .search {
    min-height: 56px;
  }

  .wb-page-search .search input[type="search"] {
    height: 56px;
  }

  .wb-hero-actions {
    gap: 14px;
  }
}


/* ==========================================================================
   Zuvo Help Center v2.1.7 — isolated CTA + category search components
   ========================================================================== */

/* Header request CTA: no dependency on generic .button/.wb-button rules. */
.wb-header .wb-header-request-cta,
.wb-header .wb-header-request-cta:visited {
  align-items: center !important;
  background: var(--wb-void) !important;
  border: 1.5px solid var(--wb-void) !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  color: #fff !important;
  display: inline-flex !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  min-height: 44px !important;
  opacity: 1 !important;
  padding: 10px 20px !important;
  text-decoration: none !important;
  visibility: visible !important;
  white-space: nowrap !important;
}

.wb-header .wb-header-request-cta:hover {
  background: #0d3f45 !important;
  border-color: #0d3f45 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.wb-header .wb-header-request-cta:focus-visible {
  background: #0d3f45 !important;
  border-color: #0d3f45 !important;
  color: #fff !important;
  outline: 3px solid var(--wb-spark) !important;
  outline-offset: 3px !important;
}

/* Home support CTA: explicit pill so it can't disappear into the dark hero. */
.wb-home-hero .wb-home-contact-cta,
.wb-home-hero .wb-home-contact-cta:visited {
  align-items: center !important;
  background: var(--wb-spark) !important;
  border: 1.5px solid var(--wb-spark) !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  color: var(--wb-void) !important;
  display: inline-flex !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  gap: 8px !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  min-height: 44px !important;
  opacity: 1 !important;
  padding: 10px 18px !important;
  text-decoration: none !important;
  visibility: visible !important;
  white-space: nowrap !important;
}

.wb-home-hero .wb-home-contact-cta:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--wb-void) !important;
  transform: translateY(-1px);
}

.wb-home-hero .wb-home-contact-cta:focus-visible {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--wb-void) !important;
  outline: 3px solid var(--wb-spark) !important;
  outline-offset: 3px !important;
}

/* Category search: isolate from legacy Copenhagen .search geometry. */
.wb-page-search {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.wb-page-search .wb-category-search-control {
  align-items: stretch !important;
  background: #fff !important;
  border: 2px solid rgba(21, 52, 56, .38) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  display: flex !important;
  min-height: 60px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: relative !important;
  width: 100% !important;
}

.wb-page-search .wb-category-search-control:focus-within {
  border-color: var(--wb-stream) !important;
  box-shadow: 0 0 0 4px rgba(141, 224, 205, .28) !important;
}

.wb-page-search .wb-category-search-control input[type="search"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: var(--wb-void) !important;
  flex: 1 1 auto !important;
  font-size: 17px !important;
  height: 60px !important;
  margin: 0 !important;
  min-width: 0 !important;
  outline: 0 !important;
  padding: 0 18px 0 54px !important;
}

.wb-page-search .wb-category-search-control input[type="search"]:focus,
.wb-page-search .wb-category-search-control input[type="search"]:focus-visible {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.wb-page-search .wb-category-search-control .clear-button {
  align-items: center !important;
  align-self: stretch !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #68787a !important;
  flex: 0 0 48px !important;
  justify-content: center !important;
  margin: 0 !important;
  min-width: 48px !important;
  outline: 0 !important;
  padding: 0 !important;
}

.wb-page-search .wb-category-search-control.search-has-value .clear-button {
  display: flex !important;
}

.wb-page-search .wb-category-search-control .clear-button:hover,
.wb-page-search .wb-category-search-control .clear-button:focus-visible {
  background: rgba(141, 224, 205, .22) !important;
  color: var(--wb-void) !important;
}

.wb-page-search .wb-category-search-control .clear-button:focus-visible {
  box-shadow: inset 0 0 0 2px var(--wb-stream) !important;
}

/* Explicitly neutralize Copenhagen's segmented populated-search radius. */
[dir="ltr"] .wb-page-search .wb-category-search-control.search-has-value input[type="search"],
[dir="rtl"] .wb-page-search .wb-category-search-control.search-has-value input[type="search"],
[dir="ltr"] .wb-page-search .wb-category-search-control .clear-button,
[dir="rtl"] .wb-page-search .wb-category-search-control .clear-button {
  border: 0 !important;
  border-radius: 0 !important;
}

/* Signed-in users intentionally get account controls instead of a Sign in link. */
.wb-account-nav .wb-sign-in {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  padding: 10px 14px;
}

@media (max-width: 1024px) {
  .wb-header .wb-header-request-cta {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .wb-page-search .wb-category-search-control {
    min-height: 56px !important;
  }

  .wb-page-search .wb-category-search-control input[type="search"] {
    font-size: 15px !important;
    height: 56px !important;
    padding-left: 50px !important;
  }

  .wb-home-hero .wb-home-contact-cta {
    min-height: 44px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-header .wb-header-request-cta:hover,
  .wb-home-hero .wb-home-contact-cta:hover {
    transform: none !important;
  }
}
