:root {
  --xf-styleType: light;
  --xf-color-adjust: 1;
  --xf-paletteColor1: 206, 80%, 95%;
  --xf-paletteColor2: 204, 80%, 80%;
  --xf-paletteColor3: 205, 80%, 60%;
  --xf-paletteColor4: 205, 80%, 40%;
  --xf-paletteColor5: 205, 80%, 30%;
  --xf-pageBg: #ebebeb;
  --xf-contentBg: #ffffff;
  --xf-textColor: #141414;
  --xf-textColorDimmed: #5c6770;
  --xf-textColorMuted: #8c8c8c;
  --xf-linkColor: #1470b4;
  --xf-linkHover: #0f578a;
  --xf-borderColor: #d4d4d4;
  --xf-borderColorLight: #e4e4e4;
  --xf-borderColorFaint: #eee;
  --xf-chromeBg: #0f578a;
  --xf-chromeText: #a8d4f5;
  --xf-subNavBg: #1470b4;
  --xf-paletteColor1-hex: #e8f4fc;
  --xf-contentAlt: #f5f5f5;
  --xf-staffBg: #f7f3e8;
  --xf-staffBorder: #c4a35a;
  --xf-starterBg: #f7fbfe;
  --xf-pageWidth: 1200px;
  --xf-font: "Segoe UI", "Helvetica Neue", Helvetica, Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", Arial, sans-serif;
  --xf-nodeIconRead: #b5c4ce;
  --xf-nodeIconUnread: #0f578a;
}

html {
  font-size: 13px;
  color-scheme: light;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--xf-pageBg);
  color: var(--xf-textColor);
  font-family: var(--xf-font);
  line-height: 1.4;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--xf-linkColor);
  text-decoration: none;
}

a:hover {
  color: var(--xf-linkHover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.u-concealed,
.u-concealed a {
  color: inherit;
  text-decoration: none;
}

.u-concealed:hover,
.u-concealed a:hover {
  text-decoration: underline;
}

.p-pageWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 320px;
}

.p-header {
  background-color: #07151f;
  background-image:
    linear-gradient(90deg, rgba(7, 21, 31, 0.88) 0%, rgba(15, 87, 138, 0.42) 46%, rgba(7, 21, 31, 0.72) 100%),
    url("/forum/images/kraken-header.jpg");
  background-size: cover;
  background-position: center 40%;
  color: var(--xf-chromeText);
  border-bottom: 0;
}

.p-header-inner {
  max-width: var(--xf-pageWidth);
  margin: 0 auto;
  padding: 0 10px;
}

.p-header-content {
  display: flex;
  align-items: center;
  padding: 10px 0;
  min-height: 86px;
}

.p-header-logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--xf-chromeText);
  text-decoration: none;
}

.p-header-logo a:hover {
  color: #fff;
  text-decoration: none;
}

.p-header-logoSvg {
  display: block;
  height: 36px;
  width: auto;
  color: var(--xf-chromeText);
}

.p-header-logoMark {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(168, 212, 245, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.28);
  background: #0a1c29;
}

.p-nav-smallLogo .p-header-logoMark {
  width: 32px;
  height: 32px;
}

.p-header-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.p-header-wordmark strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.p-header-wordmark span {
  font-size: 11px;
  opacity: 0.85;
  font-weight: 400;
}

.p-navSticky {
  position: sticky;
  top: 0;
  z-index: 250;
  overflow: visible;
}

.p-nav {
  background: var(--xf-chromeBg);
  color: var(--xf-chromeText);
  border-bottom: 0;
  overflow: visible;
}

.p-nav-inner {
  max-width: var(--xf-pageWidth);
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: stretch;
  min-height: 42px;
  overflow: visible;
}

.p-nav-menuTrigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  position: relative;
  flex: 0 0 44px;
}

.p-nav-menuTrigger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  pointer-events: none;
}

.u-offCanvasToggle {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
}

.p-nav-smallLogo {
  display: none;
}

.p-nav-scroller {
  flex: 1;
  overflow: visible;
}

.p-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.p-nav-list > li {
  position: relative;
  overflow: visible;
}

.p-navEl {
  position: relative;
  display: flex;
  align-items: stretch;
}

.p-navEl[data-has-children="true"]:hover,
.p-navEl[data-has-children="true"]:focus-within,
.p-navEl[data-has-children="true"].is-open {
  z-index: 5;
}

