/***** CSS Variables *****/
:root {
  /* ######## V1 Design System ######## */
  /* Primary Colors */
  --heard-color-green: rgba(34, 103, 82, 1);
  --heard-color-white: rgba(255, 255, 255, 1);
  --heard-color-white50: rgba(255, 255, 255, 0.5);
  
  /* Secondary Colors */
  --heard-color-black: rgba(29, 29, 29, 1);
  --heard-color-black10: rgba(29, 29, 29, 0.1);
  --heard-color-black20: rgba(29, 29, 29, 0.2);
  --heard-color-forest: rgba(55, 73, 65, 1);
  --heard-color-forest10: rgba(55, 73, 65, 0.1);
  --heard-color-stone: rgba(242, 242, 239, 1);
  --heard-colors-neutral-25: rgba(242, 242, 239, 0.4);
  --heard-color-natural: rgba(252, 248, 242, 1);
  
  /* Tertiary Colors */
  --heard-color-moss: rgba(203, 213, 202, 1);
  --heard-color-moss80: rgba(203, 213, 202, 0.8);
  --heard-color-aloe: rgba(232, 240, 234, 1);
  --heard-color-pumice: rgba(189, 199, 190, 1);
  --heard-color-sunrise: rgba(250, 227, 195, 1);
  --heard-color-blush: rgba(240, 231, 213, 1);
  --heard-color-blush40: rgba(240, 231, 213, 0.4);
  --heard-color-oak: rgba(101, 106, 71, 1);
  --heard-color-bg-level1: rgba(249, 248, 245, 1);
  
  /* Gray Scale */
  --heard-color-charcoal-gray: rgba(64, 64, 61, 1);
  --heard-color-secondary-gray: rgba(104, 104, 100, 1);
  --heard-color-dark-gray: rgba(111, 111, 107, 1);
  --heard-color-medium-gray: rgba(144, 144, 141, 1);
  --heard-color-gray: rgba(201, 201, 197, 1);
  --heard-color-light-gray: rgba(225, 225, 221, 1);
  
  /* Accent Colors */
  --heard-color-blue: rgba(77, 108, 163, 1);
  --heard-color-navy: rgba(92, 95, 157, 1);
  --heard-color-purple: rgba(118, 76, 137, 1);
  --heard-color-red: rgba(185, 80, 66, 1);
  --heard-color-magenta: rgba(181, 71, 117, 1);
  --heard-color-orange: rgba(172, 89, 12, 1);
  --heard-color-yellow: rgba(147, 109, 13, 1);
  --heard-color-bright-green: rgba(69, 118, 52, 1);
  --heard-color-teal: rgba(47, 125, 125, 1);
  
  /* Light Accent Colors */
  --heard-color-light-blue: rgba(243, 246, 255, 1);
  --heard-color-light-navy: rgba(240, 238, 255, 1);
  --heard-color-light-purple: rgba(248, 242, 255, 1);
  --heard-color-light-red: rgba(255, 243, 243, 1);
  --heard-color-light-magenta: rgba(255, 243, 246, 1);
  --heard-color-light-orange: rgba(251, 243, 234, 1);
  --heard-color-light-yellow: rgba(255, 250, 234, 1);
  --heard-color-light-green: rgba(241, 254, 245, 1);
  --heard-color-light-teal: rgba(240, 254, 255, 1);

  /* ######## V2 Design System ######## */
  /* ########## Values ########## */
  /* Spacing */
  --heard-spacing-none: 0px;
  --heard-spacing-3xs: 2px;
  --heard-spacing-2xs: 4px;
  --heard-spacing-xs: 8px;
  --heard-spacing-sm: 12px;
  --heard-spacing-md: 16px;
  --heard-spacing-lg: 24px;
  --heard-spacing-xl: 32px;
  --heard-spacing-2xl: 40px;
  --heard-spacing-3xl: 48px;
  --heard-spacing-4xl: 56px;
  --heard-spacing-5xl: 64px;
  --heard-spacing-6xl: 72px;

  /* Padding */
  --heard-padding-xs: var(--heard-spacing-xs);
  --heard-padding-sm: var(--heard-spacing-md);
  --heard-padding-md: var(--heard-spacing-lg);
  --heard-padding-lg: var(--heard-spacing-2xl);
  --heard-padding-xl: var(--heard-spacing-4xl);

  /* Corner Radii */
  --heard-corner-card-md: var(--heard-spacing-lg);
  --heard-corner-component-sm: var(--heard-spacing-md);
  --heard-corner-component-xs: var(--heard-spacing-xs);
  --heard-corner-component-frame: var(--heard-spacing-2xl);

  /* Breakpoints */

  /* ########## Colors ########## */
  /* Background */
  --heard-colors-app-bg: rgba(252, 248, 242, 1);
  --heard-colors-card-bg: rgba(251, 247, 246, 1);

  /* Neutral */
  --heard-colors-neutral-0: rgba(255, 255, 255, 1);
  --heard-colors-neutral-25: rgba(249, 248, 245, 1);
  --heard-colors-neutral-50: rgba(240, 238, 234, 1);
  --heard-colors-neutral-100: rgba(229, 228, 224, 1);
  --heard-colors-neutral-200: rgba(213, 212, 210, 1);
  --heard-colors-neutral-300: rgba(185, 184, 183, 1);
  --heard-colors-neutral-400: rgba(152, 151, 150, 1);
  --heard-colors-neutral-500: rgba(110, 110, 109, 1);
  --heard-colors-neutral-600: rgba(79, 79, 79, 1);
  --heard-colors-neutral-700: rgba(53, 53, 52, 1);
  --heard-colors-neutral-800: rgba(37, 37, 37, 1);
  --heard-colors-neutral-900: rgba(18, 18, 18, 1);

  /* Green (Brand) */
  --heard-colors-green-0: rgba(240, 249, 245, 1);
  --heard-colors-green-25: rgba(198, 231, 215, 1);
  --heard-colors-green-50: rgba(88, 175, 142, 1);
  --heard-colors-green-100: rgba(33, 103, 82, 1);
  --heard-colors-green-200: rgba(26, 75, 60, 1);
  --heard-colors-green-300: rgba(15, 48, 40, 1);

  /* Orange (Priority) */
  --heard-colors-orange-0: rgba(254, 246, 238, 1);
  --heard-colors-orange-25: rgba(253, 234, 215, 1);
  --heard-colors-orange-50: rgba(247, 180, 126, 1);
  --heard-colors-orange-100: rgba(230, 138, 81, 1);
  --heard-colors-orange-200: rgba(178, 94, 52, 1);
  --heard-colors-orange-300: rgba(120, 57, 43, 1);

  /* Secondary/Moss */
  --heard-colors-moss-0: rgba(244, 249, 244, 1);
  --heard-colors-moss-25: rgba(232, 239, 230, 1);
  --heard-colors-moss-50: rgba(199, 210, 198, 1);
  --heard-colors-moss-100: rgba(139, 159, 137, 1);
  --heard-colors-moss-200: rgba(80, 99, 79, 1);
  --heard-colors-moss-300: rgba(47, 56, 47, 1);

  /* Secondary/Red (Danger) */
  --heard-colors-red-0: rgba(255, 240, 243, 1);
  --heard-colors-red-25: rgba(250, 219, 225, 1);
  --heard-colors-red-50: rgba(237, 130, 150, 1);
  --heard-colors-red-100: rgba(223, 28, 65, 1);
  --heard-colors-red-200: rgba(179, 15, 46, 1);
  --heard-colors-red-300: rgba(113, 14, 33, 1);

  /* Secondary/Yellow (Warning) */
  --heard-colors-yellow-0: rgba(254, 250, 236, 1);
  --heard-colors-yellow-25: rgba(252, 241, 202, 1);
  --heard-colors-yellow-50: rgba(239, 209, 103, 1);
  --heard-colors-yellow-100: rgba(240, 181, 47, 1);
  --heard-colors-yellow-200: rgba(161, 114, 12, 1);
  --heard-colors-yellow-300: rgba(105, 74, 9, 1);

  /* Secondary/Purple */
  --heard-colors-purple-0: rgba(249, 240, 250, 1);
  --heard-colors-purple-25: rgba(234, 217, 237, 1);
  --heard-colors-purple-50: rgba(182, 134, 190, 1);
  --heard-colors-purple-100: rgba(115, 60, 124, 1);
  --heard-colors-purple-200: rgba(87, 38, 95, 1);
  --heard-colors-purple-300: rgba(63, 29, 68, 1);

  /* Secondary/Blue */
  --heard-colors-blue-0: rgba(232, 245, 248, 1);
  --heard-colors-blue-25: rgba(201, 231, 238, 1);
  --heard-colors-blue-50: rgba(141, 198, 210, 1);
  --heard-colors-blue-100: rgba(50, 119, 133, 1);
  --heard-colors-blue-200: rgba(38, 85, 95, 1);
  --heard-colors-blue-300: rgba(29, 62, 68, 1);

  /* Secondary/Pink */
  --heard-colors-pink-0: rgba(251, 239, 245, 1);
  --heard-colors-pink-25: rgba(243, 216, 229, 1);
  --heard-colors-pink-50: rgba(209, 116, 162, 1);
  --heard-colors-pink-100: rgba(153, 52, 103, 1);
  --heard-colors-pink-200: rgba(117, 47, 82, 1);
  --heard-colors-pink-300: rgba(68, 29, 48, 1);

  /* Secondary/Data */
  --heard-colors-data-yellow: rgba(255, 199, 0, 1);
  --heard-colors-data-darkgreen: rgba(55, 73, 65, 1);
  --heard-colors-data-green: rgba(34, 104, 82, 1);
  --heard-colors-data-lime: rgba(173, 215, 74, 1);
  --heard-colors-data-blue: rgba(141, 198, 210, 1);
  --heard-colors-data-purple: rgba(137, 103, 180, 1);
  --heard-colors-data-olive: rgba(101, 106, 71, 1);
  --heard-colors-data-gold: rgba(237, 153, 7, 1);
}

