@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;
  font-family: 'Lato', sans-serif;
}


html, body {
	min-height: 100vh; 
}

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;
}
a:focus-visible {
  outline: 4px solid var(--white);
  border-radius: 4px;
}
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"] {
  background: var(--scarpa-flow);
  border: 2px solid var(--silver-chalice);
  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;
}
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/***** Variables *****/
:root {
/*   --brand-color: rgba(255, 100, 10, 1); // styles the feedback button and hover states, text in button */
  --brand-color: #FF640A;
  --brand-color-dark: rgba(224, 82, 0, 1);
  --brand-color-light: rgba(255, 123, 46, 1);
/*   --brand-text-color: rgba(255, 255, 255, 1) // styles the hover state button text */
  --brand-text-color: #FF5E00;
/*   --text-color: rgba(0, 0, 0, 1) // styles the text and input area text */
  --text-color: #FFFFFF;
  --lightened-text-color: #fff;
  --link-color: rgba(255, 100, 10, 1);
  --visited-link-color: rgba(255, 94, 0, 1);
  --background-color: rgba(0, 0, 0, 1);
  --black: rgba(0, 0, 0, 1);
  --woodsmoke: rgba(20, 21, 25, 1);
  --shark: rgba(35, 37, 43, 1);
  --trout: rgba(74, 78, 88, 1);
  --scarpa-flow: rgba(89, 89, 91, 1);
  --silver-chalice: rgba(160, 160, 160, 1);
  --silver: rgba(218, 218, 218, 1);
  --alabaster: rgba(248, 248, 248, 1);
  --white: rgba(255, 255, 255, 1);
  --taupe: #ECE1C2;
  --blue-base: #213944;
  
  --gutter-padding: 1.25rem;
}
@media (min-width: 35.5em) {
  :root {
    --gutter-padding: 2.5rem;
  }
}

@media (min-width: 64em) {
  :root {
    --gutter-padding: 4rem;
  }
}
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 1);
  color: var(--text-color);
  font-size: 1em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

  body > main {
    min-height: calc(100vh - 60px);
  }

h1, h2, h3, h4, h5, h6 {
  font-family: "ATyp-Bold", Helvetica, sans-serif;
  margin-top: 0;
  font-weight: 500;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: rgba(255, 100, 10, 1);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--brand-text-color);
  text-decoration: underline;
}

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

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

input:not([type="checkbox"]) {
  outline: none;
}

input:not([type="checkbox"]):focus {
  border: 1px solid rgba(255, 100, 10, 1);
}

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

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 #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid rgba(255, 100, 10, 1);
}

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

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

textarea:focus {
  border: 1px solid rgba(255, 100, 10, 1);
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 0 var(--gutter-padding);
}

.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%;
  }
}
.inline{
display: inline;
}
.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, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button {
  background-color: transparent;
  border: 1px solid rgba(255, 100, 10, 1);
  border-radius: 4px;
  color: rgba(255, 100, 10, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button {
    width: auto;
  }
}

.button:hover, .split-button button:hover, .section-subscribe button:hover, .article-subscribe button:hover, .community-follow button:hover, .requests-table-toolbar .organization-subscribe button:hover, .subscriptions-subscribe button:hover, .button:active, .split-button button:active, .section-subscribe button:active, .article-subscribe button:active, .community-follow button:active, .requests-table-toolbar .organization-subscribe button:active, .subscriptions-subscribe button:active, .button:focus, .split-button button:focus, .section-subscribe button:focus, .article-subscribe button:focus, .community-follow button:focus, .requests-table-toolbar .organization-subscribe button:focus, .subscriptions-subscribe button:focus, .button.button-primary, .split-button button.button-primary, .section-subscribe button.button-primary, .section-subscribe button[data-selected="true"], .article-subscribe button.button-primary, .article-subscribe button[data-selected="true"], .community-follow button.button-primary, .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected="true"], .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected="true"] {
  background-color: rgba(255, 100, 10, 1);
  color: var(--brand-text-color);
  text-decoration: none;
}

/* .button.button-primary:hover, .split-button button:hover, .section-subscribe button.button-primary:hover, .section-subscribe button:hover[data-selected="true"], .article-subscribe button.button-primary:hover, .article-subscribe button:hover[data-selected="true"], .community-follow button.button-primary:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button:hover[data-selected="true"], .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button:hover[data-selected="true"], .button.button-primary:focus, .split-button button.button-primary:focus, .section-subscribe button.button-primary:focus, .section-subscribe button:focus[data-selected="true"], .article-subscribe button.button-primary:focus, .article-subscribe button:focus[data-selected="true"], .community-follow button.button-primary:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button:focus[data-selected="true"], .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button:focus[data-selected="true"], .button.button-primary:active, .split-button button.button-primary:active, .section-subscribe button.button-primary:active, .section-subscribe button:active[data-selected="true"], .article-subscribe button.button-primary:active, .article-subscribe button:active[data-selected="true"], .community-follow button.button-primary:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button:active[data-selected="true"], .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button:active[data-selected="true"] {
  background-color: #a33c00;
  border-color: #a33c00;
}
 */
.button[data-disabled], .split-button button[data-disabled], .section-subscribe button[data-disabled], .article-subscribe button[data-disabled], .community-follow button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .subscriptions-subscribe button[data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  cursor: pointer;
  line-height: 2.72;
  min-width: 190px;
  width: 100%;
  background-color: var(--brand-color);
  border: 2px solid var(--brand-color);
  border-radius: 8px;
  color: var(--woodsmoke);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 16px;
  margin: 0 0 75px 0;
}

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

.button-large:focus, input[type="submit"]:focus {
  border: 2px #fff solid;
}

.button-large:active, input[type="submit"]:active {
  background: var(--brand-color-dark);
  border: 2px solid var(--brand-color-dark);
}


.button-large:hover, input[type="submit"]:hover{
  color: var(--woodsmoke);
  background: var(--brand-color-light);
  border: 2px solid var(--brand-color-light);
}

.button-large[disabled], input[type="submit"][disabled] {
  border: 2px solid var(--scarpa-flow);
  background: transparent;
  color: var(--scarpa-flow);
  cursor: not-allowed;
}


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

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

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

.split-button button {
  background-color: rgba(255, 100, 10, 1);
  border: 0;
  color: var(--brand-text-color);
  height: 32px;
  line-height: 16px;
  outline-color: rgba(255, 100, 10, 1);
}

[dir="rtl"] .split-button button:not(:only-child):first-child {
  border-left: 1px solid var(--brand-text-color);
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):first-child {
  border-right: 1px solid var(--brand-text-color);
  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: separate;
  border-spacing: 0;
}

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

.table th,
.table th a {
  color: var(--lightened-text-color);
  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: 1200px !important;
}
#new_request {
  max-width: 650px;
}

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

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

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

.form-field input:focus {
  border: 1px solid rgba(255, 100, 10, 1);
}

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

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

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

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

.form-field .nesty-input:focus {
  border: 1px solid rgba(255, 100, 10, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(255, 100, 10, 1);
  text-decoration: none;
}
.hc-multiselect-toggle {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-chalice);
}
.hc-multiselect-menu {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  color: var(--silver-chalice);
}
.hc-multiselect-menu li:hover, .hc-multiselect-menu li:focus {
  background: var(--shark);
  color: var(--white);
}
.hc-multiselect-toggle li span {
  color: var(--woodsmoke);
}
.form-field textarea {
  vertical-align: middle;
}

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

.form-field .optional {
  color: var(--lightened-text-color);
  margin-left: 4px;
}

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

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

.form footer a {
  color: var(--lightened-text-color);
  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(255, 94, 0, 1);
}

/***** Header *****/
.header {
  background: var(--shark);
  margin: 0 auto;
  padding: 0 20px;
  position: sticky;
  top: 0;
  align-items: center;
  display: flex;
  height: 60px;
  width: 100%;
  justify-content: space-between;
  z-index: 10000;
}

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

.logo span {
  margin: 0 10px;
  color: rgba(255, 100, 10, 1);
}

.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: 60px;
  z-index: 1;
}

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

.user-nav[aria-expanded="true"] > .user-nav-list span {
  display: block;
}

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

.user-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.user-nav-list > span {
  display: inline-block;
}

.user-nav-list a {
  color: var(--silver);
  font-size: 16px;
}

.user-nav-list span a:hover {
  text-decoration: none;
  transition: all linear 0.1s;
}

.user-nav-list *:focus-visible {
  outline: 4px solid var(--silver-chalice);
}

@media (max-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}

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

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

.nav-wrapper-desktop a {
  border: 0;
  display: none;
  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: 18px 15px;
}


.contact-button {
  cursor: pointer;
  color: var(--silver);
}

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

.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  color: var(--white);
  border: 0;
  width: auto;
  padding: 0 18px;
  cursor: pointer;
}

.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}


.nav-wrapper-mobile .menu-button-mobile[aria-expanded="true"] .icon-menu {
  background: #213944;
}

.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background: var(--shark);
  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: 60px;
  z-index: 4;
}

.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%;
  cursor: pointer;
  text-align: start;
}

.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  text-align: left;
  color: var(--silver);
}

.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,
.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: var(--woodsmoke);
  text-decoration: none;
}

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

@media only screen and (min-width: 300px) {
  .dropdown {
    width: 100%;
  }
}

/***** 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(255, 100, 10, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button:hover, .user-info > button:focus {
  color: rgba(255, 100, 10, 1);
  background-color: transparent;
}

.user-info > button::after {
  color: rgba(255, 100, 10, 1);
  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(255, 100, 10, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: var(--brand-text-color);
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/*********** Header *******************/

.user-nav-list > *:hover {
  background: var(--woodsmoke);
}

.user-nav .user-nav-list > *:hover a{
  color: #fff;
}

.user-nav-list > *:active {
  background: #000;
  color: #fff;
}

.nav-wrapper-desktop a {
  padding: 18px 15px;
  height: 60px;
}

.nav-wrapper-desktop a:focus, {
  text-decoration: none;
  color: #fff;
}

/***** Language drop-down menu ***/
.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-toggle {
  cursor: pointer;
  background: none;
  color: var(--silver);
  border: 0;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 18px 8px 18px 15px;
}

.dropdown-toggle:hover {
  text-decoration: none;
  color: var(--white);
  transition: all linear 0.03s;
}

.dropdown-toggle[aria-expanded="true"] {
  color: var(--brand-color);
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  background: var(--shark);
  color: var(--silver);
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  min-width: 188px;
  max-height: 210px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  overflow: auto;
  z-index: 1000;
}

.language-dropdown {
  top: 60px;
  right: 0px;
  left: auto;
}
.language-dropdown-mobile {
  position: relative;
  min-width: 100%;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid var(--brand-color);
  margin: 4px 0;
}

