@charset "UTF-8";

/*--------------------------------------- Base styles ---------------------------------------*/

*, input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background-color: var(--rc-color-background-page);
  font-size: 62.5%;
}

body {
  color: var(--rc-color-text-primary, rgba(32, 32, 32, 1));
  font-family: 'Inter',system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

img[width], img[height] {
  max-width: none;
}

figure > img {
  display: block;
}

ul, ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

[dir=rtl] table {
  text-align: right;
}

td, th {
  border-color: var(--rc-color-border-primary);
  border-style: solid;
  padding: 12px;
}

th {
  border-width: 1px 0;
  color: #BEBEBE;
  font-size: 11px;
  font-weight: normal;
  white-space: nowrap;
  text-align: inherit;
}

td {
  border-width: 0 0 1px 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--rc-color-text-primary);
  font-weight:bold;
}

h1 {
  font-size: 36px;
}

h3.mb-1 {
  margin-bottom: 10px;
}

input, label {
  display: inline-block;
  vertical-align: middle;
}

label {
  font-size: 12px;
}

input[type="checkbox"] + label {
  margin-left: 5px;
}

input, textarea {
  border: 1px solid #DDD;
  border-radius: 2px;
  padding: 10px;
}

textarea {
  height: 100px;
  padding: 7px 10px;
  resize: vertical;
}

textarea, input[type=text], input[type=number] {
  width: 100%;
  padding: 7px;
  border: 1px solid lightgray;
  color: #333;
  outline: none;
  resize: none;
  font-size: 1.6rem;
  box-shadow: inset 2px 2px 5px #f5f5f5;
  border-radius: 4px;
}

input, textarea, select {
  color: var(--rc-color-text-primary);
}

input::-ms-clear {
  display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: #CCC;
}

:-ms-input-placeholder {
  color: #CCC;
}

::-moz-placeholder {
  color: #CCC;
}