.p-navEl-link {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  white-space: nowrap;
}

.p-navEl.is-selected {
  background: rgba(0, 0, 0, 0.22);
}

.p-navEl.is-selected .p-navEl-link {
  font-weight: 700;
}

.p-navEl-splitTrigger {
  width: 22px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.p-navEl-splitTrigger:after {
  content: "";
  border: 4px solid transparent;
  border-top-color: currentColor;
  display: inline-block;
  margin-top: 4px;
}

.p-navEl-link:hover {
  background: rgba(0, 0, 0, 0.12);
}

.p-navEl-splitTrigger:hover {
  background: rgba(0, 0, 0, 0.18);
}

.p-nav-opposite {
  display: flex;
  margin-left: auto;
  position: relative;
  z-index: 4;
  overflow: visible;
}

.p-navgroup {
  display: flex;
}

.p-navgroup-link {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.p-navgroup-link--iconic {
  width: 42px;
  justify-content: center;
  padding: 0;
}

.p-navgroup-link--iconic .p-navgroup-linkText {
  display: none;
}

.p-sectionLinks {
  background: var(--xf-subNavBg);
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.p-sectionLinks-inner {
  max-width: var(--xf-pageWidth);
  margin: 0 auto;
  padding: 0 10px;
}

.p-sectionLinks-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 34px;
}

.p-sectionLinks .p-navEl {
  position: static;
}

.p-sectionLinks .p-navEl-link {
  font-size: 12px;
  padding: 0 10px;
}

.p-sectionLinks .p-navEl-link.is-selected {
  font-weight: 700;
}

.offCanvasMenu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.offCanvasMenu.is-active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.offCanvasMenu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.offCanvasMenu-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(86vw, 320px);
  background: #fff;
  overflow: auto;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
  transform: translateX(-105%);
  transition: transform 0.2s ease;
}

.offCanvasMenu.is-active .offCanvasMenu-content {
  transform: translateX(0);
}

#forum-mobile-nav:checked ~ .offCanvasMenu,
.p-pageWrapper:has(#forum-mobile-nav:checked) .offCanvasMenu,
.offCanvasMenu.is-active {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

#forum-mobile-nav:checked ~ .offCanvasMenu .offCanvasMenu-content,
.p-pageWrapper:has(#forum-mobile-nav:checked) .offCanvasMenu-content,
.offCanvasMenu.is-active .offCanvasMenu-content {
  transform: translateX(0);
}

.offCanvasMenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--xf-chromeBg);
  color: #fff;
  font-weight: 700;
}

.offCanvasMenu-closer {
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.offCanvasMenu-linkHolder a,
.offCanvasNav a {
  display: block;
  padding: 11px 14px;
  border-bottom: 1px solid var(--xf-borderColorLight);
  color: var(--xf-textColor);
  text-decoration: none;
}

.p-offCanvasRegisterLink {
  background: var(--xf-contentAlt);
}

.offCanvasMenu-separator {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--xf-borderColor);
}

.p-body {
  flex: 1;
}

.p-body-inner {
  max-width: var(--xf-pageWidth);
  margin: 0 auto;
  padding: 10px 10px 20px;
}

.p-breadcrumbs {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 12px;
  color: var(--xf-textColorDimmed);
}

.p-breadcrumbs li {
  display: flex;
  align-items: center;
}

.p-breadcrumbs li:not(:last-child):after {
  content: "/";
  margin: 0 6px;
  color: #a0a0a0;
}

.p-breadcrumbs a {
  color: var(--xf-textColorDimmed);
}

.p-breadcrumbs--bottom {
  margin: 16px 0 0;
}

.p-body-header {
  margin: 0 0 10px;
}

.p-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-title-value {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.p-description {
  margin-top: 6px;
  color: var(--xf-textColorDimmed);
  font-size: 12px;
}

.listInline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
}

.listInline--bullet li {
  position: relative;
}

.listInline--bullet li:not(:first-child):before {
  content: "•";
  position: absolute;
  left: -10px;
  color: #a3a3a3;
}

.blockMessage {
  margin: 10px 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--xf-borderColor);
  border-radius: 4px;
}

.blockMessage--important {
  background: #fef7e5;
  border-color: #f0d58a;
}

.blockMessage--none {
  background: transparent;
  border: 0;
  padding: 0;
}

.u-noJsOnly {
  display: none;
}

.block {
  margin-bottom: 16px;
}

.block-container {
  background: var(--xf-contentBg);
  border: 1px solid var(--xf-borderColor);
  border-radius: 4px;
  overflow: hidden;
}

.block-header {
  padding: 8px 12px;
  background: var(--xf-paletteColor1-hex);
  color: var(--xf-textColor);
  font-size: 15px;
  font-weight: 400;
}

.block-header a {
  color: var(--xf-linkColor) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.block-desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--xf-textColorDimmed);
  margin-top: 2px;
}