.dropdown-menu [role="menuitem"] {
  cursor: pointer;
  display: block;
  padding: 12px 20px;
  height: auto;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: left;
  line-height: inherit;
  width: 100%;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  text-decoration: none;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="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 {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden], .dropdown-menu [role="menuitem"][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;
}
.dropdown-chevron-fill {
  fill: var(--silver);
}
.dropdown-toggle:hover .dropdown-chevron-fill {
  fill: var(--white);
}
.dropdown-toggle[aria-expanded="true"] .dropdown-chevron-fill {
  fill: var(--brand-color);
}
.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  background: var(--woodsmoke);
  color: var(--white);
  text-decoration: none;
}


/***** Footer *****/
.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  border: 0;
  color: var(--silver-chalice);
  padding: 32px var(--gutter-padding);
  max-width: 1200px;
  margin: auto;
}

.footer a {
  color: var(--silver-chalice);
}

.footer a:hover{
  text-decoration: none;
  color: #fff; 
  transition: all linear 0.27s;
}

.footer-language-selector button {
  color: var(--lightened-text-color);
  display: inline-block;
}


.footer-section1 {
  width: 100%;
  margin-bottom: 24px;
  font-size: 14px;
  text-align: center;
}

.footer-section1 span {
  margin-right: 25px;
  margin-left: 25px;
}
.footer-section1 a {
  text-wrap: nowrap;
}

.footer-separator {
  display: inline-block;
}
.footer-section2 {
  margin-top: 24px;
  text-align: left;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-top: .0625rem solid var(--trout);
}

@media(min-width: 768px) {
  .footer-section2 {
    flex-direction: row;
  }
}
@media(max-width: 568px) {
  .footer-section1 {
    display: flex;
    flex-direction: column;
  }
  .footer-section1 span {
    padding-bottom: 12px;
  }
  .footer-section1 a {
    text-wrap: auto;
  }
  .footer-separator {
    display: none;
  }
}
.footer-section2-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
}

.footer .footer-language-selector .dropdown-toggle {
  text-transform: uppercase;
  color: var(--silver-chalice);
  padding: 0;
}

.footer .footer-language-selector button {
  color: var(--silver-chalice);
  display: flex;
}
/***** Feedback Form ******/
.subnav-wrapper {
  background: var(--black);
  width: 100%;
  position: sticky;
  top: 60px;
  z-index: 1000;
}
.form-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter-padding);
}

.form-subnav {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 var(--gutter-padding);
  position: sticky;
  top: 60px;
  background: black;
}
.form-intro {
  max-width: 800px !important;
}
.form-intro p {
  margin-top: 8px;
}
.feedback-intro h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
.feedback-p {
  font-size: 16px;
}
@media (min-width:568px) {
  .feedback-intro h2 {
    font-size: 28px;
  }
    .feedback-p {
    font-size: 20px;
  }
}
@media (min-width:768px) {
  .feedback-intro h2 {
    font-size: 36px;
  }
}

.feedback-hero-img {
  background: url("/hc/theming_assets/01JKEPGSNNDBBN6NRAH4M8YX9X");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
	height: clamp(80px, 17vw, 200px);
  text-align: center;
}
.feedback-hero-logo-container {
    height: clamp(80px, 17vw, 200px);
    width: clamp(80px, 17vw, 200px);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--brand-color);
}
.feedback-hero-logo {
    background: url(/hc/theming_assets/01JKEPGT9F5FH87DZ49946KRCQ);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: clamp(48px, 8vw, 96px);
    width: clamp(48px, 8vw, 96px);
    position: absolute;
}
.feedback-hero-title {
  background: var(--taupe);
  color: var(--black);
  padding: 0 var(--gutter-padding);
  height: clamp(80px, 17vw, 224px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 112px;
  white-space: nowrap;
  text-overflow: clip;
  width: 100%;
}
.feedback-title-english,
.feedback-title-arabic,
.feedback-title-portugeuse,
.feedback-title-russian {
    font-size: clamp(16px, 7vw, 92px);
}
.feedback-title-german,
.feedback-title-spanish,
.feedback-title-french,
.feedback-title-italian  {
    font-size: clamp(16px, 6vw, 82px);
}

.level-up {
  background: url(/hc/theming_assets/01JKGMH5NB2SVK15MY1ENS67G9);
  height: clamp(108px, 20vw, 164px);
  margin: 24px 0 16px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level-up-title {
  background: var(--woodsmoke);
  width: 100%;
  color: var(--white);
  font-size: clamp(28px, 6vw, 48px);
  text-align: center;
  font-family: "ATyp-Bold", Helvetica, sans-serif;
  padding: 6px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-caution {
  color: var(--silver-chalice);
  font-style: italic;
}
/***** HOOPS *********/
.hoops-section {
  text-align: center;
}
/***** Breadcrumbs *****/

.breadcrumbs {
  margin: 0 0 ;
  padding: 0;
}
@media(max-width:820px) {
  .breadcrumbs{
   	margin: 0 0 15px;
	}
}
.breadcrumbs li {
  display: inline;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: bold;
  color: var(--brand-color-light);
  padding: 2px 2px;
}

.breadcrumbs li + li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.70706 2.29297L14.7071 9.29297L15.4142 10.0001L14.7071 10.7072L7.70706 17.7072L6.29285 16.293L12.5857 10.0001L6.29285 3.70718L7.70706 2.29297Z' fill='%23A0A0A0'/%3E%3C/svg%3E");
  margin: 0 4px 0 0;
  vertical-align: -5px;
}
[dir="rtl"] .breadcrumbs li + li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.2929 2.29297L5.29285 9.29297L4.58574 10.0001L5.29285 10.7072L12.2929 17.7072L13.7071 16.293L7.41424 10.0001L13.7071 3.70718L12.2929 2.29297Z' fill='%23A0A0A0'/%3E%3C/svg%3E");
  margin: 0 0 0 4px;
}
.breadcrumbs li > a {
  color: var(--brand-color-light);
  text-decoration: none;
}

.breadcrumbs li > a:hover {
  color: var(--brand-color-light);
  text-decoration: none;
}


.breadcrumbs li:first-child > a {
  color: var(--white);
}

.breadcrumbs li:first-child > a:hover {
  color: var(--brand-color-light);
}
.breadcrumbs li > a:focus, .breadcrumbs li > a:active  {
  color: var(--brand-color);
  text-decoration: none;
}

@media only screen and (max-width: 430px) {
  .breadcrumbs li,
  .breadcrumbs li > a {
    border: 0;
  }
}

/***** Search field *****/
.search {
  position: relative;
  width: 70%;
  margin: auto;
}
@media(max-width: 768px) {
  .search {
    width: 90%;
  }
}
.search input[type="search"] {
  border: 1px solid var(--silver-chalice);
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border-radius: 8px;
  box-sizing: border-box;
  height: 44px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}


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

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

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

.search-icon {
  position: relative;
  top: 55%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--silver-chalice);
}

.search input[type="search"]:focus + .search-icon,
.search input[type="search"]:focus ~ .search-icon,
.search:focus-within .search-icon {
  color: var(--white);
}

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


.search-container {
  position: relative;
  @media only screen and (max-width: 820px) {
  	width: 100%;
  }
}

::placeholder {
  color: var(--silver-chalice);
  font-size: 16px;
  font-weight: 500;
}

.search input[type="search"]:focus::placeholder {
  color: var(--white);
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

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

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

.hero-inner h2 {
  font-size: 28px;
  line-height: 30px;

}


@media (min-width: 768px) {
  .hero {
    height: 240px;
    margin-bottom: 36px;
  }
  .hero-inner h2 {
    font-size: 54px;
  }
}

@media (min-width: 1024px) {
  .hero {
    margin-bottom: 52px;
  }
}

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

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

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 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 {
  background: var(--black);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  position: sticky;
  top: 60px;
  z-index: 3000;
}

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

@media (max-width: 820px) {
  .sub-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 28px 0;
  }
}

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

.search-container .search-icon {
  top: 50%;
  left: 15px;
}

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

/***** Homepage Category Blocks *****/

.cr-section-title {
  font-size: 20px;  
  text-align: center;
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .cr-section-title {
    margin-bottom: 32px;
    font-size: 28px;
  }
}

.blocks-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: clamp(10px, 2vw, 30px);
}

.blocks-item {
  border-radius: 8px;
  box-sizing: border-box;
  background: var(--woodsmoke);
  display: flex;
  flex: 1 0 clamp(120px, 40%, 320px);
  min-width: 0; /* For extremely narrow screens <330px to force content to spill into its padding. */
  max-width: 100%;
  text-align: center;
  height: clamp(134px, 15vw, 180px);
}

.blocks-item:hover {
  background-color: var(--shark);
}

.blocks-item:hover * {
  fill: var(--white);
  color: var(--white);
}

.blocks-item-link {
  color: var(--silver);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
  align-items: center;
}

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

.blocks-item-link:focus {
  outline: 5px solid var(--white);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: bold;
  color: var(--silver);
}

@media (min-width: 768px) {
  .blocks-item-title {
    font-size: 21px;
  }
}

.blocks-item-description {
  margin: 0;
}

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

.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active {
  color: var(--white);
}


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

.featured-category {
  flex-basis: 80%;
}

/***** Fixes buttons in homepage *****/
.homepage-button {
  font-size: 30px;
  color: #F47521;
}

.categories {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .categories {
    margin-bottom: 36px;
  }
}

@media (min-width: 1024px) {
  .categories {
    margin-bottom: 52px;
  }
}