/***** Forethought *****/
/****** CTA/widget styling ******/
.forethought-banner {
  border: none;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .forethought-banner {
    flex-direction: column;
  }
}

body:not(.forethought-enabled) .forethought-banner, body:not(.forethought-enabled) .forethought-mobile-nav-item, body:not(.forethought-enabled) iframe#forethought-chat {
  display: none;
}

.forethought-banner.results {
  background-color: var(--heard-colors-app-bg);
  margin-bottom: 24px;
}

.forethought-banner.new-request {
  background-color: var(--heard-colors-moss-0);
  margin: 24px 0px;
  max-width: 800px;
}

.forethought-banner .forethought-teaser {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.forethought-banner .forethought-teaser h2 {
  margin: var(--heard-spacing-none, 0px);
  color: var(--heard-color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}

/****** Navbar buttons styling ******/
body:not(.forethought-enabled) ul.user-nav-list li.forethought-list-item {
  display: none;
}

body.forethought-enabled ul.user-nav-list li.forethought-list-item {
  display: flex;
}

ul.user-nav-list li.forethought-list-item {
  margin-right: 16px;
}

ul.user-nav-list li.forethought-list-item a.forethought-button {
  background-color: var(--heard-colors-green-25);
  border: none;
  color: var(--heard-color-green);
  line-height: 40px;
  padding: 0px 16px;
}

ul.user-nav-list li.forethought-list-item a.forethought-button i {
  margin-right: 2px;
}

/***** Toasts/Notifications *****/
/* Zendesk obfuscates classnames for toasts so these are being enabled via some additional JS in script.js that detects the toasts and adds clear classes */

.notification-ticket-submitted, .notification-ticket-updated {
  border: none !important;
  background-color: rgba(241, 254, 245, 1) !important;
  border-radius: 8px !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 16px !important;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.notification-ticket-submitted::before, .notification-ticket-updated::before {
  content: "\f00c";
  font-size: 20px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  word-wrap: break-word;
  color: var(--heard-color-bright-green);
}

.notification-ticket-submitted > strong, .notification-ticket-updated > strong {
  color: #40403D !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 24.80px;
}

/***** Webfonts *****/
/****** P22 Mackinac ******/
@font-face {
  font-display: swap;
  font-family: 'P22 Mackinac Pro';
  font-style: normal;
  font-weight: 350;
  src: url('/hc/theming_assets/01JXZNAV3MP00JPN92YR9MC536') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'P22 Mackinac Pro';
  font-style: italic;
  font-weight: 350;
  src: url('/hc/theming_assets/01JXZNATXJ1PHY2P26B2EP6BAJ') format('woff2');
}

/****** Werksatz ******/
@font-face {
  font-display: swap;
  font-family: 'Werksatz';
  font-style: normal;
  font-weight: 400;
  src: url('/hc/theming_assets/01J5RF5ZB60HNGVKJ7TBFQ9ZK7') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Werksatz';
  font-style: normal;
  font-weight: 500;
  src: url('/hc/theming_assets/01J5RF5ZAE6409XPW5ETPVVWJA') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Werksatz';
  font-style: normal;
  font-weight: 600;
  src: url('/hc/theming_assets/01J5RF5ZAV88BPZY74AVE7EJ2G') format('woff2');
}

/***** Custom Content Styles *****/

.heard-callout {
  border-radius: var(--heard-corner-component-xs);
  background-color: var(--heard-colors-neutral-25);
  padding: 16px;
  margin: var(--heard-spacing-none, 0px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.callout-message {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callout-title {
  color: var(--heard-color-black);
  font-family: "P22 Mackinac Pro", "Geist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word
}

.callout-body {
  color: var(--heard-color-charcoal-gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  word-wrap: break-word
}

.callout-body a {
  text-decoration: underline;
}

.heard-callout.callout-locked {
  background-color: var(--heard-color-light-red);
  /* border: 1px solid var(--heard-color-red); */
}

.heard-callout.callout-info::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 20px;
}

.heard-callout.callout-locked::before {
  color: var(--heard-color-red);
  content: "\f023";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 20px;
}

/***** Unsorted *****/

.article-body h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
}

.article-body h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

@charset "UTF-8";

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

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

a {
  background-color: transparent;
}

a {
  color: var(--heard-colors-neutral-900);
  font-weight: 500;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

body {
  background-color: var(--heard-color-white);
  color: var(--heard-color-charcoal-gray);
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 148%;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

body>main {
  flex: 1;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "P22 Mackinac Pro", "Geist", sans-serif;
  font-weight: 500;
  margin-top: 0;
}

h1 {
  font-size: 24px;
  line-height: 120%;
}

h2 {
  font-size: 20px;
  line-height: 120%;
}

h3 {
  font-size: 16px;
  line-height: 120%;
}

h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  line-height: 140%;
}

a {
  color: var(--heard-colors-neutral-900);
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: var(--heard-colors-green-100);
}

input,
textarea {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
}

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

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

input:not([type="checkbox"]):focus {
  border: 1px solid var(--heard-color-gray);
}

input[disabled] {
  background-color: var(--heard-color-medium-gray);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat var(--heard-color-white);
  background-position: right 10px center;
  border: 1px solid var(--heard-color-gray);
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid var(--heard-color-green);
}

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

textarea {
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid var(--heard-color-charcoal-gray);
}

.container {
  max-width: 1160px;
  margin: 24px auto 40px auto;
}

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

.container-divider {
  border-top: 1px solid var(--heard-color-light-gray);
  margin-bottom: 20px;
}

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

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

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

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

/***** Subheading Banners *****/
.sub-header-wrapper {
  background-color: var(--heard-color-natural);
  margin: var(--heard-spacing-none, 0px);
  padding: 24px 40px;
  width: 100%;
}

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

.sub-header .heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-header .heading h1 {
  margin: var(--heard-spacing-none, 0px);
  color: var(--heard-color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 28.8px */
}

.sub-header form {
  display: flex;
  gap: 8px;
}

/***** Buttons *****/
.button,
.split-button button,
.section-subscribe button,
.article-subscribe button,
.community-follow button,
.requests-table-toolbar .organization-subscribe button,
.subscriptions-subscribe button,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  background-color: transparent;
  border: 1px solid var(--heard-color-green);
  border-radius: 4px;
  color: var(--heard-color-green);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {

  .button,
  .split-button button,
  .section-subscribe button,
  .article-subscribe button,
  .community-follow button,
  .requests-table-toolbar .organization-subscribe button,
  .subscriptions-subscribe button,
  .pagination-next-link,
  .pagination-prev-link,
  .pagination-first-link,
  .pagination-last-link {
    width: auto;
  }
}

.button:hover,
.split-button button:hover,
.section-subscribe button:hover,
.article-subscribe button:hover,
.community-follow button:hover,
.requests-table-toolbar .organization-subscribe button:hover,
.subscriptions-subscribe button:hover,
.pagination-next-link:hover,
.pagination-prev-link:hover,
.pagination-first-link:hover,
.pagination-last-link:hover,
.button:active,
.split-button button:active,
.section-subscribe button:active,
.article-subscribe button:active,
.community-follow button:active,
.requests-table-toolbar .organization-subscribe button:active,
.subscriptions-subscribe button:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active,
.button:focus,
.split-button button:focus,
.section-subscribe button:focus,
.article-subscribe button:focus,
.community-follow button:focus,
.requests-table-toolbar .organization-subscribe button:focus,
.subscriptions-subscribe button:focus,
.pagination-next-link:focus,
.pagination-prev-link:focus,
.pagination-first-link:focus,
.pagination-last-link:focus,
.button.button-primary,
.split-button button.button-primary,
.section-subscribe button.button-primary,
.section-subscribe button[data-selected="true"],
.article-subscribe button.button-primary,
.article-subscribe button[data-selected="true"],
.community-follow button.button-primary,
.requests-table-toolbar .organization-subscribe button.button-primary,
.requests-table-toolbar .organization-subscribe button[data-selected="true"],
.subscriptions-subscribe button.button-primary,
.subscriptions-subscribe button[data-selected="true"],
.button-primary.pagination-next-link,
.button-primary.pagination-prev-link,
.button-primary.pagination-first-link,
.button-primary.pagination-last-link {
  background-color: var(--heard-color-green);
  color: var(--heard-color-white);
  text-decoration: none;
}

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

.button[data-disabled],
.split-button button[data-disabled],
.section-subscribe button[data-disabled],
.article-subscribe button[data-disabled],
.community-follow button[data-disabled],
.requests-table-toolbar .organization-subscribe button[data-disabled],
.subscriptions-subscribe button[data-disabled],
.pagination-next-link[data-disabled],
.pagination-prev-link[data-disabled],
.pagination-first-link[data-disabled],
.pagination-last-link[data-disabled] {
  cursor: default;
}

input[type="submit"] {
  cursor: pointer;
  background-color: var(--heard-color-green);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--heard-color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  border-radius: 8px;
  display: inline-flex;
  height: 48px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.button-large {
  cursor: pointer;
  background-color: var(--heard-color-green);
  border: 0;
  border-radius: 8px;
  color: var(--heard-color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  border-radius: 8px;
  display: inline-flex;
  height: 48px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.button-medium {
  border-radius: 8px;
  display: inline-flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

@media (min-width: 768px) {

  .button-large,
  input[type="submit"] {
    width: auto;
  }
}

.button-large:hover,
.button-large:active,
.button-large:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus {
  background-color: transparent;
  color: var(--heard-color-black);
  border: 1px solid var(--heard-color-black);
}

.button-large[disabled],
input[type="submit"][disabled] {
  border: 1px solid transparent;
  background-color: var(--heard-color-light-gray);
  color: var(--heard-color-medium-gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.button-large[disabled]:hover,
input[type="submit"][disabled]:hover {
  background-color: var(--heard-color-light-gray);
  color: var(--heard-color-medium-gray);
  border: 1px solid transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}


.button-secondary {
  color: var(--heard-color-black);
  border: 1px solid var(--heard-color-black);
  background-color: transparent;
  line-height: 14px;
  text-decoration: none;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  color: var(--heard-color-white);
  border: 1px solid transparent;
  background-color: var(--heard-color-green);
  opacity: 1;
}

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

.split-button button {
  background-color: var(--heard-color-green);
  border: 0;
  color: var(--heard-color-white);
  height: 32px;
  line-height: 16px;
  outline-color: var(--heard-color-green);
}

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

[dir="ltr"] .split-button button:not(:only-child):first-child {
  border-right: 1px solid var(--heard-color-white);
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}

[dir="rtl"] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

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

.table th,
.table th a {
  color: var(--heard-color-black);
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

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

.table tr {
  border-bottom: 1px solid var(--heard-color-light-gray);
  display: block;
  padding: 20px 0;
}

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

.table td {
  display: table-cell;
}

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

@media (min-width: 1024px) {

  .table td,
  .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {

  .table td,
  .table th {
    padding: 10px 20px;
    height: 60px;
  }
}
*/

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

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

.form-field label {
  color: var(--heard-color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
  display: block;
  margin-bottom: 8px;
}

.form-field input {
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid var(--heard-color-green);
}

.form-field input[type="text"] {
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 8px;
  padding: 12px 16px;
}

.form-field input[type="text"]:focus {
  border: 1px solid var(--heard-color-green);
}

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

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

.form-field .nesty-input:focus {
  border: 1px solid var(--heard-color-green);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid var(--heard-color-green);
  text-decoration: none;
}

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

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

.form-field .optional {
  color: var(--heard-color-charcoal-gray);
  margin-left: 4px;
}

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

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

.form footer a {
  color: var(--heard-color-charcoal-gray);
  cursor: pointer;
  margin-right: 15px;
}

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

.form .suggestion-list label {
  border-bottom: 1px solid var(--heard-color-light-gray);
  display: block;
  padding-bottom: 5px;
}

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

.form .suggestion-list li a:visited {
  color: var(--heard-colors-neutral-900);
  font-weight: 500;
}

/***** Header *****/
/****** Announcement Banner ******/
.banner-announcement {
  background-color: var(--heard-color-blush);
  padding: 16px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  display: none; /* Hide by default */
}

.banner-announcement.visible {
  display: flex; /* Show banner when visible */
}

.banner-announcement h2 {
  color: var(--heard-color-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.84px;
  word-wrap: break-word;
  margin: var(--heard-spacing-none, 0px);
}

.banner-announcement p {
  color: var(--heard-color-charcoal-gray);
  font-size: 13px;
  font-weight: 400;
  line-height: 24.80px;
  word-wrap: break-word;
  margin: var(--heard-spacing-none, 0px);
  flex-grow: 1;
}

.banner-announcement strong {
  color: var(--heard-color-green);
  font-weight: 500;
}

.banner-close {
  color: var(--heard-color-medium-gray);
  font-size: 20px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  word-wrap: break-word;
  cursor: pointer;
}

/****** Mobile ******/
@media (max-width: 600px) {
  .header .nav-wrapper .user-nav.desktop {
    display: none;
  }

  .nav-wrapper {
    justify-content: flex-end !important;
    gap: 8px !important;
    padding: 0px !important;
  }

  .nav-wrapper .menu-button {
    margin-right: 0px !important;
  }

  .dropdown-menu {
    left: unset !important;
    right: 0px !important;
  }
}

/****** Tablet (Portrait) ******/
@media (max-width: 900px) {
  .dropdown-menu {
    left: unset !important;
    right: 0px !important;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 800px) and (max-width: 1024px) {
  .container {
    padding: 40px !important;
  }
}

/****** Default ******/
.header .nav-wrapper .user-nav.mobile.hidden {
  display: none;
}

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

.header .nav-wrapper .user-nav.mobile {
  background: var(--heard-color-white);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  margin-top: 8px;
  min-width: 170px;
  padding: 10px 0;
}

.header .nav-wrapper .user-nav.mobile[aria-expanded="true"] {
  right: 0px;
  left: unset;
  top: 23px;
  z-index: 1;
}

.header .nav-wrapper .user-nav.mobile a {
  color: var(--heard-color-charcoal-gray);
  display: block;
  padding: 8px 40px 8px 20px;
}

.header .nav-wrapper .user-nav.mobile .user-nav-list {
  flex-direction: column;
}

.header-wrapper {
  width: 100%;
  background-color: var(--heard-colors-green-100);
}

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

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

.logo img {
  height: auto;
  vertical-align: middle;
  width: 100px;
}

.logo span {
  margin: 0 10px;
  color: var(--heard-color-green);
}

.logo a {
  display: inline-block;
}

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

.user-nav {
  display: inline-block;
  font-size: 14px;
  padding-left: 24px;
  position: absolute;
  white-space: nowrap;
}

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

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

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

.user-nav-list, ul.user-nav-list li {
  display: flex;
  align-items: center;
}

ul.user-nav-list li {
  align-items: center;
}

.user-nav.mobile .user-nav-list {
  align-items: flex-start;
}

.user-nav.mobile .user-nav-list, ul.user-nav-list li i.fa-regular {
  margin-right: 5px;
}

.nav-wrapper {
  display: flex;
  padding: 4px 8px;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  flex-direction: row;
  justify-content: space-between;
}

.nav-wrapper a {
  border: 0;
  color: var(--heard-color-white);
  font-size: 14px;
  padding: 0 20px 0 0;
  text-decoration: none;
  width: auto;
}

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

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover,
.nav-wrapper a:focus,
.nav-wrapper a:active,
.user-info.dropdown .dropdown-toggle:hover {
  background-color: transparent;
  opacity: 0.8;
}

.nav-wrapper a.sign-in {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper .hide-on-mobile {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
  }
}

.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: var(--heard-color-white50);
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
}

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

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

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

.nav-wrapper .menu-button:hover,
.nav-wrapper .menu-button:focus,
.nav-wrapper .menu-button:active {
  background-color: transparent;
  color: var(--heard-color-moss);
}

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

[dir="rtl"] .skip-navigation {
  left: initial;
  right: -999px;
}

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

[dir="rtl"] .skip-navigation:focus,
[dir="rtl"] .skip-navigation:active {
  left: initial;
  right: auto;
}

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

.user-info a:hover {
  cursor: pointer;
  opacity: 0.8;
  text-decoration: none;
}

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

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info>button {
  border: 0;
  color: var(--heard-color-white);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info>button:hover,
.user-info>button:focus {
  color: var(--heard-color-white);
  background-color: transparent;
}

.user-info>button::after {
  color: var(--heard-color-green);
  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;
  margin-right: 4px;
}

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

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

.avatar .icon-agent {
  color: var(--heard-color-green);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: var(--heard-color-white);
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
/****** Mobile ******/

@media (max-width: 600px) {
  .footer {
    padding: 40px 0px 16px 0px !important;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-left-column {
    align-items: center;
    margin-bottom: 24px;
  }

  .footer-block.flex-wrap {
    width: 50%;
    margin-bottom: 24px;
    text-align: center;
  }

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

/****** Default ******/
.footer {
  border-top: 1px solid var(--heard-color-light-gray);
  margin: var(--heard-spacing-none, 0px);
  padding: 40px 0px;
  background-color: var(--heard-colors-moss-200);
}

.footer a {
  color: var(--heard-color-white);
}

.footer-block.flex-grow-half {
  flex-grow: 0.5;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

.footer-inner .footer-block h4 {
  color: var(--heard-color-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0px 0px 8px 0px;
}

.footer-left-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-block .text-block,
.footer-block li a {
  color: var(--heard-color-moss);
  font-size: 12px;
  line-height: 12px;
}

.footer-block li {
  line-height: 12px;
  margin: 0px 0px 8px 0px;
}

.footer-block li:last-child {
  margin: var(--heard-spacing-none, 0px);
}

.footer-block .socials {
  display: flex;
  color: var(--heard-color-white);
  gap: 16px;
}

.footer-block .socials a {
  color: var(--heard-color-white);
  margin: var(--heard-spacing-none, 0px);
}

.footer-block .socials i.fab {
  font-size: 16px;
  line-height: 16px;
}

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

.footer-language-selector button {
  color: var(--heard-color-black);
  display: inline-block;
  font-weight: 300;
}

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

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

.breadcrumbs li {
  color: var(--heard-color-green);
  display: inline;
  font-weight: 500;
  font-size: 14px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li+li::before {
  content: ">";
  margin: 0 4px;
}

.breadcrumbs li a {
  text-decoration: none;
}

.breadcrumbs li a:visited {
  color: var(--heard-color-green);
  font-weight: 500;
}

/***** Search field *****/
/****** Autocomplete dropdown ******/
zd-autocomplete {
  border-radius: 8px;
}

zd-autocomplete-header {
  display: none;
}

zd-autocomplete-multibrand {
  border: none !important;
  padding: 16px;
}

zd-autocomplete-multibrand:hover {
  background-color: var(--heard-color-stone);
}

zd-autocomplete-multibrand:first-of-type {
  border-radius: 8px 8px 0px 0px !important;
}

zd-autocomplete-multibrand:last-of-type {
  border-radius: 0px 0px 8px 8px !important;
}

zd-autocomplete-title-multibrand {
  color: var(--heard-color-green) !important;
}

/****** Compact search ******/

a.search-dropdown {
  padding-right: 8px;
  cursor: pointer;
}

.search-slideout {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.125s ease-in-out, opacity 0.1s ease-in;
}

.search-slideout.open {
  transform: scaleX(1);
  opacity: 1;
}

.search-compact input[type="search"] {
  padding: 12px;
  border: none !important;
  border-radius: 8px;
}

.search-compact input[type="search"]:focus, .search-compact input[type="search"]:active {
  border: none !important;
}

/****** Primary search ******/
.search {
  position: relative;
}

.search:not(.search-compact) input[type="search"] {
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--heard-color-charcoal-gray);
  height: 48px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}

.hero-inner .search:not(.search-compact) input[type="search"] {
  border: 1px solid var(--heard-colors-moss-50);
}

.search input[type="search"]::placeholder {
  color: var(--heard-color-medium-gray);
}

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

.search input[type="search"]:focus {
  border: none;
  color: #555;
}

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

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--heard-color-medium-gray);
  line-height: 18px !important;
}

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

.search-container {
  position: relative;
}

/***** Hero component *****/
.hero {
  background-color: var(--heard-colors-moss-25);
  background-position: center;
  background-size: cover;
  height: 240px;
  padding: 0px 24px 24px 24px;
  text-align: center;
  width: 100%;
}

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

}

.hero-inner .hero-header {
  color: var(--heard-colors-green-100);
  font-weight: 500;
  font-size: 32px;
}

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

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

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  /*   font-style: italic; */
  font-weight: 300;
  font-size: 16px;
  margin: 0 0 30px 0;
  word-break: break-word;
}

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

.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

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

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

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

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

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--heard-spacing-lg);
  padding: 0px;
}

@media (min-width: 768px) {
  .blocks-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blocks-item {
  align-items: flex-start;
  background-color: var(--heard-color-white);
  border: none;
  border-radius: var(--heard-corner-card-md, 24px);
  box-shadow: 0px 4px 12px var(--heard-color-black10);
  color: var(--heard-color-black);
  display: flex;
  min-height: 125px;
  padding: var(--heard-padding-md, 24px);
  text-align: left;
}

.blocks-item:hover,
.blocks-item:focus,
.blocks-item:active {
  /* background-color: var(--heard-colors-neutral-25); */
  background-color: var(--heard-colors-neutral-25);
  box-shadow: 0px 4px 12px var(--heard-color-black20);
  transition: all .3s;
  border: none;
}

.blocks-item:hover *,
.blocks-item:focus *,
.blocks-item:active * {
  /*   color: var(--heard-color-white); */
  border: none;
  text-decoration: none;
  /*   box-shadow: 0 0 1px 0 rgba(2,32,71,0.08), 0 8px 10px 0 rgba(2,32,71,0.10); */
  transition: all .3s;

}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid var(--heard-color-light-gray);
}

.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: var(--heard-color-charcoal-gray);
}

.blocks-item-link {
  color: var(--heard-color-green);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

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

.blocks-item-link:focus {
  outline: 0;
  /*   box-shadow: 0 0 0 3px var(--heard-color-green); */
  text-decoration: none;
}

.blocks-item-title {
  color: var(--heard-color-black);
  font-size: 22px;
  font-family: "P22 Mackinac Pro";
  font-weight: 500;
  line-height: 120%;
  word-wrap: break-word
}

.blocks-item:hover .blocks-item-title {
  color: var(--heard-colors-green-200);
}

.blocks-item-description {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-family: Geist;
  font-weight: 400;
  /*line-height: 24.80px;*/
  word-wrap: break-word
}

.blocks-item-description:not(:empty) {
  margin-top: var(--heard-spacing-sm);
}

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

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

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

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

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

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */
  }

  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid var(--heard-color-light-gray);
  padding: 15px 0;
  color: var(--heard-color-charcoal-gray);
}

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

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

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid var(--heard-color-light-gray);
  }
}

/***** Community section in homepage *****/
.community {
  background-color: var(--heard-colors-card-bg);
  border-radius: var(--heard-corner-radius-card-md, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 32px;
}

.community.community-gated {
  margin-top: 72px;
}

.community.community-gated p {
  text-align: center;
}

.community * {
  text-align: left;
}

.community a.community-link.hero-img:hover {
  opacity: 1;
}

.community img:hover {
  /* transform: scale(1.01); */
  transition: all 0.5s cubic-bezier(0.64,-0.37, 0.4, 1.38);
  opacity: 0.9;
}
/***** Custom Promoted Post Widgets *****/
.promoted_post_widget {
  align-items: center;
  border-radius: var(--heard-corner-card-md, 24px);
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 24px;
}

.promoted_post_widget h2 a {
  color: inherit;
}

.promoted_post_widget.welcome {
  background-color: var(--heard-color-blush40);
}

.promoted_post_widget img {
  height: 128px;
}

.promoted_post_widget.welcome ul.promoted_post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.promoted_post_widget.welcome li.promoted_post {
  background-color: var(--heard-color-moss);
  border-radius: var(--heard-corner-component-xs, 8px);
  line-height: 100%;
  padding: 12px;
}

.promoted_post_widget.welcome li.promoted_post:hover {
  background-color: var(--heard-color-moss80);
}

.promoted_post_widget.welcome li.promoted_post a {
  color: var(--heard-color-forest);
}

.promoted_post_widget.welcome li.promoted_post:hover a {
  color: var(--heard-color-black);
}

/* Generic */
.promoted_post_widget.generic {
  background-color: var(--heard-color-blush40);
}


.promoted_post_widget.generic ul.promoted_post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}

.promoted_post_widget.generic li.promoted_post {
  width: 32%;
}

.promoted_post_widget.generic li.promoted_post {
  background-color: var(--heard-color-blush);
  border-radius: 4px;
  padding: 8px;
}

.promoted_post_widget.generic li.promoted_post:hover {
  background-color: var(--heard-color-sunrise);
}

.promoted_post_widget.generic li.promoted_post a {
  color: var(--heard-color-black);
}

.promoted_post_widget.generic li.promoted_post:hover a {
  color: var(--heard-color-black);
}

/* Events */
.promoted_post_widget.events {
  background-color: var(--heard-color-aloe);
  margin-top: 24px;
}

.promoted_post_widget.events ul.promoted_post_list {
  display: flex;
  flex-direction: column;
  gap: var(--heard-spacing-md);
}

@media (min-width: 768px) {
  .promoted_post_widget.events ul.promoted_post_list {
    flex-direction: row;
  }
}

.promoted_post_widget.events ul.promoted_post_list li.promoted_post {
  border-right: 1px solid var(--heard-color-light-gray);
  flex: 1;
  padding-right: 16px;
}

.promoted_post_widget.events ul.promoted_post_list li.promoted_post:last-child {
  border-right: none;
}

.promoted_post_widget.events .promoted_post_title {
  color: var(--heard-color-charcoal-gray);
  font-family: "P22 Mackinac Pro";
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 16.80px;
  letter-spacing: 0.36px;
  word-wrap: break-word
}

.promoted_post_widget.events .promoted_post_body > * {
  display: none;
}

.promoted_post_widget.events .promoted_post_body > ul:first-child {
  display: list-item;
}

.promoted_post_widget.events .promoted_post_body > ul:first-child li strong {
  font-weight: 500;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 16px;
}

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

.recent-activity-item {
  border-bottom: 1px solid var(--heard-color-light-gray);
  overflow: auto;
  padding: 20px 0;
}

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

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

@media (min-width: 768px) {

  .recent-activity-item-parent,
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

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

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

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }

  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time,
.recent-activity-item-comment {
  color: var(--heard-color-charcoal-gray);
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

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

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

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

.recent-activity-item-comment {
  padding-left: 24px;
}

.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: var(--heard-color-green);
  width: 16px;
  height: 16px;
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  font-weight: 500;
  margin-left: 0px;
}

.recent-activity-comment-icon svg {
  visibility: hidden;
  width: 0px;
}

.recent-activity-comment-icon::before {
  /* color: var(--heard-color-moss); */
  content: "\f075";
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  margin-right: 0px;
}

/***** Community Post List page (community_post_list_page.hbs) *****/

/***** Community Post page (community_post_page.hbs *****/

.post-meta {
  align-items: center;
  display: inline-flex;
  flex: 1;
  gap: 8px;
}

.post-meta .community-badge-container-achievements img, .comment-meta .community-badge-container-achievements img {
  height: 22px;
  width: 22px;
}

.post-meta .meta-group-opposite, .comment-meta .meta-group-opposite {
  margin-left: auto;
}

.post .comment-overview {
  border: none;
}

.post ul#comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post ul#comments li.comment {
  background-color: var(--heard-color-stone);
}

.post ul#comments li.comment.comment-official {
  background-color: var(--heard-color-moss);
}

.post-container .comment-avatar, .post-container .post-avatar {
  margin: var(--heard-spacing-none, 0px);
}

.post-container .comment-avatar img.user-avatar, .post-container .post-avatar img.user-avatar {
  width: 48px;
  height: 48px;
}

.post-container .post-author, .post-container .comment .comment-author {
  align-items: center;
  gap: 8px;
}

.post-container .comment .comment-author .comment-author-name {
  display: flex;
  align-items: center;
}

.post-container .comment-avatar svg.comment-author-heard, .post-container .post-avatar svg.comment-author-heard {
  position: absolute;
  right: 2px;
  bottom: -1px;
}

.post-container .comment .comment-author .comment-meta .comment-author-name {
  color: var(--heard-color-charcoal-gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-container .comment-author .community-badge {
  margin: var(--heard-spacing-none, 0px);
}

.post-container .comment .comment-author .comment-meta ul.meta-group li.meta-data, .post-container .post-info .meta-data {
  color: var(--heard-color-oak);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.post-container .comment .comment-body {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
}

.post-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
}

h4.associated-topic {
  color: var(--heard-color-green);
  margin: 24px 0px 8px 0px;
}

.post-container .post-title {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0px 0px 8px 0px;
}

.post-container .post-title h1 {
  margin: var(--heard-spacing-none, 0px);
}

.post-container .comment-section.comments-closed.comments-empty {
  display: none;
}

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

.post-container .comment-author .community-badge-titles:first-of-type, .post-container .post-author .community-badge-titles:first-of-type {
  margin-left: 8px;
}

.post-container .comment-body > *:first-child {
  margin-top: 0px;
}

.post-container .comment-body > *:last-child {
  margin-bottom: 0px;
}

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

.post-container .post-author {
  margin-bottom: 16px;
}

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

.post-footer .right {
  align-items: center;  
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.post-footer .right .post-vote {
  align-items: center;
  flex-direction: row;
}

.comment-vote.vote {
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
}

.post-footer .right .post-vote .vote-down.vote-voted, .comment-vote .vote-down.vote-voted {
  color: var(--heard-color-red);
}

.post-footer .right .post-vote .vote-up.vote-voted, .comment-vote .vote-up.vote-voted {
  color: var(--heard-color-bright-green);
}

.post-footer .post-comment-count, .post-footer .right .post-vote .vote-sum {
  font-weight: 500;
}

.comment-actions-container {
  margin-top: 8px;
}

.post-actions button, .comment-actions button {
  color: var(--heard-color-oak);
  padding: 0px;
}

.post-container .comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.comment .comment-labels .status-label {
  background-color: var(--heard-color-light-gray);
}

.comment-official .comment-labels .status-label {
  background-color: var(--heard-color-forest10);
}

.comment-list .comment-info {
  padding: 0px;
}

h3.post-reply {
  color: var(--heard-color-charcoal-gray);
  font-family: "P22 Mackinac Pro";
  font-size: 18px;
  font-weight: 500;
  line-height: 19.84px;
  margin: 24px 0px 8px 0px;
  word-wrap: break-word
}

.post-comments .user-avatar {
  margin-right: 10px;
}

.post-comments .comment-form-controls {
  align-items: center;
  display: flex !important;
  gap: 8px;
  justify-content: flex-end;
  margin: 24px 0px 0px 0px;
}

.post-container .heard-callout {
  margin-bottom: 24px;
}

.post-info .post-content.event-post .post-body > ul:first-child {
  background-color: var(--heard-color-stone);
  display: block;
  list-style-type: none;
  margin: var(--heard-spacing-none, 0px);
  padding: 24px;
}

.post-info .post-content.event-post .post-body > ul:first-child::before {
  content: "Event Details";
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.48px;
  line-height: 140%;
}

/***** New Community Post page (new_community_post_page.hbs) *****/


/* This pulls selectors from the `community_restricted_topics` setting as we need to be able to set this in each environment as it's based on topic IDs.
   The selector looks like this: .nesty-panel li[id="27389131326999"]
   This is repeated for each topic with the numeric ID changed to each topic that should be blocked from allowing posting
*/

.nesty-panel li[id="27492271789847"], .nesty-panel li[id="27492231206551"], .nesty-panel li[id="33001699026711"], .nesty-panel li[id="33001664070039"], .nesty-panel li[id="33001716674199"] {
  display: none;
}

/****** Mobile ******/
@media (max-width: 600px) {
  main .container.new-post .subheading {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 24px;
  }

  main .container.new-post {
    margin: 16px 0px 16px 0px;
  }

  .container.new-post .subheading a.button-medium {
    margin-bottom: 8px;
  }

  form#new_request footer {
    margin-top: 8px;
  }

  .container.new-post .form-field~.form-field {
    margin-top: 16px;
  }

  .container.new-post .form .suggestion-list {
    margin-top: 16px;
  }
}

/****** Default ******/
.container.new-post {
  margin-top: 40px;
}

.container.new-post .subheading {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 800px;
}

.container.new-post .subheading h1 {
  margin: var(--heard-spacing-none, 0px);
}

.container.new-post .form {
  max-width: 800px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
}

.category-content {
  flex: 1;
}

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

.category-content .page-header {
  text-align: center;
}

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

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

.section-tree .section {
  flex: initial;
  /*   flex-direction: row; */
}

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

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

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

.section-tree-title a:hover {
  color: #1d1d1d;
  opacity: 0.8;
  text-decoration: none;
  transition: all opacity .2s;
}

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

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item .article-icon {
  color: #226752;
}

.article-list-item a {
  color: var(--heard-color-charcoal-gray);
}

.article-list-item a:hover {
  color: #1d1d1d;
  text-decoration: none;
  transition: all opacity .2s;
}

.icon-star {
  color: var(--heard-color-green);
  font-size: 18px;
}

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

.section-content {
  flex: 1;
}

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

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

.section-list-item {
  border-bottom: 1px solid var(--heard-color-light-gray);
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid var(--heard-color-light-gray);
}

.section-list-item a {
  align-items: center;
  color: var(--heard-color-charcoal-gray);
  display: flex;
  justify-content: space-between;
}

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

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

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

@media (min-width: 1024px) {
  .article {
    margin-left: 17%;
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
}

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

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

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

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

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

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

.article-author a {
  color: var(--heard-colors-green-100);
}

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

.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

.article-body a {
  text-decoration: underline;
}

.article-body a:visited {
  color: var(--heard-colors-neutral-900);
  font-weight: 500;
}

.article-body a:hover {
  color: var(--heard-colors-green-100);
}

.article-body code {
  background: var(--heard-color-neutral-25);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: var(--heard-color-neutral-25);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-charcoal-gray);
  font-style: italic;
  padding: 0 15px;
}

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

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

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

.article-comment-count {
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: var(--heard-color-green);
  width: 18px;
  height: 18px;
}

.article-sidebar {
  border-bottom: 1px solid var(--heard-color-light-gray);
  border-top: 1px solid var(--heard-color-light-gray);
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

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

.article-relatives {
  border-top: 1px solid var(--heard-color-light-gray);
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

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

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

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

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

.article-votes {
  border-top: 1px solid var(--heard-color-light-gray);
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

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

.article-return-to-top {
  border-top: 1px solid var(--heard-color-light-gray);
}

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

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

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

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

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

.sidenav-item {
  border-radius: 4px;
  color: var(--heard-color-charcoal-gray);
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article,
.sidenav-item:hover {
  background-color: var(--heard-color-green);
  color: var(--heard-color-white);
  text-decoration: none;
}

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

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  background-color: var(--heard-color-stone);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 8px 8px 28px;
  position: relative;
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
  line-height: 13.20px;
  word-wrap: break-word
}

.attachments .attachment-item svg {
  display: none;
}

.attachments .attachment-item::before {
  content: "\f0c6";
  position: absolute;
  left: 8px;
  top: 8px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
}

.attachments .attachment-item .attachment-meta.meta-group,
.attachments .attachment-item .attachment-meta.meta-group a {
  color: var(--heard-color-dark-gray);
  font-size: 12px;
  font-weight: 500;
  line-height: 13.20px;
  word-wrap: break-word
}

.attachments .attachment-item .attachment-meta.meta-group a.attachment-meta-item.meta-data::before {
  content: "\f019";
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  margin-right: 4px;
}

.attachments .attachment-item a {
  color: var(--heard-color-forest);
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item .attachment-icon {
  color: var(--heard-color-charcoal-gray);
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone {
  border-radius: 4px;
  border: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-medium-gray);
}

.upload-dropzone span::before {
  color: var(--heard-color-dark-gray);
  content: "\f0c6";
  font-family: "Font Awesome 6 Pro";
  font-family: Font Awesome 6 Pro;
  font-weight: 400;
}

.upload-dropzone span {
  color: var(--heard-color-dark-gray);
}

.upload-dropzone a {
  color: var(--heard-color-oak);
  text-decoration: none;
}

.upload-pool {
  margin: 8px 0px 0px 0px;
  overflow: hidden;
  padding: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.upload-item {
  margin: 0px !important;
}

.upload-item:hover {
  background-color: var(--heard-color-stone);
}

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

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

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

.share a {
  color: var(--heard-color-charcoal-gray);
}

.share a:hover {
  text-decoration: none;
  color: var(--heard-color-green);
}

.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 8px;
}

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

.comment-overview {
  border-bottom: 1px solid var(--heard-color-light-gray);
  border-top: 1px solid var(--heard-color-light-gray);
  padding: 20px 0;
}

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

.comment-callout {
  color: var(--heard-color-charcoal-gray);
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: var(--heard-color-green);
}

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

.comment-sorter .dropdown-toggle {
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
  font-size: 13px;
}

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

.comment-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.comment-wrapper.comment-official {
  border: 1px solid var(--heard-color-green);
  padding: 40px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

.comment-ccs {
  display: none;
}

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

.comment-attachments {
  margin: 8px 0px;
}

.comment-attachments a {
  color: var(--heard-color-green);
}

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

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

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

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

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

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

.comment-body a:visited {
  color: var(--heard-colors-neutral-900);
  font-weight: 500;
}

.comment-body code {
  background: var(--heard-color-bg-level1);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: var(--heard-color-bg-level1);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-charcoal-gray);
  font-style: italic;
  padding: 0 15px;
}

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

a.button-medium.button-secondary.inline-reply {
  margin: 8px 0px 0px auto;
}

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

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

.vote-sum {
  color: var(--heard-color-charcoal-gray);
  display: block;
  margin: 3px 0;
}

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

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

.vote-up:hover,
.vote-down:hover {
  color: var(--heard-color-green);
}

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

.vote-voted {
  color: var(--heard-color-green);
}

.vote-voted:hover {
  color: var(--heard-colors-green-200);
}

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

.actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/
.community-hero {
  background-color: var(--heard-colors-moss-25);
  background-position: center;
  background-size: cover;
  height: 120px;
  margin-bottom: 10px;
  padding: 24px 24px 24px 24px;
  text-align: center;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

/* Community topic page */
.topic-header {
  border-bottom: 1px solid var(--heard-color-light-gray);
  font-size: 13px;
}

.follow-banner {
  align-items: center;
  background-color: var(--heard-colors-neutral-25);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
}

.follow-blurb h3 {
  margin: 0px 0px 4px 0px;
}

.follow-cta {
  margin-left: auto;
}

.follow-cta.community-follow button {
  border-radius: 8px;
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
}

.follow-cta.community-follow button::after {
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

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

.topic-header .dropdown {
  display: block;
  border-top: 1px solid var(--heard-color-light-gray);
  padding: 10px 0;
}

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

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

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

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

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

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

.community-follow button:hover {
  background-color: var(--heard-color-green);
}

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

.community-follow button[data-selected="true"] {
  background-color: var(--heard-color-green);
  color: var(--heard-color-white);
}

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

.community-follow button[data-selected="true"]:hover {
  background-color: var(--heard-colors-green-200);
  border-color: var(--heard-colors-green-200);
}

.community-follow button::after {
  border-left: 1px solid var(--heard-color-green);
  content: attr(data-follower-count);
  color: var(--heard-color-green);
  display: inline-block;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

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

[dir="rtl"] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid var(--heard-color-green);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

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

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--heard-color-light-gray);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

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

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

.striped-list-title {
  color: var(--heard-color-green);
  margin-bottom: 10px;
  margin-right: 5px;
}

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

.striped-list-title:visited {
  color: var(--heard-color-forest);
}

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

.striped-list-count {
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

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

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

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

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

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

@media (min-width: 768px) {
  .striped-list-number {
    color: var(--heard-color-charcoal-gray);
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: var(--heard-color-stone);
  border-radius: 4px;
  color: var(--heard-color-oak);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
  padding: 8px;
}

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

.status-label-pinned,
.status-label-featured {
  background-color: var(--heard-color-moss);
  color: var(--heard-color-forest);
}

.status-label-official {
  background-color: var(--heard-color-green);
  color: var(--heard-color-white);
}

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

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

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

.status-label-not-planned,
.status-label-closed {
  background-color: var(--heard-color-light-gray);
  color: var(--heard-color-charcoal-gray);
}

.status-label-pending,
.comment .comment-labels .status-label.status-label-pending-moderation,
.status-label-answered {
  background-color: var(--heard-color-light-red);
  color: var(--heard-color-red);
}

.status-label-open {
  background-color: var(--heard-color-stone);
  color: var(--heard-color-oak);
}

.status-label-solved {
  background-color: var(--heard-color-light-green);
  color: var(--heard-color-bright-green);
}

.status-label-new {
  background-color: var(--heard-color-blush);
  color: var(--heard-color-orange);
}

.status-label-hold {
  background-color: var(--heard-color-medium-gray);
  color: var(--heard-color-neutral);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-body a {
  text-decoration: underline;
}

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

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

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

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

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

.post-body a:visited {
  color: var(--heard-colors-neutral-900);
  font-weight: 500;
}

.post-body code {
  background: var(--heard-color-bg-level1);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: var(--heard-color-bg-level1);
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-charcoal-gray);
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: var(--heard-color-green);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}

.post-sidebar {
  border-top: 1px solid var(--heard-color-light-gray);
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }

  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}

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

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

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

.community-badge-container-achievements {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.community-badge-achievements img {
  width: 22px;
  height: 22px;
}

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

/* .profile-info .community-badge-achievements img {
  width: 32px;
  height: 32px;
} */

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 15px;
  /* Should be 16px per design system but smaller font-size suits this design better*/
  position: relative;
}

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

.collapsible-nav-border {
  border-bottom: 1px solid var(--heard-color-light-gray);
  border-top: 0;
}

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

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

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

.collapsible-nav-toggle-icon {
  display: none;
}

.collapsible-nav-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

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

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid var(--heard-color-green);
}

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

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

.collapsible-nav-list li {
  color: var(--heard-color-charcoal-gray);
  order: 1;
  margin: var(--heard-spacing-none, 0px);
  padding: 16px;
}

.collapsible-nav-list li a {
  color: inherit;
  display: block;
}

.collapsible-nav-list li:hover {
  border-bottom: 2px solid var(--heard-color-green);
  color: var(--heard-color-green);
}

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

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

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

/* OG: 768 px */
@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 2px solid var(--heard-color-green);
    order: 1;
  }
}

.collapsible-nav-list li a {
  text-decoration: none;
}

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

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

/* Sidebar navigation that collapses on mobile */
/* OG
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
*/

.collapsible-sidebar {
  flex: 1;
  padding: 10px 0;
  position: relative;
}

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

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

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

.collapsible-sidebar-toggle {
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  float: left;
}

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

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

.collapsible-sidebar-toggle-icon,
i.collapsible-sidebar-toggle-icon {
  display: none;
}

.collapsible-sidebar-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

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

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: transparent;
}

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

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

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

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

/***** Requests Page (requests_page.hdbs)
/****** Mobile ******/

@media (max-width: 600px) {
  .sub-header {
    flex-direction: column;
  }

  .sub-header .heading {
    text-align: center;
  }

  .sub-header .cta {
    margin-top: 16px;
  }

  .sub-header .cta .button-large {
    padding: 8px 16px;
  }

  .my-activities-header {
    display: none;
  }

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

  .requests .requests-table-meta {
    display: flex !important;
    justify-content: space-between;
  }

  .meta-data:not(:last-child)::after {
    content: "" !important;
  }
}
/****** Default ******/
.requests-table-toolbar .request-filter-label {
  color: var(--heard-color-charcoal-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
  display: block;
  margin: 16px 0px 0px 0px;
}

.requests-table-toolbar select {
  padding: 12px 16px !important;
  margin-bottom: 16px !important;
  max-height: unset !important;
}

@media (min-width: 900px) {
  .request-table-filter {
    display: none;
  }
}

/***** Original: My activities/Request List *****/

.my-activities-nav {
  background-color: var(--heard-color-bg-level1);
  margin-bottom: 20px;
}

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

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
  color: #1D1D1D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
}

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

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

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

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

@media (min-width: 1024px) {

  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

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

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

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

/* Requests table */
.container.requests-list {
  margin-top: 8px;
}

.requests-search {
  width: 100%;
}

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

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

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

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

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

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

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

  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

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

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

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

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }

  [dir="rtl"] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
}

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

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

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

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

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

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

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

.requests .requests-table thead {
  display: table-header-group;
}

.requests .requests-table thead th {
  padding: 16px;
}

.requests .requests-table thead th,
.requests .requests-table thead th>a {
  color: var(--heard-color-charcoal-gray);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 16.8px */
  letter-spacing: 0.48px;
  text-decoration: none;
  text-transform: uppercase;
}

/*
span.requests-sort-symbol::after {
  content: '\f0d7';
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  font-size: 16px;
  visibility: visible;
}

span.requests-sort-symbol {
  visibility: hidden;
}
*/

a.requests-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

span.requests-sort-symbol {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  /*font: var(--fa-font-solid);*/
  font-family: "Font Awesome 6 Pro Solid";
  font-size: 16px;
}

span.requests-sort-symbol.sort-asc {
  height: 14px
}

span.requests-sort-symbol.sort-desc {
  height: 18px
}

.requests .requests-table tbody tr {
  padding: 0px;
}

.requests .requests-table tbody tr td {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  /* 20.72px */
  padding: 16px;
}

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

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

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

/* Subscriptions page (subscriptions_page.hbs) */
.subscriptions-table .follow-type-icon {
  color: var(--heard-color-medium-gray);
  font-size: 16px;
  text-align: center;
  width: 16px;
}

.subscriptions-table td {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  padding: 8px;
  text-align: center;
}

.subscriptions-table th {
  color: var(--heard-color-charcoal-gray);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.48px;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
}

.subscriptions-table td:first-child, .subscriptions-table th:first-child {
  text-align: left;
}

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

.subscriptions-table td a {
  color: var(--heard-color-green);
  text-decoration: underline;
}

.subscriptions-table td button {
  width: 100%;
}

/***** Contributions Page (request_page.hbs) *****/
.contributions-table .follow-type-icon {
  color: var(--heard-color-medium-gray);
  font-size: 16px;
  text-align: center;
  width: 16px;
}

.contributions-table td {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  padding: 16px;
  text-align: center;
}

.contributions-table th {
  color: var(--heard-color-charcoal-gray);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.48px;
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
}

.contributions-table td:first-child, .contributions-table th:first-child {
  text-align: left;
}

.contributions-table td:first-child span {
  align-items: center;
  display: flex;
  gap: 12px;
}

.contributions-table td a {
  color: var(--heard-color-green);
  text-decoration: underline;
}

.contributions-table td button {
  width: 100%;
}

.no-activities {
  color: var(--heard-color-charcoal-gray);
}

/***** Request Page (contributions_page.hbs) *****/


/****** Mobile ******/
@media (max-width: 1024px) {
  .container {
    padding: 0px 16px 0px 16px;
    margin-top: 16px;
  }

  .request-container {
    flex-direction: column !important;
  }

  form.comment-form .comment-avatar {
    display: none;
  }

  form.comment-form .button-large {
    padding: 8px !important;
    flex-grow: 1;
  }

  form.comment-form .button-large {
    padding: 8px !important;
    flex-grow: 1;
  }

  form.comment-form .request-submit-comment {
    min-width: 50%;
  }

  .request-sidebar {
    max-width: 744px;
    width: 100% !important;
  }
}

/****** Default ******/
h4.request-id {
  color: var(--heard-color-green);
  margin: 24px 0px 8px 0px;
}

.request-container h2.reply {
  margin-top: 24px;
}

.request-container .comment-list .comment {
  margin-bottom: 16px;
}

.request-container .comment-list .comment:last-child {
  margin-bottom: 0px;
}

.request-container .comment.author-client {
  background-color: var(--heard-colors-neutral-25);
}

.request-container .comment.author-heard {
  background-color: var(--heard-color-moss80);
}

.request-container .comment p:first-child {
  margin-top: 0px;
}

.request-container .comment p:last-child {
  margin-bottom: 0px;
}

.request-container .comment-avatar img.user-avatar {
  width: 48px;
  height: 48px;
}

.request-container .comment .comment-author .comment-author-name {
  display: flex;
  align-items: center;
}

.request-container .comment-avatar svg.comment-author-heard {
  position: absolute;
  right: 2px;
  bottom: -1px;
}

.request-container .comment .comment-author .comment-meta .comment-author-name {
  color: var(--heard-color-charcoal-gray);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.request-container .comment-author .community-badge {
  margin: var(--heard-spacing-none, 0px);
}

.request-container .comment .comment-author .comment-meta ul.meta-group li.meta-data {
  color: var(--heard-color-oak);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.request-container .comment .comment-body {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
}

.comment-body a {
  text-decoration: underline;
}

.request-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
}

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

.request-main {
  flex: 1 0 auto;
  max-width: 744px;
}

.request-main .comment-fields #hc-wysiwyg {
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 8px;
}

.request-main .comment-fields #hc-wysiwyg [role=toolbar] {
  border-bottom: 1px solid var(--heard-color-light-gray);
}

.request-main .upload-dropzone {
  border-radius: 8px;
  border: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-medium-gray);
}

.request-main .upload-dropzone span::before {
  color: var(--heard-color-dark-gray);
  content: "\f0c6";
  font-family: "Font Awesome 6 Pro";
  font-family: Font Awesome 6 Pro;
  font-weight: 400;
}

.request-main .upload-dropzone span {
  color: var(--heard-color-dark-gray);
}

.request-main .upload-dropzone a {
  color: var(--heard-color-oak);
  text-decoration: none;
}

.request-main .comment .attachments {
  margin-top: 8px;
}

.request-main .comment.author-client .attachment-item {
  background-color: var(--heard-color-light-gray);
}

.request-main .comment.author-heard .attachment-item {
  background-color: var(--heard-color-forest10);
}

.request-sidebar .attachments .attachment-item {
  background-color: var(--heard-color-blush40);
}

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

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

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

.request-main .comment-form-controls {
  display: flex !important;
  justify-content: flex-end;
  gap: 8px;
  margin: var(--heard-spacing-none, 0px);
}

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

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

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

.request-main .form-field.comment-ccs>ul[data-hc-focus="true"] {
  border: 1px solid var(--heard-color-green);
}

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

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

.request-main .comment-ccs+textarea:focus {
  border-top: 1px solid var(--heard-color-green);
}

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

.request-title {
  width: 100%;
}

.request-sidebar {
  background-color: var(--heard-color-natural);
  border-radius: 8px;
  padding: 24px;
  height: fit-content;
  width: 400px;
}

.request-sidebar .sidebar-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.request-sidebar .collapsible-sidebar-toggle-icon {
  font-size: 16px;
}

.request-sidebar h2 {
  color: var(--heard-color-black);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: var(--heard-spacing-none, 0px);
}

dl.request-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.request-details dt {
  color: var(--heard-color-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.request-details dd {
  color: var(--heard-color-oak);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 0px 0px 8px 0px;
}

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

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

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

.request-attachments {
  margin: var(--heard-spacing-none, 0px);
}

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

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

.request-follow-up {
  padding: 0px;
}

.request-main .attachments-warning {
  margin-bottom: 24px;
}

/******* CSAT survey form ******/

.satisfaction-box {
  padding: 24px;
  margin: 0px 0px 16px 0px;
  border: 1px solid var(--heard-color-blush);
  background-color: var(--heard-color-natural);
  border-radius: 8px;
}

/* New rating */

.satisfaction-box h4 {
  font-weight: 400;
  line-height: 24.80px;
  word-wrap: break-word;
  text-transform: none;
  font-size: 18px;
  margin-bottom: 16px;
}

.satisfaction-box form.new_satisfaction_rating {
  margin-bottom: 0px;
}

.satisfaction-box form.new_satisfaction_rating::before {
  content: "We welcome your feedback about the support experience. What did we do well? What could we have done better?\A\AIf you still need help with this topic, please reply to the message thread rather than rating the message and we'd be glad to help.";
  display: block;
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 16px;
  white-space: pre-wrap;
}

.satisfaction-box form.new_satisfaction_rating label[role="button"] {
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500!important;
  line-height: 15.40px!important;
  word-wrap: break-word !important;
  display: inline-flex;
  gap: 8px;
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_good"] {
  background-color: transparent !important;
  border: 1px solid var(--heard-color-bright-green) !important;
  color: var(--heard-color-bright-green) !important;
  margin-right: 8px;
}

.satisfaction-box input[type=radio][checked=checked][value=good]+label {
  background-color: var(--heard-color-bright-green) !important;
  border: 1px solid var(--heard-color-bright-green) !important;
  color: var(--heard-color-white) !important;
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_bad"] {
  background-color: transparent !important;
  border: 1px solid var(--heard-color-red) !important;
  color: var(--heard-color-red) !important;
  margin-left: 0px;
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_good"]::before, .satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_bad"]::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 16px;
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_good"]::before {
  content: "\f164";
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_score_bad"]::before {
  content: "\f165";
}

.satisfaction-box input[type=radio][checked=checked][value=bad]+label {
  background-color: var(--heard-color-red) !important;
  border: 1px solid var(--heard-color-red) !important;
  color: var(--heard-color-white) !important;
}

.satisfaction-box input[type=radio]~label {
  margin-right: 8px !important;
  margin-bottom: 0px !important;
}

.satisfaction-box form.new_satisfaction_rating label[for="satisfaction_rating_comment"] {
  color: var(--heard-color-charcoal-gray);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  margin-top: 24px;
  white-space: pre-wrap;
}

.satisfaction-box form.new_satisfaction_rating textarea#satisfaction_rating_comment {
  margin-bottom: 16px;
}

.satisfaction-box form.new_satisfaction_rating a.satisfaction-cancel, .satisfaction-box form.new_satisfaction_rating input.satisfaction-submit {
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 17.60px !important;
  word-wrap: break-word !important;
  height: auto !important;
}

.satisfaction-box form.new_satisfaction_rating a.satisfaction-cancel {
  border: 1px solid var(--heard-color-green) !important;
  background-color: transparent !important;
  color: var(--heard-color-green) !important;
}

.satisfaction-box form.new_satisfaction_rating input.satisfaction-submit {
  border: 1px solid transparent !important;
  background-color: var(--heard-color-green) !important;
  color: var(--heard-color-white) !important;
  margin-left: 8px;
}

.satisfaction-box form.new_satisfaction_rating .satisfaction-comment {
  margin-bottom: -16px;
}

@media (max-width: 1024px) {
  .satisfaction-box form.new_satisfaction_rating label[role="button"] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 8px 0px;
  }

  .satisfaction-box form.new_satisfaction_rating label[role="button"].has(+ .satisfaction-comment) {
    margin-bottom: 0px;
  }
}

/* Existing rating */

.satisfaction-box h4:has(+ form.edit_satisfaction_rating), .satisfaction-box form.edit_satisfaction_rating + h4 {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 8px;
}

.satisfaction-box h4.success {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 0px;
}

.satisfaction-box form.edit_satisfaction_rating label[role="button"] {
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500!important;
  line-height: 15.40px!important;
  word-wrap: break-word !important;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 8px !important;
}

.satisfaction-box form.edit_satisfaction_rating label[for="satisfaction_rating_score_good"]::before, .satisfaction-box form.edit_satisfaction_rating label[for="satisfaction_rating_score_bad"]::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 16px;
}

.satisfaction-box form.edit_satisfaction_rating label[for="satisfaction_rating_score_good"]::before {
  content: "\f164";
}

.satisfaction-box form.edit_satisfaction_rating label[for="satisfaction_rating_score_bad"]::before {
  content: "\f165";
}

.satisfaction-box form.edit_satisfaction_rating + h4 + p {
  border-left: 2px solid var(--heard-color-moss);
  padding: 4px 8px;
  font-style: italic;
  margin: var(--heard-spacing-none, 0px);
}

.satisfaction-box .satisfaction-link-box {
  text-align: right;
  display: inline-flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.satisfaction-box a.satisfaction-link-change {
  border: 1px solid var(--heard-color-green) !important;
  background-color: transparent !important;
  color: var(--heard-color-green) !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500!important;
  line-height: 15.40px!important;
  word-wrap: break-word !important;
  height: auto !important;
}

/***** New Request Page (new_request_page.hbs) *****/
/****** Mobile ******/
@media (max-width: 600px) {
  main .container.new-request .subheading {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  main .container.new-request {
    margin: 16px 0px 16px 0px;
  }

  .container.new-request .subheading a.button-medium {
    margin-bottom: 8px;
  }

  form#new_request footer {
    margin-top: 8px;
  }

  .container.new-request .form-field~.form-field {
    margin-top: 16px;
  }

  .container.new-request .form .suggestion-list {
    margin-top: 16px;
  }
}

/****** Default ******/
.container.new-request {
  margin-top: 40px;
}

.container.new-request .subheading {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 800px;
}

.container.new-request .subheading h1 {
  margin: var(--heard-spacing-none, 0px);
}

.new-request-followup {
  background-color: var(--heard-color-natural);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.new-request-followup p {
  margin: var(--heard-spacing-none, 0px);
}

.new-request-followup a {
  font-weight: 600;
}

.new-request-followup,
.container.new-request .form {
  max-width: 800px;
}

form#new_request .suggestion-list h2 {
  color: var(--heard-color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.20px;
  word-wrap: break-word;
  display: block;
  margin-bottom: 8px;
}

form#new_request .searchbox-suggestions::before {
  content: "The following Help Center articles might be of help with this message";
  color: var(--heard-color-dark-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.68px;
  word-wrap: break-word;
  margin-bottom: 8px;
  display: inline-block;
}

form#new_request .searchbox-suggestions ul {
  background-color: var(--heard-color-natural);
  list-style: disc;
  padding: 16px;
}

form#new_request .searchbox-suggestions li {
  padding: 0px;
  margin: 0px 0px 0px 16px;
}

form#new_request #hc-wysiwyg {
  border: 1px solid var(--heard-color-light-gray);
  border-radius: 8px;
}

form#new_request #hc-wysiwyg [role=toolbar] {
  border-bottom: 1px solid var(--heard-color-light-gray);
}

.nesty-input {
  border: 1px solid var(--heard-color-light-gray) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  height: fit-content !important;
  line-height: normal !important;
}

.nesty-input:after {
  color: var(--heard-color-medium-gray);
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  line-height: normal;
  position: absolute;
  right: 16px;
  top: 0px;
  height: 100%;
  align-content: center;
}

.nesty-panel {
  border: 1px solid var(--heard-color-light-gray) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  max-height: 310px !important;
}

.nesty-panel li {
  font-family: Geist, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24.80px;
  word-wrap: break-word;
  padding: 8px 16px !important;
}

.nesty-panel li:focus {
  background-color: var(--heard-color-stone) !important;
}

.nesty-panel li.nesty-selected {
  background-color: var(--heard-color-moss) !important;
  color: var(--heard-color-charcoal-gray) !important;
  font-weight: 400;
}

form#new_request label#request_description_label::after,
form#new_request label#request_custom_fields_25135717978647_label::after {
  display: block;
  color: var(--heard-color-dark-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.68px;
  word-wrap: break-word;
  margin: 8px 0px;
}

p#request_description_hint,
p#request_custom_fields_25135717978647_hint {
  display: none;
}

form#new_request label#request_description_label::after {
  content: "Please share any questions, any tasks you need done, or any trouble you've encountered. A member of our Support team will aim to respond within 8 business hours.";
}

form#new_request label#request_custom_fields_25135717978647_label::after {
  content: "What is this message about?";
}

form#new_request .upload-dropzone {
  border-radius: 8px;
  border: 1px solid var(--heard-color-light-gray);
  color: var(--heard-color-medium-gray);
}

form#new_request .attachments-warning {
  margin-bottom: 16px;
}

.container.new-request footer {
  margin: 24px 0px 0px 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

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

ul.pagination-list {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-next,
.pagination-prev,
.pagination-first,
.pagination-last {
  display: inline-block;
}

.pagination-next-link:hover,
.pagination-prev-link:hover,
.pagination-first-link:hover,
.pagination-last-link:hover {
  opacity: 1.0;
}

.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  font-size: 15px;
}

.pagination-first-link,
.pagination-last-link {
  padding: 0 16px;
}

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

.pagination-next-link {
  padding-right: 16px;
}

.pagination-next-text {
  margin-right: 16px;
}

.pagination-prev-link {
  padding-left: 16px;
}

.pagination-prev-text {
  margin-left: 16px;
}

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

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

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: var(--heard-color-charcoal-gray);
  font-size: 13px;
  font-weight: 300;
}

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

/* User Profiles */
.profile-header {
  padding: 24px 0px;
  background-color: var(--heard-color-natural);
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

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

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

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

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

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

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

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

.profile-header .basic-info .name {
  margin: 0px 0px 8px 0px;
  line-height: 25px;
}

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

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }

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

  .profile-header .options> :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  [dir="rtl"] .profile-header .options> :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

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

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

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

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

.profile-stats .stat-label {
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

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

.profile-stats-activity {
  border-top: solid 1px var(--heard-color-light-gray);
  margin-top: 15px;
}

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

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

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

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

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }

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

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

.profile-stats-counters {
  border-bottom: solid 1px var(--heard-color-light-gray);
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }

  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }

  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

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

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

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

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

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

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

.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}

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

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

.profile-section {
  width: 100%;
}

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

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

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

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: var(--heard-color-charcoal-gray);
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px var(--heard-color-light-gray);
  font-size: 13px;
}

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

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

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

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

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }

  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-badges-items {
  margin-top: 25px;
}