p.article-legal {font-size:80%;}
p.article-tip {background:#e1f2f1; padding:15px 20px;}
p.article-note {background:#f3f3f3; padding:15px 20px;}

.read-more a, a {
  color: var(--rc-color-text-primary);
}

a:hover {
  color: var(--rc-color-text-textlink-hovered);
  text-decoration:underline;
}

iframe {
  border-radius: var(--rc-border-radius-md);
  border: 1px solid var(--rc-color-palette-gray-200);
}

.alternating tr:nth-child(odd) {
  background-color: var(--rc-color-background-module-muted);
}

.alternating tr:nth-child(even) {
  background-color: var(--rc-color-background-page);
}

.hc-table tr:nth-child(odd) {
  background-color: var(--rc-color-background-module-muted);
}

.hc-table tr:nth-child(even) {
  background-color: var(--rc-color-background-page);
}

.hc-table tr:first-child {
  background: var(--rc-color-background-page-inverted);
  color: var(--rc-color-text-primary-inverted);
  font-weight: bold;
}

/*--------------------------------------- Buttons ---------------------------------------*/
button, [role=button], [type=button], [type=submit] {
  border-radius: 10rem;
  border: 1px solid #DDD;
  color: rgba(66, 84, 245, 1);
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}

a[role=button]:hover {
  text-decoration: none;
}

input[type=submit] {
  background: #444;
  border-color: transparent;
  color: #ffffff;
  padding: 10px 30px;
}

input[type=submit][disabled] {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE 8 */
  opacity: 0.4;
}

button img, [role=button] img {
  border-radius: 4px;
  margin: 0 5px 0 0;
  height: 20px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}
[dir=rtl] button img, [dir=rtl] [role=button] img {
  margin: 0 0 0 5px;
}

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

.submit-request-form .form {
  margin-left: auto;
  margin-right: auto;
}

.form-field {
  margin-bottom: 1em;
}

.form-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}

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

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

.form-field p {
  color: #414141;
  font-size: 85%;
  margin-top: 0.5em;
}

.form-field input[type=number], .form-field input.datepicker {
  width: 150px;
}

.form-field.boolean {
  position: relative;
}

.form-field.boolean input[type=checkbox] {
  position: absolute;
  top: 0.05em;
}

.form-field.boolean label {
  padding-left: 1.1em;
  font-weight: normal;
}

.form form + form, .searchbox {
  margin-top: 25px;
}

.searchbox-suggestions {
  background-color: #ffffff;
  border: 1px solid #EEE;
  border-radius: 4px;
  padding: 10px 20px;
}

.searchbox-suggestions li {
  padding: 5px 0;
}

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

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

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

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

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

.form footer {
  border-top: 1px solid #EEE;
  margin-top: 40px;
  padding-top: 30px;
  text-align: right;
}

.form footer a {
  color: #CCC;
  cursor: pointer;
  margin-right: 15px;
}

/*--------------------------------------- Navigation menus ---------------------------------------*/
.nav li, .nav-bordered li, .nav-spaced li {
  display: inline-block;
  font-weight: bold;
}

.nav li a, .nav-bordered li a, .nav-spaced li a {
  font-weight: normal;
}

.nav-bordered li + li {
  border-color: #EEE;
  border-style: solid;
  border-width: 0 0 0 1px;
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
}

[dir=rtl] .nav-bordered li + li {
  border-width: 0 1px 0 0;
  margin: 0 30px 0 0;
  padding: 0 30px 0 0;
}

.nav-spaced li + li {
  margin: 0 0 0 40px;
}

[dir=rtl] .nav-spaced li + li {
  margin: 0 40px 0 0;
}

/*--------------------------------------- Search box ---------------------------------------*/
.search-box, .sub-nav .search {
  position: relative;
  margin: 0 auto;
  max-width: 64rem;
}

.search-box input, .sub-nav .search input {
  padding: var(--rc-space-2) var(--rc-space-12) var(--rc-space-2) var(--rc-space-6);
  width: 100%;
  border-radius: var(--rc-border-radius-full);
  border: 1px solid var(--rc-color-border-input-primary);
  height: var(--rc-size-height-input);
  font-size: 1.6rem;
}

.search-box input::placeholder {
  color: var(--rc-color-text-primary-disabled);
}

.search-box input[type="submit"], .sub-nav .search input[type="submit"] {
  display: none;
}

.search-box button {
  position: absolute;
  right: var(--rc-space-1);
  top: var(--rc-space-1);
  bottom: var(--rc-space-1);
  background-color: var(--rc-color-palette-vu-orange-600);
  color: var(--rc-color-text-primary-inverted);
  height: calc(var(--rc-size-height-input) - 2*(var(--rc-space-1)));
  width: calc(var(--rc-size-height-input) - 2*(var(--rc-space-1)));
  font-size: 1.8rem;
  border-radius: var(--rc-border-radius-full);
  border: none;
}

zd-autocomplete {
  background-color: var(--rc-color-background-module);
  border-radius: var(--rc-border-radius-lg);
  box-shadow: 0 0 var(--rc-space-gap-grid) 0 var(--rc-color-box-shadow-primary);
  border: 0.1rem solid var(--rc-color-border-primary);
}

zd-autocomplete-header {
  border-bottom-color: var(--rc-color-border-primary);
  color: var(--rc-color-text-primary);
}

zd-autocomplete-option {
  color: var(--rc-color-text-primary);
}

zd-autocomplete-option[aria-selected=true] {
  background-color: var(--rc-color-background-module-hovered);
}

@media screen and (max-width: 760px) {
  .sub-nav .search {width: 90%; left: 6%;}
}

/* Breadcrumbs */

.breadcrumbs li {
  color: var(--rc-color-text-primary);
  font-size: var(--rc-font-size-350);
  display: inline-block;
}
.breadcrumbs li + li:before {
  content: ">";
  margin: 0 4px;
}
.breadcrumbs li a {
  color: var(--rc-color-text-textlink);
}
.breadcrumbs li a:hover {
  color: var(--rc-color-text-textlink-hovered);
}

/*--------------------------------------- Labels ---------------------------------------*/
.label, .request-status {
  border-radius: 20px;
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

/*--------------------------------------- Metadata ---------------------------------------*/
.meta, .meta-group {
  color: var(--rc-color-text-secondary);
  display: inline-block;
  font-size: 11px;
}

.meta-group * + *:before {
  content: "\2022";
  font-size: 8px;
  margin: 0 10px;
}

/*--------------------------------------- Helper classes ---------------------------------------*/
.clearfix:before {
  content: " ";
  display: table;
}

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

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

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

.share a {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  vertical-align: middle;
  width: 30px;
}

.share a:before {
  background: #CCC;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-family: "entypo";
  text-align: center;
  width: 100%;
}

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

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

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

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

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

/*--------------------------------------- Pagination ---------------------------------------*/
.pagination {
  margin: var(--rc-space-10) 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  background: var(--rc-color-button-main-secondary);
  border-radius: 100rem;
  font-weight: var(--rc-font-weight-bold);
  margin: 0 var(--rc-space-1);
  color: var(--rc-color-text-button);
}

.pagination li.pagination-current {
  background: var(--rc-color-transparent);
  border: 3px solid var(--rc-color-button-main-primary);
}

.pagination a, .pagination span {
  color: var(--rc-color-button-main-primary);
  padding: var(--rc-space-3) var(--rc-space-5);
}

.pagination li:hover {
  background: var(--rc-color-button-main-secondary-hovered);
}

.pagination li.pagination-current:hover {
  background: var(--rc-color-transparent);
}

.pagination a:hover {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------- Markdown styles ---------------------------------------*/
.markdown {
  word-wrap: break-word;
  line-height: 1.7;
}
.markdown img {
  max-width: 100%;
  height: auto;
}
.markdown hr {
  background-color: var(--rc-color-border-primary);
  border: 0;
  height: 1px;
}
.markdown ul, .markdown ol {
  list-style-position: outside;
  padding: 0 15px;
}
.markdown ul {
  list-style-type: disc;
}
.markdown ol {
  list-style-type: decimal;
}
.markdown pre {
  background: var(--rc-color-palette-gray-100);
  border: 1px solid var(--rc-color-palette-gray-300);
  border-radius: var(--rc-border-radius-md);
  padding: var(--rc-space-3);
  overflow: auto;
  white-space: pre;
  margin: var(--rc-space-3) 0;
  width: fit-content;
}
.markdown blockquote {
  border-left: 1px solid #EEE;
  color: #BEBEBE;
  font-style: italic;
  padding: 0 15px;
}

/*--------------------------------------- Frame ---------------------------------------*/
main[role=main] {
  min-height: 800px;
}

/*--------------------------------------- Header ---------------------------------------*/
.header {
  background: var(--rc-color-background-page);
  border-bottom: 1px solid var(--rc-color-border-primary);
  width: 100%;
  z-index:100;
}

.header-inner {
  padding: var(--rc-space-4) 0;
}

.link-bar {
  background-color: var(--rc-color-background-page-inverted);
  color: var(--rc-color-text-primary-inverted);
}

.user-nav {
  display: block;
}

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

.user-nav {
  text-align: right;
}
.user-nav > * {
  display: inline-block;
  line-height: 32px;
}
[dir=rtl] .user-nav {
  text-align: left;
}
[dir=rtl] .user-nav > * {
  margin: 0 25px 0 0;
}

.user-nav .dropdown-menu {
  background: var(--rc-color-background-module);
  border-color: var(--rc-color-border-primary);
  box-shadow: 0 0 var(--rc-space-gap-grid) 0 var(--rc-color-box-shadow-primary);
  border-radius: var(--rc-border-radius-lg);
}
/*--------------------------------------- Alert Banner ---------------------------------------*/

.alert-banner {
  background-color: var(--rc-color-palette-tweed-orange-500);
  color: var(--rc-color-text-primary-invert-dark);
  display: none;
  padding: var(--rc-space-4) 0;
  overflow: hidden;
}

.alert-banner.alert-banner--open {
  display: block;
}

.alert-banner.alert-banner--none {
  display: none;
}

.alert-banner__icon {
  display: flex;
  align-items: center;
  max-height: var(--rc-min-height-button-mini);
  font-size: var(--rc-font-size-600);
  align-self: flex-start;
}

.alert-banner__content {
  text-align: left;
  
  @media screen and (max-width: 640px) {
    font-size: var(--rc-font-size-350);
  }
}

.alert-banner p {
  margin-bottom: 0;
}

.alert-banner a {
  text-decoration: underline;
  color: inherit;
}

.alert-banner a:hover {
	color: inherit; 
}

.alert-banner__close-button .button.button--mini {
  width: var(--rc-min-height-button-mini);
  padding: 0;
}

  @media screen and (max-width: 640px) {
    .alert-banner__close-button {
      align-self: flex-start;
      margin-top: calc(-1 * var(--rc-space-2));
      margin-right: calc(-1 * var(--rc-space-2));
    }
  }

/*--------------------------------------- Search Hero ---------------------------------------*/
.hero-unit {
  font-size: 18px;
  padding: var(--rc-space-20) 0;
}

.hero-unit.hero-unit--ihc {
  padding: var(--rc-space-10) 0 0;
}

@media screen and (max-width: 640px) {
  padding: var(--rc-space-12) 0;
}

.hero-unit.hero-unit--slim {
  background-color: var(--rc-color-background-module-muted);
  border-bottom: 0.1rem solid var(--rc-color-border-primary);
  padding: var(--rc-space-12) 0;
}

.hero-unit.hero-unit--slim h1 {
  display: none;
}

.hero-unit.hero-unit--none {
  display: none;
}

@media screen and (max-width: 375px) {
  .hero-unit .search-tab {font-size: 25px;}
}

/* Custom 'We're Here to Help' Search Hero */
.hero-unit-article {
  display: block;
  font-size: 22px;
  margin-bottom: 1.25rem;
}

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

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

.dropdown-toggle {
  color: var(--rc-color-text-primary);
}

.dropdown-toggle:hover {
  color: var(--rc-color-text-primary);
  text-decoration: underline;
}

.user-info > button {
  border: 0;
  color: rgba(32, 32, 32, 1);
  background-color: #ffffff;
  min-width: 0;
  padding: 100;
  white-space: nowrap;
}

.user-info > button:hover, .user-info > button:focus {
  color: rgba(255, 98, 0, 1);
  background-color: #ffffff;
}

.user-info > button::after {
  color: $link_color;
  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: $brand_color;
  border: 2px solid #ffffff;
  border-radius: 50%;
  bottom: -4px;
  background-color: $brand_text_color;
  font-size: 17px;
  height: 100px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/*--------------------------------------- Community ---------------------------------------*/

.community {
  background: #f9f9f9;
  border-radius: 5px;
  display: none;
  padding: 25px 20px;
  margin-top: 65px;
  margin-left: 45px;
  width: 270px;
}

[dir=rtl] .community {
  margin-left: 0;
  margin-right: 45px;
}

.community .recent-activity {
  padding: 0;
  width: auto;
}

.community h2, .community h3, section h3 {
  color: var(--rc-color-text-primary);
  font-size: 1.25rem;
  font-weight: lighter;
  margin: 10px 0 15px;
  /*text-transform: uppercase;*/
}

.community h4 {
  font-size: 15px;
  margin-top: 0;
}

.community h4 a {
  font-size: 11px;
  font-weight: normal;
  margin-left: 5px;
}

.community .trending-questions + h4 {
  margin-top: 50px;
}

.read-more, .see-all-articles {padding: 15px 0;}
.read-more a, .see-all-articles {
  text-transform:uppercase;
  font-weight:bold;
  letter-spacing:2px;
  font-size:12px !important;
}

/*--------------------------------------- Knowledge base trees ---------------------------------------*/

.section-article-list a {
  color: var(--rc-color-text-textlink);
}

.category-article-list li {
  font-size: var(--rc-font-size-400);
  margin: var(--rc-space-4) 0;
}

.featured-article-list li {
  font-size: 1.6rem;
  text-align: center
  line-height: 1.5rem;
  padding: 1rem 2rem 0 0;
  margin-left: 40px
}

p.hide {
  display: none;
}

h2.section-tree-title {
  border: solid;
  border-width: thin;
  border-radius: 6px;
}

h2.section-tree-title:hover {
  background-color: #eceefe;
  color: #212121;
  text-decoration: none;
  transition: 0.5s;
}

h2.section-tree-title:hover + p.hide {
  display: block;
  color: #212121;
  -webkit-animation: sectionDescription 0.5s;
  animation: sectionDescription 0.5s;
}

@-webkit-keyframes sectionDescription {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sectionDescription {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section a:hover {
  text-decoration: none !important;
}

.section-tree h3.section-tree-title a,
#additional-resources h3.blocks-item-title {
  background-color:rgba(32, 32, 32, 1);
  padding: 15px 10px;
  margin:0; 
  border-radius: 60px;
  color:#ffffff !important;
  text-align:center;
  font-size:20px;
}

#additional-resources h3.blocks-item-title:hover {
    opacity: 0.9;
    transition-duration: 0.3s;
}

.section-tree h3.section-tree-title a:hover {
  color: #ffffff !important;
  background-color:#414141;
  transition: 0.3s;
}

.blocks-item-title a .primary-button, section h3 a {text-decoration:none; color:#ffffff;}
.blocks-item-title a .primary-button:hover, section h3 a:hover {text-decoration:underline; color:#ffffff;}

.category-icon a {text-decoration:none; color:rgba(32, 32, 32, 1);}
.category-icon a:hover {text-decoration:underline; color:rgba(32, 32, 32, 1);}

ul.category-card {
  background-size: 2.75rem auto;
  padding:10px;
}
.category-card li.blocks-item {
  margin:10px;
  justify-content: center;
  height: 240px;
}
.category-card h3.blocks-item {
  background-color:#fef3e7;
  border: 4px solid #000;
  border-radius: 10px;
  padding: 20px 20px 175px 10px;
  margin:10px;
}

@media screen and (max-width: 1082px) {.category-card li.blocks-item {flex: 1 0;}}
@media screen and (max-width: 760px) {.category-card h3.blocks-item {padding: 20px 20px 20px 10px;}}
@media screen and (max-width: 760px) {.category-card li.blocks-item {height: 60px; flex: 1 0 325px;}}
@media screen and (max-width: 760px) {ul.category-card {padding: 10px 10px 10px 0;}}

.category-card h3.blocks-item:after {
 background-image: url("/hc/theming_assets/01K4AD9854TR19B6F2T1ET023G");
}
.category-card a {text-decoration:none; color:rgba(32, 32, 32, 1);}
.category-card a:hover {text-decoration:underline; color:rgba(32, 32, 32, 1);}
.category-card h3.blocks-item-title {margin:20px 0px; box-shadow: 1px 2px 3px 0px #414141;}

.main-column .section-tree ul.article-list, .main-column .section-tree a.see-all-articles {display:none;}
.section-tree section.section {padding: 10px 20px 0 0;}

.category-empty, .section {
  display: inline-block;
  padding: 0 50px 50px 0;
  vertical-align: top;
  width: 49.5%;
}

/*.section-footer .section-content .blocks-item {max-width: 21%;}*/
/*.section-footer .section-content {
  max-width: 21%;
}*/

.section-content ul {display:inline-block; width:100%;}
.section-content ul li {float:left; width:22%;}
li.blocks-item.main-contact {width: 30%; margin: 0 0 0 35%;}

@media screen and (max-width: 1040px) { 
  .section-content ul li {width:46%;margin-bottom: 25px;padding-bottom: 0;} 
  .section-content ul {padding-bottom: 40px; display: inline-flex;}
  li.blocks-item.main-contact {margin: 0;}
  }

.internal-section-content ul {display:inline-flex; width:100%;}
.internal-section-content ul li {float:left; width:21%;}

@media screen and (max-width: 1040px) { 
  .internal-section-content ul li {width:44%;margin-bottom: 0;padding-bottom: 0;} 
  .internal-section-content ul {padding-bottom: 40px;}
  }

.promoted-section {
  display: inline-block;
  vertical-align: top;
  padding: 0 0 0 0 !important;
  width: 100%;
}

[dir=rtl] .category-empty, [dir=rtl] .section {
  padding: 0 0 30px 50px;
}

.see-all-articles {
  display: inline-block;
  margin-top: 10px;
  font-size: 90%;
  font-weight: 700;
}

.category-description, .section-description {
  color: #BEBEBE;
  margin-bottom: 50px;
  margin-top: -15px;
}

.category-list a, .section-list a {
  color: inherit;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 10px;
}

.page-header {
  /*border-bottom: 1px solid #ccc;*/
  /*padding-bottom: 0.5rem;*/
  /*margin-bottom: 1rem;*/
  /*min-height: 50px;*/
  /*font-size: 1.7rem;*/
  font-weight:bold;
}

.security-header {
  font-size: 17px;
  line-height: 1.5;
  background: #eceefe;
	border-left: 5px solid #a1aafa;
	border-radius: 6px;
  margin: 1em 0;
  padding: 10px 20px;
}

.border-bottom {
  border-bottom: 1px solid #ccc;
}

/*.page-header > * {
  display: table-cell;
  vertical-align: middle;
}
.page-header > *:first-child {
  width: 100%;
}*/

.page-header + p {
  color: #BEBEBE;
  margin: -15px 0 20px 0;
}

.page-header h1 {
  /*font-size: 1.75rem;*/
  /*padding-bottom: 25px;*/
  margin-bottom: 20px;
}

.page-header a:hover {text-decoration:none;}

/*--------------------------------------- Sub-nav ---------------------------------------*/
.sub-nav {
  display: table;
  margin-bottom: 2.5rem;
  table-layout: fixed;
  width: 100%;
}
.sub-nav > * {
  display: table-cell;
}
.sub-nav .breadcrumbs {
  overflow: hidden;
  white-space: nowrap;
}
/*.sub-nav .search {
  width: 300px;
}*/

/*--------------------------------------- Articles ---------------------------------------*/

.article-body p {
  margin-bottom: var(--rc-space-2);
}

.article-body h1 {
  margin-bottom: var(--rc-space-6);
  margin-top: var(--rc-space-8);
  font-size: var(--rc-font-size-800);
  font-weight: var(--rc-font-weight-bold);
  letter-spacing: var(--rc-font-letter-spacing-heading);
}

.article-body h2 {
  margin-bottom: var(--rc-space-6);
  margin-top: var(--rc-space-8);
  font-size: var(--rc-font-size-700);
  font-weight: var(--rc-font-weight-bold);
  letter-spacing: var(--rc-font-letter-spacing-heading);
}

.article-body h3 {
  margin-bottom: var(--rc-space-6);
  margin-top: var(--rc-space-6);
  font-size: var(--rc-font-size-600);
  font-weight: var(--rc-font-weight-bold);
  letter-spacing: var(--rc-font-letter-spacing-heading);
}

.article-body h4 {
  margin-bottom: var(--rc-space-6);
  margin-top: var(--rc-space-6);
  font-size: var(--rc-font-size-500);
  font-weight: var(--rc-font-weight-bold);
  letter-spacing: var(--rc-font-letter-spacing-heading);
}

.article-body ul, .article-body ol {
  margin: var(--rc-space-5) var(--rc-space-3);
}

.article-body li {
  margin: var(--rc-space-1) 0;
}

.article-body img.article-image {
  padding: var(--rc-space-1); 
  border: solid var(--rc-color-palette-gray-800) thin; 
  border-radius: var(--rc-border-radius-sm);
  margin: var(--rc-space-2) 0;
}

.article-info > * {
  display: table-cell;
  vertical-align: middle;
}

.article-avatar {
  min-width: 55px;
}
.article-avatar img {
  border-radius: 3px;
  max-height: 38px;
  max-width: 38px;
}

.article-meta {
  width: 100%;
}

.article-updated {
  display: block;
}

.article-more-questions {
  margin: 30px 0 50px 0;
}

.article-more-questions a {
  padding: 8px 10px;
}

.article-body table {
  table-layout: fixed;
  margin: var(--rc-space-5) 0;
}

.article-body table p {
  margin-bottom: 0;
}

.article-footer {
  border-bottom: 1px solid var(--rc-color-border-primary);
  margin-top: 15px;
  padding: 20px 0;
}
.article-footer .article-vote, .article-footer .share {
  display: table-cell;
}

.article-vote {
  width: 100%;
}

.article-vote > * {
  display: inline-block;
}

.article-vote-controls {
  margin: 0 5px;
}

.article-vote-count {
  color: #999;
  min-width: 20%;
}

.article-vote-up, .article-vote-down {
  color: inherit;
  font-family: "entypo";
}

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

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

.article-vote-up.article-voted {
  color: var(--rc-color-palette-vu-orange-600);
  border-color: var(--rc-color-palette-vu-orange-600);
}

.article-vote-down.article-voted {
  color: var(--rc-color-palette-vu-orange-600);
  border-color: var(--rc-color-palette-vu-orange-600);
}

.article-contact {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 2rem;
}

.article-contact-box {
  display: flex;
  flex-direction: column;
  gap: var(--rc-space-4);
  flex: 1;
  padding: var(--rc-space-5);
  border: 0.1rem solid var(--rc-color-border-primary);
  border-radius: var(--rc-border-radius-primary);
  border-bottom-right-radius: 6.4rem;
  background-color: var(--rc-color-background-module);
}

.article-contact-box p {
  margin-bottom: 0;
}

.article-contact-box__icon {
  font-size: 3.6rem;
  line-height: 1;
}

.article-contact-box__button a.button {
  color: var(--text-color);
  text-decoration: none;
  display: inline-flex;
}

.article-contact-box__button .button:hover {
  color: var(--text-color);
}

.article-contact-box1 {
  margin: 0 1% 0 1%; 
  border-width: 1px 1px 1px 10px;
  border-style: solid;
  border-color: #9E9E9E;
  border-radius: 4px;
}

.article-contact-box2 {
  margin: 0 1% 0 1%; 
  border-width: 1px 1px 1px 10px;
  border-style: solid;
  border-color: #064EF5;
  border-radius: 4px;
}
.article-contact-box1 {
  margin: 0 1% 0 1%; 
  border-width: 1px 1px 1px 10px;
  border-style: solid;
  border-color: #9E9E9E;
  border-radius: 4px;
}

.article-contact-box2 {
  margin: 0 1% 0 1%; 
  border-width: 1px 1px 1px 10px;
  border-style: solid;
  border-color: #064EF5;
  border-radius: 4px;
}

.article-contact-header {
  padding: 18px;
  font-size: 1.5em;
}

.article-contact-desc1 {
  padding: 20px 20px 6em;
  position: relative;
  background: #0000000A;
  border-bottom-right-radius: 4px;
}

.article-contact-desc2 {
  padding: 20px 20px 6em 60px;
  position: relative;
  background: #ECEDFE;
  border-bottom-right-radius: 4px;
}

.article-contact-desc2:before {
 content: url("/hc/theming_assets/01K4AD97Z794RSXPE973RR4WBV");
 position: absolute;
 left: 3%;
 top: 18%;

}

.article-contact-button {
  bottom: 5%;
  position: absolute;
}

@media screen and (max-width: 800px) {
  .article-contact {flex-wrap: wrap; padding-top: 0; }
  .article-contact-box1, .article-contact-box2 {margin: 1rem;}
  .article-contact-desc2 {margin-left: 0; padding: 20px 20px 6em;}
  .article-contact-desc2:before {display: none;}
}


.visibility-internal-icon:before {
  content: "\1F512";
  display: inline-block;
  font-family: "entypo";
  text-align: center;
  width: 30px;
}

.article-promoted span, .visibility-internal {
  cursor: default;
  position: relative;
}
.article-promoted span:before, .article-promoted span:after, .visibility-internal:before, .visibility-internal:after {
  display: none;
  font-size: 13px;
  font-weight: normal;
  position: absolute;
}
.article-promoted span:before, .visibility-internal:before {
  background: #222;
  border-radius: 3px;
  color: #ffffff;
  content: attr(data-title);
  font-family: sans-serif;
  left: -10px;
  margin-top: 5px;
  padding: 3px 10px;
  text-transform: none;
  top: 100%;
  white-space: nowrap;
  z-index: 1;
}
.article-promoted span:after, .visibility-internal:after {
  border-bottom: 5px solid #222;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: -5px;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  width: 0;
}
.article-promoted span:hover:before, .article-promoted span:hover:after, .visibility-internal:hover:before, .visibility-internal:hover:after {
  display: block;
}

.article-body td {
  border-width: 1px;
}

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

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

.promoted-articles-item {
  background: url("/hc/theming_assets/01K4AD98H3M1M57BVJVFF65X4H") right center no-repeat;
  font-size: 1.6rem;
  line-height: 1.5rem;
  border-bottom: 1px solid #eee;
  flex: 1 0 auto;
}

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

.promoted-articles-item a {
  color: $text_color;
  display: block;
  padding: 16px 25px 16px 0px;
  text-decoration:none !important;
}

.promoted-articles li:nth-child(10) ~ li {
  display: none;
}

/*--------------------------------------- Comments & Attachments ---------------------------------------*/
.comment-list {
  margin-bottom: 25px;
}
.comment-list > * {
  border-bottom: 1px solid #EEE;
  padding: 25px 0;
}
.comment-list > *:first-child {
  border-top: 1px solid #EEE;
}

.comment-sorter {
  float: right;
}
.comment-sorter a {
  color: #999;
  text-decoration: none;
  padding-left: 20px;
}
[dir=rtl] .comment-sorter {
  float: left;
}
[dir=rtl] .comment-sorter a {
  padding-left: 0;
  padding-right: 20px;
}

.comment-sorter [aria-selected=true] {
  font-weight: bold;
  color: #333;
}

.comment, .comment-form {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.comment > *, .comment-form > * {
  display: table-cell;
  vertical-align: top;
}

.comment-vote, .comment-bookmark {
  text-align: center;
  width: 50px;
}

.comment-bookmark:before {
  color: #77a500;
  content: "\1F516";
  font-family: "entypo";
  font-size: 23px;
  line-height: 1.1;
}

.comment-avatar {
  position: relative;
  width: 40px;
}
.comment-avatar img {
  border-radius: 3px;
  max-width: 30px;
  max-height: 30px;
}

.comment-avatar-agent:after {
  background-color: transparent;
  background-image: url("/hc/theming_assets/01K4AD981AKFA17YPS160A2EHS");
  background-image: url("/hc/theming_assets/01K4AD98KX91HFHGFWQFSVAS22");
  background-repeat: no-repeat;
  background-size: 15px;
  content: " ";
  height: 15px;
  left: 55px;
  position: absolute;
  top: 55px;
  width: 15px;
}
[dir=rtl] .comment-avatar-agent:after {
  left: auto;
  right: 55px;
}

.comment-header {
  margin-bottom: 15px;
}

.comment-published, .comment-pending, .comment-official {
  border: 1px solid transparent;
  float: right;
  font-size: 11px;
  padding: 1px 5px;
}
[dir=rtl] .comment-published, [dir=rtl] .comment-pending, [dir=rtl] .comment-official {
  float: left;
}

.comment-published {
  color: #BEBEBE;
}
.comment-published:before {
  content: " ";
  display: inline-block;
  width: 5px;
}

.comment-pending, .comment-official {
  border-color: currentcolor;
  border-radius: 2px;
}

.comment-pending {
  color: #eec100;
}

.comment-official {
  color: #77a500;
}

.comment-form textarea {
  border-radius: 2px 2px 0 0;
  border-width: 1px;
}

.comment-attachments {
  border: 1px solid #DDD;
  margin-top: -1px;
  padding: 10px;
}

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

.comment-form-controls input[type=submit] {
  margin-left: 15px;
}
[dir=rtl] .comment-form-controls input[type=submit] {
  margin-left: 0;
  margin-right: 15px;
}

.comment-screencasts, .comment-mark-as-solved {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}
[dir=rtl] .comment-screencasts, [dir=rtl] .comment-mark-as-solved {
  margin-left: 20px;
}

.comment-actions {
  float: right;
  color: #999;
}
[dir=rtl] .comment-actions {
  float: left;
}

.comment-actions .dropdown-toggle:before {
  content: "\2699";
  font-size: 11px;
  font-family: "entypo";
}

.attachment-list, .screencast-list {
  font-size: 11px;
  margin-top: 25px;
}
.attachment-list span, .screencast-list span {
  color: #999;
}
[dir=rtl] .attachment-list span, [dir=rtl] .screencast-list span {
  direction: rtl;
  unicode-bidi: bidi-override;
}
.attachment-list li, .screencast-list li {
  margin-bottom: 10px;
}
.attachment-list li:before, .screencast-list li:before {
  background: #f9f9f9;
  border-radius: 3px;
  color: #bbb;
  font-family: "entypo";
  margin-right: 5px;
  padding: 5px;
}

.attachment-list li:before {
  content: "\1F4CE";
}

.screencast-list li:before {
  content: "\1F4BB";
}

/*--------------------------------------- Activites & Requests ---------------------------------------*/

.my-activities-header {
  border-bottom: 1px solid #EEE;
  margin-bottom: 25px;
  padding: 25px 0;
}
.my-activities-header .breadcrumbs li {
  color: #000;
  font-size: 20px;
  font-weight: normal;
}
.my-activities-header .breadcrumbs li:first-child, .my-activities-header .breadcrumbs li:before {
  display: none;
}

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

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

.request-table-toolbar {
  background: #f9f9f9;
  display: table;
  padding: 8px;
  width: 100%;
}

.request-table-filters {
  display: table-cell;
  text-align: right;
}
[dir=rtl] .request-table-filters {
  text-align: left;
}
.request-table-filters label:before {
  content: " ";
  width: 25px;
  display: inline-block;
}

.requests-search {
  border-radius: 20px;
  outline: none;
  padding: 6px 15px;
}

.request-id {
  color: #BEBEBE;
}

.request-details {
  background: #f9f9f9;
  border: 1px solid #EEE;
  border-radius: 3px;
  font-size: 12px;
  margin: 0 0 30px;
  padding: 15px 20px;
}

.request-details dt ~ dt, .request-details form dt {
  font-weight: bold;
  margin-top: 15px;
}

.request-details dd {
  margin: 2px 0 0;
  word-wrap: break-word;
}

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

.request-details dd li {
  list-style-type: disc;
  list-style-position: inside;
  margin: 0 0 3px 0;
}

.request-details .nested-field-tag:before {
  content: " > ";
}
.request-details .nested-field-tag:first-child:before {
  content: "";
}

.request-status {
  color: #ffffff;
  border-radius: 3px;
}

.request-open {
  background: #59BBE0;
}

.request-answered {
  background: #F5CA00;
}

.request-solved {
  background: #828282;
}

.request-button {
  border: none;
  color: white;
  font-weight: bold;
  background-color: #212121;
  padding: 18px 50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin-top: 4px;
  margin-left: -7px;
  cursor: pointer;
}

.request-button:hover {
  opacity: 0.9;
  transform: scale(1.025);
  transition-duration: 0.3s; 
}

.article-button {
  border: none;
  color: white;
  font-weight: bold;
  background-color: #212121;
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
  margin: 4px 2px;
  cursor: pointer;
}

.article-button:hover {
  opacity: 0.9;
  transform: scale(1.025);
  transition-duration: 0.3s; 
}

/*--------------------------------------- Community heading ---------------------------------------*/
.community-heading {
  font-size: 18px;
  margin: 0;
  width: 100%;
}

/*--------------------------------------- Community nav ---------------------------------------*/
.community-nav {
  border-bottom: 1px solid #EEE;
  margin-bottom: 55px;
  padding: 25px 0;
}

.community-nav li {
  display: inline-block;
  font-weight: bold;
  padding-right: 30px;
}

.community-nav li a {
  font-weight: normal;
}

.community-nav li + li {
  border-left: 1px #EEE;
  padding-left: 30px;
}

.community-nav li:last-child {
  border: 0;
  float: right;
  margin: 0;
  padding: 0;
  position: relative;
  top: -5px;
}
[dir=rtl] .community-nav li:last-child {
  float: left;
}

.community-nav li:last-child a {
  color: rgba(66, 84, 245, 1);
}

.community-nav li:last-child a:before {
  content: "\270E";
  font-family: "entypo";
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}
[dir=rtl] .community-nav li:last-child a:before {
  margin-right: 0;
  margin-left: 10px;
}

/*--------------------------------------- Community sub-nav ---------------------------------------*/
.community-sub-nav {
  border-bottom: 1px solid #EEE;
  padding: 15px 0;
  position: relative;
  width: 800px;
}

.community-sub-nav li {
  display: inline-block;
  font-weight: bold;
  padding-right: 15px;
}

.community-sub-nav li a {
  font-weight: normal;
}

.community-sub-nav li + li {
  padding-left: 15px;
}

.community-sub-nav .topic-add {
  position: absolute;
  right: 0;
  top: 10px;
}

/*--------------------------------------- Topics/questions/answers ---------------------------------------*/
.topic {
  display: inline-block;
  width: 49.5%;
  padding: 20px 30px 20px 0;
  vertical-align: top;
}

.topic-header, .question-header {
  border-bottom: 1px solid #EEE;
  display: table;
  padding-bottom: 10px;
}

.topic-header > *, .question-header > * {
  display: table-cell;
  vertical-align: middle;
}

.topic-header .topic-meta, .question-header .question-meta {
  padding: 0 15px;
  white-space: nowrap;
}

.topic-heading, .question-heading, .answer-list-heading {
  font-weight: bold;
  font-size: 13px;
  width: 100%;
}

.topic-heading {
  font-size: 18px;
}

.topic-questions {
  margin-top: 45px;
}

.topic-description {
  word-break: break-word;
}

.question, .answer {
  border-bottom: 1px solid #EEE;
  padding: 20px 0;
  position: relative;
}

.question-form .nesty-input {
  max-width: none;
}

.question-avatar, .answer-avatar {
  display: table-cell;
  margin-right: 10px;
  min-width: 50px;
  position: relative;
  vertical-align: top;
}

.question-avatar-agent:after, .answer-avatar-agent:after {
  background-color: transparent;
  background-image: url("/hc/theming_assets/01K4AD981AKFA17YPS160A2EHS");
  background-image: url("/hc/theming_assets/01K4AD98KX91HFHGFWQFSVAS22");
  background-repeat: no-repeat;
  background-size: 14px;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 30px;
  top: 30px;
  content: " ";
}

.question-avatar img, .answer-avatar img {
  border-radius: 3px;
  max-height: 38px;
  max-width: 38px;
}

.question-body, .answer-body, .answer-official-body {
  display: table-cell;
  vertical-align: top;
  width: 100%;
}

.question-body .answer-official-body {
  vertical-align: top;
  width: 100%;
}

.question-body p, .answer-body p, .answer-official-body p {
  margin: 0 0 5px;
}

.question-body .question-meta, .answer-body .answer-meta, .answer-official-body .answer-meta {
  float: left;
}

.question .answer {
  border: none;
  padding-bottom: 0;
}

.question-topic-list {
  margin: -20px 0 30px;
}

.question-topic-list li {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.question-topic-list a {
  background: #f6f6f6;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  color: #CCC;
  display: inline-block;
  font-size: 11px;
  padding: 7px 15px;
}

.question-title, .topic-title {
  margin: -3px 0 5px;
  font-size: 15px;
}

.question-title a, .topic-title a {
  font-weight: lighter;
}

.question-meta, .answer-meta, .topic-meta {
  color: #CCC;
  font-size: 11px;
}

.topic-meta span + span:before, .question-meta span + span:before, .answer-meta span + span:before {
  content: "\2022";
  font-size: 10px;
  margin: 0 10px;
}

.answer-form {
  margin: 30px 0 0 95px;
}

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

.answer-form-controls input[type=submit] {
  margin-left: 15px;
}

.answer-form-controls .pull-left {
  float: left;
}

.answer-official-heading {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 20px;
  border-bottom: 0px;
}

.answer-list-heading {
  border-bottom: 1px solid #EEE;
  margin-top: 30px;
  padding-bottom: 20px;
}

.pending-moderation-answer-badge {
  clear: both;
  border-style: solid;
  border-width: 1px;
  border-color: #c7aa2b;
  color: #c7aa2b;
  padding: 3px 5px;
  float: left;
  margin-top: 10px;
  font-size: 12px;
}

.question-share, .answer-share {
  position: relative;
}

.related-questions-header {
  border-bottom: 1px solid #EEE;
}

.related-questions-heading {
  margin-top: 3px;
}

.related-questions li {
  margin-top: 10px;
  margin-bottom: 10px;
}

/*--------------------------------------- Votes ---------------------------------------*/
.vote {
  display: table-cell;
  margin-left: 15px;
  margin-right: 10px;
  min-width: 95px;
  vertical-align: top;
}

.vote-sum, .vote-controls {
  display: inline-block;
  vertical-align: middle;
}

.vote-sum {
  font-size: 15px;
  font-weight: bold;
  min-width: 60px;
  padding-left: 10px;
  text-align: center;
}

.vote-controls {
  border-radius: 5px;
}

.vote-controls a {
  background: #ffffff;
  border-color: #f6f6f6;
  box-shadow: none;
  color: #BEBEBE;
  display: block;
  font-family: "entypo";
  font-size: 13px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
}

.vote-up {
  border-radius: 5px 5px 0 0;
}

.vote-down {
  border-radius: 0 0 5px 5px;
  border-top: 0;
}

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

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

.vote-controls:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.vote-controls:hover a {
  background: #ffffff;
  border-color: #A6A6A6;
  color: #BBB;
}

.vote-controls a:hover, .vote-controls [aria-selected=true] {
  background: #f6f6f6;
  color: #333;
}

.vote-controls a:active {
  background: #CCC;
  color: #111;
}

/*--------------------------------------- Answer - Accept ---------------------------------------*/
.answer-accept {
  color: #BBB;
  font-size: 15px;
  max-width: 15px;
  overflow: hidden;
  padding-top: 7px;
  position: absolute;
  white-space: nowrap;
}

.answer-accept:hover {
  text-decoration: none;
}

.answer-accept:before {
  content: "\2713";
  font-family: "entypo";
  margin-right: 5px;
}

.answer-accepted .answer-accept, .answer-accepted .vote-sum {
  color: green;
}

/*--------------------------------------- Topic & Answer Admin controls ---------------------------------------*/
.topic-controls, .question-controls, .answer-controls {
  float: right;
  font-size: 11px;
}

.topic-edit:before, .question-delete:before, .question-mark-as-spam:before, .answer-delete:before, .answer-mark-as-spam:before {
  color: #CCC;
  content: "\2022";
  font-size: 10px;
  margin-left: -16px;
  margin: 0 8px;
  pointer-events: none;
  position: relative;
  display: inline-block;
}

/*--------------------------------------- Share questions and answers ---------------------------------------*/
.share-label {
  cursor: pointer;
}

.share-label + .share {
  background: #ffffff;
  border: 1px solid #DDD;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  left: 50%;
  line-height: 70px;
  margin: 10px 0 0 -75px;
  position: absolute;
  text-align: center;
  top: 100%;
  white-space: nowrap;
  width: 175px;
  z-index: 1;
}

.share-label + .share:before, .share-label + .share:after {
  content: "";
  display: inline-block;
  left: 50%;
  position: absolute;
}

.share-label + .share:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #CCC;
  border-left: 7px solid transparent;
  margin-left: -6px;
}

.share-label + .share:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  margin-left: -5px;
}

.share-label[aria-selected="true"] {
  color: #111;
}

.share-label[aria-selected="true"] + .share {
  display: block;
}

.share-label[aria-selected="false"] + .share {
  display: none;
}


/*--------------------------------------- Search Results ---------------------------------------*/

body.community-enabled .search-results-column {
  display: inline-block;
  vertical-align: top;
  width: 80%;
}
body.community-enabled .search-results-column + .search-results-column {
  margin-left: 35px;
}
[dir=rtl] body.community-enabled .search-results-column + .search-results-column {
  margin-left: 0;
  margin-right: 35px;
}

.search-results-subheading {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.search-results-subheading-link {
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.search-results-list {
  margin-bottom: var(--rc-space-20);
}
.search-results-list > * {
  border-bottom: 1px solid #EEE;
  padding: 20px 0;
}
.search-results-list > *:first-child {
  border-top: 1px solid #EEE;
}

.search-result-link {
  font-size: 18px;
  font-weight: bold;
  color: var(--rc-text-textlink);
}

.search-result-description, .search-result-meta {
  padding-top: 10px;
  line-height: 1.6;
}

.search-result-meta-name, .search-result-meta-time, .search-result-meta-count {
  font-size: 12px;
  color: #BEBEBE;
}

.search-result-meta-time:before, .search-result-meta-count:before {
  display: inline-block;
  padding-right: 5px;
  content: '\2022';
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.search-result-votes {
  background: #A8D119;
  border-radius: 2px;
  color: #ffffff;
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
  padding: 4px 5px;
  position: relative;
  top: -2px;
}
.search-result-votes:before {
  content: "\1F44D";
  font-family: "entypo";
  margin-right: 3px;
}

.search-results-none {margin-bottom:360px;}
@media screen and (max-width: 960px) {.search-results-none {margin-bottom:300px;}}
@media screen and (max-width: 640px) {.search-results-none {margin-bottom:210px;}}

/*--------------------------------------- Chat ---------------------------------------*/

.chat {
  background: #f6f6f6;
  border: 1px solid #E0E0E0;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 13px;
  line-height: 35px;
  padding: 0 15px;
  position: fixed;
  right: 85px;
  -webkit-transition: bottom .5s ease-in, color .5s ease-in;
  -moz-transition: bottom .5s ease-in, color .5s ease-in;
  -ms-transition: bottom .5s ease-in, color .5s ease-in;
  -o-transition: bottom .5s ease-in, color .5s ease-in;
  transition: bottom .5s ease-in, color .5s ease-in;
}

.chat:before {
  content: "\E720";
  font-family: "entypo";
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
}

.chat:hover {
  text-decoration: none;
}

.chat-available {
  bottom: 0;
}

.chat-unavailable {
  color: gray;
  cursor: default !important;
  bottom: -50px;
}

/*--------------------------------------- Error Page ---------------------------------------*/

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

.error-page a {
  color: var(--rc-color-text-primary);
}

/*--------------------------------------- Recently Viewed Articles ---------------------------------------*/

.recent-activity {
  background: #f9f9f9;
  border-radius: 5px;
  padding: 25px 20px;
  width: 270px;
}

.recent-activity-header {
  margin-top: 0;
  font-size: 15px;
}

.recent-activity-item ~ .recent-activity-item {
  margin-top: 15px;
}

.recent-activity-item-parent {
  color: rgba(32, 32, 32, 1);
  font-size: 12px;
  text-decoration: none;
  display: block;
}
.recent-activity-item-parent:hover {
  text-decoration: underline;
}

.recent-activity-item-link {
  display: block;
}

.recent-activity-item-meta {
  font-size: 12px;
  color: #999;
}

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

.recent-activity-item-comment {
  display: none;
}
.recent-activity-item-comment:before {
  display: inline-block;
  content: "•";
}
.recent-activity-item-comment span:before {
  font-family: "entypo";
  content: "\00a0\00a0\e718";
  display: inline-block;
  vertical-align: middle;
  padding-right: 3px;
}

[data-recent-activity-action="article_comment_added"] .recent-activity-item-comment,
[data-recent-activity-action="post_comment_added"] .recent-activity-item-comment,
[data-recent-activity-action="answer_added"] .recent-activity-item-comment {
  display: inline-block;
}

.recent-activity-controls,
.recent-activity-loader {
  padding-top: 20px;
  font-size: 12px;
}

.recent-activity-loader {
  display: inline-block;
  position: relative;
}
.recent-activity-loader:before {
  display: block;
  position: absolute;
  content: "\0020";
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f9f9f9 50%, rgba(255, 255, 255, 0) 100%);
  animation: recent-activity-loader 0.5s infinite;
  -webkit-animation: recent-activity-loader 0.5s infinite;
}

@keyframes recent-activity-loader {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes recent-activity-loader {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.escalation-badge, a.escalation-badge {
  background-color: #95be22;
  border-color: #95be22;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  color: #ffffff;
  font-size: 11px;
  margin: 0 3px;
  padding: 1px 3px;
  text-decoration: none;
  vertical-align: baseline;
}






/*---------------------------------------  Custom           ---------------------------------------*/
/*---------------------------------------       Reverb      ---------------------------------------*/
/*---------------------------------------              CSS  ---------------------------------------*/


/*--------------------------------------- YouTube embed ---------------------------------------*/
.youtube-embed-container-wrapper  {
  margin: 3rem auto;
  width: 75%;
}

@media screen and (max-width: 720px) {
  .youtube-embed-container-wrapper  {
    width: 100%;
  }
}



.youtube-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.youtube-embed-container iframe,
.youtube-embed-container object,
.youtube-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*--------------------------------------- Custom Search ---------------------------------------*/
.search-label {
  font-size: 1.5rem
}


/*--------------------------------------- Custom Featured Categories ---------------------------------------*/
.featured-categories {
  margin-bottom: 2rem;
}

h2.page-header, .featured-categories h2.page-header {text-align:center;}
h2.page-header a {text-decoration: none;}

.featured-category-list {
  margin-right: -3%;
}

.featured-category-list li {
  margin-right: 10px;
  
}

.featured-category a {
  display: block;
  text-align: center;
  padding: 100px 70px 20px;
  font-size: 18px;
  color: rgba(32, 32, 32, 1);
}

.transition-all-200ms {
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.featured-category a:hover, .featured-category a:active {
  text-decoration: none !important;
  color: rgba(32, 32, 32, 1);
}

.featured-category .active a, ul li.featured-category.active a {
  text-decoration: none;
  color: rgba(32, 32, 32, 1);
}

li.featured-category {background-color:#fff; border-top-left-radius: 10px; border-top-right-radius: 10px;}
li.featured-category.active {border-bottom: solid var(--rc-color-palette-vu-orange-600) 3px;}

li.featured-category:hover {
  background-color: #f2f3f3;
}

.featured-category-icon {
  background-position: left 57px;
  background-repeat: no-repeat;
  background-size: 493px 200px;
}

@media screen and (max-width: 960px) {.featured-category-icon {background-size: 393px 200px;}}

/*--------------------------------------- Custom Featured Sections ---------------------------------------*/
.featured-sections {
  margin-bottom: 1rem;
  border-style: solid;
  border-color: orange;
  border-left-width: 5px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
}

h2.page-header, .featured-sections h2.page-header {text-align:left ;padding-bottom: 20px;}

.featured-section-list {
  margin-right: -3%;
}

.featured-section-list li {
  margin-right: 10px;
}

.featured-section a {
  display: block;
  text-align: center;
  padding: 100px 70px 0px;
  font-size: 18px;
  color: rgba(32, 32, 32, 1);
  background-color:#ffffff;
  border-bottom: .2rem solid #dfdfdf;
}

.transition-all-200ms {
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.featured-section a:hover, .featured-section a:active {
  text-decoration:none;
  border-bottom: .2rem solid rgba(255, 98, 0, 1);
  color: rgba(255, 98, 0, 1);
}

.featured-section .active a, ul li.featured-section.active a {
  text-decoration:none;
  color: rgba(255, 98, 0, 1);
  border-bottom: 3px solid rgba(255, 98, 0, 1);
}


.featured-section-icon {
  background-position: left 0px;
  background-repeat: no-repeat;
  background-size: 60px 60px;
}

/*--------------------------------------- Accounts and General Inquiries ---------------------------------------*/

/*--------------------------------------- Accounts ---------------------------------------*/
.category-icon--360001895833, .category-icon--360006079454, .category-icon--360004446294 {
  background-image: url("/hc/theming_assets/01K4AD95AB51CZVRT5ABTZ64MP");
  padding-left: 4rem;
}

/*--------------------------------------- Buying ---------------------------------------*/
.category-icon--360001881314, .category-icon--360006104233 {
  background-image: url("/hc/theming_assets/01K4AD9854TR19B6F2T1ET023G");
  padding-left: 4rem;
}


/*--------------------------------------- Selling ---------------------------------------*/
.category-icon--360001895853 {
  background-image: url("/hc/theming_assets/01K4AD98C6WWR0H6PTYR862MXP");
  padding-left: 4rem;
}


/*--------------------------------------- Shipping ---------------------------------------*/
.category-icon--360009593954, .category-icon--360004446394, .category-icon--17307497952403{
  background-image: url("/hc/theming_assets/01K4AD9831FF2FM2GFAHENHXTZ");
  padding-left: 4rem;
}

/* ---------------------------------------Reverb Sites ---------------------------------------*/
.category-icon--360009656853  {
  background-image: url("/hc/theming_assets/01K4AD980TMKHTZHKMZSQBYWXE");
  padding-left: 4rem;
}


/*--------------------------------------- Payouts ---------------------------------------*/
.category-icon--360006079354, .category-icon--360004446454 {
  background-image: url("/hc/theming_assets/01K4AD97YYG1D2WENNPJP8TQX1");
  padding-left: 4rem;
}



/*--------------------------------------- Checkout ---------------------------------------*/
.category-icon--360006104213 {
  background-image: url("/hc/theming_assets/01K4AD97YYG1D2WENNPJP8TQX1");
  padding-left: 4rem;
}



/*--------------------------------------- Integrations ---------------------------------------*/
.category-icon--360006079394 {
  background-image: url("/hc/theming_assets/01K4AD981ZCJCRA41H27QV8ZVB");
  padding-left: 4rem;
}



/*--------------------------------------- Listings -- seller! ---------------------------------------*/
.category-icon--360006079294, .category-icon--360004490193 {
  background-image: url("/hc/theming_assets/01K4AD942XCH7ZWTXH593CW78J");
  padding-left: 4rem;
}



/*--------------------------------------- Gift Cards ---------------------------------------*/
.category-icon--11933009166227 {
  background-image: url("/hc/theming_assets/01K4AD949JT9CAKWZTD4N5A97D");
  padding-left: 4rem;
}


/*--------------------------------------- My Shop ---------------------------------------*/
.category-icon--360006104333, .category-icon--360004490273 {
  background-image: url("/hc/theming_assets/01K4AD94BYSNNJZFAMEDWCH5XT");
  padding-left: 4rem;
}


/*--------------------------------------- Statements and Billing ---------------------------------------*/
.category-icon--360006104193 {
  background-image: url("/hc/theming_assets/01K4AD94P9R2X297YBM5RRPZ1T");
  padding-left: 4rem;
}


/*--------------------------------------- Sold Orders ---------------------------------------*/
.category-icon--360006104173, .category-icon--360004490253 {
  background-image: url("/hc/theming_assets/01K4AD98C6WWR0H6PTYR862MXP");
  padding-left: 4rem;
}


/*--------------------------------------- Listings and Buying Features ---------------------------------------*/
.category-icon--360006079434 {
  background-image: url("/hc/theming_assets/01K4AD98KC8KMHX3H0SZAVPQMG");
  padding-left: 4rem;
}



/*--------------------------------------- Reverb News and Community ---------------------------------------*/
.category-icon--360006104293, .category-icon--10010643883155 {
  background-image: url("/hc/theming_assets/01K4AD983GT4H8Q0XSA53ZJW24");
  padding-left: 4rem;
}



/*--------------------------------------- Megaphone ---------------------------------------*/
.category-icon--ID {
  background-image: url("/hc/theming_assets/01K4AD9828CK3N3PRRW827726B");
  padding-left: 4rem;
}



/*--------------------------------------- App Store ---------------------------------------*/
.category-icon--360009699093 {
  background-image: url("/hc/theming_assets/01K4AD94BYSNNJZFAMEDWCH5XT");
  padding-left: 4rem;
}


/*--------------------------------------- COVID 19 Health and Safety ---------------------------------------*/
.category-icon--360009700673, .category-icon--10010644788883 {
  background-image: url("/hc/theming_assets/01K4AD98KS0MB43BMV1MH1TDWQ");
  padding-left: 4rem;
}


/*--------------------------------------- Reverb General FAQs ---------------------------------------*/
.category-icon--360009592554, .category-icon--10010659289747 {
  background-image: url("/hc/theming_assets/01K4AD97ZVM3ETT8XTV144ZRH7");
  padding-left: 4rem;
}


/*--------------------------------------- Safety & Security ---------------------------------------*/
.category-icon--5329389737107, .category-icon--10010651441555 {
  background-image: url("/hc/theming_assets/01K4AD98325E7HYZE9PJX6JEA5");
  padding-left: 4rem;
}

.category-icon--mini {background-size: 30px 30px !important;padding-left: 2.75rem !important;}

.highlight-link {
  display: block;
  text-align: center;
}

.highlight-link img {
  width: 70%;
  height: auto;
}

.highlight-link:hover {
  opacity: 0.85;
}


/*--------------------------------------- Small category icons on category pages ---------------------------------------*/
.category-icon {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 2.75rem auto;
  /*padding-left: 3.5rem;*/
  padding-top:15px;
  padding-bottom:15px;
  background-size: 50px 50px;
}

.section .category-icon {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 2.75rem auto;
  padding-left: 4rem;
  padding-top:20px;
  padding-bottom:20px;
  background-size: 59px 50px;
}


/*--------------------------------------- Header styles ---------------------------------------*/
.header-nav-links {
  float: left;
}

.back-to-reverb {
  display: inline-block;
  line-height: 32px;
}

.help-center-logo {
  display: inline-block;
  vertical-align: bottom;
}

.help-center-logo a:hover {text-decoration:none;}

.help-center-label {
  display: flex;
  color: var(--rc-color-text-primary);
}

.help-center-logo a:hover, .help-center-logo:hover .help-center-label, .help-center-label:hover {
  color: var(--rc-color-text-secondary);
  text-decoration:none;
}

.reverb-logo {
  display: inline-block;
  vertical-align: bottom;
  width: 100px;
  height: 29px;
  mask: url("/hc/theming_assets/01K4AD95BAR9N164Z0ZKWE4SN2") 0 0 no-repeat;
  background-color: currentColor;
  
  @media screen and (max-width: 640px) {
    width: 2.8rem;
    height: 2.8rem;
    mask: url("/hc/theming_assets/01K4AD9833WPHYFTRKV7ZP0J3D");
  }
}

.header-link {
  display: inline-block;
  color: rgba(32, 32, 32, 1);
  padding-left: 30px;
  font-size: 18px;
  padding-top: 6px;
}

.header-link:hover {
  color: rgba(255, 98, 0, 1);
}

/*--------------------------------------- Submission "Success!" Confirmation ---------------------------------------*/
#submission-confirmation {margin:75px 0; text-align:center;}
@media screen and (max-width: 960px) {#submission-confirmation {margin:60px 0;}}
@media screen and (max-width: 640px) {#submission-confirmation {margin:50px 0;}}

#submission-confirmation .article-body {width:60%; margin-left:auto; margin-right:auto;}
@media screen and (max-width: 960px) {#submission-confirmation .article-body {width:80%;}}
@media screen and (max-width: 640px) {#submission-confirmation .article-body {width:90%;}}

#submission-confirmation img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------- Need more help section ---------------------------------------*/
.need-help-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.need-help-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.need-help-items-wrap {
  display: flex;
}

.need-help-item {
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
}


/*--------------------------------------- Reverb footer ---------------------------------------*/
.footer-wrapper {
  color: var(--rc-color-palette-bw-white);
  background: var(--rc-color-palette-bw-black);
  font-size: var(--rc-font-size-350);
  margin-top: var(--rc-space-4);
  border-top: 2px solid var(--rc-color-border-primary);
}

.footer-wrapper ul li {
  line-height: 24px;
}

.footer-wrapper .link-on-dark-bg a {
  color: #ffffff;
}

.footer {
  height: 150px;
  padding: 40px 0;
}

.footer h4, .footer p {margin:0;}

.reverb-footer-logo {
  margin-bottom: 2em;
}

.sub-footer {
  padding: var(--rc-space-16) 0;
}

.sub-footer .social-links li {
  margin-left: 0.2rem;
}

.sub-footer .social-links li:first-child {
  margin-left: 0;
}

.sub-footer .social-links li a, .footer .social-links li a {
  display: inline-block;
  padding: var(--rc-space-2);
  color: var(--rc-color-palette-bw-white);
  font-size: var(--rc-font-size-600);
}

.sub-footer .social-links li a:hover {
  color: #ffffff;
}

@media screen and (min-width: 720px) {
  .footer-wrapper .link-on-dark-bg a:hover {
    color: #F1F1EB;
  }
}

.footer-wrapper .heading-4 {
  color: #ffffff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}

.policy-links li {
  padding-right: 10px;
  color: #ffffff;
  font-size: 12px;
}

/*--------------------------------------- Footer - Mobile ---------------------------------------*/
@media screen and (max-width: 720px) {
  .footer {
    min-height: 440px;
  }
  
  .sub-footer {
    height: 55px;
    text-align: center;
  }
  
  .mobile-align-center {
    text-align: center;
  }
  
  .mobile-mb-3 {
    margin-bottom: 3rem;
  }
  
  .need-help-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .footer, .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------- Custom Submit Request ---------------------------------------*/
input {
  border-radius: 4px;
}

.form-field label {
  font-size: 100%;
}

.submit-request-form {
  max-width: 620px;
  margin-bottom: 6rem;
}

#request_description + p {
  display: none;
}

label[for="request_description"] {
  margin-top: 1em;
}

.new-request-icon {
  width: 100px;
  height: 100px;
  margin: 2rem auto;
  background-repeat: no-repeat;
  background-position: center;
}

#new_request input[type="submit"] {
  background-color: rgba(255, 98, 0, 1);
  font-weight: 700;
  padding: 9px;
}

#new_request input[type="submit"]:hover {
  opacity: 0.85;
}

.form-field.required > label:after {
  color: #414141;
}

/*--------------------------------------- Custom Inputs ---------------------------------------*/
form .nesty-input {
  border-radius: 4px;
  padding: 0 5px;
  background: linear-gradient(to bottom, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  line-height: 34px;
  height: initial;
  
}

/*--------------------------------------- Utility Classes ---------------------------------------*/
.centered {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.ptb-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-1-pb-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.unmargined {
  margin: 0 !important;
}

.unpadded {
  padding: 0;
}

.more-questions {
  margin-bottom: -15px;
}

.submit-help-request {
  margin-bottom: 5px;
}

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

.font-bold {
  font-weight: 700;
}

.font-blue {
  color: #0080a5;
}

.inline-list > li {
  display: inline-block;
}

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

.halfmargined-right {
  margin-right: 9px;
}

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

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

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

.strong {
  font-weight: 700;
}

@media screen and (min-width: 641px)
  .img-hoverable:hover {
    opacity: 0.85;
  }
}


/*--------------------------------------- Custom Grid ---------------------------------------*/
.fluid-row:before {
  content: '';
  display: table;
}

.fluid-row:after {
  clear: both;
}

[class^="col-"] {
  *zoom: 1;
  float: left;
  clear: none;
  margin-left: 0%;
  margin-right: 3%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class^="col-"] {
  *zoom: 1;
  float: left;
  clear: none;
  margin-left: 0%;
  margin-right: 3%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

div[class^="col-"]:last-child {
  margin-right: 0%;
}

.col-1 {
  width: 5.58333%;
}

.col-2 {
  width: 14.16667%;
}

.col-3 {
  width: 22.75%;
}

.col-4 {
  width: 31.33333%;
}

.col-5 {
  width: 39.91667%;
}

.col-6 {
  width: 48.5%;
}

.col-7 {
  width: 57.08333%;
}

.col-8 {
  width: 65.66667%;
}

.col-9 {
  width: 74.25%;
}

.col-10 {
  width: 82.83333%;
}

.col-11 {
  width: 91.41667%;
}

div[class^="col-"]:before, div[class^="col-"]:after {
  content: '';
  display: table;
}

div[class^="col-"]:after {
  clear: both;
}

@media screen and (max-width: 720px) {
  .fluid-row.stack-mobile [class^="col-"] {
    width: 100%;
  }
}


/*--------------------------------------- Main Mobile Styles ---------------------------------------*/
@media screen and (max-width: 960px) {
  .main-column {
    max-width: 100%;
  }
  
  .article-sidebar {
    display: none;
  }
}

@media screen and (max-width: 720px) {
  .hero-unit {
    padding: 50px 0;
    /*margin-top: 90px;*/
  }
  
  .section-content ul li {
    width: 46%;
    margin: 0 5px 10px;
  }
  
  .featured-category a {
    width: 47%;
  }
  
  .section-tree {
    margin-right: 0;
  }

  .category-empty, .section {
    display: block;
    padding: 0 0 50px 0;
    vertical-align: top;
    width: 100%;
  }
  
  .footer-help-items-wrap {
    margin-right: 0;
  }

  .footer-help-item {
    float: left;
    width: 100%;
    margin-right: 0;
    padding: 1rem 0;
  }
  
  .hidden-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .back-to-reverb {
    display: block;
    margin-bottom: 15px;
    line-height:inherit;
  }
  
  .help-center-logo {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  
  .need-help-items-wrap {
    display: block;
  }
  
  .user-nav {
    float: none;
  }
  
  .user-nav > * {
    line-height: inherit;
  }
  
  .user-nav .dropdown {
    padding: var(--rc-space-1) 0;
  }
}

@media screen and (max-width: 320px) {
  .featured-category a {
    width: 100%;
  }
  
  .back-to-reverb {
    margin-bottom: 15px;
   
  }
  
  .user-nav {
    text-align: left;
  }
  
  .user-nav .dropdown {
    padding-left: 0.5em;
  }
}

/*--------------------------------------- hc box ---------------------------------------*/

.hc-box {
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.hc-box p {
  margin-bottom: 0;
}

.hc-box p + p {
  margin-top: var(--rc-space-2);
}

.hc-box a.button {
  margin-top: 0;
}

.hc-box ul, .hc-box ol {
  margin-bottom: 0;
  margin-top: 0;
}

.hc-box.hc-box--blue {
  background: var(--rc-color-background-alert-info);
  border: 1px solid var(--rc-color-border-alert-info);
}

.hc-box.hc-box--green {
  background: var(--rc-color-background-alert-success);
  border: 1px solid var(--rc-color-border-alert-success);
}

.hc-box.hc-box--orange {
  background: var(--rc-color-background-alert-highlight);
  border: 1px solid var(--rc-color-border-alert-highlight);
}

.hc-box.hc-box--gray {
  background: var(--rc-color-background-alert-plain);
  border: 1px solid var(--rc-color-border-alert-plain);
}

.hc-box.hc-box--red {
  background: var(--rc-color-background-alert-error);
  border: 1px solid var(--rc-color-border-alert-error);
}

.hc-box.hc-box--yellow {
  background: var(--rc-color-background-alert-warning);
  border: 1px solid var(--rc-color-border-alert-warning);
}

.hc-box.hc-box--icon {
  padding-left: var(--rc-space-14);
}

.hc-box.hc-box--icon::before {
  font-size: var(--rc-font-size-600);
  position: absolute;
  top: var(--rc-space-4);
  left: var(--rc-space-5);
}

.hc-box.hc-box--blue.hc-box--icon::before {
  font-family: 'Phosphor';
  content: '\e2ce'; 
}

.hc-box.hc-box--green.hc-box--icon::before {
  font-family: 'Phosphor';
  content: '\e3d6'; 
}

.hc-box.hc-box--orange.hc-box--icon::before {
  content: url("/hc/theming_assets/01K4AD98JRSEVW3E2SXHG5BRDH");
  top: var(--rc-space-6);
}

.hc-box.hc-box--gray.hc-box--icon::before {
  font-family: 'Phosphor';
  content: '\e2dc'; 
}

.hc-box.hc-box--red.hc-box--icon::before {
  font-family: 'Phosphor';
  content: '\e4e0';  
}

.hc-box.hc-box--yellow.hc-box--icon::before {
  font-family: 'Phosphor';
  content: '\eb7a';  
}

.hc-box.hc-box--button {
  display: flex;
  align-items: center;
  gap: var(--rc-space-8);
}

@media screen and (max-width: 640px) {
  .hc-box.hc-box--button {
    display: block;
  }
  .hc-box.hc-box--button .button {
    margin-top: var(--rc-space-4);
  }
}

/*--------------------------------------- Quick Answer box ---------------------------------------*/
.quick-answer {
  background: var(--rc-color-background-alert-info);
  border: 1px solid var(--rc-color-border-alert-info);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6) var(--rc-space-6) var(--rc-space-6) var(--rc-space-14);
  position: relative;
}

.quick-answer:before {
  font-family: 'FontAwesome';
  content: '\f05a'; 
  font-size: var(--rc-font-size-600);
  position: absolute;
  top: var(--rc-space-4);
  left: var(--rc-space-5);
}

.quick-answer p, .quick-answer h3 {
  margin-bottom: var(--rc-space-2);
}

.quick-answer ul, .quick-answer ol {
  padding-left: var(--rc-space-10);
  margin-block-start: 0.5em;
  margin-block-end: 0.5em; 
}

.quick-answer > details {padding: 7px 0 0 45px;} .quick-answer > details > ul {padding-left: 5px;}

.quick-answer--no-icon {
  padding: var(--rc-space-6);
}

.quick-answer--no-icon p {
  margin-bottom: 0;
}

.quick-answer--no-icon:before {
  display: none;
}

.quick-answer--button {
  display: flex;
  align-items: center;
  gap: var(--rc-space-8);
}

@media screen and (max-width: 640px) {
  .quick-answer--button {
    display: block;
  }
  .quick-answer--button button {
    margin-top: var(--rc-space-4);
  }
}

/*--------------------------------------- Section alert box ---------------------------------------*/

.section-alert-box {
  background: var(--rc-color-background-alert-highlight);
  border: 1px solid var(--rc-color-border-alert-highlight);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6) var(--rc-space-6) var(--rc-space-6) var(--rc-space-14);
  max-width: 1100px;
  position: relative;
}

.section-alert-box:before {
  position: absolute;
  content: url("/hc/theming_assets/01K4AD98JRSEVW3E2SXHG5BRDH");
  top: var(--rc-space-8);
  left: var(--rc-space-4);
}

.section-alert-box p {
  margin-bottom: var(--rc-space-4);
}

.section-alert-box p {
  margin-block-start: 0em;
  margin-block-end: 0em;  
}

/*--------------------------------------- Blue box ---------------------------------------*/
.blue-box {
  background: var(--rc-color-background-alert-info);
  border: 1px solid var(--rc-color-border-alert-info);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.blue-box p, .blue-box h3 {
  margin-bottom: 0;
}

/*--------------------------------------- Green box ---------------------------------------*/
.green-box {
  background: var(--rc-color-background-alert-success);
  border: 1px solid var(--rc-color-border-alert-success);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.green-box p, .green-box h3 {
  margin-bottom: 0;
}

/*--------------------------------------- Grey box ---------------------------------------*/

.grey-box {
  background: var(--rc-color-background-alert-plain);
  border: 1px solid var(--rc-color-border-alert-plain);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.grey-box p, .grey-box h3 {
  margin-bottom: 0;
}

/*--------------------------------------- Red box ---------------------------------------*/
.red-box {
  background: var(--rc-color-background-alert-error);
  border: 1px solid var(--rc-color-border-alert-error);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.red-box p, .red-box h3 {
  margin-bottom: 0;
}

/*--------------------------------------- Yellow box ---------------------------------------*/

.yellow-box {
  background: var(--rc-color-background-alert-warning);
  border: 1px solid var(--rc-color-border-alert-warning);
  border-radius: var(--rc-border-radius-md);
  margin: var(--rc-space-6) 0;
  padding: var(--rc-space-6);
  position: relative;
}

.yellow-box p, .yellow-box h3 {
  margin-bottom: 0;
}

/*--------------------------------------- Table of Contents ---------------------------------------*/

.table-of-contents {
  margin: var(--rc-space-5) 0;
}

.table-of-contents ul {
  border-left: 6px solid var(--rc-color-border-primary);
  border-left-style: double;
  margin: 0.5em 12px 1.5em;
  padding: 0.1em 10px;
  font-weight: bold;
  list-style: none;
}

/*--------------------------------------- Additional-resources-hover ---------------------------------------*/

.additional-resources {
  color: var(--rc-color-text-primary);
  cursor: pointer;
  padding: var(--rc-space-3) var(--rc-space-6) var(--rc-space-3) var(--rc-space-14);
  margin: var(--rc-space-4) 0;
  border: 0.1rem solid var(--rc-color-border-primary);
  border-radius: var(--rc-border-radius-primary);
  background-color: var(--rc-color-background-module);
  box-shadow: 1px 1px 10px var(--rc-color-box-shadow-primary);
  position: relative;
}

.additional-resources:before {
  font-family: 'Phosphor';
  content: '\eb7a';
  font-size: var(--rc-font-size-600);
  position: absolute;
  top: var(--rc-space-4);
  left: var(--rc-space-5);
}

.additional-resources p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.additional-resources-article {
  font-weight: var(--rc-font-weight-bold);
  text-decoration: underline;
}

.additional-resources:hover {
  background: var(--rc-color-background-module-hovered);
}

.d-grid .additional-resources {
  margin: 0;
}

.add-article {
  color: var(--rc-color-text-primary);
  cursor: pointer;
  padding: var(--rc-space-3) var(--rc-space-6) var(--rc-space-3) var(--rc-space-14);
  margin: var(--rc-space-4) 0;
  border: 0.1rem solid var(--rc-color-border-primary);
  border-radius: var(--rc-border-radius-primary);
  background-color: var(--rc-color-background-module);
  box-shadow: 1px 1px 10px var(--rc-color-box-shadow-primary);
  position: relative;
}

.add-article:before {
  font-family: 'Phosphor';
  content: '\eb7a';
  font-size: var(--rc-font-size-600);
  position: absolute;
  top: var(--rc-space-4);
  left: var(--rc-space-5);
}

.add-article.add-article--plain {
  padding: var(--rc-space-12) var(--rc-space-6);
}

.add-article.add-article--plain:before {
  content: "";
}

.add-article.add-article--plain a {
  color: var(--rc-color-text-primary);
}

.add-article.add-article--plain a:hover {
  text-decoration: none;
}

.add-article p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.add-article p.add-article-title {
  font-weight: var(--rc-font-weight-bold);
  text-decoration: underline;
}

.add-article:hover {
  background: var(--rc-color-background-module-hovered);
}

.d-grid .add-article {
  margin: 0;
}

/*--------------------------------------- Region-specific content block ---------------------------------------*/

.region-box {
  color: var(--rc-color-text-secondary);
  font-size: var(--rc-font-size-400);
  margin: var(--rc-space-4) 0;
}

.region-box p, .region-box ul, .region-box ol {
  font-style: italic;
  position: relative;
  line-height: 1.3;
}

.region-box p span {font-size: 27px; vertical-align: middle;}

/*--------------------------------------- Tabs ---------------------------------------*/

.tabs-container {
	display: flex;
  flex: 1 0 100%;
  margin-left: calc(-1 * var(--rc-space-gutter-page));
  margin-right: calc(-1 * var(--rc-space-gutter-page));
  padding-left: var(--rc-space-gutter-page);
  padding-right: var(--rc-space-gutter-page);
  overflow: hidden;
  margin-bottom: var(--rc-space-10);
  border-bottom: 0.1rem solid var(--rc-color-border-primary);
  justify-content: center;
}

.tabs {
  display: flex;
  margin-left: calc(-1 * var(--rc-space-gutter-page));
  margin-right: calc(-1 * var(--rc-space-gutter-page));
  padding-left: var(--rc-space-gutter-page);
  padding-right: var(--rc-space-gutter-page);
  overflow-x: auto;
  
  @media screen and (max-width: 640px) {
    flex: 1;
  }
}

.tabs .tab {
  position: relative;
  padding: var(--rc-space-3) var(--rc-space-10); /*horizontal orientation*/
  font-weight: var(--rc-font-weight-bold);
  cursor: pointer;
  font-size: 18px;
  color: var(--rc-color-text-primary);
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 6px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  
  @media screen and (max-width: 640px) {
    padding: var(--rc-space-4) var(--rc-space-5);
    flex: 1;
  }
}

.tabs .tab:hover {
  border-color: var(--rc-color-border-selectable);
  color: var(--rc-color-text-secondary);
}

.tab.active,
.tab.active:hover {
  border-color: var(--rc-color-border-accent);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

ul.article-list {
  display: flex;
  flex-direction: column;
  height: 225px;
  justify-content: space-between;
}

@media (max-width: 700px) {ul.article-list {height: revert;}}

.blocks-list .article-list {
  margin: 0 5px 0 20px;
}

.blocks-list .article-list li:nth-child(3) ~ li {
  display: none;
}

.section-tree .section ul.article-list li:nth-child(n+4) {display:none;}
h4.category-subheader {margin-bottom:0;font-size:20px;font-weight:normal;}
.section-tree .see-all-articles {margin-bottom:20px;}

.blocks-item:empty {
  height: 0;
  border: none;
}

.blocks-list .article-item {
  line-height: 1.5;
  margin-bottom: 2px;
  text-decoration:none;
}


/*--------------------------------------- Blocks ---------------------------------------*/

/*--- Homepage #categories & Community #topics ---*/

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

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

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

.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  /*border: 1px solid red;*/
}

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

.blocks-item {
  box-sizing: border-box;
  display: flex;
  flex: 1 0 325px;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 0 30px;
  max-width: 100%;
}

.category-card .blocks-item:hover {
  transform: scale(1.01);
  transition-duration: 0.3s; 
}

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

.blocks-item-image {
  width: 170px;
  margin: 12% 24%;
}

.blocks-item-image:before {
  position: relative;
  content: url("/hc/theming_assets/01K4AD9468J809YTKWZPJJXDDK");
}

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

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

.blocks-item-internal a {
  color: #ccc;
}

.blocks-item-link {
  color: #ffffff;
  padding: 20px 30px;
}

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

.blocks-item-title, .section h3 a {
  display: block;
  width: 100%;
  text-align: left;
  font-weight:bold;
  color: rgba(32, 32, 32, 1);
}

.blocks-item-title {font-size: 18px;} .section h3 a {font-size: 24px;}


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

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

/*--------------------------------------- Wide band photo ---------------------------------------*/
.wide-band {
  width: 100%;
}

.wide-band--photo {
  background: url("/hc/theming_assets/01K4AD98KFY9CP4DG2STFPGZSC") no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-bottom: 50px;
  margin-bottom: -50px;
}

/*--------------------------------------- Article Sidebar ---------------------------------------*/
.article-sidebar {
  margin-top:45px;
  }

.article-sidebar ul.section-tree li {
  list-style-type:none;
  }

li.last {margin-bottom: 40px;}

/*--------------------------------------- HC Notification Banner ---------------------------------------*/
.ns-box {
  background: var(--rc-color-palette-tweed-orange-500);
  padding: var(--rc-space-4) 0;
  line-height: 1.4;
  z-index: 1000;
  pointer-events: none;
  color: var(--rc-color-text-primary-invert-dark);
  font-size: 100%;
  text-align: center;
  position: relative;
}

.ns-box.ns-show {
  pointer-events: auto;
}

.ns-box a {
  color: inherit;
  font-weight: 700;
}

.ns-box a:hover,
.ns-box a:focus {
  opacity: 1;
}

.ns-box p {
    margin: 0;
}

.ns-box.ns-show,
.ns-box.ns-visible {
  pointer-events: auto;
}

.ns-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ns-close:hover, 
.ns-close:focus {
  outline: none;
}

.ns-close::before,
.ns-close::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
  background: #ffffff;
}

.ns-close::before {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg);
}

.ns-close::after {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg);
}

.ns-box-inner i {
    color: #ffffff;
    font-size: 3.8em;
}

/* .megaphone:before { 
  content:'\1F4E3';
  font-family: "entypo";
  font-size: 1.8em;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2.9em;
  display: flex;
  justify-content: center;
  align-items: center; */
/*   
  @media only screen and (max-width: 720px) {
    content: '';
  } */
}

/*--- Top bar notifications ---*/
.ns-box.ns-bar {
  top: 0;
  left: 0;
  width: 100%;
}

.ns-bar .ns-close {
  background: transparent;
  margin-top: 15px;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ns-bar .ns-close::before,
.ns-bar .ns-close::after {
  background: #b7b5b3;
}

[class^="ns-effect-"].ns-bar.ns-hide,
[class*=" ns-effect-"].ns-bar.ns-hide {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

/*--- Slide on top ---*/

.ns-effect-slidetop .icon {
  position: absolute;
  display: block;
  font-size: 109%;
  top: 50%;
  left: 1em;
  -webkit-transform: translate3d(0,-20%,0);
  transform: translate3d(0,-20%,0);
}

.ns-effect-slidetop p {
  padding: 0 1em;
  font-size: 1.2em;
  display: inline-block;
}

.ns-effect-slidetop .ns-close::before,
.ns-effect-slidetop .ns-close::after {
  width: 2px;
  background: #ffffff;
}

.ns-effect-slidetop .ns-close:hover::before,
.ns-effect-slidetop .ns-close:hover::after {
  background: #ffffff;
}

.ns-effect-slidetop.ns-show .icon,
.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animScaleUp;
  animation-name: animScaleUp;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animFade;
  animation-name: animFade;
}

@-webkit-keyframes animScaleUp {
  0% { opacity: 0; -webkit-transform: translate3d(0,-50%,0) scale3d(0,0,1); }
  100% { opacity 1; -webkit-transform: translate3d(0,-50%,0) scale3d(1,1,1); }
}

@keyframes animScaleUp {
  0% { opacity: 0; -webkit-transform: translate3d(0,-50%,0) scale3d(0,0,1); transform: translate3d(0,-50%,0) scale3d(0,0,1); }
  100% { opacity 1; -webkit-transform: translate3d(0,-50%,0) scale3d(1,1,1); transform: translate3d(0,-50%,0) scale3d(1,1,1); }
}

.ns-effect-slidetop.ns-show,
.ns-effect-slidetop.ns-hide {
  -webkit-animation-name: animSlideTop;
  animation-name: animSlideTop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@-webkit-keyframes animSlideTop {
  0% { -webkit-transform: translate3d(0,-100%,0); }
  100% { -webkit-transform: translate3d(0,0,0); }
}alert-banner__content

@keyframes animSlideTop {
  0% { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
  100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

@media only screen and (max-width: 720px) {
  .ns-effect-slidetop {
    box-shadow: none;
  }
  
  .megaphone {
    display: none;
  }
  
  .ns-box {
    padding: 20px 2em 20px 10px;
    font-size: 80%;
  }
}

/*--------------------------------------- Article Hyperlink styling ---------------------------------------*/
.article-body a {
  color: var(--rc-color-text-textlink);
  text-decoration: underline;
}

.article-body a:hover {
  color: var(--rc-color-text-textlink-hovered);
}

a.button, a.rc-button {
  color: var(--text-color);
  text-decoration: none;
  margin-top: var(--rc-space-3);
  white-space: normal;
}

.hc-box--button a.button, a.rc-button {
  white-space: nowrap;
  min-width: 100px;
}

.article-body a.button:hover {
  color: var(--text-color);
  text-decoration: none;
}

/*--------------------------------------- Section List ---------------------------------------*/
.section-list {
  list-style-type: none;
  padding-left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

.section-list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 420px;
  flex: 1 0 420px;
  padding: 5px 0;
  max-width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-list-item:before {   
  font-family: 'FontAwesome';
  content: '\f111';
  margin:0 5px 0 -15px;
  color: #057bc4;
}

.section-list-item:before {   
  font-family: 'FontAwesome';
  content: '\f111';
  margin:0 10px 0 -15px;
  color: #ffc862;
}

/*--------------------------------------- Details Dropdowns ---------------------------------------*/
details > summary {
  padding: var(--rc-space-y-accordion) var(--rc-space-x-accordion);
  margin: var(--rc-space-2) 0;
  font-weight: bold;
  border-radius: var(--rc-border-radius-sm);
  cursor: pointer;
  font-size: var(--rc-font-size-450);
  letter-spacing: var(--rc-letter-spacing-heading);
  line-height: var(--rc-line-height-title);
  font-weight: bold;
  display: flex;
  gap: var(--rc-space-4);
  justify-content: space-between;
  align-items: center;
}

details > summary:after {
  display: inline-block;
  font-family: 'FontAwesome';
  content: '\f107';
  font-size: 2.4rem;
}

details[open] > summary:after {
  content: '\f106';
}

details > summary:hover {
  background-color: var(--rc-color-background-module-hovered);
}

details > p {
  padding: var(--rc-space-3);
  width: 100%;
  margin: 0;
  line-height: 1.6;
}

details > ul, details > ol {
  line-height: 1.9;
}

details {
  border-top: 0.1rem solid var(--rc-color-border-primary);
  border-bottom: 0.1rem solid var(--rc-color-border-primary);
  margin: var(--rc-space-6) 0;
}

details + details {
  border-top: none;
}

.multi-dropdown {
  margin: var(--rc-space-6) 0;
}

.multi-dropdown details {
  margin: 0;
}


/*--- Greyed out details summary ---*/
.grey > summary {
  background-color: #808080;
}

/*--------------------------------------- Accordions ---------------------------------------*/
.accordion {
  background-color: #f9f9f9;
  font-size: 18px;
  color: #141414;
  display: block;
  cursor: pointer;
  padding: 18px;
  text-indent: 10px;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  white-space: normal;
  line-height: 1.3;
}

.accordion:before {
  font-family: 'FontAwesome';
  content: '\f054';
  margin:0 10px 0 -15px;
  color: rgba(255, 98, 0, 1);
}


.sub-accordion .accordion {
  font-size: 16px;
  color: #ffffff;
  background-color: #0a3636;
  display: block;
  cursor: pointer;
  padding: 18px;
  text-indent: 20px;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  border-radius: 50;
}

.sub-sub-accordion .accordion {
  background-color: #f9f9f9;
  font-size: 18px;
  color: #141414;
  display: block;
  cursor: pointer;
  padding: 18px;
  text-indent: 10px;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  white-space: normal;
  line-height: 1.3;
}


.accordion .title {
  display: inline-block;
}

.accordion .dropdown { 
  width: 4%; 
  float: right;
  margin-top: 15px;
}

@media screen and (max-width: 671px) {
  .accordion {font-size: 23px; margin-top: 15px;}
  .accordion .icon, .accordion .title {float: left;}
  .accordion .icon { width: 20%; }
	.accordion .title { width: 65%; white-space: normal; margin-top: 8px;}
  .accordion .dropdown { width: 10%; float: right;}
}

details .accordion {
  background-color: #f9f9f9;
  font-size: 18px;
  color: #141414;
  display: block;
  cursor: pointer;
  padding: 18px;
  text-indent: 10px;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  white-space: normal;
  line-height: 1.3;
}

details .accordion:before {
  font-family: 'FontAwesome';
  content: '\f054';
  margin:0 10px 0 -15px;
  color: rgba(255, 98, 0, 1);
}

.sub-accordion .accordion:before {
  font-family: 'FontAwesome';
  content: '\f078';
  margin:0 10px 0 -15px;
  color: #ffffff;
}

.sub-sub-accordion .accordion:before {
  font-family: 'FontAwesome';
  content: '\f078';
  margin:0 10px 0 -15px;
  color: #141414;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active-accordion, .accordion:hover {
  color: rgba(255, 98, 0, 1);
}

/* Accordion Panels */
.panel {
  padding: 10px 0px 10px 10px;
  background-color: #ffffff;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel ul, .panel p, .panel ol {
  font-size: 16px;
  line-height: 1.4;
}

.panel li {
  margin: 10px;
}

.panel a {
	color: rgba(66, 84, 245, 1);
}

details .panel {
  padding: 10px 0px 10px 10px;
  background-color: #ffffff;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

details .panel ul {
  padding: 5px;
}

.markdown .steps-ui {
  --line-color: var(--rc-color-text-primary);
  --bg-color: var(--rc-color-background-page);
  --circle-size: 20px;
  --line-width: 3px;
  --left-padding: 12px;
  --gap: 24px;
  --label-font-size: 18px;
  --label-line-height: 1.2;

  list-style: none;
  padding-left: calc(var(--circle-size) + var(--left-padding));
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.steps-ui::before {
  content: "";
  display: block;
  background-color: var(--line-color);
  width: 3px;
  height: 100%;
  position: absolute;
  left: calc((var(--circle-size) / 2) - (var(--line-width) / 2));
  border-radius: var(--line-width);
}

.steps-ui li,
.steps-ui__span {
  display: block;
  position: relative;
  min-height: var(--circle-size);
  margin-bottom: var(--gap);
}

.steps-ui li:last-child {
  margin-bottom: 0;
}

.markdown .steps-ui__step::after {
  box-sizing: border-box;
  content: "";
  display: block;
  width: var(--circle-size);
  height: var(--circle-size);
  border: solid var(--line-width) var(--line-color);
  border-radius: 50%;
  background-color: var(--bg-color);
  position: absolute;
  /*   top: calc(50% - (var(--circle-size) / 2); */
  top: 0;
  left: calc((var(--circle-size) + var(--left-padding)) * -1);
}

.steps-ui__step:first-child::before,
.steps-ui__step:last-child::before {
  content: "";
  display: block;
  width: var(--circle-size);
  height: 1000px;
  background-color: var(--bg-color);
  position: absolute;

  left: calc((var(--circle-size) + var(--left-padding)) * -1);
}

.steps-ui__step:first-child::before {
  bottom: calc(100% - var(--circle-size));
}

.steps-ui__step:last-child::before {
  top: 0;
}

.steps-ui__label {
  display: block;
  font-weight: bold;
  line-height: var(--circle-size);
  line-height: calc(20/16);
}

.steps-ui__desc {
  display: block;
  font-size: 14px;
  color: var(--rc-color-text-secondary);
  margin: 4px 0 0;
}

section.content-tags {
  display: inline;
}

section.content-tags p{
  font-weight: bold;
  padding-bottom: 7px;
}

ul.content-tag-list li{
  display: inline;
}

ul.content-tag-list li a{
  text-decoration: none;
  color: #202020;
  background-color: #ececec;
  border-radius: 10rem;
  padding: 8px;
  margin-right: 6px;
}

.additional-article {
  padding: 0.5em;
  width: fit-content;
}

.additional-article:hover {
  cursor: pointer;
  border: solid #ececec;
  box-shadow: #ececec 0px 1px 8px 0px;
  border-radius: 10px;
  transition-duration: 0.1s; 
}

.additional-article p {
  margin-block-start: 0;
  margin-block-end: 0;
}

/*--------------------------------------- Header icon left w/ text to right ---------------------------------------*/
 .header-icon  div {
  display: inline-block;
  }

.header-icon img {
    display: inline-block;
    vertical-align: middle;
  float : left;
    margin-right: 15px;
  position:relative;
margin-left: -100px;
}

.header-icon p {
  vertical-align: middle;
  display: flex;
  font-size: 24px;
  font-weight: bold;
   line-height: 0;
  }
  
  .header-icon span {
    vertical-align: middle;
    display: inline-block;
  }
  
.header-icon-text div {
  align-items: center;
  display: inline-block;
   line-height: 0;
  }

/* Stuff from cam */
.article-width {
  max-width: 1000px;
}

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

.grid-col-span-1 {
  grid-column: span 1/span 1;
}

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

.grid-col-span-2 {
  grid-column: span 2/span 2;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-col-span-3 {
  grid-column: span 3/span 3;
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-col-span-4 {
  grid-column: span 4/span 4;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-row-span-1 {
  grid-row: span 1/span 1;
}

@media screen and (max-width: 760px) {
  .mobile-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .mobile-grid-col-span-1 {
    grid-column: span 1/span 1;
  }
  .mobile-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-grid-col-span-2 {
    grid-column: span 2/span 2;
  }
  .mobile-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mobile-grid-col-span-3 {
    grid-column: span 3/span 3;
  }
  .mobile-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .mobile-grid-col-span-4 {
    grid-column: span 4/span 4;
  }
  .mobile-grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .mobile-grid-row-span-1 {
    grid-row: span 1/span 1;
  }
}

.d-grid {
  display: grid;
}

.gap-0 {
  gap: 0;
}

.gap-2 {
  gap: 20px;
}

.gap-4 {
  gap: 40px;
}

.gap-8 {
  gap: 80px;
}

.gap-half {
  gap: half;
}

@media screen and (max-width: 960px) {
  .tablet-gap-0 {
    gap: 0;
  }
  .tablet-gap-2 {
    gap: 20px;
  }
  .tablet-gap-4 {
    gap: 40px;
  }
  .tablet-gap-8 {
    gap: 80px;
  }
  .tablet-gap-half {
    gap: half;
  }
}
@media screen and (max-width: 640px) {
  .mobile-gap-0 {
    gap: 0;
  }
  .mobile-gap-2 {
    gap: 20px;
  }
  .mobile-gap-4 {
    gap: 40px;
  }
  .mobile-gap-8 {
    gap: 80px;
  }
  .mobile-gap-half {
    gap: half;
  }
}

.nav-module {
  border-radius: var(--rc-border-radius-xl);
  background: var(--rc-color-background-module-muted);
  padding: 20px 40px;
  margin: 40px 0;
  line-height: 1.5;
}

.nav-module h3 {
  font-size: var(--rc-font-size-600);
  padding-bottom: var(--rc-space-4);
  padding-top: var(--rc-space-4);
  font-weight: var(--rc-font-weight-bold);
  letter-spacing: var(--rc-font-letter-spacing-heading);
}

.nav-module li + li{
  margin-top: 0.5em;
}

.nav-module a {
  color: var(--rc-color-text-textlink);
}



/* -------- Custom Components --------- */

.feature-card-group {
  display: flex;
  gap: var(--rc-space-gap-grid);
  
  @media screen and (max-width: 760px) {
    flex-direction: column;
  }
}

.feature-card {
  width: 100%;
  overflow: hidden;
/*   background-color: var(--rc-color-background-card); */
  border-radius: var(--rc-border-radius-xl) var(--rc-border-radius-xl) 0 0;
/*   transition: background-color 0.3s, box-shadow 0.3s; */
  padding-bottom: var(--rc-space-6);
}

.feature-card:hover {
/*   background-color: var(--rc-color-background-card-hovered);
  box-shadow: 0 0 var(--rc-space-gap-grid) var(--rc-color-box-shadow-primary); */
}

.feature-card__image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 20rem;
  
  @media screen and (max-width: 760px) {
    min-height: 10rem;
  }
}

/* .feature-card__link {
  text-decoration: none;
}

.feature-card__link:hover {
  text-decoration: none;
} */

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--rc-space-4);
  
  @media screen and (max-width: 760px) {
    gap: var(--rc-space-2);
  }
}

.feature-card__text h3 {
  color: currentColor;
  margin: 0;
}


.link-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--rc-space-6) var(--rc-space-7);
  display: flex;
  align-items: center;
  background-color: var(--rc-color-background-page);
  border-radius: var(--rc-border-radius-md);
  color: inherit;
}

.link-box:hover span.fa {
  text-decoration: none;
}

.link-box--secondary {
  border: 0.1rem solid var(--rc-color-border-accent);
}

/* h3 overrides */

.link-box h3 {
  color: inherit;
  margin: 0;
  flex: 1;
}

.section-article-list .link-box, .category-article-list .link-box {
  padding: var(--rc-space-0);
}

/* Tabbed sections within articles */
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: var(--rc-space-3);
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: bold;
  color: var(--rc-color-text-primary-disabled);
  font-size: var(--rc-font-size-400);
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
}

.tabset > input:checked + label::after {
  background: var(--rc-color-text-primary);
}

.tabset > label {
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

input:focus-visible + label {
  outline: 2px solid var(--rc-color-text-on-neutral-medium);
  border-radius: 3px;
}

.tabset > input:checked + label,
.tabset > input:focus + label {
  background-color: transparent;
  color: var(--rc-color-text-primary); 
  border-radius: var(--rc-border-radius-sm);
}

.tabset > label:hover,
.tabset > input:checked + label:hover {
  background-color: var(--rc-color-background-overlay-hovered);
  border-radius: var(--rc-border-radius-sm);
}

.tab-panel {
  padding: 0.4rem 0;
  border-top: 1px solid var(--rc-color-background-box-gray-muted);
}

/* ===== Zendesk WYSIWYG Table – Mobile Stack ===== */
@media (max-width: 768px) {
  .wysiwyg-table table,
  .wysiwyg-table tbody,
  .wysiwyg-table tr,
  .wysiwyg-table td {
    display: block;
    width: 100%;
  }

  /* Hide the header row */
  .wysiwyg-table tr:first-child {
    display: none;
  }

  .wysiwyg-table tr {
    margin-bottom: 1.25rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 0.75rem;
    background: #ffffff;
  }

  .wysiwyg-table td {
    border: none !important;
    padding: 0.5rem 0;
  }

@media (max-width: 768px) {
  .wysiwyg-table td {
    position: relative;
  }

  .wysiwyg-table td::before {
    content: attr(data-label);
    background-color: #141414;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    display: block;
    border-radius: 3px;
  }

  .mobile-header-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.25rem;
    z-index: 2;
  }

  .wysiwyg-table td {
    padding-top: 0;
  }
}