/***** 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;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: clamp(10px, 25%, 15px);
}

.promoted-articles-item {
  width: 100%;
}

.promoted-articles-item a {
  display: flex;
  gap: 8px;
  padding: 10px 20px;
  min-height: 44px;
  background: var(--woodsmoke);
  color: var(--silver);
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
}

.promoted-articles-item a:after {
  padding-left: 10px;
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  font-size: 15.41px;
  display: inline-block;
  float: right;
}

  [dir="rtl"] .promoted-articles-item a:after {
    padding-left: 0;
    padding-right: 10px;
  }

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

.promoted-articles-item:hover a {
  background-color: var(--shark);
  color: var(--white);
  text-decoration: none;
}

.promoted-articles-item:active {
  color: var(--silver);
}

.promoted-articles-item:active > a {
  text-decoration: none;
}

.promoted-articles-item-heading {
  font-size: 24pt;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
  
  .promoted-articles-item {
    width: 49%;
  }
  
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.recent-activity-item-time, .recent-activity-item-comment {
  color: var(--lightened-text-color);
  display: inline-block;
  font-size: 12px;
}

.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-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(255, 100, 10, 1);
  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;
}

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

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

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

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

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

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

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

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

.article-list-item {
  background: var(--woodsmoke);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  margin-bottom: 16px;
  width: 100%;
  padding: 0;
}

.article-list-item a:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' viewBox='0 0 21 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.45706 2.29303L15.4571 9.29303L16.1642 10.0001L15.4571 10.7072L8.45706 17.7072L7.04285 16.293L13.3357 10.0001L7.04285 3.70724L8.45706 2.29303Z' fill='%23DADADA'/%3E%3C/svg%3E");
  display: inline-block;
  position: relative;
  height: 20px;
}
[dir="rtl"] .article-list-item a:after {
  transform: rotate(180deg);
}
.article-list-item a {
  font-weight: 500;
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
  padding: 16px 20px;
  display: flex; 
  gap: 8px;
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
  height: 100%;
}

@media (max-width: 568px) {
  .article-list-item a {
      padding: 10px 16px;
  }
}
.article-list-item:hover {
  background: var(--shark);
  transition: all linear 0.1s;
}

.article-list-item:focus {
  background: var(--shark);
  transition: all linear 0.1s;
}

.article-list-item:active {
  background: #000;
  transition: all linear 0.1s;
}

.article-list-item:hover > a {
  color: var(--silver);
  text-decoration: none;
  transition: all linear 0.1s;
}

.article-list-item:focus > a {
  color: var(--silver);
  text-decoration: none;
  border: 4px solid #fff;
  transition: all linear 0.1s;
}

.article-list-item:active > a { 
  color: var(--silver);
  text-decoration: none;
  transition: all linear 0.1s;
}

.icon-star {
  color: rgba(255, 100, 10, 1);
  font-size: 18px;
}

[data-title="Promoted article"] {
  display: none;
}
/***** Category page fixes *****/
.category-page-question {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.category-page-instruction {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.category-page-description-custom {
  font-size: 20px;
  font-weight: 400;
  color: #f0f0f0;
  text-align: center;
}

.category-section-blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 240px !important;
  flex: 1 1 auto;
  min-width: 240px; 
  padding: 40px 40px;
  border-radius: 5px;
  border: 4px solid var(--scarpa-flow);
  color: var(--scarpa-flow);
  font-size: 22px;
  font-weight: 600;
  text-align: center;  
  background-color: var(--woodsmoke);  
  cursor: pointer;
}
  .activeCategory {
    border: 4px solid #fff;
    color: #fff;
    text-align: center;  
    background-color: var(--shark);  
}
.category-section-blocks:hover {
  color: #fff;
  border: 4px solid #fff;
  background-color: var(--woodsmoke);
  transition: all linear 0.1s;
}

a.category-section-blocks:hover {
  color: #fff;
  text-decoration: none !important;
  transition: all linear 0.1s;
}
.category-section-blocks:active {
  color: var(--white);
  text-decoration: none !important;
}
.section-tree {
  flex-wrap: unset;
}

/*** Carousel ***/
.cr-categories-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 50%;
  -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
  scrollbar-width: none;
}


.category-section-blocks {
  scroll-snap-align: start;
}

.cr-categories-row::-webkit-scrollbar {
  display: none;
}


.cr-categories-container {
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: 168px;
  background: var(--black);
  z-index: 50;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--trout);
}
.carousel-separator {
  width: 100%;
  padding-bottom: 24px;
  position: sticky;
  top: 311px;
  z-index: 49;
  background: var(--black);
}

#cr-empty-list {
  display: block; 
  position: relative;
  min-height: 50vh;
}

.carousel-nav {
  position: absolute;
  top: calc(50% - 12px);
  transform: translateY(-50%);
  border: none;
  background: #ffffff00;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 120px;
  width: 120px;
}

.carousel-nav.prev {
  left: 0px;
  background: var(--web-gradients-black-0100-horizontal, linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, #000 100%));
}

.carousel-nav.next {
  right: 0px;
  background: var(--web-gradients-black-0100-horizontal, linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #000 100%));
}

.carousel-nav:disabled {
  display: none;
}

.carousel-item {
  scroll-snap-align: start;
}
.carousel-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;
  margin: 0;
  -webkit-user-select: none;  /* Safari */
  -moz-user-select: none;     /* Firefox */
  -ms-user-select: none;      /* IE/Edge */
  user-select: none;          /* Standard */
}


.cr-article-list-container {
  text-align: center;
}

.cr-article-list-container .article-list {
  text-align: left;
}

.see-all-articles-container {
  display: flex;
  justify-content: center;
}
.see-all-articles {
  font-size: 14px;
  font-weight: 800;
	padding: 8px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  color: var(--brand-color);
  border: 4px solid transparent;
  margin-bottom: 20px;
}

.see-all-articles:hover {
  color: var(--brand-color-light);
  transition: all linear 0.1s;
  text-decoration:none;
}

.see-all-articles:focus-visible {
  color: var(--brand-color-light);
  transition: all linear 0.1s;
  outline: 4px solid #fff;
  text-decoration:none;
}
.see-all-articles:focus {
  color: var(--brand-color-dark);
  transition: all linear 0.1s;
  text-decoration:none;
}

.see-all-articles:active {
  color: var(--brand-color-dark);
  transition: all linear 0.1s;
  text-decoration:none;
}

@media (min-width: 1024px) {
  .category-content {
    flex: unset;
    margin-bottom: 25px;
  }
}

/** Tablet Breakpoint for carousel to match sub-nav **/
@media (max-width: 820px) {
  .cr-categories-container {
    top: 195px;
  }
  .category-section-blocks {
    height: 91px;
    min-width: 173px;
    padding: 20px;
  }

  .carousel-nav {
    height: 91px;
    width: 91px;
  }
}
/** Mobile Breakpoint to match gutter padding **/
@media (max-width: 568px) {
  .cr-categories-container {
    top: 199px;
  }
  .category-section-blocks {
    height: 56px;
    min-width: 105px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--scarpa-flow);
  }
  .category-section-blocks:hover {
    border: 2px solid #fff;
}
  .activeCategory {
    border: 2px solid #fff;
    color: #fff;
    text-align: center;  
    background-color: var(--shark);  
}
  .carousel-separator {
    top: 276px;
    padding-bottom: 16px;
  }

  .carousel-nav {
    height: 56px;
    width: 56px;
  }
  .carousel-nav svg {
    width: 24px;
    height: 24px;
  }
  .article-list-item {
    margin-bottom: 12px;
  }
}


/***** Category custom menu ******/

/* The expanding image container */
#container-articles {
  position: relative;
  display: none;
  transition: all linear 0.1s;
}

/* Expanding image text */
#container-articles div {
  position: relative;
  transition: all linear 0.1s;
  
}
.box {
  transition: all linear 0.1s;
  
}

.fade-in-article-list {
   animation: fadeIn 1.7s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}



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

.section-content {
  flex: 1;
}

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

.section-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: var(--text-color);
  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 75%;
    max-width: 75%;
    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;
}
.article-header h1 {
  margin-bottom: 24px;
}

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

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

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

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