.profile-badges-item {
  border-top: 1px solid var(--heard-color-light-gray);
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}

.profile-badges-item>div {
  padding-right: 12px;
  padding-left: 12px;
}

.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}

.profile-badges-item-image img {
  max-height: 40px;
}

[dir="rtl"] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}

.profile-badges-item-title,
.profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}

.profile-badges-item-title {
  font-weight: 600;
}

.profile-badges-item-description,
.profile-badges-item-metadata-description {
  color: var(--heard-color-charcoal-gray);
  font-size: 13px;
  margin: 0;
}

.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}

[dir="rtl"] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

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

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

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

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

.profile-contribution-list>.profile-contribution {
  border-top: 1px solid var(--heard-color-light-gray);
}

@media (min-width: 768px) {
  .profile-contribution-list>.profile-contribution {
    padding-left: 30px;
  }

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

.profile-contribution-list>.profile-contribution:last-child {
  border-bottom: 1px solid var(--heard-color-light-gray);
}

.profile-contribution-icon {
  color: var(--heard-color-moss);
  font-size: 16px;
  left: 0;
  line-height: 32px;
  position: absolute;
}

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

.profile-contribution-icon svg {
  vertical-align: middle;
}

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

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

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }

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

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

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

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

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

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

.private-activity-icon {
  margin-right: 10px;
}

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

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

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

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }

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

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid var(--heard-color-light-gray);
  }

  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid var(--heard-color-light-gray);
  }
}

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

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

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

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

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

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

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

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

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: var(--heard-color-bg-level1);
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }

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