.block-minorHeader {
  padding: 8px 12px;
  background: var(--xf-contentAlt);
  border-bottom: 1px solid var(--xf-borderColorLight);
  font-weight: 700;
}

.block-body {
  background: #fff;
}

.block-outer {
  margin-bottom: 6px;
  min-height: 0;
}

.block-outer--after {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 0;
}

.block-footer {
  padding: 8px 12px;
  background: var(--xf-contentAlt);
  border-top: 1px solid var(--xf-borderColorLight);
  color: var(--xf-textColorDimmed);
  font-size: 12px;
}

.node {
  border-bottom: 0;
  padding: 0;
  gap: 0;
}

.node + .node {
  border-top: 1px solid var(--xf-borderColorFaint);
}

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

.node-icon {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 46px;
  padding: 10px 0 10px 10px;
  color: var(--xf-nodeIconRead);
  font-size: 36px;
  line-height: 1.125;
}

.node--unread .node-icon {
  color: var(--xf-nodeIconUnread);
}

.node-icon i {
  display: block;
}

.node-main {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.node-title {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
}

.node--unread .node-title {
  font-weight: 700;
}

.node-description {
  font-size: 13px;
  color: var(--xf-textColorDimmed);
}

.node-stats {
  display: table-cell;
  width: 140px;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}

.node-stats > dl.pairs.pairs--rows {
  width: 50%;
  float: left;
  margin: 0;
  padding: 0 3px;
  display: block;
}

.node-extra {
  display: table-cell;
  vertical-align: middle;
  width: 280px;
  padding: 10px;
  font-size: 13px;
  color: var(--xf-textColorMuted);
}

.node-extra-row {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.node-extra-icon {
  padding-right: 10px;
  float: left;
}

.node-extra-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: none;
}

.node-statsMeta {
  display: none;
}

.structItemContainer-group {
  border-top: 0;
}

.structItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--xf-borderColorLight);
  background: #fff;
}

.structItem--header {
  background: var(--xf-contentAlt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--xf-textColorDimmed);
  letter-spacing: 0.03em;
}

.structItem-cell {
  min-width: 0;
}

.structItem-cell--icon {
  width: 52px;
  flex: 0 0 52px;
}

.structItem-cell--main {
  flex: 1;
}

.structItem-cell--meta {
  width: 130px;
  flex: 0 0 130px;
  font-size: 12px;
  color: var(--xf-textColorDimmed);
  text-align: right;
}

.structItem-cell--latest {
  width: 210px;
  flex: 0 0 210px;
  font-size: 12px;
  color: var(--xf-textColorDimmed);
  text-align: right;
}

.structItem-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 400;
}

.structItem-minor {
  font-size: 12px;
  color: var(--xf-textColorDimmed);
}

.pairs {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.pairs dt {
  color: var(--xf-textColorMuted);
}

.message {
  border-bottom: 1px solid var(--xf-borderColor);
  background: #fff;
}

.message-inner {
  display: flex;
  align-items: stretch;
}

.message-cell {
  padding: 12px;
}

.message-cell--user {
  width: 170px;
  flex: 0 0 170px;
  background: var(--xf-contentAlt);
  border-right: 1px solid var(--xf-borderColorLight);
  text-align: center;
}

.message-cell--main {
  flex: 1;
  min-width: 0;
}

.message-staffPost .message-cell--user {
  background: var(--xf-staffBg);
  border-left: 3px solid var(--xf-staffBorder);
}

.message-threadStarterPost .message-cell--main {
  background: var(--xf-starterBg);
}

.message-user {
  position: relative;
}

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

.message-avatar-online {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #62a614;
  border: 2px solid #fff;
}

.message-userDetails {
  margin-top: 8px;
}

.message-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.message-userTitle {
  margin: 0;
  font-size: 12px;
  color: var(--xf-textColorDimmed);
  font-weight: 400;
}

.userBanner {
  display: inline-block;
  margin-top: 6px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  background: #c0392b;
  color: #fff;
}

.username--staff {
  color: #c0392b;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none !important;
  overflow: hidden;
}

.avatar--m {
  width: 96px;
  height: 96px;
  font-size: 58px;
  line-height: 1;
}

.avatar--s {
  width: 48px;
  height: 48px;
  font-size: 28px;
}

.avatar--xs {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.avatar--xxs {
  width: 24px;
  height: 24px;
  font-size: 13px;
}

.message-attribution {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--xf-textColorDimmed);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--xf-borderColorLight);
}