.article-title .icon-lock {
  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 {
  background: var(--woodsmoke);
  padding: 16px 24px 40px 24px;
}

.article-body img {
  height: auto;
  max-width: 100%;
  outline: 2px solid var(--white);
}

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

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

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

.article-body ul {
  list-style-type: disc;
}
.article-body a, .article-body a > *, .article-body a > * > * {
  color: var(--brand-color-light) !important;
  text-decoration: none !important;
}
.article-body a:visited {
  color: rgba(255, 94, 0, 1);
}

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

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

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

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

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

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

.article-comment-count {
  color: var(--lightened-text-color);
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(255, 100, 10, 1);
  width: 18px;
  height: 18px;
}

.article-sidebar {
  flex: 0 0 25%;
  border-bottom: 0;
  border-top: 0;
  margin-bottom: 20px;
  padding: 0;
}



.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-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

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

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

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

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

.article-return-to-top-icon {
  transform: rotate(0.5turn);
}

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

.sidenav-item {
  color: var(--silver);
  min-height: 52px;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 9px 20px;
  margin: 0;
  border-radius: 0;
  background: var(--woodsmoke);
  font-size: 14px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  text-decoration: none !important;
}

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

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

/***** Fixes for the Related Viewed Articles sections in articles **************/

.related-articles-title, .section-articles-title {
  padding: 11px 20px;
  margin: 0;
  border-radius: 0;
  background: var(--woodsmoke);
  border-bottom: 1px solid var(--trout);
  font-family: Lato, ATyp;
  font-size: 18px;
  font-weight: 500;
  text-align: auto;
}


.related-articles li a {
  color: var(--silver);
  min-height: 52px;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 9px 20px;
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: var(--woodsmoke);
  font-size: 14px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;  
  max-width: 100%;
}

.related-articles li a:after {
content: '';
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.70706 2.29303L14.7071 9.29303L15.4142 10.0001L14.7071 10.7072L7.70706 17.7072L6.29285 16.293L12.5857 10.0001L6.29285 3.70724L7.70706 2.29303Z' fill='%23DADADA'/%3E%3C/svg%3E");
background-repeat: no-repeat;
width: 20px;
height: 20px;
padding-left: 4px;
display: inline-block;
flex: 0 0 auto;
transform: rotate(0);
position: relative;
top: 0;
}

[dir="rtl"] .related-articles li a:after {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .related-articles li a {
    padding: 12px 8px;
  }
  .related-articles li a:after {
    flex: 0 0 auto;
  }
}

.related-articles li a {
  color: var(--silver);
}

.related-articles li:hover {
  text-decoration: none;
  transition: all linear 0.1s;
}

.related-articles li:hover a {
  color: var(--silver);
  background: var(--shark);
  text-decoration: none;
  
}

.related-articles li:active a {
  color: var(--silver);
  background: #000;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}

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

.article-sidebar-item {
  padding-left: 20px;
  color: var(--silver-chalice);
  font-size: 18px;
  line-height: 26px;
}
[dir="rtl"] .article-sidebar-item {
  padding-left: 0;
  padding-right: 20px;
}
@media (min-width: 1024px) {
   .collapsible-sidebar[aria-expanded="false"] {
      max-height: unset;
  }
}

.collapsible-sidebar-title {
	padding: 12px 8px;
  margin: 0;
  border-radius: 0;
  background: var(--woodsmoke);
  border-bottom: 1px solid var(--trout);
}
.cr-related-articles:not(:has(h2)) {
  display: none;
}
.sidenav-item:after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.70706 2.29303L14.7071 9.29303L15.4142 10.0001L14.7071 10.7072L7.70706 17.7072L6.29285 16.293L12.5857 10.0001L6.29285 3.70724L7.70706 2.29303Z' fill='%23DADADA'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  padding-left: 4px;
  display: inline-block;
  flex: 0 0 auto;
  transform: rotate(0);
  position: relative;
  top: 0;
}
[dir="rtl"] .sidenav-item:after {
  flex: 0 0 auto;
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  .sidenav-item {
    padding: 12px 8px;
  }
  .sidenav-item:after {
    flex: 0 0 auto;
  }
}
.sidenav-item:hover {
  background: var(--shark);
  transition: all linear 0.1s;
}

a.sidenav-item:hover {
  text-decoration: none !important;
  color: var(--silver);
}

.sidenav-item.current-article, .sidenav-item:hover {
  background: var(--shark);
  color: var(--silver);
}



/**** Was this article helpful box ****/
.article-votes {
  border-top: 1px solid var(--trout);
  border-bottom: 0;
  background: var(--woodsmoke);
  display: flex;
  flex-direction: row;
  padding: 24px;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

.article-votes-question {
  font-size: 16px;
  font-weight: 500;
  float: left;
}

.article-votes-controls{
  display: flex;
  gap: 8px;
  padding-right: 0;
  float: right;
  flex-direction: row;
}

.article-vote {
  min-width: 90px;
  width: 150px;
  border-radius: 8px;
}

button.button.article-vote {
  text-transform: uppercase;
  color: var(--silver);
  border: 2px solid var(--silver-chalice);
  font-weight: 800;

}

button.button.article-vote:hover {
  color: var(--white);
  border: 2px solid var(--white);
  background: var(--shark);
}

button.button.article-vote:active,
button.button.article-vote.button-primary {
  color: var(--white);
  border: 2px solid var(--white);
  background: var(--woodsmoke);
}
button.button.article-vote:focus-visible {
  outline: 4px solid var(--white);
  border: none;
}
.article-relatives {
  border-top: 0;
}

  @media (max-width: 768px) {
    .article-votes {
      flex-direction: column;
    }
    .article-votes-question {
      margin-bottom: 24px;
      padding-left: 0;
    }
    .article-votes-controls {
  		flex-direction: column;
      padding-right: 0;
    }
  }

/****** Upvote/Downvote message *********/
.downvote-message, .upvote-message {
  display: none;
  background: var(--woodsmoke);
  border-radius: 4px;
  text-align: center;
  margin: 20px 0;
  padding: 15px;
}

.downvote-message p, .upvote-message p {
  font-size: 16px;
  font-weight: 500;
}

.downvote-message a{
  font-size: 16px;
  font-weight: 500;
  border: 4px transparent solid;
  padding: 4px 0;
}

.downvote-message a:hover {
  text-decoration: none;
}

.downvote-message a:focus {
  border: 4px #ffffff solid;
  text-decoration: none;
}

.downvote-message a:active {
  text-decoration: none;
}



/***** 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: var(--text-color);
  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: var(--lightened-text-color);
}

/***** 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: var(--lightened-text-color);
}

.share a:hover {
  text-decoration: none;
  color: rgba(255, 100, 10, 1);
}

.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 {
  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: var(--lightened-text-color);
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: rgba(255, 100, 10, 1);
}

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

.comment-sorter .dropdown-toggle {
  color: var(--lightened-text-color);
  font-size: 13px;
}

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(255, 100, 10, 1);
  padding: 40px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

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

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: rgba(255, 100, 10, 1);
}

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

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

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

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

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

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

.comment-body a:visited {
  color: rgba(255, 94, 0, 1);
}

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

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

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: var(--lightened-text-color);
  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: var(--lightened-text-color);
  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(255, 100, 10, 1);
}

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

.vote-voted {
  color: rgba(255, 100, 10, 1);
}

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

/***** 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/01JJSJ6CS50F1ASSWZB51N23YR);
  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(255, 100, 10, 1);
}

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

.community-follow button[data-selected="true"] {
  background-color: rgba(255, 100, 10, 1);
  color: var(--brand-text-color);
}

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

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

.community-follow button::after {
  border-left: 1px solid rgba(255, 100, 10, 1);
  content: attr(data-follower-count);
  color: rgba(255, 100, 10, 1);
  display: inline-block;
  font-family: 'Arial Black', Arial, 'Helvetica Neue', Helvetica, 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(255, 100, 10, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

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

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

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

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

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

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

.striped-list-title:visited {
  color: rgba(255, 94, 0, 1);
}

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

.striped-list-count {
  color: var(--lightened-text-color);
  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: var(--text-color);
    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(255, 100, 10, 1);
}

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

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

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

.status-label-not-planned, .status-label-closed {
  background-color: var(--brand-color);
  color: var(--lightened-text-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-body a:visited {
  color: rgba(255, 94, 0, 1);
}

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

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

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

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

.post-comment-count {
  color: var(--lightened-text-color);
}

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

.post-comment-count .icon-comments {
  color: rgba(255, 100, 10, 1);
  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-flex;
  line-height: 18px;
  vertical-align: middle;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}

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

.community-badge-container-achievements > .community-badge-titles {
  margin-left: calc(28px - 0.5em);
}

[dir="rtl"] .community-badge-container-achievements > .community-badge-titles {
  margin-right: calc(28px - 0.5em);
}

.community-name-and-title-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badge {
  margin: 2px;
}

.community-badge-achievements {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}

.profile-info .community-badge-achievements {
  height: 40px;
  width: 40px;
}

.community-title-badges {
  flex-basis: 100%;
  margin-top: 15px;
}

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

.community-badge-achievements img {
  width: 100%;
  height: 100%;
}

.community-badge-titles img {
  width: 20px;
  height: 20px;
}

.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: 1em;
  position: relative;
}

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

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

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

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

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

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

.collapsible-nav-toggle-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(255, 100, 10, 1);
}

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

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

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

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

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

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a: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(255, 100, 10, 1);
    order: 1;
  }
}

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

.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: 44px;
  overflow: hidden;
  padding: unset;
  margin: 10px 0;
  position: relative;
  border-radius: 8px;
}

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

@media (max-width: 1024px) {
  .collapsible-sidebar {
    border-bottom: 1px solid var(--trout, #4A4E58);
  }
}

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

.collapsible-sidebar .related-articles-title, .collapsible-sidebar .section-articles-title{
  font-size: 16px;
}

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


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

/*X icon */
.collapsible-sidebar-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}


.collapsible-sidebar-toggle:focus-visible {
  outline: none;
  border: 1px solid rgba(255, 100, 10, 1);
}

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

@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: #000;
  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: var(--lightened-text-color);
  font-size: 13px;
}

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

.no-activities {
  color: var(--lightened-text-color);
}

/***** 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: var(--lightened-text-color);
  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(255, 100, 10, 1);
}

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

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

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(255, 100, 10, 1);
}

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.request-details dt {
  color: var(--lightened-text-color);
  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-next-text, .pagination-prev-text, .pagination-last, .pagination-first  {
  display: none;
}


/** Search results pagination customizations **/
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.pagination-list {
  display: flex;
  flex-wrap: wrap;
}
.pagination-per {
  height: 44px;
  text-transform: uppercase;
  color: var(--silver-chalice);
  font-size: 14px;
  font-weight: 800;
}
.pagination-per[aria-expanded="true"] {
  color: var(--white);
  fill: var(--white);
}
.pagination-dropdown-menu {
  left: var(--gutter-padding);
}
.pagination-dropdown-menu a {
  color: var(--silver);
}
.pagination-chevron {
  fill: var(--silver-chalice);
}
.pagination-per:hover .pagination-chevron {
  fill: var(--white);
}
.dropdown-toggle[aria-expanded="true"] .pagination-chevron {
  fill: var(--white);
}
.pagination-per:focus-visible {
  border-radius: 4px;
	outline: 4px solid var(--white);
}
.pagination-per:disabled {
  color: var(--scarpa-flow);
}
.pagination-per:disabled .pagination-chevron {
  fill: var(--scarpa-flow);
}
.pagination-number a {
  color: var(--silver-chalice);
  border-radius: 90px;
  margin: 0 4px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  height: 24px;
  width: 24px;
}

.pagination-number a:active {
  border: 2px solid var(--white);
}
.pagination-number a[aria-current="page"] {
  background: var(--trout);
  color: var(--white);
}

.pagination-next-icon{
  display: block;
  width: 24px;
  height: 24px;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.0857 12L7.29285 4.20706L8.70706 2.79285L17.2071 11.2928L17.9142 12L17.2071 12.7071L8.70706 21.2071L7.29285 19.7928L15.0857 12Z' fill='white'/%3E%3C/svg%3E");
}

.pagination-prev-icon{
  display: block;
  width: 24px;
  height: 24px;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.7928 11.293L15.2928 2.79297L16.707 4.20718L8.91412 12.0001L16.707 19.793L15.2928 21.2072L6.7928 12.7072L6.08569 12.0001L6.7928 11.293Z' fill='white'/%3E%3C/svg%3E");
}

.pagination-list:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.91428 12L16.7071 19.7929L15.2929 21.2071L6.79289 12.7071L6.08578 12L6.79289 11.2929L15.2929 2.79289L16.7071 4.20711L8.91428 12Z' fill='%2359595B'/%3E%3C/svg%3E");
  cursor: not-allowed;
}

.pagination-list:after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  opacity: 0.5;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.0857 12L7.29285 4.20706L8.70706 2.79285L17.2071 11.2928L17.9142 12L17.2071 12.7071L8.70706 21.2071L7.29285 19.7928L15.0857 12Z' fill='%2359595B'/%3E%3C/svg%3E");
  cursor: not-allowed;
}

.pagination-list:has(.pagination-prev):before, .pagination-list:has(.pagination-next):after {
  display: none;
}
.pagination a:hover, .pagination a:active, .pagination a:focus {
  text-decoration: none;
}
.upload-item {
  background: var(--woodsmoke);
}
.upload-item:hover {
  background: var(--shark);
}
.upload-item:focus {
  background: var(--shark);
  border: 5px solid var(--white);
}
.upload-item .upload-link {
  color: var(--silver);
}
/***** Metadata *****/
.meta-group {
  display: block;
}

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

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: var(--lightened-text-color);
  font-size: 13px;
}

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

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #000;
}

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

.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: var(--lightened-text-color);
  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(255, 100, 10, 1);
  border-radius: 4px;
  color: rgba(255, 100, 10, 1);
  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: #000;
  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: var(--lightened-text-color);
  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: var(--lightened-text-color);
  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: #000;
}