.profile-activity-icon {
  font-size: 16px;
  line-height: 32px;
  margin-top: 6px;
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: var(--heard-color-white);
  background-position: 50% 50%;
  text-align: center;
  color: var(--heard-color-moss);
}

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

@media (min-width: 768px) {
  .profile-activity-icon {
    left: -14px;
  }

  [dir="rtl"] .profile-activity-icon {
    right: -14px;
  }
}

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

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

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

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

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

.search-results-sidebar {
  border-top: 1px solid var(--heard-color-light-gray);
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (max-width: 600px) {
  .container.search nav.sub-nav {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

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

  .search-results-sidebar .collapsible-sidebar {
    margin-bottom: 0px !important;
    padding-bottom: 0px;
  }

  .search-results-sidebar .collapsible-sidebar h3.collapsible-sidebar-title {
    margin-bottom: 0px;
  }

  .search-results-sidebar .collapsible-sidebar[aria-expanded="true"] .multibrand-filter-list {
    margin-top: 16px;
  }
}
@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item:hover,
.search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

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

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: var(--heard-color-green);
}

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

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

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

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

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

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

.search-results-list>li:first-child {
  border-top: 1px solid var(--heard-color-light-gray);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-result-votes-icon,
.search-result-meta-count-icon {
  color: var(--heard-color-green);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

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

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

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

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

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

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

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

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

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

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

/***** Notifications *****/
.notification {
  border: 1px solid;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.80px;
  word-wrap: break-word;
  padding: 16px;
  transition: height .2s;
  width: 100%;
  color: var(--heard-color-charcoal-gray);
}

.notification a {
  color: #158ec2;
}

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

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

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

/* Error */

.notification-error {
  background: var(--heard-color-light-red);
  border-color: var(--heard-color-red);
}


.notification-error::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  font-weight: 900;
  word-wrap: break-word;
  color: rgba(185, 80, 66, 1);
}

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

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

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

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

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 16px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.80px;
  word-wrap: break-word
}

.notification-inline[aria-hidden="true"] {
  display: none;
}

.notification-inline.notification-error {
  background-color: var(--heard-color-light-red);
  border: 1px solid var(--heard-color-red);
  color: var(--heard-color-charcoal-gray);
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

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

/* Custom error message augmentations */
span[data-upload-error-message]::before {
  content: "There was a problem uploading your attachment";
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.84px;
  word-wrap: break-word;
}

/* Dropdown */

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

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

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

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 8px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

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

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

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid #d8d8d8;
  color: #969696;
  display: block;
  font-weight: normal;
  font-size: 11px;
  padding: 5px 0;
  margin: 5px 20px 10px 20px;
}

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

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

.dropdown-menu [role="menuitem"]:hover,
.dropdown-menu [role="menuitem"]:focus {
  background: #F2F2EF;
  color: #1d1d1d;
  opacity: 1;
  text-decoration: none;
}

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

.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden],
.dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

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

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

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

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

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