.message-attribution-opposite {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.message-body {
  font-size: 13px;
  line-height: 1.55;
}

.bbWrapper {
  overflow-wrap: anywhere;
}

.bbWrapper .bbImage {
  display: block;
  margin: 12px 0;
  max-width: min(100%, 560px);
  height: auto;
  border: 1px solid var(--xf-borderColor);
  border-radius: 3px;
  background: #0a1c29;
}

.message-lastEdit {
  margin-top: 12px;
  font-size: 12px;
  color: var(--xf-textColorMuted);
  font-style: italic;
}

.message-footer {
  margin-top: 10px;
}

.bbCodeBlock {
  margin: 10px 0;
  border-left: 3px solid var(--xf-chromeBg);
  background: #f4f7f9;
  border-radius: 0 3px 3px 0;
}

.bbCodeBlock-title {
  padding: 6px 10px 0;
  font-size: 12px;
  font-weight: 700;
}

.bbCodeBlock-content {
  padding: 6px 10px 10px;
}

.shareButtons:before,
.shareButtons:after {
  content: " ";
  display: table;
}

.shareButtons:after {
  clear: both;
}

.shareButtons-label {
  float: left;
  margin-right: 3px;
  color: var(--xf-textColorMuted);
  min-height: 35px;
  line-height: 35px;
  font-weight: 400;
}

.shareButtons-buttons {
  display: block;
}

.shareButtons--iconic .shareButtons-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
}

.shareButtons-button {
  float: left;
  margin-right: 3px;
  padding: 6px;
  color: var(--xf-textColorMuted) !important;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
  min-width: 35px;
  border-radius: 2px;
  background: transparent;
  text-decoration: none !important;
  text-align: center;
}

.shareButtons-button:hover {
  text-decoration: none;
  color: #fff !important;
}