@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: rgba(0, 0, 0, 1);
  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:hover, .search-results-sidebar .sidenav-item.current {
  background-color: var(--brand-color);
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-result-breadcrumbs li, .search-result-breadcrumbs li a, .search-result-breadcrumbs li a:visited {
  color: inherit;
}

/* 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 .2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

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

.notification-icon, .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: .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;
}

.form-forwarding {
  font-weight: bolder;
  font-size: 130%;
}

/* Simplified Notification Banner and HOOPs alert */

.notification-banner {
  position: relative;
  background: var(--blue-base);
  padding: 20px;
  line-height: 1.4;
  z-index: 1000;
  color: var(--text-color);
  font-size: 16px;
  top: 0;
  left: 0;
  width: 100%;
}

.notification-banner p {
  margin: auto;
  padding: 0 3.2em;
  font-size: 1.2em;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.notification-banner a {
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
}

.notification-banner a:hover,
.notification-banner a:focus {
  opacity: 1;
}

.notification-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
  background: transparent;
  display: inline-block;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEzLjQxNCAxMkwxOC43MDcgNi43MDcwMUMxOS4wOTggNi4zMTYwMSAxOS4wOTggNS42ODQwMSAxOC43MDcgNS4yOTMwMUMxOC4zMTYgNC45MDIwMSAxNy42ODQgNC45MDIwMSAxNy4yOTMgNS4yOTMwMUwxMiAxMC41ODZMNC43MDcwMSA1LjI5MzAxQzYuMzE2MDEgNC45MDIwMSA1LjY4NDAxIDQuOTAyMDEgNS4yOTMwMSA1LjI5MzAxQzQuOTAyMDEgNS42ODQwMSA0LjkwMjAxIDYuMzE2MDEgNS4yOTMwMSA2LjcwNzAxTDEwLjU4NiAxMkw1LjI5MzAxIDE3LjI5M0M0LjkwMjAxIDE3LjY4NCA0LjkwMjAxIDE4LjMxNiA1LjI5MzAxIDE4LjcwN0M1LjY1Nzc1IDE5LjA3MTcgNi4yODMyNyAxOS4xMzA3IDYuNzA3MDEgMTguNzA3TDEyIDEzLjQxNEwxNy4yOTMgMTguNzA3QzE3LjY4NCAxOS4wOTggMTguMzE2IDE5LjA5OCAxOC43MDcgMTguNzA3QzE5LjA5OCAxOC4zMTYgMTkuMDk4IDE3LjY4NCAxOC43MDcgMTcuMjkzTDEzLjQxNCAxMloiIGZpbGw9IndoaXRlIi8+PC9zdmc+');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hoops-notification-close {
    position: relative;
    transform: none;
  	right: 0;
  	top: 0;
  	height: 16px;
  	width: 16px;
  	margin-bottom: auto;
}
.hoops-notification-banner {
  position: relative;
  background: var(--blue-base);
  padding: .5rem;
  line-height: 1.4;
  z-index: 1000;
  color: var(--text-color);
  font-size: 16px;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 16px 16px 16px 0;
}
  #closing-time {
    bottom: 90px;
    position: fixed;
    right: 16px;
    z-index: 6000;
    display: none;
  	font-size: .8rem;
    margin-left: 16px;
  }
  .closing-banner-inner {
  	display: flex;
    align-items: center;
  	font-size: .8125rem;
    line-height: 1.125rem;
    gap: .4rem;
    max-width: 350px;
  }

/*********************** TI CSS Additions for Article Add-ons <start> ****************************************************/
/***** Call-out Notes CSS <start> *****/
.danger {
  background-color: #ffdddd;
  border-left: 6px solid #EF4323;
  font-family:sans-serif;
  font-size: 14px;
	color: #4b4b4b;
	border-radius: 0px;
  background-image: url('https://img.icons8.com/ios-glyphs/30/fa314a/medium-risk.png');
  background-position: 9px;
  background-repeat: no-repeat;
  padding: 5px 50px 5px;
}
.danger:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}
.success {
  background-color: #ddffdd;
  border-left: 6px solid #04AA6D;
  font-family:sans-serif;
  font-size: 14px;
	color: #4b4b4b;
	border-radius: 0px;
  background-image: url('https://img.icons8.com/ios-glyphs/30/26e07f/ok.png');
  background-position: 9px;
  background-repeat: no-repeat;
  padding: 5px 50px 5px;
}
.success:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}

.info {
  background-color: #dffcfc;
  border-left: 6px solid #2ABDBB;
  font-family:sans-serif;
  font-size: 14px;
	color: #4b4b4b;
	border-radius: 0px;
  background-image: url('/hc/theming_assets/01J861CSWYM8DASB2WET0DF0QN');
  background-position: 9px;
  background-repeat: no-repeat;
  padding: 5px 50px 5px;
}

.info:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}

.warning {
  background-color: #ffffcc;
  border-left: 6px solid #FAB818;
  font-family:sans-serif;
  font-size: 14px;
	color: #4b4b4b;
	border-radius: 0px;
  background-image: url('https://img.icons8.com/officel/30/000000/reflector-bulb.png');
  background-position: 9px;
  background-repeat: no-repeat;
  padding: 5px 50px 5px;
  
}
.warning:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}
/***** Call-out Notes CSS <end> *****/

/***** Call-out Notes CSS Alternate style<start> *****/
.danger-a {
  background-color: var(--shark);
  border-left: 6px solid #EF4323;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #EF4323;
  border-right: 1px solid #ddd;
  font-family: sans-serif;
  font-size: 14px;
	color: var(--silver);
	border-radius: 0px;
  background-image: url('https://img.icons8.com/pastel-glyph/30/FA5252/error--v5.png');
  background-position: 9px center;
  background-repeat: no-repeat;
  padding: 10px 50px 10px;
  transition: all linear 0.1s;
}
.danger-a:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}

.success-a {
  background-color: var(--shark);
  border-left: 6px solid #04AA6D;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #04AA6D;
  border-right: 1px solid #ddd;
  font-family:sans-serif;
  font-size: 14px;
	color: var(--silver);
	border-radius: 0px;
  background-image: url('https://img.icons8.com/external-tanah-basah-basic-outline-tanah-basah/30/12B886/external-success-essentials-tanah-basah-basic-outline-tanah-basah.png');
  background-position: 9px center;
  background-repeat: no-repeat;
  padding: 10px 50px 10px;
  transition: all linear 0.1s;
}

.success-a:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}

.info-a {
  background-color: var(--shark);
  border-left: 6px solid #2ABDBB;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #2ABDBB;
  border-right: 1px solid #ddd;
  font-family:sans-serif;
  font-size: 14px;
	color: var(--silver);
	border-radius: 0px;
  background-image: url('/hc/theming_assets/01J861CSWYM8DASB2WET0DF0QN');
  background-position: 9px center;
  background-repeat: no-repeat;
  padding: 10px 50px 10px;
  transition: all linear 0.1s;
}
.info-a:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}

.warning-a {
  background-color: var(--shark);
  border-left: 6px solid #FAB818;
  border-top: 1px solid #ddd;
  border-bottom: 2px solid #FAB818;
  border-right: 1px solid #ddd;
  font-family:sans-serif;
  font-size: 14px;
	color: var(--silver);
	border-radius: 0px;
  background-image: url('https://img.icons8.com/ios/30/FAB005/light-on--v1.png');
  background-position: 9px center;
  background-repeat: no-repeat;
  padding: 10px 50px 10px;
  transition: all linear 0.1s;
  
}
.warning-a:hover {
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  transition: all linear 0.1s;
}
/***** Call-out Notes CSS Alternate style <end> *****/
/***** Collapsible CSS <start> *****/
.collapsible,
.collapsibleV2 {
  display: block;
  width: 99%;
  margin: 4px;
  background-color: var(--shark);
  border-left: 4px solid transparent;
  font-size: 1em;
  font-weight: 500;
  text-align: left;
  outline: none;
  box-sizing: border-box;
  position: relative;
  transition: all linear 0.1s;
  color: var(--silver);
}

/* .collapsible:active,
.collapsibleV2:active {
  transform: scale(0.97);
}
 */
.collapsible:hover,
.collapsibleV2:hover {
  transition: all linear 0.1s;
}

.collapsible[open],
.collapsibleV2[open] {
  border-left: 4px solid var(--brand-color-light);
  padding-bottom: 15px;
  margin-bottom: 2px;
  top: 0;
  text-align: left;
}

.collapsible summary,
.collapsibleV2 summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: 100%;
  padding: 16px 8px;
  box-sizing: border-box;
  transition: transform .25s cubic-bezier(0,0,.3,1);
}

.collapsible *,
.collapsibleV2 * {
  font-size: 1em;
  max-width: 95%;
}

.collapsible p,
.collapsible h3,
.collapsible ul,
.collapsible ol,
.collapsibleV2 p,
.collapsibleV2 h3,
.collapsibleV2 ul,
.collapsibleV2 ol {
  padding-left: 24px;
  padding-right: 16px;
}

.collapsible ul,
.collapsibleV2 ul {
  list-style-type: disc;
}

.collapsible ul > li > ul,
.collapsibleV2 ul > li > ul {
  list-style-type: square;
}

.collapsible pre,
.collapsibleV2 pre,
.collapsible table,
.collapsibleV2 table {
  margin: 20px;
}

.collapsible [class^="info"],
.collapsible [class^="warning"],
.collapsible [class^="success"],
.collapsible [class^="danger"],
.collapsibleV2 [class^="info"],
.collapsibleV2 [class^="warning"],
.collapsibleV2 [class^="success"],
.collapsibleV2 [class^="danger"] {
  margin: 35px;
  padding: 5px 50px;
}

.collapsible [class^="info"] p,
.collapsible [class^="warning"] p,
.collapsible [class^="success"] p,
.collapsible [class^="danger"] p,
.collapsibleV2 [class^="info"] p,
.collapsibleV2 [class^="warning"] p,
.collapsibleV2 [class^="success"] p,
.collapsibleV2 [class^="danger"] p {
  padding: 0;
}

.collapsible summary:before,
.collapsibleV2 summary:before {
  content: '+';
  background-repeat: no-repeat;
	font-size: 1.5em;
  line-height: .5em;
  margin: 0 16px 0 0;
  transform-origin: center;
  transition: .25s transform ease;
  float: right;
}

[dir="rtl"] .collapsible summary:before, .collapsibleV2 summary:before {
  margin: 0 0 0 16px;
}

.collapsible[open] > summary:before,
.collapsibleV2[open] > summary:before {
  content: '\2013';
  font-weight: 600;
  transform: rotate(180deg);
}
/***** Collapsible CSS <end> *****/
/***** Table Styles ********/

/* Common styles for all tables */
[class^="table-cr"],
figure.wysiwyg-table table {
  border-collapse: separate !important;
  border: 2px solid var(--scarpa-flow);
  border-radius: 8px;
  width: 100% !important;
  padding: 0;
  border-spacing: 0;
}

[class^="table-cr"] td,
[class^="table-cr"] th,
figure.wysiwyg-table table td,
figure.wysiwyg-table table th {
  padding: 2% 15px 2% 5px;
  border-collapse: separate;
  text-align: center;
  overflow: hidden;
  max-width: 0;
}

@media (max-width: 640px) {
  [class^="table-cr"],
  figure.wysiwyg-table table {
    width: 95% !important;
  }
  [class^="table-cr"] td,
  [class^="table-cr"] th,
  figure.wysiwyg-table table td,
  figure.wysiwyg-table table th {
    font-size: 0.875rem; 
    padding: 2% 8px 2% 4px;
  }
  .collapsible table {
    margin: 10px;
  }
}

  @media (max-width: 380px) {
      [class^="table-cr"],
      figure.wysiwyg-table table {
    width: 90% !important;
  }
    [class^="table-cr"] td,
    [class^="table-cr"] th,
    figure.wysiwyg-table table td,
    figure.wysiwyg-table table th {
      font-size: 0.75rem; 
      padding: 2% 4px 2% 2px;
    }
  }

[class^="table-cr"] p,
[class^="table-cr"] h1,
[class^="table-cr"] h2,
[class^="table-cr"] h3,
[class^="table-cr"] h4,
[class^="table-cr"] h5,
[class^="table-cr"] h6,
figure.wysiwyg-table table p,
figure.wysiwyg-table table h1,
figure.wysiwyg-table table h2,
figure.wysiwyg-table table h3,
figure.wysiwyg-table table h4,
figure.wysiwyg-table table h5,
figure.wysiwyg-table table h6 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
}

/* Common border radius styles */
[class^="table-cr"] tr:first-child td:first-child { border-top-left-radius: 6px; }
[class^="table-cr"] tr:first-child td:last-child { border-top-right-radius: 6px; }
[class^="table-cr"] tr:last-child td:first-child { border-bottom-left-radius: 6px; }
[class^="table-cr"] tr:last-child td:last-child { border-bottom-right-radius: 6px; }

figure.wysiwyg-table table tr:first-child td:first-child { border-top-left-radius: 6px; }
figure.wysiwyg-table table tr:first-child td:last-child { border-top-right-radius: 6px; }
figure.wysiwyg-table table tr:last-child td:first-child { border-bottom-left-radius: 6px; }
figure.wysiwyg-table table tr:last-child td:last-child { border-bottom-right-radius: 6px; }


/* Style 1 */
.table-crorange-1 td,
.table-crteal-1 td,
figure.wysiwyg-table table td { border: 0; }

.table-crorange-1 tr:first-child td,
.table-crteal-1 tr:first-child td,
figure.wysiwyg-table table tr:first-child td {
  background-color: var(--woodsmoke) !important;
}

.table-crorange-1 tr td:nth-child(odd),
.table-crteal-1 tr td:nth-child(odd),
figure.wysiwyg-table table tr td:nth-child(odd) { background-color: var(--shark); }

.table-crorange-1 tr td:nth-child(even),
.table-crteal-1 tr td:nth-child(even),
figure.wysiwyg-table table tr td:nth-child(even) { background-color: var(--trout); }

/* Style 2 */
.table-crorange-2 td,
.table-crteal-2 td { border: 0; }

.table-crorange-2 tr:first-child td,
.table-crteal-2 tr:first-child td {
  background-color: var(--woodsmoke) !important;
  border: 0 solid var(--shark);
}

.table-crorange-2 tr:nth-child(even),
.table-crteal-2 tr:nth-child(even) { background: var(--shark); }

.table-crorange-2 tr:nth-child(odd),
.table-crteal-2 tr:nth-child(odd) { background: var(--trout); }

/* Style 3 */
.table-crorange-3 td,
.table-crteal-3 td { border: 1px solid var(--woodsmoke); }

.table-crorange-3 tr:first-child td,
.table-crteal-3 tr:first-child td {
  background-color: var(--woodsmoke) !important;
  border: 0 solid var(--shark);
}

.table-crorange-3 tr:nth-child(odd),
.table-crteal-3 tr:nth-child(odd),
.table-crorange-3 tr:nth-child(even),
.table-crteal-3 tr:nth-child(even) { background: var(--shark); }

/* Style 4 */
.table-crorange-4 td,
.table-crteal-4 td {
  border: 1px solid var(--woodsmoke);
  text-align: left;
  padding-left: 24px;
}

.table-crorange-4 tr:first-child td,
.table-crteal-4 tr:first-child td {
  padding: 2% 0;
  background-color: var(--woodsmoke) !important;
  text-align: center;
  border: 0 solid var(--shark);
}

.table-crorange-4 tr:nth-child(odd),
.table-crteal-4 tr:nth-child(odd),
.table-crorange-4 tr:nth-child(even),
.table-crteal-4 tr:nth-child(even) { background: var(--shark); }

/* Style 5 & 6 */
.table-crorange-5 td,
.table-crteal-5 td,
.table-crorange-6 td,
.table-crteal-6 td { border: 1px solid var(--woodsmoke); }

.table-crorange-5 tr:first-child td,
.table-crteal-5 tr:first-child td,
.table-crorange-6 tr:first-child td,
.table-crteal-6 tr:first-child td { border-top: 0; }

.table-crorange-5 tr:last-child td,
.table-crteal-5 tr:last-child td,
.table-crorange-6 tr:last-child td,
.table-crteal-6 tr:last-child td { border-bottom: 0; }

.table-crorange-5 tr td:first-child,
.table-crteal-5 tr td:first-child,
.table-crorange-6 tr td:first-child,
.table-crteal-6 tr td:first-child { border-left: 0; }

.table-crorange-5 tr td:last-child,
.table-crteal-5 tr td:last-child,
.table-crorange-6 tr td:last-child,
.table-crteal-6 tr td:last-child { border-right: 0; }

.table-crorange-5 tr td:nth-child(even),
.table-crteal-5 tr td:nth-child(even),
.table-crorange-6 tr td:nth-child(even),
.table-crteal-6 tr td:nth-child(even) { background: var(--trout); }

.table-crorange-5 tr td:nth-child(odd),
.table-crteal-5 tr td:nth-child(odd),
.table-crorange-6 tr td:nth-child(odd),
.table-crteal-6 tr td:nth-child(odd) { background-color: var(--shark); }

/* Style 7 */
.table-crorange-7 td,
.table-crteal-7 td { border: 0; }

.table-crorange-7 tr:first-child td,
.table-crteal-7 tr:first-child td {
  background-color: var(--woodsmoke) !important;
  text-align: center;
  border: 0 solid var(--shark);
}

.table-crorange-7 tr:nth-child(odd),
.table-crteal-7 tr:nth-child(odd),
.table-crorange-7 tr:nth-child(even),
.table-crteal-7 tr:nth-child(even) { background: var(--shark); }
/***** Button Styles <start> *******/
/******** Crunchy Roll Orange Button 1 <start> *******/
.crorange-button1 {
  background-color: #F47521;
  border-bottom: 5px #F47521 solid;
  border-radius: 8px;
  height: 60px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--woodsmoke);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.crorange-button1:hover {
  background-color: #FF944D;
  transform: scale(0.98);
  transition: all linear 0.1s;
}
.crorange-button1:active {
  background-color: #EF4323;
  transform: scale(1.01);
  transition: all linear 0.1s;
}
.crorange-button1 a{
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff !important; 
}
/******** Crunchy Roll Orange Button 1 <end> *********/
/******** Crunchy Roll Orange Button 2 <start> *******/
.crorange-button2 {
  background-color: #F47521;
  border-bottom: 5px #F47521 solid;
  height: 60px;
  max-width: 400px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--woodsmoke);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.crorange-button2:hover {
  background-color: #FF944D;
  transform: scale(0.98);
  transition: all linear 0.1s;
}
.crorange-button2:active {
  background-color: #E56A17;
  transform: scale(1.01);
  transition: all linear 0.1s;
}
.crorange-button2 a{
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff !important; 
}
/******** Crunchy Roll Orange Button 2 <end> *********/
/******** Crunchy Roll Teal Button 1 <start> *******/
.crteal-button1 {
  background-color: #213944;
  border-bottom: 5px #213944 solid;
  border-radius: 8px;
  height: 60px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.crteal-button1:hover {
  background-color: #2F5161;
  transform: scale(0.98);
  transition: all linear 0.1s;
}
.crteal-button1:active {
  background-color: #192E38;
  transform: scale(1.01);
  transition: all linear 0.1s;
}
.crteal-button1 a{
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff !important; 
}
/******** Crunchy Roll Teal Button 1 <end> *********/
/******** Crunchy Roll Teal Button 2 <start> *******/
.crteal-button2 {
  background-color: #213944;
  border-bottom: 5px #213944 solid;
  height: 60px;
  max-width: 400px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.crteal-button2:hover {
  background-color: #192E38;
  transform: scale(0.98);
  transition: all linear 0.1s;
}
.crteal-button2:active {
  background-color: #EF4323;
  transform: scale(1.01);
  transition: all linear 0.1s;
}
.crteal-button2 a{
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff !important; 
}
/******** Crunchy Roll Teal Button 2 <end> *********/

/***** Button Styles <end>   *******/

/***** Tabs Add-on <start> ********/
.main-tabs {
  min-width: 320px;
  max-width: 750px;
  width: 100%;
  //padding: 20px; //remember to comment this line
  margin: 0 auto;
  //background: #fff;
}

.section-tabs {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid var(--shark);
}

input.ti-tab {
  display: none;
}

.label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  text-align: center;
  color: var(--silver-chalice);
  font-size: 14px;
  background: var(--shark);
  border-top: 5px solid transparent;
  border: 1px solid transparent;
}

.label:hover {
  color: #81E9E7;
  cursor: pointer;
  border-top: 2px solid #81E9E7;
  transition: all linear 0.1s;
  transform: translateY(-3px);
}

input:checked + .label {
  color: #2ABDBB;
  background: var(--woodsmoke);
  font-weight: bold;
  border: 1px solid var(--silver-chalice);
  border-top: 2px solid #2ABDBB;
  border-bottom: 1px solid var(--woodsmoke);
}

#ti-tab1:checked ~ #content1,
#ti-tab2:checked ~ #content2,
#ti-tab3:checked ~ #content3,
#ti-tab4:checked ~ #content4,
#ti-tab5:checked ~ #content5,
#ti-tab6:checked ~ #content6,
#ti-tab7:checked ~ #content7,
#ti-tab8:checked ~ #content8,
#ti-tab9:checked ~ #content9,
#ti-tab10:checked ~ #content10,
#ti-tab11:checked ~ #content11,
#ti-tab12:checked ~ #content12 {
  display: block;
}


@media screen and (max-width: 650px) {
  .label {
    font-size: 0;
  }

  .label:before {
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 400px) {
  .label {
    padding: 15px;
  }
}


/***** Tabs Add-on <end> **********/

/***** Back to top button <start> **********/
#Back-to-top {
  	display: none;
  	position: fixed; /* Fixed/sticky position */
    bottom: 16px;
    left: 16px;
    z-index: 99; /* Make sure it does not overlap */
    border: 0;  /* Remove borders */
    background-color: var(--shark);
    color: var(--taupe);
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 20px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    line-height: 0;
  	transition: all linear 0.1s;
    font-size: 24px; /* Font Size */
    font-family: "ATyp", Helvetica, Arial, sans-serif;
    font-weight: 200;
    width: 58px;
    height: 58px;
}