.shareButtons--iconic .shareButtons-button > span {
  position: absolute;
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.shareButtons-button.shareButtons-button--facebook:hover { background-color: #3b5998; }
.shareButtons-button.shareButtons-button--twitter:hover { background-color: #000; }
.shareButtons-button.shareButtons-button--bluesky:hover { background-color: #1185fe; }
.shareButtons-button.shareButtons-button--pinterest:hover { background-color: #bd081c; }
.shareButtons-button.shareButtons-button--tumblr:hover { background-color: #35465c; }
.shareButtons-button.shareButtons-button--reddit:hover { background-color: #ff4500; }
.shareButtons-button.shareButtons-button--whatsApp:hover { background-color: #25d366; }
.shareButtons-button.shareButtons-button--linkedin:hover { background-color: #0077b5; }
.shareButtons-button.shareButtons-button--email:hover { background-color: #1289ff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--xf-borderColor);
  background: #fefefe;
  color: var(--xf-textColor);
  cursor: pointer;
  text-decoration: none !important;
  line-height: 1.3;
}

.button:hover {
  background: #f3f3f3;
  color: var(--xf-textColor);
}

.button--primary {
  background: var(--xf-chromeBg);
  border-color: #0c466e;
  color: #fff !important;
}

.button--primary:hover {
  background: #134a70;
  color: #fff !important;
}

.button--link {
  background: #fff;
}

.button--scroll {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 4px;
  background: rgba(24, 88, 134, 0.9);
  color: #fff !important;
  border: 0;
}

.u-scrollButtons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
}

.p-footer {
  font-size: 13px;
  color: var(--xf-paletteColor1-hex);
  background: #0a4066;
  margin-top: auto;
}

.p-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.p-footer-inner {
  max-width: var(--xf-pageWidth);
  margin: 0 auto;
  padding: 16px 10px 20px;
}

.p-footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.p-footer-linkList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.p-footer-copyright {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.85;
}

.overlay-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 11000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 12px;
  overflow: auto;
}

.overlay {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.overlay--wide {
  width: min(720px, 100%);
}

.overlay-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--xf-chromeBg);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.overlay-title a,
.overlay-title button {
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 20px;
}

.overlay-content {
  padding: 14px;
}

.menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  background: #fff;
  color: var(--xf-textColor);
  border: 1px solid var(--xf-borderColor);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  z-index: 400;
}

.menu.is-open,
.p-navEl.is-open > .menu--structural,
.p-navEl[data-has-children="true"]:hover > .menu--structural,
.p-navEl[data-has-children="true"]:focus-within > .menu--structural,
.p-navgroup-search:hover > .menu,
.p-navgroup-search:focus-within > .menu,
.p-navgroup-search > .menu.is-open {
  display: block;
}

.menu--structural {
  left: 0;
  right: auto;
  min-width: 220px;
}

.p-navEl > .menu--structural {
  top: 100%;
  left: 0;
  right: auto;
  min-width: 230px;
  margin: 0;
}

.p-navgroup-search {
  position: relative;
}

.p-navgroup-search > .menu {
  left: auto;
  right: 0;
  min-width: 320px;
}

.menu-header {
  margin: 0;
  padding: 10px 12px 6px;
  font-size: 13px;
}

.menu-row {
  padding: 8px 12px;
}

.menu-footer {
  padding: 8px 12px 12px;
  display: flex;
  justify-content: flex-end;
}

.menu-linkRow {
  display: block;
  padding: 8px 12px;
  color: var(--xf-textColor);
  text-decoration: none;
}

.menu-linkRow:hover {
  background: var(--xf-contentAlt);
  text-decoration: none;
}

.input,
.inputGroup .input {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--xf-borderColor);
  border-radius: 3px;
  background: #fff;
}

.inputGroup {
  display: flex;
  gap: 0;
}

.inputGroup--joined .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.inputGroup--joined select.input {
  width: auto;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.inputGroup-text {
  display: flex;
  align-items: center;
  padding: 0 8px 0 0;
  white-space: nowrap;
}

.formRow {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--xf-borderColorLight);
}

.formSubmitRow {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 12px;
}

.formNotice {
  padding: 10px 12px;
  background: #eef6ea;
  border: 1px solid #b7d7a8;
  border-radius: 3px;
  margin-bottom: 10px;
}

.formError {
  padding: 10px 12px;
  background: #fdecea;
  border: 1px solid #f5c2c0;
  border-radius: 3px;
  margin-bottom: 10px;
}

.memberHeader {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--xf-contentAlt);
  border-bottom: 1px solid var(--xf-borderColorLight);
}

.memberHeader-main h1 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
}

.pairs--rows {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
}

.pairs--rows > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px;
}

.contentRow {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid var(--xf-borderColorLight);
}

.contentRow-title {
  margin: 0 0 4px;
  font-size: 14px;
}

.contentRow-minor {
  font-size: 12px;
  color: var(--xf-textColorDimmed);
}

.helpArticle {
  padding: 14px 16px 18px;
  font-size: 14px;
  line-height: 1.55;
}

.helpArticle h2 {
  font-size: 16px;
  margin: 18px 0 8px;
}

.helpArticle ul {
  margin: 8px 0;
  padding-left: 18px;
}

.p-body-pageContent .block:first-child {
  margin-top: 0;
}

.iconic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.message-userArrow {
  display: none;
}

.structItem-icon {
  color: var(--xf-chromeBg);
  font-size: 22px;
}

.memberTooltip {
  position: absolute;
  z-index: 250;
  width: 280px;
  background: #fff;
  border: 1px solid var(--xf-borderColor);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  padding: 12px;
  text-align: left;
}

.is-hidden {
  display: none !important;
}

.p-discovery {
  position: relative;
  overflow: visible;
}

textarea.input {
  min-height: 120px;
  resize: vertical;
}

.replyEditor {
  padding: 12px;
}

@media (max-width: 900px) {
  .node-stats,
  .structItem-cell--meta {
    display: none;
  }

  .node-extra,
  .structItem-cell--latest {
    width: 160px;
    flex-basis: 160px;
  }
}

@media (max-width: 650px) {
  html {
    font-size: 14px;
  }

  .p-header-wordmark span {
    display: none;
  }

  .p-nav-menuTrigger,
  .p-nav-smallLogo {
    display: flex;
    align-items: center;
  }

  .p-nav-menuTrigger {
    display: flex;
    flex-direction: column;
  }

  .p-nav-smallLogo img,
  .p-nav-smallLogo svg {
    height: 32px;
    width: 32px;
    object-fit: cover;
  }

  .p-nav-scroller,
  .p-sectionLinks {
    display: none;
  }

  .p-navgroup-link--textual .p-navgroup-linkText {
    display: none;
  }

  .p-account.is-logged .p-navgroup-linkText {
    display: inline;
  }

  .p-navgroup-link--logIn,
  .p-navgroup-link--register {
    width: 42px;
    justify-content: center;
  }

  .p-navgroup-link--logIn:before {
    content: "\f2f6";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .p-navgroup-link--register:before {
    content: "\f234";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .message-inner {
    display: block;
  }

  .message-cell--user {
    width: auto;
    border-right: 0;
    border-bottom: 1px solid var(--xf-borderColorLight);
    display: flex;
    text-align: left;
    gap: 10px;
    align-items: center;
  }

  .message-userDetails {
    margin-top: 0;
  }

  .avatar--m {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .node {
    flex-wrap: wrap;
  }

  .node-extra,
  .structItem-cell--latest,
  .structItem-cell--icon {
    display: none;
  }

  .formRow {
    grid-template-columns: 1fr;
  }

  .p-title-value {
    font-size: 20px;
  }

  .shareButtons-button span {
    display: none;
  }

  .memberHeader {
    flex-direction: column;
  }
}

.p-body-main {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 10px;
}

.p-body-main--withSidebar .p-body-contentCol,
.p-body-main--withSidebar .p-body-sidebarCol {
  display: table-column;
}

.p-body-main--withSidebar .p-body-sidebarCol {
  width: 250px;
}

.p-body-main--withSidebar .p-body-content {
  display: table-cell;
  vertical-align: top;
}

.p-body-sidebar {
  display: table-cell;
  vertical-align: top;
  width: 250px;
  padding-left: 20px;
}

.p-body-sidebar .block-minorHeader {
  font-size: 13px;
}

.p-body-sidebar .block-body.block-row,
.p-body-sidebar .block-row {
  padding: 10px 12px;
  font-size: 13px;
}

.p-body-sidebar ul.block-body {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.contentRow-figure {
  display: table-cell;
  width: 36px;
  vertical-align: top;
  padding-right: 8px;
}

.contentRow-main {
  display: table-cell;
  vertical-align: top;
}

.contentRow-minor {
  color: var(--xf-textColorMuted);
  font-size: 12px;
}

.pairs--justified {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 2px 0;
}

.pairs--justified dt {
  color: var(--xf-textColorMuted);
}

.pairs--rows dt,
.pairs--rows dd {
  display: block;
  text-align: center;
}

.pairs--rows dt {
  color: var(--xf-textColorMuted);
  font-size: 11px;
}

.pairs--inline {
  display: inline-flex;
  gap: 6px;
  margin-right: 10px;
}

.structItem-parts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.structItem-parts li:not(:last-child):after {
  content: "·";
  margin-left: 10px;
  color: #bbb;
}

.structItem-cell--iconEnd {
  width: 40px;
  flex: 0 0 40px;
  text-align: right;
}

.structItem-title {
  font-size: 15px;
}

.button--scroll {
  background: rgba(15, 87, 138, 0.9);
}

@media (max-width: 1000px) {
  .node-stats {
    display: none;
  }

  .node-statsMeta {
    display: inline;
  }

  .p-body-main--withSidebar,
  .p-body-main--withSidebar .p-body-content,
  .p-body-sidebar {
    display: block;
    width: auto;
    padding-left: 0;
  }

  .p-body-sidebar {
    margin-top: 16px;
  }
}

@media (max-width: 650px) {
  .node-main {
    display: block;
    width: auto;
  }

  .node-extra {
    display: block;
    width: auto;
    margin-top: -4px;
    padding-top: 0;
  }

  .node-extra-icon,
  .node-description,
  .node-stats {
    display: none;
  }

  .structItem-cell--iconEnd {
    display: none;
  }
}