#Back-to-top:hover {
    background-color: var(--trout);
    transition: all linear 0.1s;
    transform: scale(1.02);
}



#Back-to-top:active {
    background-color: var(--woodsmoke);
    transform: scale(1.02);
}  

#Back-to-top > .fa-solid {
  font-size: 20px;
}
/***** Back to top button <end> **********/

/***** Scroll indicator <start> ********/
 /* Style the header: fixed position (always stay at the top) */
:root {
    // Try different transitions for some interesting effects
    
    --timing: ease;
    // --timing: cubic-bezier(0.705, 0.785, 0.555, 1.3);
    // --timing: linear;
    // --timing: none;
}

/* Style the header: fixed position (always stay at the top) */
.scroll-indicator-header {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 0;
  width: 100%;
  //background-color: #F4F4F7;
  @media only screen and (max-width: 820px) {
  	top: 112px;
  }
}

/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 2px;
  background: var(--woodsmoke);
  //opacity: 0.2;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 2px;
  background-image: linear-gradient(to right, #2ABDBB , #81E9E7);
  width: 0%;
  transition: width 200ms var(--timing);
}

.scroll-value {
  position: absolute;
  top: -2px;
  z-index: 10;
  height: 2px;
  width: 0%;
  transition: width 200ms var(--timing);
  text-align: right;
  color: #fff;
  padding-right: 10px;
  font-size: 0px;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif;
}
.scroll-value span {
    position: absolute;
    top: -23px;
    right: 15px;
    //font-weight: 500;
    display: block;
    text-align: center;
  }

.scroll-value span::after {
      content: "%";
      font-size: 5px;
      position: absolute;
      right: -15px;
      bottom: 4px;
      font-weight: 700;
      opacity: 0.4;
    }


/***** Scroll indicator <end> **********/

/***** Theme Fixes <start>   *******/

/****** Crunchyroll font ******/
@font-face {
  font-family: "ATyp";
  src: url(/hc/theming_assets/01JBHK02F5152P4FJSGJGA57A6);
}
@font-face {
  font-family: "ATyp-Bold";
  src: url(/hc/theming_assets/01JBHJZX8WRY37FZ09XS11CK29);
}

/****** Code Snippet in articles ******/
pre {
    background: #f4f4f4 !important;
    border: 1px solid #ddd !important;
    border-left: 3px solid #2ABDBB !important;
    color: #666;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
}

/****** Medium Font Size and Font Family ******/
.wysiwyg-font-size-medium {
  font-size: 12pt;
  font-family: "ATyp", Helvetica, sans-serif;
  letter-spacing: -0.5px;
}

/****** KB font ******/



.button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button {
  font-size: inherit;
}

.comment-callout {
  font-size: inherit;
}


/****** Font Awesome / Icons spacing ******/
.fa, .fa-regular, .far {
  padding-right: 5px; 
}

/****** Search Results title size and weight ******/
.search-result-title {
  font-size: 1em;
  font-weight: 600;
}

/****** Fixes for section items ******/
.section-tree-title a {
  font-size: 15pt;
  color: #59595B;
}

.section-tree-title:hover {
  transform: translateY(-5px);
  transition: all linear 0.1s;
}

.section-tree-title:hover > a {
  text-decoration: none;
  color: #2ABDBB;
}

.section-container {
  justify-content: center;
  margin-bottom: 75px;
}

.section-content .page-header {
  margin-bottom: 30px;
}


/****** Fixes for Search results page ****/
.search-results-subheading {
  font-size: 20px;
  font-weight: 500;
}

.search-results-list > li:first-child {
  border: 0;
}

li.search-result-list-item.result-article {
  border: 0;
  background: var(--woodsmoke);
  padding: 20px;
  border-bottom: 1px solid var(--trout);
}

li.search-result-list-item.result-article:hover {
  background: var(--shark);
}

li.search-result-list-item.result-article:focus {
  background: var(--shark);
  border: 5px solid #fff;
  border-radius: 8px;
}

li.search-result-list-item.result-article:active {
  background: #000;
}

.search-results {
  display: block;
}

.search-results-column {
  margin-bottom: 0px;
}

.search-result-title {
  font-size: 20px;
  font-weight: 500;
}

.search-result-title > a {
  color: var(--silver);
  font-family: 'Lato', sans-serif;
}

.search-result-title:hover > a {
  color: var(--white);
  text-decoration: none;
  transition: all linear 0.1s;
}

.search-result-breadcrumbs {
  display: block;
  padding-bottom: 10px;
}

.result-article  {
  background-color: transparent;
}

.result-article:hover {
  transition: all linear 0.1s;
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: var(--woodsmoke);
  color: #dadada !important;
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current:hover {
  background-color: var(--shark);
  color: #dadada !important;
}

.search-results-sidebar .sidenav-item:hover, .sidenav-item.current:active {
  background-color: var(--shark);
  color: #dadada !important;
  text-decoration: none;
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: var(--shark);
  color: #dadada !important;
}

.search-result-breadcrumbs li {
  color: #ffffff !important;
}

.search-result-breadcrumbs a {
  color: #ffffff !important;
}

.search-result-breadcrumbs a:hover {
  color: #2ABDBB !important;
}

.meta-group .meta-data {
  color: #ffffff !important;
}

.meta-data {
  font-size: 16px;
}

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

/****** Search Page Categories Combo Box ****************/
.categories-combobox {
  margin-bottom: 50px;
}

.categories-combobox label {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  padding: 10px 0;
}

.categories-combobox select {
  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 var(--woodsmoke);
  background-position: right 10px center;
  border: 1px solid var(--silver-chalice);
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: var(--silver-chalice);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.categories-combobox .cr-option {
  color: var(--silver-chalice);
  font-size: 16px;
  font-weight: 200;
  line-height: 24px;
  margin: 10px 0;
}



/****** Button fixes ******************/

.button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button {
  border: 1px transparent solid;
  background: var(--woodsmoke);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--silver);
}

.button:hover, .split-button button:hover, .section-subscribe button:hover, .article-subscribe button:hover, .community-follow button:hover, .requests-table-toolbar .organization-subscribe button:hover, .subscriptions-subscribe button:hover, .button:active, .split-button button:active, .section-subscribe button:active, .article-subscribe button:active, .community-follow button:active, .requests-table-toolbar .organization-subscribe button:active, .subscriptions-subscribe button:active, .button:focus, .split-button button:focus, .section-subscribe button:focus, .article-subscribe button:focus, .community-follow button:focus, .requests-table-toolbar .organization-subscribe button:focus, .subscriptions-subscribe button:focus, .button.button-primary, .split-button button.button-primary, .section-subscribe button.button-primary, .section-subscribe button[data-selected="true"], .article-subscribe button.button-primary, .article-subscribe button[data-selected="true"], .community-follow button.button-primary, .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected="true"], .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected="true"] {
  border: 1px transparent solid;
  background: var(--shark);
  color: var(--white);
}


/****** Fixes for Recent Activity *******/
.recent-activity-header {
 font-size: 24pt;
 font-weight: bold;
}

.recent-activity-item {
  border: 0;
  padding: 5px 0;
}

.recent-activity-item:hover {
  border: 0;
  padding: 5px 0;
}

a.recent-activity-item-parent {
  color: var(--silver);
  font-size: 15pt;
  font-weight: 400;
}

a.recent-activity-item-parent:hover {
  color: var(--silver);
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}
a.recent-activity-item-parent > a:active {
  color: var(--silver);
}

a.recent-activity-item-link {
  color: #F47521;
  font-size: 12pt;
  padding-top: 10px;
  padding-bottom: 10px;
}

a.recent-activity-item-link:hover {
  color: #2ABDBB;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;;
}

.recent-activity-item-link::before {
  content: "\f15c";
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  padding-right: 10px;
  padding-left: 15px;
}

.recent-activity-controls a {
  color: #F47521; 
  text-decoration: none;
}

.recent-activity-controls a:hover {
  color: #2ABDBB;
  transform: translateY(-5px);
  transition: all linear 0.1s; 
}

/********** Error page ******/
.error-page a {
	font-size: 14px;
  font-weight: 500;
  border: 4px solid transparent;
  padding: 4px 2px;
}

.error-page a:hover {
 	color: #81E9E7;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}

.error-page a:focus {
 	color: #81E9E7;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
  border: 4px solid #fff;
}

.error-page a:active {
 	color: #008382;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}


/***** Fixes for the Recently Viewed Articles sections in articles **************/
.recent-articles li > a::before {
  content: "\f15c";
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  padding-right: 5px;
}

.recent-articles li:hover {
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}

.recent-articles li:hover > a {
  color: #2ABDBB;
  text-decoration: none;
  transform: translateY(-5px);
  transition: all linear 0.1s;
}





/*********** Return to top *******************/
.article-return-to-top {
  border-top: 0;
}

.article-return-to-top a{
  color: #2ABDBB;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  border: 4px solid transparent;
  display: flex;
}

.article-return-to-top a:hover{
  color: #81E9E7;
  border: 4px solid transparent;  
}

.article-return-to-top a:focus{
  color: #81E9E7;
  border: 4px solid #fff;  
}

.article-return-to-top a:active{
  color: #008382;
  border: 4px solid transparent;  
}

/********** Section Divider ******/
.container-divider {
  border-top: 0;
}

/***** Submit request page fields *******/
a.nesty-input:hover, a.nesty-input:active,  a.nesty-input:focus {
  color: #fff;
}


.form-field .nesty-input {
  
}

.nesty-input {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-chalice);  
}

.nesty-input:active {
  border: 1px solid #fff;
  color: #fff;
}


.nesty-panel ul {
  background: var(--woodsmoke);
  color: #fff;  
}

.nesty-panel li {
  background: var(--woodsmoke);
  color: #fff;  
}

.nesty-panel li:hover  {
  background: var(--shark);
}

.nesty-panel li:focus  {
  background: var(--shark);
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  padding: 8px 0;
}

.form-field input[type="text"] {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-chalice);
}

.form-field input[type="text"]:active {
  border: 1px solid #fff;
  color: #fff;
}

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

.request-form textarea {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-chalice);
}

.request-form textarea:focus {
  border: 1px solid #fff;
	color: #fff;
}

#hc-wysiwyg {
  border: 1px solid var(--silver-chalice);
  background-color: var(--woodsmoke);
  font-size: 16px;
  font-weight: 500;
  color: var(--silver-chalice);
}

#hc-wysiwyg [class^=wysiwyg-icon-] {
  color: var(--silver-chalice);
  filter: invert(1);
}

#hc-wysiwyg [role=group], #hc-wysiwyg [role=group] iframe {
  filter: contrast(0);
}

.upload-dropzone {
  padding: 0 16px;
  border: 2px solid var(--silver-chalice);
  color: var(--silver-chalice);
  border-radius: 8px;
}

.upload-dropzone a, .upload-dropzone span {
  color: var(--silver-chalice);
  font-size: 14px;
  font-weight: 500;
}



.notification-inline {
  background-color: #213944;
  border: 1px solid #213944;
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0;
}

.notification-inline.notification-error::before {
  filter: brightness(10);
  width: 18px;
  height: 18px;
}

.notification-inline.notification-error {
  color: #fff;
  border: 2px #213944 solid;
  background-color: #213944;
}

.searchbox-suggestions li {
  background: var(--woodsmoke);
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  //margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  padding: 0;
}

.searchbox-suggestions li:hover {
  background: var(--shark);
  transform: translateY(-5px);
  transition: all linear 0.1s;
}

.searchbox-suggestions a {
  font-weight: 500;
  font-size: 14px;
  color: var(--silver);
  text-decoration: none;
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 100%;
}

.searchbox-suggestions a:after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  position: relative;
  top: 0;
  font-weight: 600;
  float: right;
}

.request-main .comment-show-container {
  background: var(--woodsmoke);
  border: 1px solid var(--silver-chalice);
  color: var(--silver-chalice);
}

.comment-wrapper {
  background: var(--woodsmoke);
  padding: 5px 10px;
}

.meta-group .meta-data {
  font-size: 14px;
  font-weight: 500;
}

.comment {
  border-bottom: 0;
}

.request-title {
  border-bottom: 0;
}

.comment-meta a{
  font-size: 16px;
  font-weight: 600;
  color:#2ABDBB;
  border: 4px solid transparent;
}

.comment-meta a:hover{
  color:#81E9E7;
  transition: all linear 0.1s;
  text-decoration: none;
}

.comment-meta a:focus{
  color:#2ABDBB;
  border: 4px solid #fff;
  transition: all linear 0.1s;
  text-decoration: none;
}

.comment-meta a:active{
  color:#008382;
  transition: all linear 0.1s;
  text-decoration: none;
}

.collapsible-sidebar[aria-expanded="true"] .cr-collapsible-sidebar-body {
  background: #213944;
  padding: 15px 20px;
}

.cr-ticket-details .cr-collapsible-sidebar-toggle {
  position: absolute;
  top: calc(14px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  //width: 150px;
  //height: 150px;
  border-radius: 50%;
  color: white;
  font-size: 40px;
}

.cr-ticket-details .cr-collapsible-sidebar-toggle {
  z-index: 1;
  color: #fff;
}

.request-sidebar {
  border: 0;
}

.request-sidebar h2 {
    display: block;
}

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




/* Notifcation Banner Alert (FBE6E6 pervious color //2015ff) */
.alert {
  display: flex;
  padding: .5rem 2rem;
  margin: 2rem 0;
  background-color: #213944;
  border-radius: 0.25rem;
}

/***** Alert banners ***************/
.ns-box {
  background: #213944;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 0;
  padding: 16px 40px;
}

.ns-box .alert-information::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  position: relative;
  font-size: 25px;
  top: 0;
  font-weight: 600;
  //float: right;
}

.ns-box .alert-warning::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  position: relative;
  font-size: 25px;
  top: 0;
  font-weight: 600;
  //float: right;
}

.ns-box .alert-tip::before {
  content: '\f0eb';
  font-family: 'Font Awesome 6 Free';
  display: inline-block;
  transform: rotate(0);
  position: relative;
  font-size: 25px;
  top: 0;
  font-weight: 600;
  //float: right;
}

.ns-box-inner {
  display: flex;
  align-items: center;
}

.ns-effect-slidetop {
  box-shadow: unset;
}

.ns-close {
  width: 35px;
  height: 35px;
  top: 16px;
}



/******* Top Menu Categories ******/
.top-menu-options {
  padding-right: 5px;
}

.cr-dropdown {
  position: relative;
  display: inline-block;
	padding: 0px 20px 0px 0px;
  z-index: 10;
}

.cr-dropdown span {
  padding: 10px 10px;
  font-size: 12pt;
}

.cr-dropdown .fa, .cr-dropdown .fa-regular, .cr-dropdown .fa-solid {
  padding-right: 5px;
}

.cr-dropdown a {
  font-size: 12pt;
}

.cr-dropdown a:hover {
  text-decoration: none;
  color: #2ABDBB;
}

.cr-title {
  font-size: 12pt;
  color: #F47521;
}

.cr-title:hover {
  color: #2ABDBB;
}

.cr-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 15px 20px;
  z-index: 1;
}

.cr-dropdown:hover .cr-dropdown-content {
  display: block;
  transition: all linear 0.27s;
}

/****** Submit a request in header *********/
a.submit-a-request {
  font-size: 12pt !important;
}


zd-autocomplete {
  background: var(--woodsmoke);
  color: var(--silver-chalice);
}

/******** Auto-complete ******************/
zd-autocomplete-header {
  color: var(--silver);
  font-size: 20px;
  font-weight: 500;
}

zd-autocomplete-option[aria-selected=true] {
  background-color: var(--shark);
  color: var(--silver);
}

zd-autocomplete-multibrand[aria-selected=true] {
  background-color: var(--shark);
  color: var(--silver);
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
    color: var(--brand-text-color);
    font-size: 15px;
    padding-bottom: 4px
}

zd-autocomplete-multibrand zd-autocomplete-breadcrumbs-multibrand {
  color: var(--silver);
}


/******* Article Templates ******************/
.template-copy-button {
  padding: 20px 20px;
  background: #F47521;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin: auto;
}

.template-copy-button:hover {
  background: #2ABDBB;
  color: #fff;
  box-shadow: 0 0.4rem 1.2rem 0.2rem rgba(0, 0, 0, 0.15);
  border: 0;
  transform: scale(1.04);
  transition: all linear 0.27s;
}

.hidden {
    display: none;
}

/******** Scrolling behavior in the portal *************/
html, body {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}
/***** Theme Fixes <end>   *********/


/***** Fixes for Forms  <start>   *********/
/******** Form Text change for the field "Before submitting this form consider reading the following article(s):" *************/
#request_custom_fields_17823464314516_label {
  font-weight: bold;
  font-size: 14pt;  
}

/********** Hide the (optional) part from field labels ******/
.form-field span.optional {
  display:none;
}

/******** Form hide input fields *************/

/*** New fields go here ***/

input#request_custom_fields_18487380833172,
input#request_custom_fields_17823294359700,
input#request_custom_fields_17823464314516,
input#request_custom_fields_17688513862548,
input#request_custom_fields_18686622320404,
input#request_custom_fields_18687972295316,
input#request_custom_fields_18688235165588,
input#request_custom_fields_18689872348308,
input#request_custom_fields_18690249218324,
input#request_custom_fields_18693325107604,
input#request_custom_fields_18696669798164,
input#request_custom_fields_18698109826196,
input#request_custom_fields_18698518712340,
input#request_custom_fields_18815871872276,
input#request_custom_fields_18836901015572,
input#request_custom_fields_18838874242196,
input#request_custom_fields_18938594526868,
input#request_custom_fields_19616686183828,
input#request_custom_fields_21303160237332,
input#request_custom_fields_21303586384788,
input#request_custom_fields_21305436964628,
input#request_custom_fields_21305832035732 {
  display:none;  
}

/***** Fixes for Forms  <end>   *********/


/*********************** TI CSS Additions for Article Add-ons <end> ****************************************************/

/* Sierra chat launcher and chat ui */
 #chat-container {
      bottom: 100px;
      right: 20px;
      width: 25rem;
      height: 40rem;
      /* Initially hidden */
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease-in-out;
      position: fixed;
      z-index: 999999;
      pointer-events: none; /* Initially disable interaction */
    }
    @media (max-width: 640px) {
    #chat-container {
    inset: 0;
    position: fixed;
    top: 0;
    overflow: hidden;
    width: auto;
    height: auto;
    z-index: 10000;
    }
    }
    #chat-container.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto; /* Enable interaction when active */
    }
    
    /* Custom launcher button */
    #chat-launcher {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 70px;
      height: 70px;
      background-color: var(--taupe);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border: none;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
    
    #chat-launcher:hover {
      transform: scale(1.02);
    }
    #chat-launcher:focus {
      outline:3px solid white;
    }
    #chat-launcher.active {
      background-color: #F47521; 
          animation: launcherOnOpen 0.7s cubic-bezier(0.66, 0, 0.12, 1) 0s 1 normal none;
    }
    
    /* Add animation to SVG */
    #chat-launcher svg {
      transition: all 0.3s ease;
    }
        /* SVG icons for launcher */
    #launcher-icon-inactive, #launcher-icon-active {
      width: 40px;
      height: 40px;
      transition: all 0.3s ease;
    }
    
    #launcher-icon-active {
      width: 24px;
    	height: 24px;
      opacity: 0;
      position: absolute;
      transform: translateY(20px);
    }
    
    /* Active state */
    #chat-launcher.active {
      background-color: #F47521; 
    }

        #chat-launcher.active #launcher-icon-inactive {
      opacity: 0;
      transform: translateY(-20px);
    }
    
    #chat-launcher.active #launcher-icon-active {
      opacity: 1;
      transform: translateY(0);
    }
@keyframes launcherOnOpen {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-0px);
  }
  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
#notification-dot {
  display: none;
  height: 12px;
  width: 12px;
  border-radius: 50px;
  background: #2ddc2d;
  position: absolute;
  top: 2px;
  right: 2px;
  animation: pulsate .5s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,220,45,0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 5px 5px rgba(0,220,45,0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,220,45,0.5);
  }
}
/***** Scrollbars portal *****/
/* Customize scrollbars in Chrome */
::-webkit-scrollbar {
	display: block;
	width: 5px;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
  border-radius: 10px;
  width: 4px;
  transition: width 200ms var(--timing);
}

::-webkit-scrollbar-thumb:hover {
	background-color: #2ABDBB;
  transition: width 200ms var(--timing);
  width: 10px;
}

::-webkit-scrollbar-thumb:active {
	background-color: #F47521;
  transition: width 200ms var(--timing);
  width: 10px;
  transform: scale(1.05);
}

::-webkit-scrollbar-track {
	background-color: #F5F5F5;
  width: 10px;
  
}

::-webkit-scrollbar-track:hover {
	background-color: #F5F5F5;
}

/* Games */

.games-hero {
  background-image: url(/hc/theming_assets/01JJSJ6CS50F1ASSWZB51N23YR);
  background-position: center;
  background-size: cover;
  height: 152px; 
  padding: 0 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}
  
@media (min-width: 768px) {
  .games-hero {
    height: 240px;
    margin-bottom: 36px;
  }
}

@media (min-width: 1024px) {
  .games-hero {
    margin-bottom: 52px;
  }
}