﻿@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #07090c;
  --bg-2: #11161b;
  --bg-3: #1a2128;
  --surface: rgba(20, 25, 31, 0.88);
  --surface-strong: rgba(11, 15, 19, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --paper: rgba(250, 246, 239, 0.96);
  --paper-strong: #fffdf9;
  --paper-muted: #efe8df;
  --text: #eef2f6;
  --text-muted: #9aa8b4;
  --ink: #171b20;
  --ink-soft: #49515b;
  --accent: #1d9bff;
  --accent-strong: #0d7dd8;
  --accent-soft: rgba(29, 155, 255, 0.14);
  --success: #22b573;
  --success-soft: rgba(34, 181, 115, 0.14);
  --danger: #e34a62;
  --danger-soft: rgba(227, 74, 98, 0.14);
  --warning: #d8a44b;
  --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.12);
  --radius-xl: 5px;
  --radius-lg: 5px;
  --radius-md: 5px;
  --radius-sm: 5px;
  --content-max: 1880px;
}

* {
  font-family: 'Barlow Condensed', sans-serif;
}

h1, h2, h3, h4, h5,
#header span,
.profileHeaderName,
.profileHeaderDetails,
.profileHeaderActionButton span,
footer li a,
.homepageSearchLink h2,
#menu ul li a,
.site-brand-copy strong,
.dashboardNavigationText,
.banner h1 {
  font-family: 'Barlow Condensed', sans-serif !important;
  letter-spacing: 0.02em;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: var(--ink);
}

body.site-body {
  min-height: 100vh;
  background: #ffffff !important;
}

body.site-body.backgroundFullCoverContainer {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center top !important;
}

body.site-body::before,
body.site-body::after {
  display: none;
}

#header,
#menu,
#maincontent,
.banner,
.darkgreycontainer {
  position: relative;
  z-index: 1;
}

#header {
  height: auto !important;
  background: rgba(8, 12, 15, 0.84) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.site-menu-brand {
  display: none;
}

.site-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  color: var(--text) !important;
}

.site-brand:hover {
  transform: translateY(-1px);
}

.site-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.site-brand-copy {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px;
  white-space: nowrap;
}

.site-brand-copy strong {
  display: inline-block !important;
  margin: 0 !important;
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 1.85rem;
  line-height: 1;
}

.site-brand-copy small {
  display: inline-block !important;
  /* margin: 0 !important; */
  margin-left:10px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-nav-toggle {
  position: static !important;
  font-size: 2.2rem !important;
  color: #fff !important;
}

#menu {
  background: transparent !important;
}

#menu > ul {
  background: transparent !important;
}

#menu ul li a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1rem;
}

#menu ul li:hover > a,
#menu ul li a:hover {
  color: #fff !important;
}

#menu ul ul {
  background: rgba(11, 15, 19, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
}

#menu ul ul li {
  border-left: 0 !important;
}

#menu ul ul li a {
  padding: 8px 18px !important;
}

#maincontent.site-maincontent {
  width: min(calc(100% - 12px), var(--content-max));
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 8px 0 14px;
}

#page-content {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 20px;
  overflow: hidden;
}

.route-home #page-content,
.route-user-login #page-content,
.route-user-register #page-content {
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  color: var(--ink);
}

.section.group.bgBrightBlue,
.homepageSearchLink,
.homepageSearchLink h2,
.bgBrightBlue {
  background: linear-gradient(135deg, var(--accent) 0%, #53b6ff 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-lg);
}

.section.group.bgRed,
.bgRed,
.homepageRegister,
.homepageRegister h2 {
  background: linear-gradient(135deg, #ff4a55 0%, #d8244f 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-lg);
}

.homepageLogin,
.homepageLogin h2,
.bggreen,
.greenButton {
  background: linear-gradient(135deg, #27bf78 0%, #15965a 100%) !important;
  color: #fff !important;
}

.bglightgrey {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(28, 38, 49, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

h1,
h2,
h3,
h4 {
  color: #16202a !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.3rem, 3.8vw, 4.1rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

p,
label,
li,
input,
select,
textarea,
button {
  font-size: 1rem;
  line-height: 1.6;
}

.white,
.route-home p.white,
.route-user-login .white,
.route-home .white h2,
.route-home .white p,
.route-home .white a,
.route-user-login .white p,
.route-user-login .white label {
  color: var(--text) !important;
}

.smallGrey {
  color: var(--text-muted);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-strong);
}

.button,
.btnStyle,
.deleteBtnStyle,
input[type='submit'],
button,
.auth-login-button {
  border: 0 !important;
  border-radius: 5px !important;
  padding: 14px 22px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.blueButton,
.backgroundBrightBlue,
.btnStyle {
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%) !important;
  color: #fff !important;
}

.redButton,
.deleteBtnStyle {
  background: linear-gradient(135deg, #ee5f74 0%, #d53a58 100%) !important;
  color: #fff !important;
}

.greenButton,
.auth-login-button {
  background: linear-gradient(135deg, #27bf78 0%, #15965a 100%) !important;
  color: #fff !important;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: 5px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: #17202a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border-color: rgba(29, 155, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(29, 155, 255, 0.12);
}

.warning,
.alert_fail {
  background: linear-gradient(135deg, #ff5f69 0%, #d63556 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ok,
.alert_ok {
  background: linear-gradient(135deg, #24b673 0%, #17905a 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.darkgreycontainer {
  background: transparent !important;
  width: min(calc(100% - 20px), var(--content-max));
  max-width: var(--content-max);
  margin: 18px auto 0;
  padding: 0 0 28px;
  box-sizing: border-box;
}

footer.group {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    'intro help quick social'
    'meta meta meta meta';
  align-items: start;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(29, 155, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(6, 8, 11, 0.94), rgba(8, 11, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px !important;
  box-shadow: var(--shadow-lg);
}

.site-footer-intro {
  margin: 0 !important;
  padding: 0;
  text-align: left;
}

.site-footer-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.site-footer-kicker span {
  color: rgba(29, 155, 255, 0.9);
}

.site-footer-brand {
  margin: 0 0 10px;
  color: #fff !important;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  border: 0;
}

.site-footer-summary {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

footer .col {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-width: 0;
}

.footer-panel-intro {
  grid-area: intro;
}

.footer-panel-quick {
  grid-area: quick;
}

.footer-panel-social {
  grid-area: social;
}

.footer-panel-help {
  grid-area: help;
}

footer .span_4_of_4 {
  grid-area: meta;
  grid-column: 1 / -1;
  margin-top: 4px !important;
}

footer .breaker {
  display: none;
}

.footer-panel,
.footer-meta-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.footer-panel {
  padding: 22px 22px 18px;
}

.footer-meta-panel {
  padding: 22px 22px 18px;
}

footer h4 {
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
  padding-bottom: 12px;
  font-size: 1.9rem;
}

footer ul {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-panel ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-panel ul li:last-child {
  margin-bottom: 0;
}

.footer-panel ul li i {
  width: 16px;
  text-align: center;
  color: #7fc8ff !important;
}

.footer-panel a {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
}

.footer-panel a:hover {
  color: #ffffff !important;
}

footer .current_language,
footer .footer_subnav,
footer .footer_copyright,
footer .footer_feeders {
  color: rgba(255, 255, 255, 0.78);
}

footer .current_language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0 0 16px;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .current_language li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

footer .current_language .region {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

footer .current_language .language {
  color: #fff;
  font-size: 1rem;
}

footer .footer_subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

footer .footer_subnav li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-right: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
}

footer .footer_subnav li i,
footer .footer_subnav li img {
  margin-left: 2px;
  flex: 0 0 auto;
}

footer .footer_subnav a {
  color: rgba(255, 255, 255, 0.92) !important;
}

footer .footer_copyright {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.75;
}

footer .footer_feeders {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}

footer .footer_feeders + .footer_feeders {
  margin-top: 6px;
}

.dashboardNavigationContainer {
  display: grid !important;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 28px !important;
  overflow: visible;
}

.dashboardNavigation {
  min-width: 0;
  margin: 0 !important;
  background: linear-gradient(180deg, rgba(17, 24, 30, 0.92), rgba(10, 14, 18, 0.95)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 11px 6px !important;
  box-shadow: var(--shadow-sm);
}

.dashboardNavigation a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.86) !important;
}

.dashboardNavigation:hover,
.dashboardNavigation:focus-within,
.dashboardNavigation.current {
  background: linear-gradient(135deg, rgba(29, 155, 255, 0.94), rgba(58, 173, 255, 0.9)) !important;
}

.dashboardNavigation:hover a,
.dashboardNavigation:focus-within a,
.dashboardNavigation.current a {
  color: #fff !important;
}

.dashboardNavigationIcon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 6px;
}

.dashboardNavigationIcon--unread .fa-envelope {
  color: #e3425b;
}

.dashboardNavigationBadge {
  display: none;
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 5px;
  background: #e3425b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(227, 66, 91, 0.24);
}

.dashboardNavigationBadge:not(:empty) {
  display: inline-block;
}

.dashboardNavigationText {
  font-size: 0.86rem;
  white-space: nowrap;
  line-height: 1.15;
  text-align: center;
}

.route-search .dashboardNavigation.dnSearch,
.route-search-profile .dashboardNavigation.dnSearch,
.route-search-awprofile .dashboardNavigation.dnSearch,
.route-outbound .dashboardNavigation.dnProfile,
.route-user-dashboard-profile .dashboardNavigation.dnProfile,
.route-user-dashboard-profile-edit .dashboardNavigation.dnProfile,
.route-user-dashboard-gallery .dashboardNavigation.dnGallery,
.route-user-dashboard-verification .dashboardNavigation.dnVerify,
.route-message .dashboardNavigation.dnMessage,
.route-user-dashboard-messages .dashboardNavigation.dnMessage,
.route-user-dashboard-messages-chatter .dashboardNavigation.dnMessage,
.route-user-dashboard-purchases .dashboardNavigation.dnPurchases,
.route-user-dashboard-alerts .dashboardNavigation.dnAlerts,
.route-user-dashboard-favourite .dashboardNavigation.dnFavourite,
.route-user-dashboard-recently-viewed .dashboardNavigation.dnRecentlyViewed,
.route-user-dashboard-notes .dashboardNavigation.dnNotes,
.route-user-dashboard-blocked .dashboardNavigation.dnBlocked {
  background: linear-gradient(135deg, rgba(29, 155, 255, 0.94), rgba(58, 173, 255, 0.9)) !important;
}

.route-search .dashboardNavigation.dnSearch a,
.route-search-profile .dashboardNavigation.dnSearch a,
.route-search-awprofile .dashboardNavigation.dnSearch a,
.route-outbound .dashboardNavigation.dnProfile a,
.route-user-dashboard-profile .dashboardNavigation.dnProfile a,
.route-user-dashboard-profile-edit .dashboardNavigation.dnProfile a,
.route-user-dashboard-gallery .dashboardNavigation.dnGallery a,
.route-user-dashboard-verification .dashboardNavigation.dnVerify a,
.route-message .dashboardNavigation.dnMessage a,
.route-user-dashboard-messages .dashboardNavigation.dnMessage a,
.route-user-dashboard-messages-chatter .dashboardNavigation.dnMessage a,
.route-user-dashboard-purchases .dashboardNavigation.dnPurchases a,
.route-user-dashboard-alerts .dashboardNavigation.dnAlerts a,
.route-user-dashboard-favourite .dashboardNavigation.dnFavourite a,
.route-user-dashboard-recently-viewed .dashboardNavigation.dnRecentlyViewed a,
.route-user-dashboard-notes .dashboardNavigation.dnNotes a,
.route-user-dashboard-blocked .dashboardNavigation.dnBlocked a {
  color: #fff !important;
}

.dashboardNavigation.is-pulsing {
  animation: dashboardPulse 0.9s ease;
}

body.site-body.route-user-dashboard #page-content {
  padding: 20px;
}

.dashboardHome {
  display: grid;
  gap: 20px;
}

.dashboardHomeHero,
.dashboardHomeNotice,
.dashboardHomeCard {
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.dashboardHomeHero {
  padding: 24px 26px;
}

.dashboardHomeKicker {
  margin: 0 0 8px;
  color: #72808d;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dashboardHomeHero h1 {
  margin: 0;
  line-height: 1;
}

.dashboardHomeLead {
  margin: 12px 0 0;
  max-width: 68ch;
  color: #5c6976;
  line-height: 1.7;
}

.dashboardHomeHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.dashboardHomeHeroActions .button {
  min-width: 180px;
  justify-content: center;
  box-shadow: none !important;
}

.dashboardHomePrimaryAction {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

.dashboardHomeSecondaryAction {
  background: #8d2f4d !important;
  color: #ffffff !important;
}

.dashboardHomeNotice {
  padding: 14px 16px;
  color: #7a2940;
  background: rgba(227, 74, 98, 0.08);
  border-color: rgba(227, 74, 98, 0.16);
  box-shadow: none;
}

.dashboardHomePrimaryGrid,
.dashboardHomeSecondaryGrid {
  display: grid;
  gap: 16px;
}

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

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

.dashboardHomeCard {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  color: #17222d !important;
  text-decoration: none;
  position: relative;
}

.dashboardHomeCard:hover {
  border-color: rgba(47, 152, 243, 0.24);
  box-shadow: 0 10px 24px rgba(47, 152, 243, 0.08);
}

.dashboardHomeCard--large {
  min-height: 190px;
}

.dashboardHomeCardIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: rgba(47, 152, 243, 0.1);
  color: #2f98f3;
  font-size: 1.3rem;
}

.dashboardHomeCardTitle {
  color: #8d2f4d;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.dashboardHomeCardCopy {
  color: #5c6976;
  line-height: 1.6;
}

.dashboardHomeCardFlag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 5px;
  background: #8d2f4d;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboardHomeCard--attention {
  border-color: rgba(141, 47, 77, 0.3);
}

.dashboardHomeCard--attention .dashboardHomeCardIcon {
  background: rgba(141, 47, 77, 0.12);
  color: #8d2f4d;
}

@keyframes dashboardPulse {
  0% {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  35% {
    transform: translateY(-3px);
    box-shadow: 0 0 0 8px rgba(29, 155, 255, 0.16), var(--shadow-md);
  }

  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }
}

.home-page-content {
  padding: 36px !important;
}

.route-home .home-page-content > .section.group:first-child {
  max-width: 960px;
  margin: 0 auto 18px;
  text-align: center;
}

.route-home .home-page-content > .section.group:first-child h2 {
  color: #fff !important;
  font-size: clamp(1.3rem, 2.5vw, 2.25rem);
  max-width: 980px;
  margin: 0 auto 18px;
}

.route-home .home-page-content > .section.group:first-child p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 820px;
  margin: 0 auto 12px;
}

.route-home .homepageActions {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.route-home .homepageActions .col {
  float: none;
  width: calc(50% - 8px);
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  min-height: 120px;
  padding: 20px 22px !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.route-home .homepageLogin,
.route-home .homepageRegister {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.route-home .homepageLogin a,
.route-home .homepageRegister a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.route-home .homepageLogin h2,
.route-home .homepageRegister h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 4px;
}

.route-home .homepageLogin p,
.route-home .homepageRegister p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.route-home .bgBrightBlue {
  margin: 22px 0 14px;
  padding: 26px 20px;
  box-shadow: var(--shadow-md);
}

.route-home .homepageTeaserRow {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.route-home .homepageTeaser {
  float: none;
  width: calc((100% - 28px) / 3);
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  padding: 14px 16px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78) !important;
  min-height: 90px;
}

.route-home .homepageTeaser h3 {
  color: #18212a !important;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.route-home .homepageTeaser p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

.auth-page-content {
  padding: 24px !important;
}

.route-user-login .auth-page-content {
  max-width: 760px;
  margin: 0 auto;
}

.route-user-login .auth-page-content form {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 22px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.route-user-login .auth-page-content form::before {
  content: 'Welcome back';
  display: block;
  margin-bottom: 10px;
  color: #8aa0b5;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.route-user-login .auth-page-content form::after {
  content: none;
  display: none;
}

.route-user-reset .auth-page-content {
  max-width: 760px;
  margin: 0 auto;
}

.route-user-reset .auth-reset-card {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-lg);
}

.route-user-reset .auth-reset-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.route-user-reset .auth-reset-info {
  display: grid;
  gap: 10px;
}

.route-user-reset .auth-reset-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.route-user-reset .auth-reset-info p,
.route-user-reset .auth-reset-help {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.route-user-reset .auth-reset-info a,
.route-user-reset .auth-reset-help a,
.route-user-reset .alert_fail a,
.route-user-reset .alert_ok a {
  color: #9fd4ff;
  text-decoration: underline;
}

.route-user-reset .auth-reset-note {
  color: #ff8577;
  font-weight: 700;
}

.route-user-reset .auth-reset-form {
  display: grid;
  gap: 12px;
}

.route-user-reset .auth-reset-form label strong {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
}

.route-user-reset .auth-reset-form input[type='text'] {
  width: 100%;
}

.route-user-reset #resetPasswordButton {
  width: 100%;
}

.route-user-reset .alert_fail,
.route-user-reset .alert_ok {
  margin: 0;
}

.route-user-login .auth-page-content .span_1_of_7 {
  display: none;
}

.route-user-login .auth-page-content .span_5_of_7 {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.route-user-login .auth-page-content .loginPrimaryFields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 4px;
}

.route-user-login .auth-page-content .loginPrimaryFields .section.group {
  margin-bottom: 0;
}

.route-user-login .auth-page-content .passwordFieldWrap {
  position: relative;
}

.route-user-login .auth-page-content .passwordFieldWrap input {
  padding-right: 48px;
}

.route-user-login .auth-page-content .passwordRevealButton {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 5px !important;
  background: rgba(23, 34, 46, 0.08) !important;
  color: #4d5a66 !important;
  box-shadow: none !important;
}

.route-user-login .auth-page-content .passwordRevealButton:hover,
.route-user-login .auth-page-content .passwordRevealButton:focus {
  background: rgba(23, 34, 46, 0.14) !important;
  color: #1a2530 !important;
}

.route-user-login .auth-page-content label strong {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
}

.route-user-login .auth-page-content .section.group {
  margin-bottom: 8px;
}

.route-user-login .auth-page-content .loginPadCheckbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-user-login .auth-page-content .auth-login-button {
  width: 100%;
  margin-top: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.route-user-login .auth-page-content .loginFooterLinks {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 100%;
  clear: both;
}

.route-user-login .auth-page-content .loginFooterLinks::before,
.route-user-login .auth-page-content .loginFooterLinks::after {
  content: none;
  display: none;
}

.route-user-login .auth-page-content .loginFooterLinks .span_1_of_3 {
  width: 100% !important;
  min-width: 0;
  float: none !important;
  margin-left: 0 !important;
  margin: 0 !important;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78) !important;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.route-user-login .auth-page-content .loginFooterLinks .span_1_of_3 p {
  margin: 0;
  line-height: 1.35;
  text-align: center;
  width: 100%;
}

.route-user-login .auth-page-content > br:first-of-type,
.route-user-login .auth-page-content form + br,
.route-user-login .auth-page-content form + br + br {
  display: none;
}

.route-search #page-content,
.route-search-profile #page-content,
.route-search-awprofile #page-content {
  padding: 20px !important;
}

.route-user-dashboard #page-content {
  padding: 26px !important;
}

.route-search #maincontent.site-maincontent {
  /*width: min(calc(100% - 20px), var(--content-max));*/
  max-width: var(--content-max);
}

.page-search-content .mobileNoShow {
  display: block;
}

.page-search-content {
  padding: 18px !important;
}

.search-page-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 5px;
  background:
    radial-gradient(circle at top right, rgba(29, 155, 255, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(12, 16, 21, 0.97), rgba(20, 28, 34, 0.94));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.search-toolbar-copy {
  max-width: 820px;
}

.search-toolbar-copy h2 {
  color: #fff !important;
  margin-bottom: 8px;
}

.search-toolbar-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.search-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.search-toolbar-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#searchPanelToggle[aria-expanded='true'] {
  background: #8d2f4d !important;
  border-color: #8d2f4d !important;
  color: #ffffff !important;
}

#searchPanelToggle[aria-expanded='true']:hover,
#searchPanelToggle[aria-expanded='true']:focus {
  background: #7f2945 !important;
  border-color: #7f2945 !important;
  color: #ffffff !important;
}

.search-save-form {
  margin: 0;
  display: inline-flex;
}

.search-toolbar-button--secondary {
  background: #ffffff;
  color: #1d9bff;
  border: 1px solid rgba(29, 155, 255, 0.22);
}

.search-toolbar-button--secondary:hover,
.search-toolbar-button--secondary:focus {
  background: #eaf5ff;
  color: #0d7bd4;
}

.search-toolbar-status {
  color: #5c6976;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-toolbar-button.is-attention {
  animation: searchAttentionPulse 1.2s ease-in-out 4;
}

@keyframes searchAttentionPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
  }

  45% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 8px rgba(29, 155, 255, 0.14), var(--shadow-md);
  }
}

.search-defaults-notice {
  margin-top: -6px;
  padding: 16px 18px;
  border-radius: 5px;
  background: rgba(29, 155, 255, 0.08);
  border: 1px solid rgba(29, 155, 255, 0.14);
  color: #1f435d;
}

.search-current-filters-shell {
  padding: 16px 18px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  margin-bottom: 0;
  cursor: default;
  transition: none;
}

.search-current-filters-shell:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  border-color: rgba(23, 34, 46, 0.08);
}

.search-current-filters-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.search-current-filters-shell .search-results-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.search-current-filters-bar {
  display: flex;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}

.search-current-filters-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

@media only screen and (max-width: 1360px) {
  .search-current-filters-bar {
    flex-wrap: wrap;
  }

  .search-current-filters {
    flex: 1 1 100%;
  }

  .search-current-filters-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.search-cache-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d9bff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.search-inline-button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #1d9bff !important;
}

.search-inline-button.is-attention {
  color: #1d9bff !important;
}

.search-inline-button.is-attention:hover,
.search-inline-button.is-attention:focus {
  color: #0d7bd4 !important;
}

.search-cache-inline:hover {
  color: #0d7bd4;
}

.search-sort-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 7px 12px 8px;
  background: #2f98f3;
  border: 1px solid rgba(11, 91, 153, 0.36);
  box-shadow: none;
}

.search-sort-control span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.search-sort-control select {
  min-width: 118px;
  margin: 0;
  border: 0;
  padding: 0 20px 0 0;
  background-color: #2f98f3 !important;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.88) 50%) calc(100% - 11px) calc(50% - 1px) / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 50%, transparent 50%) calc(100% - 7px) calc(50% - 1px) / 6px 6px no-repeat,
    #2f98f3;
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 600;
  outline: none;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
}

.search-sort-control select option {
  background: #2f98f3;
  color: #fff;
}

.search-sort-control--results {
  margin-left: auto;
  min-height: 42px;
  padding: 0;
}

.search-sort-control--results select {
  min-width: 190px;
  min-height: 42px;
  padding: 0 26px 0 12px;
  font-size: 0.82rem;
}

.search-cache-status {
  color: #6b7884;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.search-current-filters {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.search-current-filters-copy {
  margin: 0;
  color: #465260;
  font-size: 0.96rem;
  line-height: 1.68;
  max-width: 980px;
}

.search-current-filter-chip {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 2px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 34, 46, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.search-current-filter-chip small {
  color: #697683;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.1;
  white-space: nowrap;
}

.search-current-filter-chip strong {
  color: #18222d;
  font-size: 0.84rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-current-filters-shell .search-toolbar-button {
  min-height: 0;
  padding: 8px 14px;
  white-space: nowrap;
}

.search-drawer {
  display: none;
  overflow: hidden;
  max-height: none;
  opacity: 1;
  transform: none;
  transition: none;
}

.search-drawer.is-open {
  display: block;
}

.search-drawer-shell {
  padding: 4px;
  border-radius: 5px;
  background: transparent;
}

.search-shell {
  display: grid;
  grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.search-shell > .col {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

.search-sidebar-column {
  position: sticky;
  top: 110px;
}

#searchForm.search-panel {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px 12px;
  padding: 18px;
  border-radius: 5px;
  background: linear-gradient(180deg, #4aa3ef, #2f8fe5) !important;
  box-shadow: 0 14px 30px rgba(23, 104, 170, 0.18);
  border: 1px solid rgba(18, 64, 103, 0.24);
  margin-bottom: 10px;
}

#searchForm.search-panel h2 {
  grid-column: 1 / -1;
  color: #ffffff !important;
  margin-bottom: 2px;
  font-size: 1.45rem;
  line-height: 1;
}

#searchForm.search-panel .search-panel-intro {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: #697683;
  font-size: 0.84rem;
  line-height: 1.3;
  display: none;
}

#searchForm.search-panel label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.15;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

#searchForm.search-panel label br {
  display: none;
}

#searchForm.search-panel .styled,
#searchForm.search-panel input:not([type='submit']),
#searchForm.search-panel select {
  width: 100% !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

#searchForm.search-panel .styled {
  border-radius: 5px;
  height: auto !important;
  overflow: visible !important;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

#searchForm.search-panel select,
#searchForm.search-panel input:not([type='submit']) {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #17202a !important;
  float: none !important;
  line-height: 1.2;
  box-sizing: border-box;
  border: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

#searchForm.search-panel select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, #1b2530 50%) calc(100% - 15px) calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(135deg, #1b2530 50%, transparent 50%) calc(100% - 11px) calc(50% - 2px) / 6px 6px no-repeat,
    transparent !important;
}

#searchForm.search-panel select option {
  color: #17202a;
  background: #fff;
}

#searchForm.search-panel input:not([type='submit']) {
  background: transparent !important;
}

#searchForm.search-panel select:focus,
#searchForm.search-panel input:not([type='submit']):focus,
#searchForm.search-panel .styled:focus-within {
  border-color: rgba(29, 155, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(29, 155, 255, 0.1);
}

#searchForm.search-panel input[type='submit'],
#searchForm.search-panel .button,
#searchForm.search-panel .btnStyle {
  width: auto;
  margin-top: 0;
}

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

.search-panel-actions {
  grid-column: 7;
  grid-row: 2 / span 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  margin-top: 0;
  min-height: 88px;
  height: 100%;
  align-self: stretch;
}

.search-panel-actions .button,
.search-panel-actions input[type='submit'] {
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.search-panel-actions input[type='submit'] {
  display: block;
  flex: 1 1 auto;
  width: 100%;
}

.search-panel-submit {
  border: 1px solid #ffffff !important;
  background: linear-gradient(180deg, #36a6ff, #178bed) !important;
  background-color: #178bed !important;
  background-image: linear-gradient(180deg, #36a6ff, #178bed) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(23, 139, 237, 0.18) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.search-panel-submit:hover,
.search-panel-submit:focus {
  background: linear-gradient(180deg, #49b1ff, #2394f2) !important;
  background-color: #2394f2 !important;
  background-image: linear-gradient(180deg, #49b1ff, #2394f2) !important;
  box-shadow: 0 14px 28px rgba(23, 139, 237, 0.24) !important;
}

.search-results-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.search-results-copy h2 {
  margin-bottom: 0;
}

.search-results-eyebrow {
  margin: 0 0 10px;
  color: #64717e;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.search-results-summary {
  display: grid;
  grid-template-columns: minmax(180px, 220px);
  gap: 12px;
  min-width: min(100%, 220px);
}

.search-results-summary-card {
  padding: 18px 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

.search-results-summary-card span {
  display: block;
  color: #16202a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.search-results-summary-card small {
  display: block;
  margin-top: 6px;
  color: #53616e;
  font-size: 0.9rem;
}

.searchWelcome {
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 238, 228, 0.8));
}

.search-notice {
  margin: 14px 0 0;
  padding: 16px 18px;
  border-radius: 5px;
  background: rgba(227, 74, 98, 0.08);
  border: 1px solid rgba(227, 74, 98, 0.12);
  color: #7a2940;
}

.profileCount {
  margin: 10px 0 8px;
  color: #4f5964;
  font-weight: 600;
}

.search-results-filter-shell {
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.button-group.filter-button-group,
.filter-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

.filter-button-group button,
.button-group button {
  font-family: 'Barlow Condensed', sans-serif !important;
  padding: 7px 12px !important;
  border-radius: 5px !important;
  background: rgba(23, 34, 46, 0.08);
  color: #17222d;
  box-shadow: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.filter-button-group button:hover,
.button-group button:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.filter-button-group button.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%);
  color: #fff;
}

.searchResultContainer {
  overflow: hidden;
}

#searchResults.is-dissolving {
  pointer-events: none;
}

#searchResults.is-dissolving .filter-button-group,
#searchResults.is-dissolving .search-notice,
#searchResults.is-dissolving .searchResultContainer--local > a.addFav,
#searchResults.is-dissolving .aw-results-grid-items > .search-result-combined-shell {
  animation: searchResultsDissolve var(--search-dissolve-duration, 2200ms) ease forwards;
  transform-origin: center center;
}

@keyframes searchResultsDissolve {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  65% {
    opacity: 0.32;
    filter: blur(2px);
    transform: scale(0.992);
  }

  100% {
    opacity: 0;
    filter: blur(6px);
    transform: scale(0.98);
  }
}

.aw-results-grid-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  align-items: stretch;
}

.aw-results-grid-items.responsive-grid {
  grid-template-columns: repeat(var(--grid-cols-desktop, 6), minmax(0, 1fr));
}

.searchResultContainer--local > a.addFav,
.aw-results-grid-items > .grid2 {
  display: block;
  float: none;
  width: auto;
  margin: 0;
  min-width: 0;
}

.searchResultContainer--local > a.addFav,
.aw-results-grid-items > .grid2 > a.addFav {
  color: inherit;
  text-decoration: none;
}

.aw-results-grid-items > .grid2 {
  box-sizing: border-box;
  height: 100%;
}

.aw-results-grid-items > .grid2 > a.addFav {
  display: block;
  height: 100%;
}

.aw-results-grid-items > .grid2.is-filter-hidden {
  display: none;
}

.searchResultContainer--aw .searchResultUserContainer {
  border-radius: 5px !important;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff, #f1f4f7) !important;
  border: 1px solid rgba(23, 34, 46, 0.12) !important;
  box-shadow: 0 6px 16px rgba(23, 34, 46, 0.08);
  color: #17222d;
}

.searchResultContainer--aw .searchResultUserContainer:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 34, 46, 0.12);
  background: linear-gradient(180deg, #ffffff, #eef3f7) !important;
}

.searchResultContainer--aw .searchResultUserContainer.availableToday {
  background: linear-gradient(180deg, #ffffff, #f1f4f7) !important;
  border-color: rgba(23, 34, 46, 0.12) !important;
}

.searchResultContainer--aw .searchResultUserContainer--localmix {
  background: linear-gradient(180deg, #dcecff, #f8fbff) !important;
  border-color: rgba(29, 155, 255, 0.34) !important;
}

.searchResultContainer--aw .searchResultUserContainer--localmix:hover {
  background: linear-gradient(180deg, #ffffff, #dfecff) !important;
  border-color: rgba(29, 155, 255, 0.42) !important;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardSource {
  color: #1878c7;
  font-weight: 700;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardMeta span,
.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardStats span {
  background: rgba(29, 155, 255, 0.08);
}

.searchResultContainer--aw .searchResultUserContainer--localmix .location {
  min-height: 2.7em;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardMeta--local-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardGallery--localmix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 40px;
  gap: 5px;
  margin-top: 6px;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardGalleryThumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 2px;
  border-radius: 5px;
  border: 1px solid rgba(16, 26, 36, 0.16);
  background: #f4f7fa;
  box-sizing: border-box;
  overflow: hidden;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardGalleryThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardGalleryThumb.is-empty {
  background: #f4f7fa;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchCardMetaFavourite {
  background: rgba(23, 34, 46, 0.08) !important;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchVerified {
  background: linear-gradient(135deg, #1d9bff 0%, #53b6ff 100%);
}

.searchResultContainer--aw .searchResultUserContainer--localmix .actions .favourite {
  background: transparent !important;
  color: #17222d !important;
  border: 0 !important;
}

.searchResultContainer--aw img.shipsWindow {
  width: calc(100% - 16px) !important;
  height: 112px;
  margin: 8px 8px 0 !important;
  border-width: 2px !important;
  border-radius: 5px !important;
}

.searchResultContainer--aw .srucBottom {
  padding: 8px 10px 10px !important;
}

.searchResultContainer--aw .searchCardSource {
  margin-bottom: 2px;
  color: #6d7a86;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.searchResultContainer--aw .username {
  font-size: 1rem !important;
  line-height: 1.14;
  color: #17222d !important;
}

.searchResultContainer--aw .location {
  margin-top: 3px;
  color: #51606d !important;
  font-size: 0.82rem !important;
  line-height: 1.35;
}

.searchResultContainer--aw .searchCardMeta,
.searchResultContainer--aw .searchCardRates,
.searchResultContainer--aw .searchCardStats {
  gap: 5px;
  margin-top: 6px;
}

.searchResultContainer--aw .searchCardMeta--aw-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.searchResultContainer--aw .searchCardMeta span,
.searchResultContainer--aw .searchCardStats span {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(16, 26, 36, 0.16);
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.07);
  color: #17222d;
  font-size: 0.74rem;
  line-height: 1.2;
  min-height: 38px;
  min-width: 0;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.searchResultContainer--aw .searchCardMeta--aw-summary span {
  width: 100%;
  min-width: 0;
}

.searchResultContainer--aw .searchCardMetaFavourite {
  justify-content: center;
  background: rgba(29, 155, 255, 0.12) !important;
}

.searchResultContainer--aw .searchCardRates .rates {
  margin-right: 0;
  margin-bottom: 0;
  padding: 5px 8px;
  border: 1px solid #c7d0d9 !important;
  border-radius: 5px;
  background: #f4f7fa !important;
  color: #12202d;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25em;
  min-height: 34px;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.searchResultContainer--aw .searchCardRates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.searchResultContainer--aw .searchCardRates .rates.fifteen {
  background: #dff6e9 !important;
}

.searchResultContainer--aw .searchCardRates .rates.thirty {
  background: #e4efff !important;
}

.searchResultContainer--aw .searchCardRates .rates.hour {
  background: #ffe4ea !important;
}

.searchResultContainer--aw .searchCardRates .rates.rates--empty {
  background: #eef2f5 !important;
  color: #6a7783;
}

.searchResultContainer--aw .searchCardStats img {
  width: 10px;
  height: 10px;
}

.searchResultContainer--aw .searchCardStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.searchResultContainer--aw .searchCardAlert {
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 5px;
  color: #ffe4e9;
  font-size: 0.76rem;
}

.searchResultContainer--aw .actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 6px;
  margin-top: 8px !important;
  align-items: stretch;
}

.searchResultContainer--aw .actions > * {
  min-width: 0;
  box-sizing: border-box;
}

.searchResultContainer--aw .searchCardCta {
  min-height: 34px;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 0.78rem;
}

.searchResultContainer--aw .searchVerified {
  top: 8px;
  left: 8px;
  padding: 4px 6px;
  border-radius: 5px;
  background: linear-gradient(135deg, #24b673 0%, #17905a 100%);
  color: #fff !important;
  font-size: 0.68rem;
  box-shadow: none;
}

.searchResultContainer--aw .searchVerified.searchVerified--icon {
  min-width: 24px;
  width: 24px;
  padding: 4px 0;
}

.searchTopBadges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.searchTopBadges .searchVerified {
  position: static;
  top: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 7px;
  font-size: 0.68rem;
  min-height: 24px;
  box-sizing: border-box;
}

.searchTopBadges .searchVerified.searchVerified--icon {
  width: 24px;
  min-width: 24px;
  padding: 4px 0;
}

.searchTopBadges .searchVerified.searchVerified--online {
  background: linear-gradient(135deg, #56c7ff 0%, #1d9bff 100%) !important;
}

.searchResultContainer--aw .searchSavedFlag {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  padding: 4px 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #ff6b81 0%, #e3425b 100%);
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  min-height: 24px;
  box-sizing: border-box;
  box-shadow: none;
}

.searchResultContainer--aw .searchResultUserContainer--localmix .searchSavedFlag {
  background: linear-gradient(135deg, #ff6b81 0%, #e3425b 100%);
}

.searchResultContainer--aw .searchSavedFlag i,
.searchResultContainer--aw .searchVerified.searchVerified--icon i {
  margin: 0;
  line-height: 1;
}

.searchResultContainer--aw .searchVerified--subtle {
  display: none;
}

.searchResultContainer::after {
  content: '';
  display: block;
  clear: both;
}

.aw-results-grid-items::after {
  display: none;
}

.searchResultUserContainer {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: linear-gradient(180deg, rgba(20, 25, 31, 0.96), rgba(9, 13, 17, 0.98)) !important;
  color: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.searchResultUserContainer:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.24);
  background: linear-gradient(180deg, rgba(20, 25, 31, 0.96), rgba(9, 13, 17, 0.98)) !important;
}

.searchResultUserContainer.availableToday,
#favouritesCards .searchResultUserContainer.availableToday {
  background: linear-gradient(180deg, rgba(20, 25, 31, 0.96), rgba(9, 13, 17, 0.98)) !important;
}

.searchResultUserContainer::after,
.searchResultUserContainer::before {
  z-index: 0;
}

.searchResultUserContainer .srucTop,
[class^='srucTop'] {
  height: 170px !important;
  background-size: cover !important;
  background-position: center top !important;
  opacity: 0.58;
  overflow: hidden;
  position: relative;
}

.searchResultUserContainer .srucTopImage,
[class^='srucTop'] .srucTopImage {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

img.shipsWindow {
  width: calc(100% - 40px) !important;
  max-width: none;
  height: 220px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 5px !important;
  margin-top: -92px !important;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-sm);
}

.route-search .searchResultUserContainer--local .srucTop {
  background-position: center top !important;
}

.route-search img.shipsWindow {
  object-position: center top;
  transition: object-position 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: object-position;
}

.route-search .searchResultUserContainer:hover img.shipsWindow,
.route-search .searchResultUserContainer:focus-within img.shipsWindow {
  object-position: center bottom;
}

.srucBottom {
  padding: 106px 18px 18px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.searchCardSource {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.username {
  color: #fff !important;
  font-size: 1.46rem !important;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0 !important;
}

.location {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.5;
  margin-top: 10px;
}

.searchCardMeta,
.searchCardRates,
.searchCardStats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.searchCardMeta span,
.searchCardStats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.searchCardStats span {
  background: rgba(255, 255, 255, 0.06);
}

.searchCardAlert {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 5px;
  background: rgba(227, 74, 98, 0.16);
  color: #ffd7dd;
  font-size: 0.92rem;
}

.actions {
  width: 100% !important;
  margin-top: auto !important;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.actions .favourite {
  border: 0 !important;
  border-radius: 5px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  padding: 12px 14px !important;
  box-shadow: none;
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.actions .favourite.favourite--icon-only {
  min-height: 34px;
  width: 100%;
  padding: 0 !important;
}

.actions .favourite.favourite--icon-only span {
  display: none;
}

.actions .favourite.favourite--icon-only .favHeart {
  font-size: 1rem;
}

.actions .favourite.favourite--icon-only .favHeart.white {
  color: #b5bec7 !important;
}

.actions .favourite.favourite--icon-only .favHeart.red {
  color: #e3425b !important;
}

.searchCardCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.searchVerified {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  padding: 6px 10px;
  font-weight: 700;
  z-index: 2;
}

.searchVerified.searchVerified--icon {
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 4px 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.searchVerified.searchVerified--icon i {
  margin: 0;
  line-height: 1;
}

.searchVerified--subtle {
  background: rgba(14, 19, 23, 0.62);
}

.page-profile-content .homepageSearchLink,
.page-profile-content .bgBrightBlue,
.page-search-content .homepageSearchLink,
.page-search-content .bgBrightBlue {
  margin-bottom: 16px;
  padding: 18px 18px;
}

body.site-body .homepageSearchLink.marginTop2,
body.site-body .homepageSearchLink.marginTop2 + .section.group.bgBrightBlue.white {
  display: none !important;
}

.favourites-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
  padding: 28px 30px;
  border-radius: 5px;
  background:
    radial-gradient(circle at top right, rgba(29, 155, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(11, 15, 19, 0.96), rgba(18, 26, 33, 0.92));
  box-shadow: var(--shadow-md);
  color: #fff;
}

.favourites-hero-copy {
  max-width: 720px;
}

.favourites-eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.favourites-hero h2 {
  margin-bottom: 12px;
  color: #fff !important;
}

.favourites-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.favourites-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.favourites-actions .button {
  white-space: nowrap;
}

.favourites-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.favourites-stat {
  padding: 20px 22px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

.favourites-stat-value {
  display: block;
  margin-bottom: 6px;
  color: #16202a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.favourites-stat-label {
  display: block;
  color: #4d5965;
  font-size: 0.95rem;
}

.favourites-grid-shell h2 {
  margin-bottom: 4px;
}

.favourites-grid-shell > p {
  margin-bottom: 18px;
  color: #51606d;
}

.page-dashboard-favourites .favourites-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
}

.page-dashboard-favourites .searchResultUserContainer {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff, #f1f4f7) !important;
  border: 1px solid rgba(23, 34, 46, 0.12) !important;
  box-shadow: 0 6px 16px rgba(23, 34, 46, 0.08);
  color: #17222d !important;
  box-sizing: border-box;
  overflow: hidden;
}

.page-dashboard-favourites .searchResultUserContainer a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.page-dashboard-favourites .searchResultUserContainer .srucTop {
  display: none;
}

.page-dashboard-favourites .searchResultUserContainer .srucBottom {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 !important;
  gap: 6px;
  flex: 1;
}

.page-dashboard-favourites .searchResultUserContainer .actions {
  margin-top: auto !important;
  padding-top: 5px;
  width: 100% !important;
  min-width: 0;
  display: flex;
}

.page-dashboard-favourites .searchVerified.js-remove-favourite {
  left: auto;
  right: 5px;
  top: 5px;
  background: rgba(23, 34, 46, 0.08) !important;
  color: #17222d !important;
  border: 1px solid rgba(23, 34, 46, 0.1);
  box-shadow: none;
}

.page-dashboard-favourites .searchResultUserContainer.availableToday {
  background: linear-gradient(180deg, #ffffff, #f1f4f7) !important;
  border-color: rgba(23, 34, 46, 0.12) !important;
}

.page-dashboard-favourites #favouritesCards .searchResultUserContainer.availableToday {
  background: linear-gradient(180deg, #ffffff, #f1f4f7) !important;
  border-color: rgba(23, 34, 46, 0.12) !important;
}

.page-dashboard-favourites .searchResultUserContainer.availableToday::before {
  content: 'Online';
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 5px;
  background: #24b673;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.page-dashboard-favourites .favourite {
  min-height: 34px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(23, 34, 46, 0.07) !important;
  color: #17222d !important;
  font-size: 0.74rem;
  padding: 8px 10px !important;
}

.page-dashboard-favourites .favourite--saved {
  font-weight: 700;
}

.page-dashboard-hidden .favourite--state {
  font-weight: 700;
  border: 0 !important;
  cursor: pointer;
  appearance: none;
}

.page-dashboard-hidden .actions .js-dashboard-list-action {
  background: #2f98f3 !important;
  color: #ffffff !important;
  box-shadow: none;
}

.page-dashboard-hidden .actions .js-dashboard-list-action:hover,
.page-dashboard-hidden .actions .js-dashboard-list-action:focus {
  background: #1d7fda !important;
  color: #ffffff !important;
}

.page-dashboard-hidden .favourites-grid-shell + .favourites-grid-shell {
  margin-top: 28px;
}

.page-dashboard-favourites .favourite--ratings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.page-dashboard-favourites .favourite--ratings span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 5px 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.page-dashboard-favourites .favourite img {
  width: 12px;
  height: 12px;
}

.page-dashboard-favourites .dashboardInlineNoteToggle,
.page-dashboard-recently-viewed .dashboardInlineNoteToggle {
  width: calc(100% - 10px);
  margin: 0 5px 6px;
  min-height: 34px;
  padding: 8px 10px !important;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.page-dashboard-favourites .dashboardInlineNoteToggle {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

.page-dashboard-favourites .dashboardInlineNoteToggle:hover,
.page-dashboard-favourites .dashboardInlineNoteToggle:focus {
  background: #1d7fda !important;
  color: #ffffff !important;
}

.page-dashboard-favourites .dashboardInlineNoteToggle.is-active {
  background: #1d7fda !important;
  color: #ffffff !important;
}

.page-dashboard-recently-viewed .dashboardInlineNoteToggle {
  background: rgba(23, 34, 46, 0.07) !important;
  color: #17222d !important;
}

.page-dashboard-recently-viewed .dashboardInlineNoteToggle.is-active {
  background: rgba(36, 182, 115, 0.12) !important;
  color: #177f51 !important;
}

.page-dashboard-favourites .dashboardInlineNotePanel,
.page-dashboard-recently-viewed .dashboardInlineNotePanel {
  display: none;
  padding: 0 5px 6px;
}

.page-dashboard-favourites .dashboardInlineNotePanel.is-open,
.page-dashboard-recently-viewed .dashboardInlineNotePanel.is-open {
  display: block;
}

.page-dashboard-favourites .dashboardInlineNotePanel textarea,
.page-dashboard-recently-viewed .dashboardInlineNotePanel textarea {
  width: 100%;
  min-height: 86px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 34, 46, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-sizing: border-box;
  font: inherit;
  font-size: 0.92rem;
  resize: vertical;
}

.page-dashboard-favourites .dashboardInlineNotePanel textarea:focus,
.page-dashboard-recently-viewed .dashboardInlineNotePanel textarea:focus {
  outline: none;
  border-color: rgba(29, 155, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(29, 155, 255, 0.12);
}

.page-dashboard-favourites .dashboardInlineNoteActions,
.page-dashboard-recently-viewed .dashboardInlineNoteActions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.page-dashboard-favourites .dashboardInlineNoteActions .favourite,
.page-dashboard-recently-viewed .dashboardInlineNoteActions .favourite {
  min-height: 32px;
  padding: 7px 10px !important;
  font-size: 0.72rem;
}

.page-dashboard-favourites .dashboardInlineNoteDelete,
.page-dashboard-recently-viewed .dashboardInlineNoteDelete {
  background: rgba(227, 74, 98, 0.12) !important;
  color: #a7344d !important;
}

.is-hidden {
  display: none;
}

.page-dashboard-favourites .dashboardInlineNoteStatus,
.page-dashboard-recently-viewed .dashboardInlineNoteStatus {
  display: block;
  margin-top: 4px;
  color: #66717d;
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-dashboard-favourites .dashboardInlineNoteStatus.is-success,
.page-dashboard-recently-viewed .dashboardInlineNoteStatus.is-success {
  color: #177f51;
}

.page-dashboard-favourites img.shipsWindow {
  width: 100% !important;
  height: 112px;
  margin: 0 !important;
  border-width: 2px !important;
  background: #eef2f5;
}

.page-dashboard-favourites .username {
  color: #17222d !important;
  font-size: 1rem !important;
  line-height: 1.1;
  text-align: center;
  padding: 0 4px;
}

.page-dashboard-favourites .location {
  color: #51606d !important;
  font-size: 0.82rem !important;
  line-height: 1.35;
  margin-top: 0;
  text-align: center;
  padding: 0 4px;
}

.favourites-empty-state {
  margin-top: 22px;
  padding: 30px 26px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  text-align: center;
}

.favourites-empty-state p:last-child {
  margin-bottom: 0;
}

.savedSearchesHero,
.savedSearchCard {
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.savedSearchesHero {
  padding: 24px 26px;
  margin-bottom: 22px;
}

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

.savedSearchCard {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.savedSearchCardHead {
  display: block;
}

.savedSearchCardHead h2 {
  margin: 0;
  color: #8e2f4f;
  font-size: 1.8rem;
  line-height: 1.02;
}

.savedSearchSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.savedSearchBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.savedSearchBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4fa;
  color: #1e2d3b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.savedSearchBadge--new {
  background: #22b573;
  color: #ffffff;
}

.savedSearchChip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 5px;
  background: #f3f7fb;
  border: 1px solid rgba(23, 34, 46, 0.08);
}

.savedSearchChip--sort {
  min-width: 92px;
}

.savedSearchChip small {
  color: #72808d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.savedSearchChip strong {
  color: #16202a;
  font-size: 0.9rem;
  line-height: 1.2;
}

.savedSearchMeta {
  display: grid;
  gap: 4px;
  color: #5c6976;
  font-size: 0.86rem;
}

.savedSearchActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.savedSearchActions > * {
  flex: 1 1 160px;
}

.savedSearchDeleteForm {
  margin: 0;
}

.savedSearchDeleteForm .button,
.savedSearchActions .button {
  width: 100%;
  text-align: center;
}

@media (max-width: 1200px) {
  .savedSearchesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .savedSearchesGrid {
    grid-template-columns: 1fr;
  }
}

.page-profile-content .profileContainerWrapper {
  background: transparent !important;
  margin-top: 12px !important;
}

.page-profile-content .profileHeader {
  display: none !important;
  height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.page-profile-content .profileWrapper {
  top: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  padding: 0 8px 24px !important;
  display: grid !important;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

.page-profile-content .profileSidebarLeft,
.page-profile-content .profileMainContent {
  width: auto !important;
  display: block !important;
  padding: 0 !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.page-profile-content .profileSidebarLeft {
  display: grid !important;
  gap: 14px;
  align-content: start;
}

.page-profile-content .profilePhoto {
  padding: 18px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.page-profile-content .profilePhoto::after {
  display: none;
}

.page-profile-content .profilePhoto img {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 5px !important;
  display: block;
}

.page-profile-content .profileStatistics,
.page-profile-content .profileHeaderWrapper,
.page-profile-content .profileMainGallery,
.page-profile-content .profileMainAboutMe,
.page-profile-content .profileMainIntentions,
.page-profile-content .profileMainDetails > div,
.page-profile-content .profileMainInfo,
.page-profile-content .profileAdultWorkWarning {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  box-shadow: var(--shadow-sm);
}

.page-profile-content .profileStatistics {
  margin-top: 18px;
  padding: 18px;
  position: sticky;
  top: 116px;
}

.page-profile-content .profileSidebarTitle {
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 34, 46, 0.08);
}

.page-profile-content .profileSidebarTitle span {
  display: block;
  color: #6a7784;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.page-profile-content .profileSidebarTitle strong {
  display: block;
  margin-top: 6px;
  color: #16202a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  line-height: 0.95;
}

.page-profile-content .profileHeaderWrapper {
  padding: 20px 24px;
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  color: #17222d;
}

.page-profile-content .profileHeaderName,
.page-profile-content .profileHeaderDetails {
  color: #17222d !important;
}

.page-profile-content .profileHeaderEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6a7784;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.page-profile-content .profileHeaderName {
  font-size: clamp(2.3rem, 4vw, 3.6rem) !important;
  line-height: 0.95 !important;
}

.page-profile-content .profileHeaderDetails {
  color: #51606d !important;
  margin-top: 4px;
  font-size: 1rem !important;
}

.page-profile-content .profileHeroMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-profile-content .profileHeroMetaItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.06);
  border: 1px solid rgba(23, 34, 46, 0.08);
  color: #17222d;
  font-size: 0.95rem;
}

.page-profile-content .profileHeroMetaItem.is-accent {
  background: rgba(29, 155, 255, 0.16);
}

.page-profile-content .profileHeroMetaItem.is-success {
  background: rgba(34, 181, 115, 0.14);
}

.page-profile-content .profileHeaderActions {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: auto !important;
  margin: 22px 0 0 !important;
  gap: 12px;
  width: 100%;
  align-items: stretch;
}

.page-profile-content .profileHeaderActions > a {
  flex: none;
  display: block !important;
  min-width: 0;
  margin: 0 !important;
  text-decoration: none;
}

.page-profile-content .profileHeaderActionButton {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-content: center;
  justify-content: center;
  justify-items: center;
  column-gap: 10px;
  min-height: 54px;
  width: 100%;
  padding: 0 14px;
  background: rgba(23, 34, 46, 0.06) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  color: #17222d !important;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.page-profile-content .profileHeaderActionButton i {
  line-height: 1;
  align-self: center;
}

.page-profile-content .profileHeaderActionButton span {
  display: block;
  margin: 0;
  line-height: 1.1;
  text-align: center;
}

.page-profile-content .profileHeaderActionButton.report {
  background: rgba(227, 74, 98, 0.18) !important;
}

.page-profile-content.page-profile-content-aw .profileHeaderActions {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  align-items: stretch;
}

.page-profile-content.page-profile-content-aw .profileHeaderActions > a {
  flex: none;
  display: block !important;
  min-width: 0;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  text-decoration: none;
}

.page-profile-content.page-profile-content-aw .profileHeaderActionButton {
  width: 100%;
}

.page-profile-content .profileLeftInfoBar,
.page-profile-content .profileRightInfoBar {
  margin: 0 !important;
  padding: 12px 0 !important;
  border-color: rgba(23, 34, 46, 0.08) !important;
}

.page-profile-content .profileFloatLeft,
.page-profile-content .profileFloatRight {
  float: none !important;
}

.page-profile-content .profileLeftInfoBar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.page-profile-content .profileFloatLeft {
  color: #66717d;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-profile-content .profileFloatRight {
  color: #17202a;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}

.page-profile-content .profileMainGallery {
  margin-top: 14px !important;
  padding: 16px !important;
  display: flex !important;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-inline: auto;
  overflow-x: auto;
  overflow-y: hidden;
  background: linear-gradient(135deg, rgba(29, 155, 255, 0.12) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(29, 155, 255, 0.22) 100%) !important;
  scrollbar-width: thin;
  scrollbar-gutter: stable both-edges;
}

.page-profile-content .profileMainGalleryThumb {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  min-width: 0;
  flex: 0 0 150px;
}

.page-profile-content .profileMainGalleryThumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 170px;
  padding: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.page-profile-content .profileMainGalleryThumb img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  border-radius: 5px;
  box-shadow: none;
  background: transparent;
}

.page-profile-content .profileMainDetails {
  margin-top: 22px;
}

.page-profile-content .profileMainDetails h2,
.page-profile-content .profileMainAboutMe h2,
.page-profile-content .profileMainIntentions h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #16202a !important;
}

.page-profile-content .profileMainDetails h2::before,
.page-profile-content .profileMainAboutMe h2::before,
.page-profile-content .profileMainIntentions h2::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent) 0%, #55bbff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.page-profile-content .profileMainAboutMe,
.page-profile-content .profileMainIntentions,
.page-profile-content .profileMainDetails > div,
.page-profile-content .profileMainInfo {
  padding: 22px 24px !important;
  margin-top: 18px !important;
  clear: both;
  height: auto !important;
  overflow: visible !important;
}

.page-profile-content .quote {
  margin: 8px 0 0 !important;
  padding: 12px 0 0 30px !important;
  color: #42505e !important;
}

.page-profile-content .reportMe {
  margin-top: 24px !important;
  padding: 16px 18px !important;
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%) !important;
  border-radius: 5px;
  color: #fff !important;
  font-size: 0.98rem !important;
  box-shadow: var(--shadow-sm);
}

.page-profile-content.page-profile-content-aw .profileRichText {
  color: #42505e;
  line-height: 1.75;
  font-size: 0.98rem;
  white-space: normal;
}

.page-profile-content.page-profile-content-aw .profileRichText + .profileRichText {
  margin-top: 14px;
}

.page-profile-content.page-profile-content-aw .profileRichText--summary {
  font-weight: 700;
  color: #1d2a35;
}

.page-profile-content.page-profile-content-aw .profileTagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.page-profile-content.page-profile-content-aw .profileWarningText {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -4px 0 18px;
  color: #c52843;
  font-weight: 700;
  line-height: 1.5;
}

.page-profile-content.page-profile-content-aw .profileFaqList,
.page-profile-content.page-profile-content-aw .profileInterviewList {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.page-profile-content.page-profile-content-aw .profileInterviewList {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-profile-content.page-profile-content-aw .profileFaqItem,
.page-profile-content.page-profile-content-aw .profileInterviewItem {
  padding: 10px 12px;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.04);
  border: 1px solid rgba(23, 34, 46, 0.08);
}

.page-profile-content.page-profile-content-aw .profileInterviewItem {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 8px 14px;
  align-items: baseline;
}

.page-profile-content.page-profile-content-aw .profileFaqItem strong,
.page-profile-content.page-profile-content-aw .profileInterviewItem strong,
.page-profile-content.page-profile-content-aw .profileSubsectionTitle {
  display: block;
  margin: 0 0 6px;
  color: #1b2731;
  font-weight: 700;
}

.page-profile-content.page-profile-content-aw .profileFaqItem p,
.page-profile-content.page-profile-content-aw .profileInterviewItem span {
  margin: 0;
  display: block;
  color: #42505e;
  line-height: 1.6;
}

.page-profile-content.page-profile-content-aw .profileInterviewItem strong,
.page-profile-content.page-profile-content-aw .profileInterviewItem span {
  line-height: 1.35;
}

.page-profile-content.page-profile-content-aw .profileRichText br + br,
.page-profile-content.page-profile-content-aw .profileFaqItem p br + br,
.page-profile-content.page-profile-content-aw .profileInterviewItem span br + br {
  display: none;
}

.page-profile-content.page-profile-content-aw .profileSubsectionTitle {
  margin-top: 6px;
}

.enjoy,
.bg_warning,
.interview,
.faq,
.rates,
.profileServices span {
  border: 0 !important;
  border-radius: 5px !important;
  background: rgba(23, 34, 46, 0.08) !important;
  color: #18212a;
  padding: 8px 12px !important;
}

.bg_warning {
  background: rgba(227, 74, 98, 0.12) !important;
}

.interview,
.faq {
  width: 100% !important;
  border-radius: 5px !important;
}

.page-profile-content .profileContactGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.page-profile-content .profileContactCard {
  padding: 18px 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(29, 155, 255, 0.12), rgba(83, 182, 255, 0.2));
  border: 1px solid rgba(29, 155, 255, 0.16);
  color: #16202a;
}

.page-profile-content .profileContactCard p {
  margin: 0;
}

.page-profile-content .profileReviewsTabs {
  margin-top: 6px;
}

.page-profile-content .profileReviewsTabs .ui-widget-header,
.page-profile-content .profileReviewsTabs .ui-widget-content {
  border: 0 !important;
  background: transparent !important;
}

.page-profile-content .profileReviewsTabs .ui-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 !important;
}

.page-profile-content .profileReviewsTabs .ui-tabs-nav li {
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.page-profile-content .profileReviewsTabs .ui-tabs-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.08);
  color: #17202a;
}

.page-profile-content .profileReviewsTabs .ui-tabs-active a {
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%);
  color: #fff;
}

.page-profile-content .profileReviewsTabs .ui-tabs-panel {
  padding: 10px 0 0 !important;
  border: 0 !important;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .ui-tabs-panel {
  display: grid;
  gap: 10px;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview {
  display: block !important;
  width: calc(100% - 14px) !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border: 0 !important;
  background: rgba(23, 34, 46, 0.04) !important;
  color: #42505e;
  line-height: 1.45;
  box-sizing: border-box;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong {
  display: inline;
  margin-right: 6px;
  font-weight: 700;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.Positive,
.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.positive {
  color: #178a57;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.Negative,
.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.negative {
  color: #c52843;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.Neutral,
.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview strong.neutral {
  color: #586574;
}

.page-profile-content.page-profile-content-aw .profileReviewsTabs .interview i {
  display: inline;
  margin-top: 0;
  color: #6a7581;
  font-size: 0.92rem;
  white-space: normal;
}

.page-profile-content .profileReviewsSection,
.page-profile-content .profileHistoricalLocations {
  padding-top: 16px !important;
}

.page-profile-content .profileHistoricalLocationsList {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.page-profile-content .profileHistoricalLocationsMapShell {
  margin-top: 10px;
  border: 1px solid rgba(23, 34, 46, 0.1);
  border-radius: 5px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.page-profile-content .profileHistoricalLocationsMap {
  width: 100%;
  height: 320px;
}

.page-profile-content .profileHistoricalLocationItem {
  color: #42505e;
  font-size: 0.96rem;
}

.profile-unavailable-card {
  padding: 28px 30px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 238, 228, 0.9));
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-md);
}

.profile-unavailable-card h2 {
  margin-bottom: 14px;
}

.currentPage,
.brightBlue,
.blue {
  color: var(--accent) !important;
}

@media (min-width: 40em) {
  #header {
    display: none !important;
  }

  #menu {
    position: relative;
    z-index: 4;
    left: auto !important;
    bottom: auto !important;
    height: auto !important;
    width: 100% !important;
    background: rgba(8, 12, 15, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  #menu > ul {
    max-width: var(--content-max);
    margin: 0 auto !important;
    padding: 12px 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    float: none !important;
    right: 0 !important;
    top: 0 !important;
  }

  .site-menu-brand {
    display: block;
    margin-right: auto;
  }

  .site-menu-brand > a {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-brand--menu {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
  }

  .site-brand--menu:hover {
    transform: none;
  }

  #menu > ul > li > a {
    padding: 10px 16px !important;
    border-radius: 5px;
    font-size: 0.98rem !important;
  }

  #menu > ul > li:hover > a,
  #menu > ul > li > a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
  }
}

@media only screen and (max-width: 1180px) {
  .searchResultContainer--local > a.addFav,
  .aw-results-grid-items > .grid2 {
    width: auto;
  }

  .page-profile-content.page-profile-content-aw .profileInterviewItem {
    padding: 7px 10px;
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    align-items: center;
  }

  .page-profile-content.page-profile-content-aw .profileInterviewItem strong,
  .page-profile-content.page-profile-content-aw .profileInterviewItem span {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

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

  .aw-results-grid-items.responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-tablet, 4), minmax(0, 1fr));
  }

  .page-dashboard-favourites .favourites-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 860px) {
  .searchResultContainer--local > a.addFav,
  .aw-results-grid-items > .grid2 {
    width: auto;
  }

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

  .aw-results-grid-items.responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-small, 3), minmax(0, 1fr));
  }

  .page-dashboard-favourites .favourites-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboardNavigation {
    min-width: 104px;
  }

  .page-profile-content .profileWrapper {
    grid-template-columns: 1fr !important;
    top: 0 !important;
  }

  .page-profile-content .profileHeader {
    display: none !important;
    height: 0 !important;
  }

  .page-profile-content .profileStatistics {
    position: static;
  }

  .page-profile-content .profileHeaderActions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-profile-content.page-profile-content-aw .profileInterviewItem {
    grid-template-columns: 1fr;
  }

  .page-profile-content.page-profile-content-aw .profileInterviewList {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 800px) {
  #maincontent.site-maincontent,
  .banner {
    width: min(calc(100% - 20px), var(--content-max));
  }

  footer.group {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'quick'
      'social'
      'help'
      'meta';
    padding: 22px;
  }

  #page-content,
  .route-home #page-content,
  .route-user-login #page-content {
    padding: 20px !important;
    border-radius: 5px;
  }

  #searchForm.search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .search-panel-actions .button,
  .search-panel-actions input[type='submit'] {
    min-height: 44px;
  }

  .search-results-intro {
    grid-template-columns: 1fr;
  }

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

  .search-current-filter-chip {
    min-width: calc(50% - 6px);
  }

  .favourites-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .favourites-actions,
  .favourites-actions .button {
    width: 100%;
  }

  .favourites-stats {
    grid-template-columns: 1fr;
  }

  .search-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .search-toolbar-actions,
  .search-toolbar-button {
    width: 100%;
  }

  .search-current-filters-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-current-filters-shell .search-results-eyebrow,
  .search-current-filters-bar,
  .search-current-filters-actions {
    width: 100%;
    justify-content: stretch;
  }

  .search-current-filters-bar {
    flex-direction: column;
  }

  .search-current-filters {
    flex-wrap: wrap;
  }

  .search-sort-control,
  .search-save-form,
  .search-current-filters-shell .search-toolbar-button {
    width: 100%;
  }

  .search-sort-control--results {
    margin-left: 0;
    width: 100%;
  }

  .search-save-form .search-toolbar-button {
    width: 100%;
  }

  .search-sort-control {
    justify-content: space-between;
  }

  .search-sort-control select {
    min-width: 0;
    width: 100%;
  }

  .search-cache-status {
    white-space: normal;
  }

  .page-profile-content .profileContactGrid {
    grid-template-columns: 1fr;
  }

  .route-user-login .auth-page-content form {
    padding: 26px 20px;
  }

  .route-user-login .auth-page-content .loginPrimaryFields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-user-login .auth-page-content .loginFooterLinks {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 480px) {
  body.site-body::before {
    opacity: 0.22;
    background-position: center;
  }

  .site-header-inner {
    padding: 14px 16px;
  }

  .site-brand-mark {
    width: 42px;
    height: 42px;
  }

  .site-brand-copy strong {
    font-size: 1.45rem;
  }

  .site-brand-copy small {
    font-size: 0.72rem;
  }

  #maincontent.site-maincontent {
    width: calc(100% - 12px);
    padding-top: 92px;
  }

  #page-content,
  .route-home #page-content,
  .route-user-login #page-content {
    padding: 16px !important;
    border-radius: 5px;
  }

  .darkgreycontainer {
    width: calc(100% - 12px);
    padding-bottom: 18px;
  }

  footer.group {
    padding: 18px;
    border-radius: 5px !important;
  }

  .site-footer-intro {
    padding: 2px 0 8px;
  }

  .site-footer-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .site-footer-summary {
    font-size: 0.95rem;
  }

  .footer-panel,
  .footer-meta-panel {
    padding: 18px 16px;
    border-radius: 5px;
  }

  footer .current_language,
  footer .footer_subnav {
    gap: 8px;
  }

  footer .footer_subnav li {
    width: 100%;
    justify-content: center;
  }

  .dashboardNavigationContainer {
    gap: 8px;
  }

  .dashboardNavigation {
    padding: 10px 6px !important;
  }

  .dashboardNavigationText {
    display: block !important;
    font-size: 0.84rem;
  }

  .searchResultContainer--local > a.addFav,
  .aw-results-grid-items > .grid2 {
    width: auto;
    margin-right: 0;
  }

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

  .aw-results-grid-items.responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-mobile, 2), minmax(0, 1fr));
  }

  .page-dashboard-favourites {
    padding: 20px !important;
  }

  .favourites-hero,
  .favourites-empty-state {
    padding: 22px 18px;
  }

  .page-dashboard-favourites .favourites-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  img.shipsWindow {
    max-width: 100%;
    height: 200px;
  }

  #searchForm.search-panel {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .search-results-summary {
    grid-template-columns: 1fr;
  }

  .search-current-filter-chip {
    width: 100%;
    min-width: 0;
  }

  .searchCardMeta span,
  .searchCardStats span,
  .searchCardCta,
  .actions .favourite {
    width: 100%;
  }

  .actions {
    flex-direction: column;
  }

  .page-profile-content .profileHeader {
    display: none !important;
    height: 0 !important;
  }

  .page-profile-content .profileHeaderWrapper {
    padding: 22px 18px !important;
  }

  .page-profile-content .profileHeaderActions {
    grid-template-columns: 1fr;
  }

  .page-profile-content .profileHeaderActions > a {
    flex-basis: 100%;
  }

  .page-profile-content .profileHeroMeta {
    gap: 8px;
  }

  .page-profile-content .profileHeroMetaItem {
    width: 100%;
    justify-content: flex-start;
  }

  .page-profile-content .profileMainGallery {
    display: flex !important;
    flex-wrap: nowrap;
  }

  .route-home .homepageActions .col,
  .route-home .homepageTeaser {
    min-height: 0;
  }

  #menu,
  #menu .sub-nav {
    background: rgba(7, 10, 13, 0.98) !important;
    backdrop-filter: blur(14px);
  }
}

body.site-body #page-content,
body.site-body .darkgreycontainer,
body.site-body footer.group,
body.site-body .footer-panel,
body.site-body .footer-meta-panel,
body.site-body .footer_subnav li,
body.site-body #menu ul ul,
body.site-body #menu > ul > li > a,
body.site-body .button,
body.site-body .btnStyle,
body.site-body .deleteBtnStyle,
body.site-body input[type='submit'],
body.site-body button,
body.site-body input[type='text'],
body.site-body input[type='email'],
body.site-body input[type='url'],
body.site-body input[type='password'],
body.site-body textarea,
body.site-body select,
body.site-body .dashboardNavigation,
body.site-body .search-current-filters-shell,
body.site-body .search-current-filter-chip,
body.site-body .search-drawer-shell,
body.site-body .search-results-summary-card,
body.site-body .search-notice,
body.site-body .searchResultUserContainer,
body.site-body .searchVerified,
body.site-body .searchCardAlert,
body.site-body .searchCardMeta span,
body.site-body .searchCardStats span,
body.site-body .searchCardRates .rates,
body.site-body .searchCardCta,
body.site-body .actions .favourite,
body.site-body img.shipsWindow,
body.site-body .favourites-hero,
body.site-body .favourites-stat,
body.site-body .favourites-empty-state,
body.site-body .profileContactCard,
body.site-body .profileInfoCard,
body.site-body .profilePanel,
body.site-body .profileReviewPanel,
body.site-body .profileHeaderActionButton,
body.site-body .profileHeroMetaItem,
body.site-body .profileStatistics,
body.site-body .profileServices span,
body.site-body .enjoy,
body.site-body .bg_warning,
body.site-body .interview,
body.site-body .faq,
body.site-body .profileMainGallery a,
body.site-body .profile-unavailable-card,
body.site-body .profilePhoto img,
body.site-body .profileMainGalleryThumb img,
body.site-body .site-brand-mark,
body.site-body .search-toolbar,
body.site-body .search-toolbar-button,
body.site-body .searchCard,
body.site-body .favourite,
body.site-body .favourites-card-grid .favourite,
body.site-body .site-footer-kicker,
body.site-body .site-footer-intro {
  border-radius: 5px !important;
}

body.site-body :where(
  button,
  input:not([type="radio"]):not([type="checkbox"]),
  select,
  textarea,
  .button,
  .btn,
  .card,
  .panel,
  .pill,
  .tag,
  .chip,
  .box,
  .profilePhoto,
  .profileHeaderWrapper,
  .profileMainGallery,
  .profileMainGalleryThumb,
  .profileMainGalleryThumb a,
  .profileMainGalleryThumb img,
  .profileStatistics,
  .profileMainAboutMe,
  .profileMainIntentions,
  .profileMainDetails > div,
  .profileMainInfo,
  .profileAdultWorkWarning,
  .profileReviewsSection,
  .profileHistoricalLocations,
  .profileHistoricalLocationItem,
  .profile-unavailable-card,
  .searchCard,
  .search-toolbar,
  .search-toolbar-button,
  .homepageTeaser,
  .homepageActions .col,
  .site-footer-panel,
  .site-footer-meta,
  .site-footer-kicker,
  .site-footer-intro
) {
  border-radius: 5px !important;
}

/* Legacy route alignment */
body.site-body:is(
  .route-home,
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) #page-content,
body.site-body[class*='route-pages-'] #page-content,
body.site-body[class*='route-admin'] #page-content {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.985) 0%, rgba(243, 237, 229, 0.985) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  color: #1a2530;
}

body.site-body:is(
  .route-home,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .homepageSearchLink,
body.site-body[class*='route-pages-'] .homepageSearchLink,
body.site-body[class*='route-admin'] .homepageSearchLink,
body.site-body.route-message .section.group.bgBrightBlue.white {
  padding: 18px 22px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
  color: #1a2530 !important;
}

body.site-body:is(
  .route-home,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .homepageSearchLink h2,
body.site-body:is(
  .route-home,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .homepageSearchLink p,
body.site-body:is(
  .route-home,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .homepageSearchLink .white,
body.site-body[class*='route-pages-'] .homepageSearchLink h2,
body.site-body[class*='route-pages-'] .homepageSearchLink p,
body.site-body[class*='route-pages-'] .homepageSearchLink .white,
body.site-body[class*='route-admin'] .homepageSearchLink h2,
body.site-body[class*='route-admin'] .homepageSearchLink p,
body.site-body.route-message .section.group.bgBrightBlue.white p {
  color: #1a2530 !important;
}

body.site-body:is(
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .banner,
body.site-body[class*='route-pages-'] .banner,
body.site-body[class*='route-admin'] .banner {
  background: transparent !important;
  margin: 0 0 18px;
}

body.site-body:is(
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-complete,
  .route-contact,
  .route-shop,
  .route-message,
  .route-user-dashboard,
  .route-user-dashboard-alerts,
  .route-user-dashboard-blocked,
  .route-user-dashboard-purchases,
  .route-user-dashboard-verification,
  .route-user-dashboard-profile-edit,
  .route-user-dashboard-messages
) .banner h1,
body.site-body[class*='route-pages-'] .banner h1,
body.site-body[class*='route-admin'] .banner h1 {
  margin: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(241, 235, 226, 0.98) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-sm);
  color: #1a2530 !important;
  text-align: left;
  line-height: 1.02;
}

body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent,
body.site-body[class*='route-pages-'] .bgColour20Transparent,
body.site-body.route-user-dashboard .section.group .bglightgrey,
body.site-body.route-shop .section.group.bglightgrey,
body.site-body.route-message #messageFormContainer,
body.site-body.route-message #messageFormHeader,
body.site-body[class*='route-admin'] .bglightgrey {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
  color: #4d5a66 !important;
}

body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent .white,
body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent p,
body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent label,
body.site-body[class*='route-pages-'] .bgColour20Transparent .white,
body.site-body[class*='route-pages-'] .bgColour20Transparent p,
body.site-body[class*='route-pages-'] .helpPages .white,
body.site-body.route-user-dashboard .section.group .bglightgrey p,
body.site-body.route-user-dashboard .section.group .bglightgrey a:not(.button),
body.site-body.route-shop .section.group.bglightgrey p,
body.site-body.route-shop .section.group.bglightgrey a:not(.button),
body.site-body.route-message #messageFormContainer p,
body.site-body.route-message #messageFormHeader p,
body.site-body.route-message #messageFormContainer .white,
body.site-body.route-user-dashboard-messages h3.white.centre {
  color: #4d5a66 !important;
}

body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent h1,
body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent h2,
body.site-body:is(
  .route-user-login,
  .route-user-reset,
  .route-user-reminder,
  .route-user-delete,
  .route-user-update-password,
  .route-user-register-location,
  .route-user-register-about-you,
  .route-user-register-complete,
  .route-user-verify,
  .route-user-reactivate,
  .route-contact,
  .route-message
) .bgColour20Transparent h3,
body.site-body[class*='route-pages-'] .bgColour20Transparent h2,
body.site-body[class*='route-pages-'] .bgColour20Transparent h3,
body.site-body.route-user-dashboard .section.group .bglightgrey h2,
body.site-body.route-shop .section.group.bglightgrey h2,
body.site-body.route-message #messageFormContainer h2,
body.site-body.route-message #messageFormHeader h2 {
  color: #1a2530 !important;
}

body.site-body.route-home #page-content {
  color: #4d5a66;
}

body.site-body.route-home .home-page-content > .section.group:first-child {
  max-width: 100%;
  margin-bottom: 18px;
  text-align: left;
}

body.site-body.route-home .home-page-content > .section.group:first-child h2 {
  color: #1a2530 !important;
}

body.site-body.route-home .home-page-content > .section.group:first-child p,
body.site-body.route-home .home-page-content > .section.group:first-child a {
  color: #4d5a66 !important;
}

body.site-body.route-home .homepageActions .homepageLogin,
body.site-body.route-home .homepageActions .homepageRegister {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-sm);
}

body.site-body.route-home .homepageActions .homepageLogin {
  box-shadow: inset 0 4px 0 rgba(34, 181, 115, 0.84), var(--shadow-sm);
}

body.site-body.route-home .homepageActions .homepageRegister {
  box-shadow: inset 0 4px 0 rgba(29, 155, 255, 0.84), var(--shadow-sm);
}

body.site-body.route-home .homepageLogin h2,
body.site-body.route-home .homepageLogin p,
body.site-body.route-home .homepageRegister h2,
body.site-body.route-home .homepageRegister p,
body.site-body.route-home .homepageLogin a,
body.site-body.route-home .homepageRegister a,
body.site-body.route-home .homepageLogin .white,
body.site-body.route-home .homepageRegister .white {
  color: #1a2530 !important;
}

body.site-body.route-home .homepageLogin p,
body.site-body.route-home .homepageRegister p {
  color: #5d6976 !important;
}

body.site-body.route-home .home-page-content {
  padding: 20px !important;
  display: grid;
  gap: 18px;
}

body.site-body.route-home .homeHero {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.site-body.route-home .homeHeroCopy {
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

body.site-body.route-home .homeHeroContent {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 12px;
  align-items: stretch;
  min-height: 560px;
  background: transparent;
  min-width: 0;
}

body.site-body.route-home .homeHero.is-logged-in .homeHeroContent {
  grid-template-columns: minmax(0, 1fr);
}

body.site-body.route-home .homeHeroIntro {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: none;
  min-width: 0;
  padding: 22px 420px 22px 20px;
  background: #000 url('/images/site/backgrounds/goyolo-bgnd.jpg') no-repeat right center;
  background-size: auto 100%;
  border-radius: 5px;
  overflow: hidden;
}

body.site-body.route-home .homeHeroInlineLogin {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: none;
  min-width: 0;
  justify-self: stretch;
  align-self: stretch;
  padding: 34px 28px;
  border-radius: 5px;
  background: linear-gradient(180deg, #4199ea 0%, #3690e6 100%);
  box-sizing: border-box;
  overflow: hidden;
}

body.site-body.route-home .homeLoginWarning {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  padding: 8px 10px;
  border-radius: 5px;
  background: #8d2f4d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-sizing: border-box;
}

body.site-body.route-home .homeLoginWarning p {
  margin: 0;
}

body.site-body.route-home .homeLoginForm {
  display: grid;
  gap: 10px;
  align-content: center;
  height: 100%;
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

body.site-body.route-home .homeLoginField {
  display: grid;
  gap: 5px;
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

body.site-body.route-home .homeLoginField label strong,
body.site-body.route-home .homeLoginRemember,
body.site-body.route-home .homeLoginReset {
  color: #263341;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.site-body.route-home .homeLoginForm--hero .homeLoginField label strong {
  color: rgba(239, 245, 251, 0.9);
}

body.site-body.route-home .homeLoginField input[type='email'],
body.site-body.route-home .homeLoginField input[type='password'],
body.site-body.route-home .homeLoginField input[type='text'] {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(109, 127, 145, 0.24);
  border-radius: 5px;
  background: rgba(239, 244, 251, 0.88);
  color: #22303b;
  box-sizing: border-box;
}

body.site-body.route-home .homeLoginForm--hero .homeLoginField input[type='email'],
body.site-body.route-home .homeLoginForm--hero .homeLoginField input[type='password'],
body.site-body.route-home .homeLoginForm--hero .homeLoginField input[type='text'] {
  background: rgba(235, 242, 250, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

body.site-body.route-home .homeLoginField .passwordFieldWrap {
  position: relative;
}

body.site-body.route-home .homeLoginField .passwordFieldWrap input {
  padding-right: 54px;
}

body.site-body.route-home .homeLoginField .passwordRevealButton {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(47, 152, 243, 0.12);
  color: #2f98f3;
  transform: translateY(-50%);
  cursor: pointer;
}

body.site-body.route-home .homeLoginField .passwordRevealButton:hover,
body.site-body.route-home .homeLoginField .passwordRevealButton:focus {
  background: rgba(47, 152, 243, 0.18);
}

body.site-body.route-home .homeLoginForm--hero .homeLoginField .passwordRevealButton {
  background: rgba(205, 228, 252, 0.92);
  color: #2f98f3;
}

body.site-body.route-home .homeLoginOptions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.site-body.route-home .homeLoginRemember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

body.site-body.route-home .homeLoginRemember input {
  width: 16px;
  height: 16px;
  margin: 0;
}

body.site-body.route-home .homeLoginHint {
  color: #8d2f4d;
  font-size: 0.88rem;
  margin: 0;
}

body.site-body.route-home .homeLoginHint--inline {
  color: rgba(199, 105, 129, 0.96);
}

body.site-body.route-home .homeStatusPill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 5px;
  background: #8d2f4d;
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

body.site-body.route-home .homeLoginButtonStack {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

body.site-body.route-home .homeLoginSubmit,
body.site-body.route-home .homeLoginJoin,
body.site-body.route-home .homeLoginForgotButton {
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 0 18px !important;
  justify-content: center;
  align-items: center;
  display: inline-flex !important;
  box-sizing: border-box;
  line-height: 1.2;
}

body.site-body.route-home .homeLoginSubmit {
  gap: 8px;
  background: #2f98f3 !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

body.site-body.route-home .homeLoginSubmit i {
  font-size: 0.95rem;
}

body.site-body.route-home .homeLoginForgotButton {
  background: #2a2c31 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.site-body.route-home .homeLoginJoin {
  background: #8d2f4d !important;
  color: #ffffff !important;
  border: 1px solid rgba(141, 47, 77, 0.92) !important;
  box-shadow: none !important;
}

body.site-body.route-faq #page-content,
body.site-body.route-faq-view #page-content {
  padding: 20px;
}

.faq-page {
  display: grid;
  gap: 20px;
}

.faq-hero {
  padding: 24px 26px;
  border-radius: 5px;
  background: #ffffff;
  color: #17222d;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  box-shadow: inset 0 4px 0 rgba(47, 152, 243, 0.95), 0 8px 20px rgba(22, 32, 42, 0.06);
}

.faq-hero h1 {
  margin: 0;
  color: #17222d !important;
}

.faq-intro {
  margin: 10px 0 0;
  color: #5c6976;
  max-width: 60ch;
}

.faq-search-section,
.faq-article-shell {
  padding: 20px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.faq-search-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq-results-shell {
  max-width: 760px;
  margin: 0 auto;
}

.faq-search-label {
  display: block;
  margin-bottom: 8px;
  color: #8d2f4d;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
}

.faq-search-input {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.faq-search-help,
.faq-search-status {
  margin: 10px 0 0;
  color: #5f6b78;
}

.faq-popular-shell {
  max-width: 980px;
  margin: 20px auto 0;
}

.faq-popular-shell h2 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.05;
}

.faq-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-popular-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  color: #17222d !important;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.05);
  border-top: 4px solid #8d2f4d;
}

.faq-popular-card strong {
  color: #8d2f4d;
  font-size: 1.06rem;
  line-height: 1.2;
}

.faq-popular-card span {
  color: #5f6b78;
  line-height: 1.55;
}

.faq-results {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-results a.faq-result-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  color: #17222d !important;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.05);
  text-decoration: none;
  border-left: 4px solid #2f98f3;
}

.faq-results a.faq-result-card:hover {
  border-color: rgba(47, 152, 243, 0.28);
  box-shadow: 0 10px 24px rgba(47, 152, 243, 0.08);
}

.faq-result-card strong,
.faq-result-card span {
  display: block;
}

.faq-result-title {
  color: #8d2f4d;
  font-size: 1.15rem;
  line-height: 1.2;
}

.faq-result-excerpt {
  color: #5f6b78;
  line-height: 1.55;
}

.faq-content {
  color: #17222d;
}

.faq-content .white,
.faq-content h1.white,
.faq-content h2.white,
.faq-content h3.white,
.faq-content h4.white,
.faq-content p.white,
.faq-content li.white,
.faq-content ul.white,
.faq-content strong.white {
  color: inherit !important;
}

.faq-content a,
.faq-content a.white,
.faq-breadcrumb a,
.faq-breadcrumb a:hover {
  color: #2f98f3 !important;
}

.faq-content img {
  max-width: 100%;
  height: auto;
}

.faq-content table {
  width: 100%;
  border-collapse: collapse;
}

.faq-content td,
.faq-content th {
  border: 1px solid rgba(23, 34, 46, 0.1);
  padding: 8px 10px;
}

.faq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #72808d;
  font-size: 0.92rem;
}

@media (max-width: 800px) {
  .faq-hero,
  .faq-search-section,
  .faq-article-shell {
    padding: 18px;
  }

  .faq-search-label {
    font-size: 1.4rem;
  }

  .faq-popular-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .dashboardHomePrimaryGrid,
  .dashboardHomeSecondaryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dashboardHomeHero,
  .dashboardHomeCard {
    padding: 18px;
  }

  .dashboardHomePrimaryGrid,
  .dashboardHomeSecondaryGrid {
    grid-template-columns: 1fr;
  }

  .dashboardHomeHeroActions .button {
    width: 100%;
    min-width: 0;
  }
}

body.site-body.route-home .homeHeroKicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

body.site-body.route-home .homeHero h1 {
  margin: 0;
  color: #ffffff !important;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.95;
  max-width: 12ch;
}

body.site-body.route-home .homeHeroLead {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.55;
}

body.site-body.route-home .homeHeroIntro > p:not(.homeHeroKicker):not(.homeHeroLead) {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 34ch;
}

body.site-body.route-home .homeHeroSubline {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

body.site-body.route-home .homeHeroCopy > p:not(.homeHeroKicker):not(.homeHeroLead) {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 34ch;
}

body.site-body.route-home .homeHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.site-body.route-home .homeHeroPrimary,
body.site-body.route-home .homeHeroSecondary {
  min-width: 190px;
  min-height: 44px;
  justify-content: center;
}

body.site-body.route-home .homeLoginButtonStack .homeHeroPrimary,
body.site-body.route-home .homeLoginButtonStack .homeHeroSecondary,
body.site-body.route-home .homeLoginButtonStack .homeLoginForgotButton {
  min-width: 0 !important;
}

body.site-body.route-home .homeHeroPrimary {
  background: #8d2f4d !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.site-body.route-home .homeHeroSecondary {
  background: #2f98f3 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.site-body.route-home .homeStat,
body.site-body.route-home .homeMiniCard,
body.site-body.route-home .homeFeatureCard,
body.site-body.route-home .homeChecklistCard {
  padding: 14px 16px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

body.site-body.route-home .homeStat strong,
body.site-body.route-home .homeMiniCard h3,
body.site-body.route-home .homeFeatureCard h3,
body.site-body.route-home .homeChecklistCard h2 {
  display: block;
  margin: 0 0 6px;
  color: #18212a;
  font-size: 1.02rem;
}

body.site-body.route-home .homeMiniCard p,
body.site-body.route-home .homeFeatureCard p,
body.site-body.route-home .homePanelCard p,
body.site-body.route-home .homeChecklistCard p {
  color: #5d6976;
  line-height: 1.6;
}

body.site-body.route-home .homePanelLabel {
  margin: 0;
  color: #2b6da3 !important;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

body.site-body.route-home .homeChecklistCard h2 {
  margin: 0;
  color: #18212a !important;
  font-size: 1.35rem;
  line-height: 1.05;
}

body.site-body.route-home .homePanelMiniGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.site-body.route-home .homeMiniCard p,
body.site-body.route-home .homeFeatureCard p {
  margin: 0;
}

body.site-body.route-home .homeMiniCard {
  min-height: 0;
}

body.site-body.route-home .homeMiniCard h3 {
  font-size: 1rem;
}

body.site-body.route-home .homeMiniCard p {
  font-size: 0.96rem;
}

body.site-body.route-home .homeChecklistCard {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at top right, rgba(29, 155, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

body.site-body.route-home .homeChecklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.site-body.route-home .homeChecklist li {
  position: relative;
  padding-left: 28px;
  color: #41505e;
  line-height: 1.55;
}

body.site-body.route-home .homeChecklist li::before {
  content: '\f00c';
  position: absolute;
  left: 0;
  top: 1px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #2f98f3;
}

body.site-body.route-user-login #page-content {
  color: #4d5a66;
}

body.site-body.route-user-login .auth-page-content form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.site-body.route-user-login .auth-page-content form::before {
  color: #7a8792;
}

body.site-body.route-user-login .auth-page-content form::after {
  content: none !important;
  display: none !important;
}

body.site-body.route-user-login .auth-page-content label strong {
  color: #1a2530;
}

body.site-body.route-user-login .auth-page-content .section.group.bgColour20Transparent {
  max-width: 560px;
  margin: 0 auto 12px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.site-body.route-user-login .auth-page-content .section.group.bgColour20Transparent .span_2_of_7 {
  display: none;
}

body.site-body.route-user-login .auth-page-content .section.group.bgColour20Transparent .span_3_of_7 {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

body.site-body.route-user-login .auth-page-content .section.group.bgColour20Transparent .warning {
  margin: 0;
  padding: 18px 22px;
  background: #e34a62 !important;
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: none !important;
}

body.site-body.route-user-login .auth-page-content .section.group.bgColour20Transparent .warning p {
  margin: 0;
  color: #ffffff !important;
}

body.site-body.route-user-login .auth-page-content .loginFooterLinks .span_1_of_3 {
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: none !important;
}

body.site-body.route-user-login .auth-page-content .loginFooterLinks .span_1_of_3 a {
  color: #1a2530 !important;
  font-weight: 600;
  background: transparent !important;
  background-image: none !important;
}

body.site-body.route-user-login .auth-page-content .loginFooterLinks .span_1_of_3 p {
  background: transparent !important;
  background-image: none !important;
}

body.site-body.route-user-register-location .bgColour20Transparent,
body.site-body.route-user-register-about-you .bgColour20Transparent,
body.site-body.route-user-register-complete #page-content,
body.site-body.route-user-verify #page-content,
body.site-body.route-user-reactivate #page-content {
  display: grid;
  gap: 18px;
}

body.site-body.route-user-register-location .bgColour20Transparent,
body.site-body.route-user-register-about-you .bgColour20Transparent,
body.site-body.route-user-register-complete .bgColour20Transparent,
body.site-body.route-user-verify .bgColour20Transparent,
body.site-body.route-user-reactivate .bgColour20Transparent {
  padding: 24px;
}

body.site-body.route-user-register-location .col,
body.site-body.route-user-register-about-you .col,
body.site-body.route-user-register-complete .col,
body.site-body.route-user-verify .col,
body.site-body.route-user-reactivate .col {
  margin-top: 0;
  margin-bottom: 0;
}

body.site-body.route-user-register-location .white,
body.site-body.route-user-register-about-you .white,
body.site-body.route-user-register-complete .white,
body.site-body.route-user-verify .white,
body.site-body.route-user-reactivate .white,
body.site-body.route-user-reset .white,
body.site-body.route-user-reminder .white,
body.site-body.route-user-delete .white,
body.site-body.route-user-update-password .white {
  color: #4d5a66 !important;
}

body.site-body.route-user-register-location h2,
body.site-body.route-user-register-about-you h2,
body.site-body.route-user-register-complete h2,
body.site-body.route-user-verify h2,
body.site-body.route-user-reactivate h2,
body.site-body.route-user-reset h1,
body.site-body.route-user-reset h2,
body.site-body.route-user-reminder h1,
body.site-body.route-user-delete h1,
body.site-body.route-user-delete h2,
body.site-body.route-user-update-password h1,
body.site-body.route-user-update-password h2 {
  color: #1a2530 !important;
}

body.site-body.route-user-reset form,
body.site-body.route-user-reminder form,
body.site-body.route-user-delete form,
body.site-body.route-user-update-password form {
  max-width: 760px;
  margin: 0 auto;
}

body.site-body.route-user-delete #deleteProfile {
  width: min(100%, 760px);
}

body.site-body.route-contact #page-content > .section.group {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  grid-template-areas: 'contact-aside contact-main';
  gap: 18px;
  align-items: start;
}

body.site-body.route-contact #page-content > .section.group > .col {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  min-width: 0;
}

body.site-body.route-contact #page-content > .section.group > .span_2_of_6 {
  grid-area: contact-aside;
}

body.site-body.route-contact #page-content > .section.group > .span_4_of_6 {
  grid-area: contact-main;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent {
  padding: 20px;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h2 {
  margin-top: 0;
}

body.site-body[class*='route-pages-'] #page-content > .section.group {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  grid-template-areas: 'pages-nav pages-main';
  gap: 18px;
  align-items: start;
}

body.site-body[class*='route-pages-'] #page-content > .section.group > .col {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  min-width: 0;
}

body.site-body[class*='route-pages-'] #page-content > .section.group > .span_1_of_5 {
  grid-area: pages-nav;
}

body.site-body[class*='route-pages-'] #page-content > .section.group > .span_4_of_5 {
  grid-area: pages-main;
}

body.site-body[class*='route-pages-'] .helpPages {
  list-style: none;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
}

body.site-body[class*='route-pages-'] .bluePad {
  margin-bottom: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.9);
}

body.site-body[class*='route-pages-'] .bluePad:last-child {
  margin-bottom: 0;
}

body.site-body[class*='route-pages-'] .bluePad a {
  color: #1a2530 !important;
  font-weight: 600;
}

body.site-body[class*='route-pages-'] .bgColour20Transparent {
  padding: 22px !important;
}

body.site-body.route-user-dashboard {
  color: #4d5a66;
}

body.site-body.route-user-dashboard .padding5 {
  padding: 0 !important;
}

body.site-body.route-user-dashboard .section.group .bglightgrey {
  padding: 18px;
}

body.site-body.route-user-dashboard .section.group .bglightgrey p {
  margin-bottom: 0;
}

body.site-body.route-user-dashboard .section.group .bglightgrey .button {
  display: inline-flex;
  justify-content: center;
  min-width: 150px;
}

body.site-body.route-user-dashboard-alerts table.alerts,
body.site-body.route-user-dashboard-purchases table.alerts,
body.site-body.route-user-dashboard-profile-edit table.profile,
body.site-body.route-user-dashboard-blocked table.blockedList,
body.site-body[class*='route-admin'] table.alerts,
body.site-body[class*='route-admin'] table.profile {
  margin: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.965) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
}

body.site-body.route-user-dashboard-alerts table.alerts th,
body.site-body.route-user-dashboard-alerts table.alerts td,
body.site-body.route-user-dashboard-purchases table.alerts th,
body.site-body.route-user-dashboard-purchases table.alerts td,
body.site-body.route-user-dashboard-profile-edit table.profile th,
body.site-body.route-user-dashboard-profile-edit table.profile td,
body.site-body.route-user-dashboard-blocked table.blockedList th,
body.site-body.route-user-dashboard-blocked table.blockedList td,
body.site-body[class*='route-admin'] table.alerts th,
body.site-body[class*='route-admin'] table.alerts td,
body.site-body[class*='route-admin'] table.profile th,
body.site-body[class*='route-admin'] table.profile td {
  border-color: rgba(23, 34, 46, 0.08);
  color: #4d5a66;
}

body.site-body.route-user-dashboard-alerts table.alerts thead th,
body.site-body.route-user-dashboard-purchases table.alerts thead th,
body.site-body.route-user-dashboard-profile-edit table.profile th,
body.site-body.route-user-dashboard-blocked table.blockedList th,
body.site-body[class*='route-admin'] table.alerts thead th,
body.site-body[class*='route-admin'] table.profile th {
  background: rgba(17, 24, 31, 0.04);
  color: #1a2530;
}

body.site-body.route-user-dashboard-alerts table.alerts tr:nth-child(even),
body.site-body.route-user-dashboard-purchases table.alerts tr:nth-child(even),
body.site-body.route-user-dashboard-blocked table.blockedList tr:nth-child(even),
body.site-body[class*='route-admin'] table.alerts tr:nth-child(even),
body.site-body[class*='route-admin'] table.profile tr:nth-child(even) {
  background: rgba(17, 24, 31, 0.018);
}

body.site-body.route-user-dashboard-blocked table.blockedList h2 {
  margin: 0 0 4px;
  font-size: 1.35rem;
}

body.site-body.route-user-dashboard-blocked table.blockedList img {
  border: 1px solid rgba(23, 34, 46, 0.08);
}

body.site-body.route-user-dashboard-verification .section.group {
  margin: 0;
  padding: 24px;
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: none !important;
}

body.site-body.route-user-dashboard-verification .verification-hero .verificationPin {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}

body.site-body.route-user-dashboard-verification .verification-stats {
  margin-top: 18px;
  margin-bottom: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.site-body.route-user-dashboard-verification .verificationNotice {
  margin-bottom: 18px;
}

body.site-body.route-user-dashboard-verification .verificationDetails {
  display: grid;
  gap: 18px;
}

body.site-body.route-user-dashboard-verification .verificationDetails--withUpload {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

body.site-body.route-user-dashboard-verification .verification-hero {
  margin-bottom: 0;
}

body.site-body.route-user-dashboard-verification .verification-hero .favourites-hero-copy {
  text-align: center;
  margin: 0 auto;
}

body.site-body.route-user-dashboard-verification .verificationUploader {
  display: grid;
  gap: 12px;
  justify-items: start;
  border-radius: 5px;
  min-width: 0;
  padding: 18px !important;
}

body.site-body.route-user-dashboard-verification .verification-stat-link {
  text-decoration: none;
}

body.site-body.route-user-dashboard-verification .verification-stat-link:hover,
body.site-body.route-user-dashboard-verification .verification-stat-link:focus {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

body.site-body.route-user-dashboard-verification .verificationUploader h2 {
  margin-bottom: 0;
}

body.site-body.route-user-dashboard-verification .verificationUploadForm {
  display: grid;
  gap: 10px;
  width: 100%;
}

body.site-body.route-user-dashboard-verification .verificationUploadStatus {
  margin: 0;
  color: #5e6977 !important;
  font-size: 0.9rem;
  line-height: 1.5;
}

body.site-body.route-user-dashboard-verification .verificationUploadForm input[type='submit'] {
  width: 100%;
}

body.site-body.route-user-dashboard-verification .verificationUploadForm .button {
  width: 100%;
}

body.site-body.route-user-dashboard-verification .verificationUploadForm .button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.site-body.route-user-dashboard-verification #verificationImage {
  width: 100%;
  min-height: 140px;
  margin: 4px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef3f8;
  border: 1px dashed rgba(23, 34, 46, 0.18);
  border-radius: 5px;
}

body.site-body.route-user-dashboard-verification #verificationImage canvas,
body.site-body.route-user-dashboard-verification #verificationImage img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.site-body.route-user-dashboard-verification h2,
body.site-body.route-user-dashboard-verification label,
body.site-body.route-user-dashboard-verification strong,
body.site-body.route-user-dashboard-verification p,
body.site-body.route-user-dashboard-verification a:not(.button) {
  color: #16202a !important;
}

body.site-body.route-user-dashboard-verification input[type='file'] {
  color: #16202a;
}

body.site-body.route-user-dashboard-messages .messagesContainer {
  margin-top: 18px;
}

body.site-body.route-message .lightgreycontainer {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.site-body.route-message #messageFormContainer,
body.site-body.route-message #messageFormHeader {
  padding: 20px !important;
}

body.site-body.route-message #messageFormHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

body.site-body.route-message textarea {
  min-height: 220px;
}

body.site-body[class*='route-admin'] .section.group.bgBrightBlue.white {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
  color: #1a2530 !important;
}

body.site-body[class*='route-admin'] .section.group.bgBrightBlue.white p {
  color: #1a2530 !important;
}

@media only screen and (max-width: 960px) {
  body.site-body.route-contact #page-content > .section.group,
  body.site-body[class*='route-pages-'] #page-content > .section.group {
    grid-template-columns: 1fr;
    grid-template-areas:
      'contact-aside'
      'contact-main';
  }

  body.site-body[class*='route-pages-'] #page-content > .section.group {
    grid-template-areas:
      'pages-nav'
      'pages-main';
  }
}

@media only screen and (max-width: 800px) {
  .dashboardNavigationContainer {
    gap: 6px;
  }

  .dashboardNavigation {
    padding: 9px 4px !important;
  }

  .dashboardNavigationIcon {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .dashboardNavigationText {
    font-size: 0.74rem;
    letter-spacing: 0.01em;
  }

  body.site-body.route-user-dashboard-verification .verification-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.site-body.route-user-dashboard-verification .verificationDetails--withUpload {
    grid-template-columns: 1fr;
  }

  body.site-body.route-home .homeHero {
    grid-template-columns: 1fr;
  }

  body.site-body.route-home .homeHeroContent {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  body.site-body.route-home .homeHeroIntro {
    order: 2;
    max-width: 420px;
    padding: 22px 20px 300px;
    background-position: right bottom;
    background-size: auto 62%;
  }

  body.site-body.route-home .homeHeroInlineLogin {
    order: 1;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    padding: 22px 20px;
    border-radius: 5px;
  }

  body.site-body.route-home .homepageActions {
    flex-direction: column;
  }

  body.site-body.route-home .homepageActions .col {
    width: 100%;
  }

  body.site-body.route-user-login .auth-page-content .loginFooterLinks {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 640px) {
  .dashboardNavigationContainer {
    gap: 4px;
  }

  .dashboardNavigation {
    padding: 8px 2px !important;
  }

  .dashboardNavigation a {
    min-height: 38px;
  }

  .dashboardNavigationIcon {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .dashboardNavigationText {
    display: none !important;
  }

  .dashboardNavigationBadge {
    top: -7px;
    right: -9px;
    min-width: 16px;
    height: 16px;
    font-size: 0.62rem;
    line-height: 16px;
  }

  body.site-body.route-home .home-page-content {
    padding: 14px !important;
  }

  body.site-body.route-home .homeHero {
    padding: 18px;
  }

  body.site-body.route-home .homeHeroInlineLogin {
    padding: 16px;
  }

  body.site-body.route-home .homeLoginForm {
    grid-template-columns: 1fr;
  }

  body.site-body.route-home .homeLoginButtonStack {
    grid-template-columns: 1fr;
  }

  body.site-body.route-home .homeHero h1,
  body.site-body.route-home .homeHeroSubline {
    white-space: normal;
  }

  body.site-body.route-home .homeHeroIntro {
    order: 2;
    padding: 18px 18px 240px;
    background-size: auto 54%;
  }

  body.site-body.route-home .homeHeroActions .button {
    width: 100%;
  }

  body.site-body:is(
    .route-user-login,
    .route-user-reset,
    .route-user-reminder,
    .route-user-delete,
    .route-user-update-password,
    .route-user-register-location,
    .route-user-register-about-you,
    .route-user-register-complete,
    .route-user-verify,
    .route-user-reactivate,
    .route-contact,
    .route-message,
    .route-user-dashboard,
    .route-user-dashboard-alerts,
    .route-user-dashboard-blocked,
    .route-user-dashboard-purchases,
    .route-user-dashboard-verification,
    .route-user-dashboard-profile-edit,
    .route-user-dashboard-messages
  ) #page-content,
  body.site-body[class*='route-pages-'] #page-content,
  body.site-body[class*='route-admin'] #page-content {
    padding: 18px !important;
  }

  body.site-body.route-user-register-location .bgColour20Transparent,
  body.site-body.route-user-register-about-you .bgColour20Transparent,
  body.site-body.route-user-register-complete .bgColour20Transparent,
  body.site-body.route-user-verify .bgColour20Transparent,
  body.site-body.route-user-reactivate .bgColour20Transparent,
  body.site-body.route-contact .section.group .bgColour20Transparent,
  body.site-body[class*='route-pages-'] .helpPages,
  body.site-body[class*='route-pages-'] .bgColour20Transparent {
    padding: 18px !important;
  }

  body.site-body.route-user-dashboard-blocked table.blockedList,
  body.site-body.route-user-dashboard-alerts table.alerts,
  body.site-body.route-user-dashboard-purchases table.alerts,
  body.site-body.route-user-dashboard-profile-edit table.profile,
  body.site-body[class*='route-admin'] table.alerts,
  body.site-body[class*='route-admin'] table.profile {
    display: block;
    overflow-x: auto;
  }
}

body.site-body[class*='route-user-verify'] #page-content,
body.site-body[class*='route-user-reactivate'] #page-content {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.985) 0%, rgba(243, 237, 229, 0.985) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  color: #1a2530;
}

body.site-body[class*='route-user-verify'] .bgColour20Transparent,
body.site-body[class*='route-user-reactivate'] .bgColour20Transparent {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.965) 0%, rgba(243, 237, 229, 0.975) 100%) !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: var(--shadow-sm);
  color: #4d5a66 !important;
}

body.site-body[class*='route-user-verify'] .white,
body.site-body[class*='route-user-reactivate'] .white {
  color: #4d5a66 !important;
}

body.site-body[class*='route-user-verify'] h2,
body.site-body[class*='route-user-reactivate'] h2 {
  color: #1a2530 !important;
}

body.site-body.route-user-register-location #page-content,
body.site-body.route-user-register-about-you #page-content,
body.site-body.route-user-register-photo #page-content,
body.site-body.route-user-register-complete #page-content {
  background: transparent !important;
}

.registration-page {
  padding: 16px 10px 20px;
}

.registrationShell {
  max-width: 1180px;
  margin: 0 auto;
}

.registrationPanel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0 0;
}

.registrationPanel--narrow {
  max-width: 760px;
  margin: 0 auto;
}

.registrationPanel--wide {
  max-width: 1080px;
  margin: 0 auto;
}

.registrationStepper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.registrationStepper a,
.registrationStepper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 5px;
  background: rgba(224, 232, 240, 0.9);
  color: #667687;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.registrationStepper a.is-active,
.registrationStepper span.is-active {
  background: #2f98f3;
  color: #fff;
}

.registrationStepper a:hover {
  background: #d5e1ed;
  color: #516171;
}

.registrationHeader {
  margin-bottom: 22px;
}

.registrationKicker {
  margin: 0 0 10px;
  color: #7c8a97;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.registrationHeader h1 {
  margin: 0 0 10px;
  color: #1d2731;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.94;
}

.registrationHeader p {
  margin: 0;
  color: #5a6874;
  line-height: 1.7;
}

.registrationStack {
  display: grid;
  gap: 20px;
}

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

.registrationColumns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.registrationColumn {
  display: grid;
  gap: 16px;
}

.registrationField {
  display: grid;
  gap: 8px;
}

.registrationField--full {
  grid-column: 1 / -1;
}

.registrationField label {
  color: #1f2832;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registrationField input,
.registrationField select,
.registrationField textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(109, 127, 145, 0.24);
  border-radius: 5px;
  background: rgba(239, 244, 251, 0.88);
  color: #22303b;
  box-sizing: border-box;
}

.registrationField textarea {
  min-height: 150px;
  resize: vertical;
}

.registrationField small,
.registrationInlineError {
  color: #6b7884;
  font-size: 0.9rem;
  line-height: 1.5;
}

.registrationField.has-error input,
.registrationField.has-error select,
.registrationField.has-error textarea,
.registrationConsent.has-error {
  border-color: rgba(205, 67, 89, 0.68);
  box-shadow: 0 0 0 3px rgba(205, 67, 89, 0.12);
}

.registrationField.has-error small,
.registrationInlineError {
  color: #bf3d54;
}

.registrationMetaRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

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

.registrationChoiceCard {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 56px;
  padding: 14px;
  border: 1px solid rgba(109, 127, 145, 0.18);
  border-radius: 5px;
  background: rgba(239, 244, 251, 0.78);
  color: #2c3945;
  cursor: pointer;
  box-sizing: border-box;
}

.registrationChoiceCard input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.registrationChoiceCard span {
  line-height: 1.45;
}

.registrationChoiceCard.is-selected,
.registrationChoiceCard:has(input:checked) {
  border-color: rgba(39, 174, 96, 0.45);
  background: rgba(39, 174, 96, 0.1);
}

.registrationConsent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(109, 127, 145, 0.18);
  border-radius: 5px;
  background: rgba(239, 244, 251, 0.72);
  color: #2c3945;
}

.registrationConsent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.registrationConsent a {
  color: #1f75cc;
  text-decoration: underline;
}

.registrationActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  background: transparent !important;
}

.registrationActions .button {
  min-width: 190px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 5px !important;
  justify-content: center;
  box-sizing: border-box;
  background-image: none !important;
  background: #2f98f3 !important;
  color: #fff !important;
  box-shadow: none !important;
  border: 0 !important;
}

.registrationActions--equal .button {
  flex: 1 1 0;
  min-width: 0;
}

.registrationActions a.button {
  background: #2f98f3 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.registrationActions button.button.green,
.registrationActions .button.green {
  background: #2f98f3 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.registrationPhotoLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.registrationPhotoCard,
.registrationInfoCard {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(109, 127, 145, 0.18);
  border-radius: 5px;
  background: rgba(247, 250, 253, 0.86);
}

.registrationPhotoCard--uploading {
  opacity: 0.65;
  pointer-events: none;
}

.registrationPhotoPreviewWrap {
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(221, 231, 241, 0.96) 0%, rgba(236, 242, 249, 0.96) 100%);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.registrationPhotoPreview,
.registrationPhotoCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.registrationPhotoCanvas {
  background: #dfe8f3;
}

.registrationCropControls,
.registrationUploadHint {
  color: #6b7884;
  font-size: 0.9rem;
  line-height: 1.5;
}

.registrationCropControls {
  display: grid;
  gap: 8px;
}

.registrationCropControls label {
  color: #1f2832;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registrationCropControls input[type='range'] {
  width: 100%;
}

.registrationCropValue {
  color: #6b7884;
  font-size: 0.88rem;
}

.registrationUploadHint {
  margin-top: -6px;
}

.registrationPhotoMeta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #6b7884;
  font-size: 0.92rem;
  font-weight: 600;
}

.registrationInfoCard h2 {
  margin: 0;
  color: #1d2731;
  font-size: 1.5rem;
}

.registrationBulletList {
  margin: 0;
  padding-left: 18px;
  color: #5a6874;
  line-height: 1.8;
}

.registrationSuccessCard {
  margin: 0;
}

body.site-body.route-user-register-complete .registrationPanel--narrow {
  max-width: 700px;
}

body.site-body.route-user-register-complete .registrationStepper {
  margin-bottom: 20px;
}

body.site-body.route-user-register-complete .registrationHeader {
  margin-bottom: 18px;
}

body.site-body.route-user-register-complete .registrationHeader h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  line-height: 0.96;
  max-width: 12ch;
}

body.site-body.route-user-register-complete .registrationHeader p {
  max-width: 62ch;
  line-height: 1.62;
}

body.site-body.route-user-register-complete .registrationSuccessCard--complete {
  margin-bottom: 14px;
  padding: 16px 20px;
  border-radius: 5px;
  background: linear-gradient(180deg, #22a867 0%, #1d8f58 100%);
  box-shadow: none;
}

body.site-body.route-user-register-complete .registrationSuccessCard--complete p {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

body.site-body.route-user-register-complete .registrationSuccessCard--complete strong {
  color: #ffffff;
}

body.site-body.route-user-register-complete .registrationActions--complete {
  gap: 10px;
}

body.site-body.route-user-register-complete .registrationActions--complete .button {
  min-width: 0;
  padding: 0 18px;
}

body.site-body.route-user-register-photo .registration-page {
  padding-top: 10px;
}

body.site-body.route-user-register-photo .registrationPanel {
  padding: 8px 0 0;
}

body.site-body.route-user-register-photo .registrationHeader {
  margin-bottom: 14px;
}

body.site-body.route-user-register-photo .registrationHeader h1 {
  font-size: clamp(1.8rem, 4vw, 2.45rem);
}

body.site-body.route-user-register-photo .registrationHeader p {
  line-height: 1.55;
}

body.site-body.route-user-register-photo .registrationPhotoLayout {
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

body.site-body.route-user-register-photo .registrationPhotoCard,
body.site-body.route-user-register-photo .registrationInfoCard {
  gap: 14px;
  padding: 16px;
}

body.site-body.route-user-register-photo .registrationPhotoPreviewWrap {
  aspect-ratio: 1 / 1;
  width: min(100%, 360px);
  max-height: 360px;
  margin: 0 auto;
  position: relative;
}

body.site-body.route-user-register-photo .registrationBulletList {
  line-height: 1.6;
}

body.site-body.route-user-register-photo .registrationMetaRow small {
  font-size: 0.84rem;
  color: #6b7884 !important;
  opacity: 1 !important;
}

body.site-body.route-user-register-photo #registrationPhotoUpload.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.gallery-hidden-input {
  display: none;
}

@media (max-width: 980px) {
  .registrationFormGrid,
  .registrationColumns,
  .registrationChoiceGrid,
  .registrationPhotoLayout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .registration-page {
    padding: 20px 10px 38px;
  }

  .registrationPanel {
    padding: 18px;
    border-radius: 5px;
  }

  .registrationField label {
    font-size: 0.8rem;
  }
}

/* Bright shell refresh */
body.site-body,
body.site-body.backgroundFullCoverContainer {
  background: #ffffff !important;
  background-image: none !important;
}

body.site-body #maincontent.site-maincontent {
  /*padding-top: 4px;*/
  padding-bottom: 10px;
}

body.site-body[class*='route-'] #page-content,
body.site-body[class*='route-pages-'] #page-content,
body.site-body[class*='route-admin'] #page-content {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: 0 10px 26px rgba(22, 32, 42, 0.08) !important;
  color: #16202a !important;
}

body.site-body.route-admin-authenticator #page-content {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: 0 10px 26px rgba(22, 32, 42, 0.08) !important;
  color: #16202a !important;
}

.admin-auth-page {
  display: grid;
  gap: 18px;
}

.adminAuthHero,
.adminAuthCard,
.adminAuthNotice {
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.adminAuthHero {
  padding: 24px 26px;
  border-top: 3px solid #2f98f3;
}

.adminAuthEyebrow {
  margin: 0 0 8px;
  color: #72808d;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.adminAuthHero h1,
.adminAuthCard h2 {
  margin: 0;
  color: #8d2f4d !important;
}

.adminAuthLead,
.adminAuthCard p,
.adminAuthMeta {
  margin: 12px 0 0;
  color: #5c6976;
  line-height: 1.7;
}

.adminAuthCard {
  padding: 24px 26px;
}

.adminAuthNotice {
  padding: 14px 16px;
  box-shadow: none;
}

.adminAuthNotice--error {
  background: rgba(141, 47, 77, 0.08);
  border-color: rgba(141, 47, 77, 0.16);
  color: #7a2940;
}

.adminAuthNotice--success {
  background: rgba(47, 152, 243, 0.08);
  border-color: rgba(47, 152, 243, 0.16);
  color: #185b92;
}

.adminAuthForm {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  max-width: 420px;
}

.adminAuthSetup {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.adminAuthRevealButton {
  width: fit-content;
  min-width: 240px;
}

.adminAuthRevealPanel {
  display: none;
  max-width: 260px;
  padding: 16px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #f7fbff;
}

.adminAuthRevealPanel.is-visible {
  display: block;
}

.adminAuthQrImage {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  margin: 0 auto 10px;
  border-radius: 5px;
  background: #ffffff;
}

.adminAuthSecretLabel,
.adminAuthSecretValue,
.adminAuthSecretMeta {
  margin: 0;
  text-align: center;
}

.adminAuthSecretLabel {
  color: #72808d;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.adminAuthSecretValue {
  margin-top: 8px;
  color: #16202a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  word-break: break-all;
}

.adminAuthSecretMeta {
  margin-top: 8px;
  color: #5c6976;
  font-size: 0.92rem;
}

.adminAuthLabel {
  color: #16202a !important;
  font-weight: 700;
  line-height: 1.2;
}

.adminAuthField {
  max-width: 260px;
  border-radius: 5px !important;
  background: #ffffff !important;
}

.adminAuthActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.adminAuthActions .button,
.adminAuthActions input[type='submit'] {
  min-width: 180px;
  border-radius: 5px !important;
  box-shadow: none !important;
  background: #2f98f3 !important;
  color: #ffffff !important;
}

.adminAuthActions .button:hover,
.adminAuthActions input[type='submit']:hover {
  background: #248be5 !important;
}

body.site-body[class*='route-admin'] #page-content {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: 0 10px 26px rgba(22, 32, 42, 0.08) !important;
  color: #16202a !important;
  padding: 20px !important;
}

.adminNavigationContainer {
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.adminNavigation {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06) !important;
}

.adminNavigation a {
  color: #16202a !important;
}

.adminNavigation .dashboardNavigationIcon {
  color: #2f98f3;
}

.adminNavigation:hover,
.adminNavigation:focus-within,
body.site-body.route-admin .dnAdminHome,
body.site-body.route-admin-authenticator .dnAdminHome,
body.site-body.route-admin-moderationinbox-php .dnAdminModerationInbox,
body.site-body.route-admin-useredit-php .dnAdminUserSearch,
body.site-body.route-admin-usersearch-php .dnAdminUserSearch,
body.site-body.route-admin-conversationview-php .dnAdminMessageSearch,
body.site-body.route-admin-usermap-php .dnAdminUserMap,
body.site-body.route-admin-statistics-php .dnAdminStatistics,
body.site-body.route-admin-imagespendingapproval-php .dnAdminImageApproval,
body.site-body.route-admin-paymentsearch-php .dnAdminPaymentSearch,
body.site-body.route-admin-messagesearch-php .dnAdminMessageSearch,
body.site-body.route-admin-auditlog-php .dnAdminAuditLog {
  background: #2f98f3 !important;
  border-color: rgba(47, 152, 243, 0.22) !important;
}

.adminNavigation:hover a,
.adminNavigation:focus-within a,
body.site-body.route-admin .dnAdminHome a,
body.site-body.route-admin-authenticator .dnAdminHome a,
body.site-body.route-admin-moderationinbox-php .dnAdminModerationInbox a,
body.site-body.route-admin-useredit-php .dnAdminUserSearch a,
body.site-body.route-admin-usersearch-php .dnAdminUserSearch a,
body.site-body.route-admin-conversationview-php .dnAdminMessageSearch a,
body.site-body.route-admin-usermap-php .dnAdminUserMap a,
body.site-body.route-admin-statistics-php .dnAdminStatistics a,
body.site-body.route-admin-imagespendingapproval-php .dnAdminImageApproval a,
body.site-body.route-admin-paymentsearch-php .dnAdminPaymentSearch a,
body.site-body.route-admin-messagesearch-php .dnAdminMessageSearch a,
body.site-body.route-admin-auditlog-php .dnAdminAuditLog a {
  color: #ffffff !important;
}

.adminNavigation:hover .dashboardNavigationIcon,
.adminNavigation:focus-within .dashboardNavigationIcon,
body.site-body.route-admin .dnAdminHome .dashboardNavigationIcon,
body.site-body.route-admin-authenticator .dnAdminHome .dashboardNavigationIcon,
body.site-body.route-admin-moderationinbox-php .dnAdminModerationInbox .dashboardNavigationIcon,
body.site-body.route-admin-useredit-php .dnAdminUserSearch .dashboardNavigationIcon,
body.site-body.route-admin-usersearch-php .dnAdminUserSearch .dashboardNavigationIcon,
body.site-body.route-admin-conversationview-php .dnAdminMessageSearch .dashboardNavigationIcon,
body.site-body.route-admin-usermap-php .dnAdminUserMap .dashboardNavigationIcon,
body.site-body.route-admin-statistics-php .dnAdminStatistics .dashboardNavigationIcon,
body.site-body.route-admin-imagespendingapproval-php .dnAdminImageApproval .dashboardNavigationIcon,
body.site-body.route-admin-paymentsearch-php .dnAdminPaymentSearch .dashboardNavigationIcon,
body.site-body.route-admin-messagesearch-php .dnAdminMessageSearch .dashboardNavigationIcon,
body.site-body.route-admin-auditlog-php .dnAdminAuditLog .dashboardNavigationIcon {
  color: #ffffff !important;
}

body.site-body[class*='route-admin'] .section.group.bgBrightBlue.white {
  padding: 22px 24px !important;
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-top: 3px solid #2f98f3 !important;
  border-radius: 5px !important;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06) !important;
  color: #16202a !important;
}

body.site-body[class*='route-admin'] .section.group.bgBrightBlue.white p {
  color: #16202a !important;
  font-size: 1.1rem;
  margin: 0;
}

body.site-body[class*='route-admin'] table.alerts,
body.site-body[class*='route-admin'] table.profile {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  overflow: hidden;
}

body.site-body[class*='route-admin'] table.alerts td,
body.site-body[class*='route-admin'] table.alerts th,
body.site-body[class*='route-admin'] table.profile td,
body.site-body[class*='route-admin'] table.profile th {
  padding: 10px 12px;
}

body.site-body[class*='route-admin'] form[action=''],
body.site-body[class*='route-admin'] form[action=''][method='get'] {
  margin: 0 0 18px;
}

body.site-body[class*='route-admin'] input[type='text'],
body.site-body[class*='route-admin'] input[type='search'],
body.site-body[class*='route-admin'] input[type='email'],
body.site-body[class*='route-admin'] select,
body.site-body[class*='route-admin'] textarea {
  border-radius: 5px !important;
  background: #ffffff !important;
}

body.site-body[class*='route-admin'] input[type='submit'],
body.site-body[class*='route-admin'] .button {
  border-radius: 5px !important;
  box-shadow: none !important;
}

body.site-body[class*='route-admin'] .button.green,
body.site-body[class*='route-admin'] input[type='submit'].green {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

body.site-body[class*='route-admin'] .button.red,
body.site-body[class*='route-admin'] input[type='submit'].red {
  background: #8d2f4d !important;
  color: #ffffff !important;
}

.adminHeroCard {
  padding: 24px 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-top: 3px solid #2f98f3;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.adminHeroEyebrow {
  margin: 0 0 8px;
  color: #72808d;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.adminHeroCard h1 {
  margin: 0;
}

.adminHeroLead {
  margin: 12px 0 0;
  max-width: 72ch;
  color: #5c6976;
  line-height: 1.7;
}

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

.adminShortcutCard {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  color: #16202a !important;
  text-decoration: none;
}

.adminShortcutCard:hover {
  border-color: rgba(47, 152, 243, 0.24);
  box-shadow: 0 10px 24px rgba(47, 152, 243, 0.08);
}

.adminShortcutIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: rgba(47, 152, 243, 0.1);
  color: #2f98f3;
  font-size: 1.3rem;
}

.adminShortcutTitle {
  color: #8d2f4d;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.adminShortcutCopy {
  color: #5c6976;
  line-height: 1.6;
}

.adminMapShell {
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
  overflow: hidden;
}

.adminMapCanvas {
  width: 100%;
  height: 800px;
}

.adminProfileSummaryGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.adminProfileStat,
.adminDetailSection {
  padding: 22px 24px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.adminProfileStatValue {
  display: block;
  margin-bottom: 8px;
  color: #16202a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.adminProfileStatLabel {
  display: block;
  color: #5c6976;
}

.adminDetailSection {
  margin-bottom: 18px;
}

.adminDetailSection h2 {
  margin: 0 0 14px;
}

.adminUserSubheading {
  margin: 0 0 12px;
  color: #8d2f4d !important;
  font-size: 1.6rem;
  line-height: 1;
}

.adminUserViewTable {
  margin: 0;
}

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

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

.adminUserImageCard {
  overflow: hidden;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #fbfcfe;
}

.adminUserImageCardImage {
  background: #eef4fa;
}

.adminUserImageCardImage img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.adminUserImageCardBody {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.adminUserImageCardBody strong {
  color: #16202a;
}

.adminUserImageStatus {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 5px;
  background: #8d2f4d;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.adminUserImageStatus.is-approved {
  background: #2f98f3;
}

.adminPhotoCard {
  min-height: 100%;
  box-shadow: none;
}

.adminPhotoCard .gallery-card-head h2 {
  font-size: 1.3rem;
  line-height: 1;
}

.adminPhotoCard .gallery-card-copy p {
  margin: 0;
}

.adminPhotoCard .gallery-preview {
  min-height: 150px;
}

.adminPhotoCard[data-slot='p'] .gallery-preview {
  min-height: 150px;
}

.adminProfileCropPanel {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 34, 46, 0.08);
}

.adminProfileCropPreview {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  border: 1px solid rgba(109, 127, 145, 0.18);
  border-radius: 5px;
  background: #dfe8f3;
}

.adminProfileCropControls {
  margin: 0;
  padding: 12px;
}

.adminProfileCropActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.adminProfileCropActions .button {
  flex: 1 1 140px;
}

.adminConversationView .left,
.adminConversationView .right {
  background: #ffffff;
}

.adminConversationSummary {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
}

.adminConversationParty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.adminConversationParty a {
  display: block;
  width: 52px;
  height: 52px;
  line-height: 0;
}

.adminConversationParty img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(23, 34, 46, 0.08);
}

.adminConversationParty strong {
  display: block;
  margin-bottom: 4px;
  color: #16202a;
}

.adminConversationParty span,
.adminConversationMeta span {
  color: #5c6976;
  font-size: 0.9rem;
}

.adminConversationMeta {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.adminConversationMeta div {
  display: grid;
  gap: 4px;
}

.adminConversationMeta strong {
  color: #16202a;
  font-size: 0.9rem;
}

.adminConversationChat {
  display: flex !important;
  overflow-x: hidden;
  overflow-y: auto;
}

.adminSearchPanel,
.adminResultsShell {
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.adminResultsHeader h2 {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1;
}

.adminResultsHeader p {
  margin: 0;
  color: #5c6976;
}

.adminSearchForm {
  margin: 0 !important;
}

.adminSearchGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.adminSearchField {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.adminSearchField label {
  margin: 0;
  color: #16202a;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.adminSearchField input[type='text'] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 34, 46, 0.12) !important;
  box-sizing: border-box;
}

.adminSearchActions {
  display: flex;
  justify-content: flex-end;
}

.adminSearchActions--inline {
  margin-top: 0;
  min-width: 0;
  width: 100%;
  align-self: end;
}

.adminSearchActions .button,
.adminSearchActions input[type='submit'] {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
}

.adminResultsHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.adminHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.adminTableShell {
  overflow-x: auto;
  border-radius: 5px;
}

.adminEditLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.adminFormCard,
.adminSidebarCard,
.adminFlash {
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.adminFormCard h2,
.adminSidebarCard h2 {
  margin: 0 0 14px;
}

.adminFormIntro,
.adminSidebarCard p,
.adminFormHint {
  color: #5c6976;
}

.adminFormIntro {
  margin: 0 0 18px;
  line-height: 1.7;
}

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

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

.adminFormField {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.adminFormField--full {
  grid-column: 1 / -1;
}

.adminFormField label {
  margin: 0;
  color: #16202a;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.adminFormField input[type='text'],
.adminFormField input[type='email'],
.adminFormField select,
.adminFormField textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 34, 46, 0.12) !important;
  box-sizing: border-box;
}

.adminFormField textarea {
  min-height: 168px;
  resize: vertical;
}

.adminFormHint {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.adminAuditSummaryGrid {
  margin-top: 16px;
}

.adminAuditTable {
  width: 100%;
}

.adminAuditTable td {
  vertical-align: top;
}

.adminAuditWhen,
.adminAuditActor,
.adminAuditAction,
.adminAuditRequest {
  min-width: 0;
}

.adminAuditWhen strong,
.adminAuditActor strong,
.adminAuditAction strong,
.adminAuditRequest strong {
  display: block;
  color: #16202a;
}

.adminAuditWhen span,
.adminAuditActor span,
.adminAuditRequest span {
  display: block;
  margin-top: 4px;
  color: #5c6976;
  font-size: 0.92rem;
}

.adminAuditPills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.adminAuditPill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4fa;
  color: #35506b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.adminAuditPill.is-post,
.adminAuditPill.is-action,
.adminAuditPill.is-success {
  background: rgba(47, 152, 243, 0.12);
  color: #1e6fb7;
}

.adminAuditPill.is-get,
.adminAuditPill.is-info,
.adminAuditPill.is-event {
  background: rgba(22, 32, 42, 0.08);
  color: #425463;
}

.adminAuditPill.is-ajax {
  background: rgba(53, 186, 123, 0.14);
  color: #22734d;
}

.adminAuditPill.is-error {
  background: rgba(141, 47, 77, 0.14);
  color: #8d2f4d;
}

.adminAuditDetails {
  max-width: 720px;
}

.adminAuditDetailLine {
  margin-top: 8px;
  color: #5c6976;
  line-height: 1.55;
  word-break: break-word;
}

.adminAuditDetailLine:first-child {
  margin-top: 0;
}

.adminAuditDetailLine strong {
  color: #16202a;
}

.adminModerationSummaryGrid {
  margin-top: 16px;
}

.adminModerationGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.adminModerationSection {
  display: grid;
  grid-template-rows: auto minmax(34px, auto);
  align-content: start;
  gap: 14px;
  margin-bottom: 0;
  height: 100%;
}

.adminModerationSection .adminResultsHeader {
  display: grid;
  grid-template-rows: minmax(132px, auto) auto;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 12px;
  min-height: 0;
}

.adminModerationSection .adminResultsHeader > div:first-child {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.adminModerationSection .adminResultsHeader p,
.adminModerationSection .adminHeroLead {
  max-width: none;
  text-align: center;
}

.adminModerationSection .adminResultsHeader h2,
.adminModerationSection .adminResultsHeader p,
.adminModerationSection .adminHeroLead {
  margin-left: auto;
  margin-right: auto;
}

.adminModerationSection .adminResultsHeader p {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.5;
}

.adminModerationSection .adminHeroActions {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: end;
  margin-top: 0;
  width: 100%;
}

.adminModerationSection .adminHeroActions .button {
  min-width: 0;
  width: 100%;
  max-width: 240px;
}

.adminModerationSection .adminHeroLead {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adminModerationList {
  display: grid;
  gap: 12px;
}

.adminModerationItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: #fbfcfe;
}

.adminModerationItemBody strong {
  display: block;
  color: #16202a;
}

.adminModerationItemBody strong span {
  color: #72808d;
  font-weight: 400;
}

.adminModerationItemBody p {
  margin: 6px 0 0;
  color: #5c6976;
  line-height: 1.5;
}

.adminModerationItemActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.adminModerationActionForm {
  margin: 0;
}

.adminModerationActionForm .button {
  min-width: 118px;
}

.adminModerationItemActions .button {
  min-width: 118px;
  text-align: center;
}

@media (max-width: 1320px) {
  .adminModerationGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .adminModerationGrid {
    grid-template-columns: 1fr;
  }

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

  .adminModerationItemActions {
    justify-content: center;
  }
}

.adminInfoList {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.adminInfoList dt {
  color: #72808d;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.adminInfoList dd {
  margin: 0;
  color: #16202a;
  line-height: 1.6;
}

.adminFlash {
  border-left: 4px solid #2f98f3;
}

.adminFlash p {
  margin: 0;
  color: #16202a;
}

.adminFlash--success {
  border-left-color: #22b573;
}

.adminFlash--error {
  border-left-color: #e34a62;
}

.adminFlash--info {
  border-left-color: #2f98f3;
}

.adminMessageResults {
  margin: 0;
}

.adminMessageResults thead th {
  white-space: nowrap;
  width: 14.28%;
}

.adminPaymentResults thead th {
  width: 11.1%;
}

.adminUserViewTable thead th {
  width: 14.28%;
}

.adminStatisticsChart {
  width: 100%;
}

.dashboardLoginCallout {
  margin-top: 20px;
  padding: 0 0.5em;
}

.adminMessageBodyRow td {
  padding: 14px 16px !important;
  background: #fbfcfe;
  color: #16202a;
}

.adminMessageBodyRow td p {
  margin-bottom: 0;
}

.adminEmptyState {
  padding: 24px 18px;
  border: 1px dashed rgba(23, 34, 46, 0.14);
  border-radius: 5px;
  background: #fbfcfe;
  text-align: center;
}

.adminEmptyState p {
  margin: 0;
  color: #5c6976;
}

@media only screen and (max-width: 1100px) {
  .adminNavigationContainer {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

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

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

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

  .adminEditLayout,
  .adminFormGrid {
    grid-template-columns: 1fr;
  }

  .adminSearchField--wide {
    grid-column: span 2;
  }

  .adminSearchActions--inline {
    grid-column: span 2;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 700px) {
  .adminNavigationContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .adminShortcutGrid,
  .adminProfileSummaryGrid,
  .adminUserImageGrid,
  .adminPhotoGrid {
    grid-template-columns: 1fr;
  }

  .adminEditLayout,
  .adminFormGrid,
  .adminSearchGrid {
    grid-template-columns: 1fr;
  }

  .adminSearchField--wide {
    grid-column: span 1;
  }

  .adminSearchActions--inline {
    grid-column: span 1;
  }

  .adminResultsHeader {
    align-items: start;
    flex-direction: column;
  }
}

body.site-body .button,
body.site-body .btnStyle,
body.site-body .deleteBtnStyle,
body.site-body input[type='submit'],
body.site-body button,
body.site-body .auth-login-button {
  border-radius: 5px !important;
  background-image: none !important;
}

body.site-body .blueButton,
body.site-body .backgroundBrightBlue,
body.site-body .btnStyle,
body.site-body .section.group.bgBrightBlue,
body.site-body .homepageSearchLink,
body.site-body .bgBrightBlue {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

body.site-body .redButton,
body.site-body .deleteBtnStyle,
body.site-body .section.group.bgRed,
body.site-body .bgRed,
body.site-body .homepageRegister {
  background: #e34a62 !important;
  color: #ffffff !important;
}

body.site-body .button.red,
body.site-body input[type='submit'].red {
  background: #8d2f4d !important;
  color: #ffffff !important;
}

body.site-body .greenButton,
body.site-body .auth-login-button,
body.site-body .homepageLogin,
body.site-body .bggreen {
  background: #22b573 !important;
  color: #ffffff !important;
}

body.site-body input[type='text'],
body.site-body input[type='email'],
body.site-body input[type='url'],
body.site-body input[type='password'],
body.site-body textarea,
body.site-body select {
  border-radius: 5px !important;
}

body.site-body .darkgreycontainer {
  width: min(calc(100% - 12px), var(--content-max));
  max-width: var(--content-max);
  margin: 8px auto 0;
  padding: 0 0 10px;
  background: transparent !important;
}

body.site-body footer.group {
  gap: 14px;
  padding: 18px;
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.08) !important;
}

body.site-body .site-footer-intro {
  padding: 0;
  text-align: left;
}

body.site-body .site-footer-kicker {
  color: #6d7c8a !important;
}

body.site-body .site-footer-brand {
  color: #16202a !important;
}

body.site-body .site-footer-summary {
  max-width: none;
  margin: 0;
  color: #586876;
}

body.site-body .footer-panel,
body.site-body .footer-meta-panel {
  background: #f6f8fb !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
}

body.site-body footer h4 {
  color: #16202a !important;
  border-bottom: 1px solid rgba(23, 34, 46, 0.1);
}

body.site-body .footer-panel ul li {
  color: #586876;
}

body.site-body .footer-panel ul li i {
  color: #2f98f3 !important;
}

body.site-body .footer-panel a,
body.site-body footer .footer_subnav a {
  color: #16202a !important;
}

body.site-body .footer-panel a:hover,
body.site-body footer .footer_subnav a:hover {
  color: #0d7dd8 !important;
}

body.site-body footer .footer_copyright a,
body.site-body footer .footer_feeders a {
  color: #2f98f3 !important;
}

body.site-body footer .footer_copyright a:hover,
body.site-body footer .footer_feeders a:hover {
  color: #0d7dd8 !important;
}

body.site-body footer .current_language,
body.site-body footer .footer_subnav,
body.site-body footer .footer_copyright,
body.site-body footer .footer_feeders {
  color: #647482;
}

body.site-body footer .current_language {
  border-bottom: 1px solid rgba(23, 34, 46, 0.1);
}

body.site-body footer .current_language .region {
  color: #7b8996;
}

body.site-body footer .current_language .language {
  color: #16202a;
}

body.site-body footer .footer_subnav li {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  padding-left: 16px;
  padding-right: 14px;
  gap: 10px;
}

body.site-body footer .footer_subnav li i,
body.site-body footer .footer_subnav li img {
  margin-left: 0;
  flex: 0 0 auto;
}

body.site-body .dashboardNavigationContainer {
  margin: 12px 0 16px !important;
}

body.site-body .dashboardNavigation {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: 0 6px 16px rgba(22, 32, 42, 0.06) !important;
}

body.site-body .dashboardNavigation a {
  color: #16202a !important;
}

body.site-body .dashboardNavigationIcon {
  color: #2f98f3;
}

body.site-body .dashboardNavigation:hover,
body.site-body .dashboardNavigation:focus-within,
body.site-body .dashboardNavigation.current,
body.site-body.route-search .dashboardNavigation.dnSearch,
body.site-body.route-search-profile .dashboardNavigation.dnSearch,
body.site-body.route-search-awprofile .dashboardNavigation.dnSearch,
body.site-body.route-outbound .dashboardNavigation.dnProfile,
body.site-body.route-user-dashboard-profile .dashboardNavigation.dnProfile,
body.site-body.route-user-dashboard-profile-edit .dashboardNavigation.dnProfile,
body.site-body.route-user-dashboard-gallery .dashboardNavigation.dnGallery,
body.site-body.route-user-dashboard-verification .dashboardNavigation.dnVerify,
body.site-body.route-message .dashboardNavigation.dnMessage,
body.site-body.route-user-dashboard-messages .dashboardNavigation.dnMessage,
body.site-body.route-user-dashboard-messages-chatter .dashboardNavigation.dnMessage,
body.site-body.route-user-dashboard-purchases .dashboardNavigation.dnPurchases,
body.site-body.route-user-dashboard-alerts .dashboardNavigation.dnAlerts,
body.site-body.route-user-dashboard-favourite .dashboardNavigation.dnFavourite,
body.site-body.route-user-dashboard-recently-viewed .dashboardNavigation.dnRecentlyViewed,
body.site-body.route-user-dashboard-notes .dashboardNavigation.dnNotes,
body.site-body.route-user-dashboard-blocked .dashboardNavigation.dnBlocked {
  background: #2f98f3 !important;
  border-color: #2f98f3 !important;
}

body.site-body .dashboardNavigation:hover a,
body.site-body .dashboardNavigation:focus-within a,
body.site-body .dashboardNavigation.current a,
body.site-body .dashboardNavigation:hover .dashboardNavigationIcon,
body.site-body .dashboardNavigation:focus-within .dashboardNavigationIcon,
body.site-body .dashboardNavigation.current .dashboardNavigationIcon {
  color: #ffffff !important;
}

body.site-body.route-search .dashboardNavigation.dnSearch .dashboardNavigationIcon,
body.site-body.route-search-profile .dashboardNavigation.dnSearch .dashboardNavigationIcon,
body.site-body.route-search-awprofile .dashboardNavigation.dnSearch .dashboardNavigationIcon,
body.site-body.route-outbound .dashboardNavigation.dnProfile .dashboardNavigationIcon,
body.site-body.route-user-dashboard-profile .dashboardNavigation.dnProfile .dashboardNavigationIcon,
body.site-body.route-user-dashboard-profile-edit .dashboardNavigation.dnProfile .dashboardNavigationIcon,
body.site-body.route-user-dashboard-gallery .dashboardNavigation.dnGallery .dashboardNavigationIcon,
body.site-body.route-user-dashboard-verification .dashboardNavigation.dnVerify .dashboardNavigationIcon,
body.site-body.route-message .dashboardNavigation.dnMessage .dashboardNavigationIcon,
body.site-body.route-user-dashboard-messages .dashboardNavigation.dnMessage .dashboardNavigationIcon,
body.site-body.route-user-dashboard-messages-chatter .dashboardNavigation.dnMessage .dashboardNavigationIcon,
body.site-body.route-user-dashboard-purchases .dashboardNavigation.dnPurchases .dashboardNavigationIcon,
body.site-body.route-user-dashboard-alerts .dashboardNavigation.dnAlerts .dashboardNavigationIcon,
body.site-body.route-user-dashboard-favourite .dashboardNavigation.dnFavourite .dashboardNavigationIcon,
body.site-body.route-user-dashboard-recently-viewed .dashboardNavigation.dnRecentlyViewed .dashboardNavigationIcon,
body.site-body.route-user-dashboard-notes .dashboardNavigation.dnNotes .dashboardNavigationIcon,
body.site-body.route-user-dashboard-blocked .dashboardNavigation.dnBlocked .dashboardNavigationIcon {
  color: #ffffff !important;
}

body.site-body.route-user-dashboard-settings .dashboardNavigation.dnSettings {
  background: #2f98f3 !important;
  border-color: #2f98f3 !important;
}

body.site-body.route-user-dashboard-settings .dashboardNavigation.dnSettings a,
body.site-body.route-user-dashboard-settings .dashboardNavigation.dnSettings .dashboardNavigationIcon {
  color: #ffffff !important;
}

body.site-body .favourites-hero,
body.site-body .search-toolbar {
  background: #ffffff !important;
  color: #16202a !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-top: 4px solid #2f98f3 !important;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.08) !important;
}

.settingsPageForm {
  display: grid;
  gap: 18px;
}

.settingsSectionCard {
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.06);
}

.settingsSectionHeading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.settingsSectionHeading h2 {
  margin: 0;
}

.settingsSectionHeading p {
  margin: 0;
  color: #5e6977;
}

.settingsSectionKicker {
  margin: 0;
  color: #74818e;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.settingsToggleRow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.settingsToggle {
  position: relative;
}

.settingsToggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.settingsToggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(23, 34, 46, 0.12);
  background: rgba(23, 34, 46, 0.04);
  color: #1f2933;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.settingsToggle input:checked + span {
  background: #2f98f3;
  border-color: #2f98f3;
  color: #ffffff;
}

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

.settingsField {
  display: grid;
  gap: 8px;
}

.settingsField span {
  color: #1f2933;
  font-weight: 700;
}

.settingsField select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 34, 46, 0.12);
  border-radius: 5px;
  background: #ffffff;
  color: #16202a;
  box-sizing: border-box;
}

.settingsField small {
  color: #6a7785;
  line-height: 1.5;
}

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

.settingsFeatureCard {
  display: grid;
  gap: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.02);
}

.settingsFeatureCopy {
  display: grid;
  gap: 8px;
}

.settingsFeatureCopy strong,
.settingsFeatureCopy p {
  margin: 0;
}

.settingsFeatureCopy p {
  color: #5e6977;
  line-height: 1.6;
}

.settingsFormActions {
  display: flex;
  justify-content: flex-end;
}

.page-dashboard-settings .settingsFormActions .button {
  min-width: 180px;
}

body.site-body .favourites-eyebrow {
  color: #6d88a3;
}

body.site-body .favourites-hero h2,
body.site-body .search-toolbar-copy h2 {
  color: #16202a !important;
}

body.site-body .favourites-hero p:last-child,
body.site-body .search-toolbar-copy p:last-child {
  color: #586876 !important;
}

body.site-body .search-sort-control {
  background: #2f98f3 !important;
}

body.site-body .search-sort-control select {
  background-color: transparent !important;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.88) 50%) calc(100% - 11px) calc(50% - 1px) / 6px 6px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 50%, transparent 50%) calc(100% - 7px) calc(50% - 1px) / 6px 6px no-repeat,
    transparent !important;
}

body.site-body .search-sort-control select option {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

body.site-body .search-panel-submit {
  border: 1px solid #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.92), 0 12px 24px rgba(23, 139, 237, 0.18) !important;
}

body.site-body .favourites-stat {
  background: #f6f8fb !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: none !important;
}

body.site-body .home-page-content {
  padding: 22px !important;
}

@media (max-width: 980px) {
  body.site-body footer.group {
    padding: 16px;
  }

  body.site-body .site-footer-intro {
    text-align: left;
  }
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4,
body.site-body h5,
body.site-body h6 {
  color: #8d2f4d !important;
}

body.site-body a {
  color: #2f98f3;
}

body.site-body a:hover {
  color: #0d7dd8;
}

body.site-body footer .footer-panel a,
body.site-body footer .footer-panel a:hover {
  color: inherit !important;
}

body.site-body .blueButton,
body.site-body .backgroundBrightBlue,
body.site-body .btnStyle,
body.site-body .search-toolbar-button,
body.site-body .search-sort-control,
body.site-body .registrationActions .button,
body.site-body.route-home .homeHeroSecondary,
body.site-body[class*='route-pages-'] .bluePad a {
  color: #ffffff !important;
}

body.site-body[class*='route-pages-'] .banner {
  margin: 0 0 14px;
}

body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedFilter,
body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedClear {
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  background: #ffffff !important;
  color: #16202a !important;
  text-shadow: none !important;
}

body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedFilter.is-active,
body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedFilter:first-child {
  background: #2f98f3 !important;
  border-color: #2f98f3 !important;
  color: #ffffff !important;
}

body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedClear {
  background: #8d2f4d !important;
  border-color: #8d2f4d !important;
  color: #ffffff !important;
}

body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedFilter:hover,
body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedFilter:focus,
body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedClear:hover,
body.site-body.route-user-dashboard-recently-viewed .page-dashboard-recently-viewed .recentlyViewedClear:focus {
  box-shadow: none !important;
  transform: none !important;
}

body.site-body[class*='route-pages-'] .banner h1 {
  padding: 16px 20px;
  background: #0b0f13 !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  border-radius: 5px !important;
}

body.site-body[class*='route-pages-'] #page-content > .section.group {
  gap: 16px;
}

body.site-body[class*='route-pages-'] .helpPages,
body.site-body[class*='route-pages-'] .helpPages.bgColour20Transparent {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.site-body[class*='route-pages-'] .bluePad {
  margin-bottom: 8px;
  padding: 0;
  border-left: 0 !important;
  background: transparent !important;
}

body.site-body[class*='route-pages-'] .bluePad a {
  display: block;
  padding: 12px 14px;
  background: #2f98f3 !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: none !important;
  text-decoration: none;
}

body.site-body[class*='route-pages-'] .bluePad a:hover {
  background: #0d7dd8 !important;
  color: #ffffff !important;
}

body.site-body[class*='route-pages-'] .bgColour20Transparent {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06) !important;
}

body.site-body[class*='route-pages-'] .greenPad,
body.site-body[class*='route-pages-'] .redPad {
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  background: transparent !important;
}

body.site-body[class*='route-pages-'] .greenPad {
  border-left: 3px solid #2f98f3 !important;
}

body.site-body[class*='route-pages-'] .redPad {
  border-left: 3px solid #8d2f4d !important;
}

body.site-body[class*='route-pages-'] .greenPad a,
body.site-body[class*='route-pages-'] .redPad a {
  color: #2f98f3 !important;
}

.site-header-quicknav {
  display: none;
}

body.site-body.is-guest[class*='route-pages-'] .site-header-quicknav,
body.site-body.is-guest.route-home .site-header-quicknav {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.site-body.is-guest[class*='route-pages-'] .site-header-quicknav a,
body.site-body.is-guest.route-home .site-header-quicknav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}
body.site-body.is-guest[class*='route-pages-'] .site-header-quicknav .site-header-quicknav-cta,
body.site-body.is-guest.route-home .site-header-quicknav .site-header-quicknav-cta {
  background: #8d2f4d;
  border-color: rgba(141, 47, 77, 0.92);
  color: #ffffff !important;
}

body.site-body.is-guest[class*='route-pages-'] .site-nav-toggle,
body.site-body.is-guest.route-home .site-nav-toggle {
  display: none !important;
}

body.site-body[class*='route-pages-'] .helpPages a,
body.site-body[class*='route-pages-'] .helpPages a.white,
body.site-body[class*='route-pages-'] .helpPages .bluePad a,
body.site-body[class*='route-pages-'] .helpPages .bluePad a.white {
  color: #ffffff !important;
}

body.site-body.route-user-reset .auth-reset-card {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: none !important;
}

body.site-body.route-user-reset .auth-reset-kicker {
  color: #7a8792 !important;
}

body.site-body.route-user-reset .auth-reset-info h1 {
  color: #8d2f4d !important;
}

body.site-body.route-user-reset .auth-reset-info p,
body.site-body.route-user-reset .auth-reset-help,
body.site-body.route-user-reset .auth-reset-form label strong,
body.site-body.route-user-reset .auth-reset-form .white,
body.site-body.route-user-reset .auth-reset-card .white {
  color: #4d5a66 !important;
}

body.site-body.route-user-reset .auth-reset-info a,
body.site-body.route-user-reset .auth-reset-help a,
body.site-body.route-user-reset .alert_fail a,
body.site-body.route-user-reset .alert_ok a {
  color: #2f98f3 !important;
}

body.site-body.route-user-reset #resetPasswordButton,
body.site-body.route-user-reset .auth-reset-form input[type='submit'] {
  background: #2f98f3 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border: 0 !important;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: none !important;
  color: #4d5a66 !important;
}

body.site-body.route-contact .banner h1 {
  padding: 16px 20px;
  background: #0b0f13 !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  border-radius: 5px !important;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent .white,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent p,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent label {
  color: #4d5a66 !important;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h2 {
  color: #8d2f4d !important;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem) !important;
  line-height: 1.08;
  margin-bottom: 10px;
}

body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h1,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h2.white,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h3,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h4,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h5,
body.site-body.route-contact #page-content > .section.group .bgColour20Transparent h6 {
  color: #8d2f4d !important;
}

body.site-body.route-contact #contactForm {
  display: grid;
  gap: 12px;
  text-align: left;
}

body.site-body.route-contact #contactForm .g-recaptcha {
  justify-self: start;
}

body.site-body.route-contact #submitButton,
body.site-body.route-contact input[type='submit'].button,
body.site-body.route-contact .button.greenButton {
  background: #2f98f3 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border: 0 !important;
}

@media only screen and (max-width: 639px) {
  body.site-body #menu {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: -13.75em !important;
    width: 13.75em !important;
    z-index: 9999 !important;
  }

  body.site-body #header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    margin: 0 !important;
  }

  body.site-body #maincontent.site-maincontent {
    padding-top: 78px !important;
  }

  body.site-body .dashboardNavigationContainer {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin: 10px 0 16px !important;
  }

  body.site-body .dashboardNavigation {
    min-width: 0 !important;
    padding: 8px 4px !important;
  }

  body.site-body .dashboardNavigation a {
    min-height: 46px !important;
  }
}

@media only screen and (max-width: 480px) {
  body.site-body .site-header-inner {
    min-height: 50px;
  }

  body.site-body #maincontent.site-maincontent {
    padding-top: 72px !important;
  }

  body.site-body .dashboardNavigationContainer {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 4px !important;
  }

  body.site-body .dashboardNavigationText {
    display: none !important;
  }

  body.site-body .dashboardNavigationIcon {
    margin-bottom: 0 !important;
    font-size: 1rem !important;
  }
}

.responsive-grid {
  --grid-cols-desktop: 1;
  --grid-cols-tablet: var(--grid-cols-desktop);
  --grid-cols-small: var(--grid-cols-tablet);
  --grid-cols-mobile: var(--grid-cols-small);
  grid-template-columns: repeat(var(--grid-cols-desktop), minmax(0, 1fr));
}

.grid-cols-d-1 { --grid-cols-desktop: 1; }
.grid-cols-d-2 { --grid-cols-desktop: 2; }
.grid-cols-d-3 { --grid-cols-desktop: 3; }
.grid-cols-d-4 { --grid-cols-desktop: 4; }
.grid-cols-d-5 { --grid-cols-desktop: 5; }
.grid-cols-d-6 { --grid-cols-desktop: 6; }

.grid-cols-t-1 { --grid-cols-tablet: 1; }
.grid-cols-t-2 { --grid-cols-tablet: 2; }
.grid-cols-t-3 { --grid-cols-tablet: 3; }
.grid-cols-t-4 { --grid-cols-tablet: 4; }
.grid-cols-t-5 { --grid-cols-tablet: 5; }
.grid-cols-t-6 { --grid-cols-tablet: 6; }

.grid-cols-s-1 { --grid-cols-small: 1; }
.grid-cols-s-2 { --grid-cols-small: 2; }
.grid-cols-s-3 { --grid-cols-small: 3; }
.grid-cols-s-4 { --grid-cols-small: 4; }
.grid-cols-s-5 { --grid-cols-small: 5; }
.grid-cols-s-6 { --grid-cols-small: 6; }

.grid-cols-m-1 { --grid-cols-mobile: 1; }
.grid-cols-m-2 { --grid-cols-mobile: 2; }
.grid-cols-m-3 { --grid-cols-mobile: 3; }
.grid-cols-m-4 { --grid-cols-mobile: 4; }
.grid-cols-m-5 { --grid-cols-mobile: 5; }
.grid-cols-m-6 { --grid-cols-mobile: 6; }

.page-dashboard-notes .notes-empty,
.page-dashboard-notes .note-card {
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,247,250,0.96));
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: var(--shadow-md);
}

.page-dashboard-notes .notes-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.page-dashboard-notes .notes-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.page-dashboard-notes .notes-filter-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.page-dashboard-notes .notes-filter-button {
  border: 0;
  border-radius: 5px;
  min-height: 42px;
  padding: 10px 16px;
  background: rgba(23, 34, 46, 0.08);
  color: #17222d;
  font-weight: 700;
  cursor: pointer;
}

.page-dashboard-notes .notes-filter-button.is-active {
  background: #2f98f3;
  color: #fff;
}

.page-dashboard-notes .notes-search-input {
  flex: 0 1 320px;
  min-height: 42px;
  max-width: 320px;
  padding: 0 16px;
  border-radius: 5px;
  border: 1px solid rgba(23, 34, 46, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: #17222d;
  box-sizing: border-box;
  box-shadow: none;
}

.page-dashboard-notes .notes-search-input::placeholder {
  color: #7a8794;
}

.page-dashboard-notes .notes-search-input:focus {
  outline: none;
  border-color: rgba(47, 152, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(47, 152, 243, 0.12);
}

.page-dashboard-notes .note-card {
  padding: 22px;
}

.page-dashboard-notes .note-card-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.page-dashboard-notes .note-card-head img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.08);
}

.page-dashboard-notes .note-card-head h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.page-dashboard-notes .note-card-head p {
  margin: 6px 0 0;
  color: #66717d;
  font-size: 0.92rem;
}

.page-dashboard-notes .note-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 14px;
}

.page-dashboard-notes .note-card textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid rgba(23, 34, 46, 0.12);
  background: #fff;
  font: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.page-dashboard-notes .note-card textarea:focus {
  outline: none;
  border-color: rgba(29, 155, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(29, 155, 255, 0.12);
}

.page-dashboard-notes .note-save,
.page-dashboard-notes .note-delete,
.page-dashboard-notes .note-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: 42px;
  width: 100%;
  padding: 0 14px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: center;
  font-size: 0.95rem;
  gap: 6px;
  line-height: 1;
  margin: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.page-dashboard-notes .note-save {
  border: 0;
  background: #2f98f3;
  color: #fff;
}

.page-dashboard-notes .note-delete {
  border: 0;
  background: rgba(227, 74, 98, 0.12);
  color: #a7344d;
}

.page-dashboard-notes .note-link {
  background: rgba(23, 34, 46, 0.08);
  color: #17222d;
}

.page-dashboard-notes .note-status {
  grid-column: 1 / -1;
  color: #66717d;
  font-size: 0.9rem;
  margin-top: 2px;
}

.page-dashboard-notes .note-status.is-success {
  color: #177f51;
}

.page-dashboard-notes .notes-empty {
  padding: 34px 30px;
  margin-top: 24px;
  text-align: center;
}

.page-dashboard-notes .notes-empty.is-filtered {
  display: none;
}

.page-dashboard-notes .notes-empty h3 {
  margin-bottom: 10px;
}

.page-dashboard-notes .note-card-actions > * {
  width: 100%;
}

.page-dashboard-recently-viewed .recentlyViewedTools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-dashboard-recently-viewed .recentlyViewedFilterGroup {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-dashboard-recently-viewed .recentlyViewedFilter {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(23, 34, 46, 0.08);
  color: #17222d;
  font-weight: 700;
  cursor: pointer;
}

.page-dashboard-recently-viewed .recentlyViewedFilter.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #5bb8ff 100%);
  color: #fff;
}

.page-dashboard-recently-viewed .recentlyViewedClear {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(227, 74, 98, 0.12);
  color: #a7344d;
  font-weight: 700;
  cursor: pointer;
}

.page-dashboard-recently-viewed .recentlyViewedClear[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.page-dashboard-recently-viewed .searchResultUserContainer {
  display: flex;
  flex-direction: column;
}

.page-dashboard-recently-viewed .searchResultUserContainer > a.dashboardCardPrimary {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 5px;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

.page-dashboard-recently-viewed .searchResultUserContainer .srucBottom {
  flex: 1;
}

.page-dashboard-recently-viewed .dashboardQuickActions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 0 5px 6px;
}

.page-dashboard-recently-viewed .dashboardQuickActions .favourite,
.page-dashboard-recently-viewed .actions .favourite {
  min-height: 34px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px !important;
  text-decoration: none;
  font-size: 0.74rem;
}

.page-dashboard-recently-viewed .dashboardQuickActions .favourite {
  background: rgba(23, 34, 46, 0.07) !important;
  color: #17222d !important;
  box-shadow: none;
}

.page-dashboard-recently-viewed .dashboardQuickActions .favourite.is-active {
  background: rgba(36, 182, 115, 0.12) !important;
  color: #177f51 !important;
}

.page-dashboard-recently-viewed .dashboardQuickActions .js-rv-hide.is-active {
  background: rgba(23, 34, 46, 0.12) !important;
  color: #51606d !important;
}

.page-dashboard-recently-viewed .dashboardQuickActions .favourite[disabled] {
  cursor: default;
  opacity: 1;
}

.page-dashboard-recently-viewed .dashboardQuickActions .dashboardInlineNoteToggle {
  width: 100%;
  margin: 0;
}

.page-dashboard-recently-viewed .actions {
  padding: 0 5px 5px;
}

.page-dashboard-recently-viewed .actions a {
  padding: 8px 10px !important;
  background: #2f98f3 !important;
  color: #ffffff !important;
  box-shadow: none;
}

.page-dashboard-recently-viewed .actions a:hover,
.page-dashboard-recently-viewed .actions a:focus {
  background: #1d7fda !important;
  color: #ffffff !important;
}

.page-dashboard-recently-viewed .searchResultUserContainer.is-history-hidden {
  opacity: 0.95;
}

.page-dashboard-recently-viewed .favourites-empty-state.is-filtered {
  display: none !important;
}

.page-dashboard-recently-viewed .favourites-empty-state {
  background: #ffffff !important;
  border: 1px solid rgba(23, 34, 46, 0.08) !important;
  box-shadow: none !important;
  border-radius: 5px !important;
}

.gallery-page-shell {
  display: grid;
  gap: 18px;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: none;
}

.gallery-hero p,
.gallery-card-copy p,
.gallery-help p {
  margin: 0;
  color: #5e6977;
  line-height: 1.65;
}

.gallery-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #74818e;
}

.gallery-hero h1 {
  margin: 0 0 12px;
  color: #20262d;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.gallery-pills,
.gallery-card-meta,
.gallery-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-pills {
  align-content: flex-start;
  justify-content: flex-end;
}

.gallery-pills span,
.gallery-card-meta span,
.gallery-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  background: rgba(17,24,31,0.06);
  border: 1px solid rgba(17,24,31,0.08);
  border-radius: 5px;
  color: #24303b;
  font-size: 0.92rem;
  font-weight: 600;
}

.gallery-status.is-approved {
  background: #2f98f3;
  border-color: #2f98f3;
  color: #ffffff;
}

.gallery-status.is-pending {
  background: #8d2f4d;
  border-color: #8d2f4d;
  color: #ffffff;
}

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

.gallery-help {
  padding: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
}

.gallery-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.gallery-card-head h2 {
  margin: 0 0 8px;
  color: #20262d;
  font-size: 1.65rem;
  line-height: 0.98;
}

.gallery-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eef3f8;
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
}

.gallery-card[data-slot='p'] .gallery-preview {
  aspect-ratio: 1 / 1;
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: #6b7886;
  font-weight: 600;
  line-height: 1.6;
}

.gallery-card-actions {
  margin-top: auto;
}

.gallery-card-actions .button {
  flex: 1 1 0;
  justify-content: center;
  min-height: 22px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  background: #2f98f3 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.gallery-card-actions .button.gallery-delete {
  background: #8d2f4d !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.gallery-hidden-input {
  display: none;
}

.gallery-uploading {
  opacity: 0.6;
  pointer-events: none;
}

.dashboard-purchases-shell {
  display: grid;
  gap: 18px;
}

.dashboard-purchases-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 18px;
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: none;
}

.dashboard-purchases-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #74818e;
}

.dashboard-purchases-hero h1 {
  margin: 0 0 12px;
  color: #20262d;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1;
}

.dashboard-purchases-hero p,
.dashboard-purchases-section p,
.dashboard-purchases-empty p {
  margin: 0;
  color: #5e6977;
  line-height: 1.65;
}

.dashboard-purchases-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dashboard-purchases-actions .button {
  min-height: 42px;
  justify-content: center;
}

.dashboard-purchases-toolbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.dashboard-purchases-toolbar-link,
.dashboard-purchases-section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 5px;
  color: #ffffff !important;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.dashboard-purchases-toolbar-link {
  min-height: 48px;
}

.dashboard-purchases-section-link {
  min-height: 38px;
  padding: 0 16px;
}

.dashboard-purchases-toolbar-link:hover,
.dashboard-purchases-toolbar-link:focus,
.dashboard-purchases-section-link:hover,
.dashboard-purchases-section-link:focus {
  color: #ffffff !important;
  text-decoration: none;
}

.dashboard-purchases-button-muted {
  background: rgba(17,24,31,0.06) !important;
  color: #24303b !important;
  box-shadow: none !important;
}

.dashboard-purchases-stat {
  min-height: 48px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dashboard-purchases-stat small {
  display: block;
  margin-bottom: 6px;
  color: #74818e;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-purchases-stat strong {
  display: block;
  color: #20262d;
  font-size: 1.4rem;
  line-height: 1.15;
}

.dashboard-purchases-section {
  padding: 22px 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
}

.dashboard-purchases-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-purchases-section-head h2 {
  margin: 0 0 8px;
  color: #20262d;
  font-size: 1.45rem;
  line-height: 1.15;
}

.dashboard-purchases-section-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-purchases-section-head .dashboard-purchases-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(17,24,31,0.06);
  border: 1px solid rgba(23,34,46,0.08);
  color: #24303b;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-purchases-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
}

.dashboard-purchases-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.dashboard-purchases-table th,
.dashboard-purchases-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(23,34,46,0.08);
  text-align: left;
  vertical-align: top;
}

.dashboard-purchases-table th {
  background: rgba(17,24,31,0.04);
  color: #20262d;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-purchases-table td {
  color: #51606d;
}

.dashboard-purchases-table tr:last-child td {
  border-bottom: 0;
}

.dashboard-purchases-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-purchases-reference {
  color: #7b8794;
  font-size: 0.84rem;
}

.dashboard-purchases-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 700;
}

.dashboard-purchases-status.is-active {
  background: #2f98f3;
  color: #ffffff;
}

.dashboard-purchases-status.is-expired {
  background: #8d2f4d;
  color: #ffffff;
}

.dashboard-purchases-status.is-muted {
  background: rgba(17,24,31,0.08);
  color: #24303b;
}

.dashboard-purchases-empty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: rgba(17,24,31,0.03);
  border: 1px dashed rgba(23,34,46,0.14);
  border-radius: 5px;
}

.dashboard-purchases-empty strong {
  display: block;
  margin-bottom: 4px;
  color: #20262d;
}

.dashboard-profile-page-shell {
  display: grid;
  gap: 18px;
}

.dashboard-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.95fr);
  gap: 18px;
  padding: 24px 26px;
  background: #ffffff;
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: none;
}

.dashboard-profile-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #74818e;
}

.dashboard-profile-hero h1 {
  margin: 0 0 12px;
  color: #20262d !important;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.dashboard-profile-hero p,
.dashboard-profile-note p,
.dashboard-profile-table-intro p {
  margin: 0;
  color: #5e6977;
  line-height: 1.65;
}

.dashboard-profile-actions,
.dashboard-profile-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-profile-actions {
  margin-top: 16px;
}

.dashboard-profile-actions .button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 5px;
  text-decoration: none;
  justify-content: center;
  box-shadow: none !important;
}

.dashboard-profile-button-primary,
.dashboard-profile-button-primary:visited {
  background: #2f98f3 !important;
  color: #ffffff !important;
}

.dashboard-profile-button-primary:hover,
.dashboard-profile-button-primary:focus {
  background: #1d7fda !important;
  color: #ffffff !important;
}

.dashboard-profile-button-danger,
.dashboard-profile-button-danger:visited {
  background: #8d2f4d !important;
  color: #ffffff !important;
}

.dashboard-profile-button-danger:hover,
.dashboard-profile-button-danger:focus {
  background: #75253f !important;
  color: #ffffff !important;
}

.dashboard-profile-button-muted {
  background: rgba(17,24,31,0.06) !important;
  color: #24303b !important;
  box-shadow: none !important;
}

.dashboard-profile-summary {
  display: grid;
  gap: 10px;
}

.dashboard-profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-profile-summary-card,
.dashboard-profile-note,
.dashboard-profile-table-intro,
.dashboard-profile-contact-card,
.dashboard-profile-contact-callout {
  padding: 16px 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: none;
}

.dashboard-profile-summary-card small {
  display: block;
  margin-bottom: 6px;
  color: #74818e;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-profile-summary-card strong {
  color: #20262d;
  font-size: 1rem;
  line-height: 1.35;
}

.dashboard-profile-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-profile-note .dashboard-profile-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24303b;
  font-weight: 600;
}

.dashboard-profile-content > h2 {
  margin: 0 0 10px;
  color: #20262d !important;
  font-size: 1.45rem;
  line-height: 1.2;
}

.dashboard-profile-content > h2:not(:first-of-type) {
  margin-top: 18px;
}

.dashboard-profile-content > p {
  color: #5e6977;
  margin: 0 0 12px;
  line-height: 1.65;
}

.dashboard-profile-content table.profile {
  margin: 0;
  border: 1px solid rgba(23,34,46,0.08);
  background: rgba(255,255,255,0.96);
  border-radius: 5px;
  box-shadow: none;
  overflow: hidden;
}

.dashboard-profile-content table.profile td,
.dashboard-profile-content table.profile th {
  padding: 14px 16px;
  border-color: rgba(23,34,46,0.08);
}

.dashboard-profile-content table.profile th {
  width: 24%;
  min-width: 180px;
  color: #20262d;
  font-size: 0.95rem;
  background: rgba(17,24,31,0.04);
}

.dashboard-profile-content table.profile td {
  color: #52606c;
  line-height: 1.65;
}

.dashboard-profile-content table.profile tr:nth-child(even) {
  background: rgba(17,24,31,0.018);
}

.dashboard-profile-content .premuimFeatureTH {
  border-left: 3px solid #1d9bff !important;
}

.dashboard-profile-content .premuimFeatureText {
  background: linear-gradient(135deg, #1d9bff 0%, #53b6ff 100%);
  color: #fff !important;
  font-weight: 700;
}

.dashboard-profile-content .premuimFeatureText a {
  color: #fff !important;
}

.dashboard-profile-content .backgroundNoise {
  background: rgba(17,24,31,0.05) !important;
}

.dashboard-profile-content .strike {
  color: #7b8794;
}

.dashboard-profile-table-intro {
  margin-bottom: 14px;
}

.dashboard-profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-profile-contact-card small {
  display: block;
  margin-bottom: 6px;
  color: #74818e;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-profile-contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: #20262d;
  font-size: 1.05rem;
}

.dashboard-profile-contact-card p {
  color: #5e6977;
  line-height: 1.65;
}

.dashboard-profile-contact-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-profile-contact-callout strong {
  display: block;
  margin-bottom: 4px;
  color: #20262d;
}

.dashboard-profile-guest {
  padding: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23,34,46,0.08);
  border-radius: 5px;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-tablet), minmax(0, 1fr));
  }
}

@media only screen and (max-width: 1180px) {
  .dashboard-purchases-hero,
  .dashboard-profile-hero,
  .dashboard-profile-contact-grid,
  .dashboard-profile-summary-grid,
  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .dashboard-purchases-toolbar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 1100px) {
  .page-dashboard-notes .notes-grid {
    grid-template-columns: repeat(var(--grid-cols-small), minmax(0, 1fr));
  }
}

@media only screen and (max-width: 900px) {
  .page-dashboard-notes .notes-grid {
    grid-template-columns: repeat(var(--grid-cols-mobile), minmax(0, 1fr));
  }
}

@media only screen and (max-width: 860px) {
  .responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-small), minmax(0, 1fr));
  }

  .dashboard-purchases-section,
  .dashboard-purchases-hero,
  .dashboard-purchases-stat,
  .gallery-hero,
  .gallery-help,
  .gallery-card {
    padding: 18px;
  }

  .dashboard-profile-content table.profile,
  .dashboard-profile-content table.profile tbody,
  .dashboard-profile-content table.profile tr,
  .dashboard-profile-content table.profile th,
  .dashboard-profile-content table.profile td {
    display: block;
    width: 100% !important;
  }

  .gallery-help-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-profile-content table.profile th {
    min-width: 0;
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .dashboard-profile-content table.profile td {
    padding-top: 0;
  }

  .gallery-pills {
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 720px) {
  .page-dashboard-recently-viewed .recentlyViewedTools {
    align-items: stretch;
  }

  .page-dashboard-recently-viewed .recentlyViewedClear {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .responsive-grid {
    grid-template-columns: repeat(var(--grid-cols-mobile), minmax(0, 1fr));
  }

  .page-dashboard-notes .favourites-stats {
    grid-template-columns: 1fr;
  }

  .page-dashboard-notes .note-card-head {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .page-dashboard-notes .note-card-head img {
    width: 56px;
    height: 56px;
  }

  .dashboard-purchases-actions,
  .dashboard-purchases-empty,
  .dashboard-profile-actions,
  .dashboard-profile-note,
  .dashboard-profile-contact-callout,
  .gallery-card-head,
  .gallery-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-purchases-toolbar,
  .dashboard-purchases-section-head-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .dashboard-purchases-actions .button,
  .dashboard-purchases-empty .button,
  .dashboard-profile-actions .button,
  .dashboard-profile-contact-callout .button,
  .gallery-card-actions .button,
  .dashboard-purchases-section-link,
  .dashboard-purchases-toolbar-link {
    width: 100%;
  }

  .dashboard-profile-hero,
  .dashboard-profile-summary-card,
  .dashboard-profile-note,
  .dashboard-profile-table-intro,
  .dashboard-profile-contact-card,
  .dashboard-profile-contact-callout,
  .dashboard-profile-guest {
    padding: 16px;
  }
}

.recentProfilesStrip {
  margin: 0 0 14px;
  padding: 18px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  box-shadow: 0 8px 20px rgba(22, 32, 42, 0.06);
}

.page-profile-content .recentProfilesStrip {
  margin-top: 22px;
  padding: 22px 24px;
}

.recentProfilesStripHeader h2 {
  margin: 0;
  font-size: 1.2em;
  color: #000;
}

.recentProfilesStripEyebrow {
  margin: 0 0 6px;
  color: #66717d;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recentProfilesGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.recentProfilesItem {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #17222d;
  background: rgba(23, 34, 46, 0.04);
  border: 1px solid rgba(23, 34, 46, 0.06);
}

.recentProfilesItem img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.08);
}

.recentProfilesBody {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.recentProfilesBody strong,
.recentProfilesBody small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recentProfilesBody small {
  color: #66717d;
}

.page-profile-content .profileNotePanel {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(36, 182, 115, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(23, 144, 90, 0.12);
}

.page-profile-content .profileNoteHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-profile-content .profileNoteHeader h2 {
  margin: 0 !important;
}

.page-profile-content .profileNotePanel p {
  margin: 8px 0 12px;
  color: #51606d;
}

.page-profile-content .profileNotePanel textarea {
  width: 100%;
  min-height: 80px;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid rgba(23, 34, 46, 0.12);
  box-sizing: border-box;
  font: inherit;
  resize: vertical;
}

.page-profile-content.page-profile-content-aw .profileNotePanel textarea {
  min-height: 90px;
}

.page-profile-content .profileNotePanel textarea:focus {
  outline: none;
  border-color: rgba(29, 155, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(29, 155, 255, 0.12);
}

.page-profile-content .profileNoteActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.page-profile-content .profileNoteActions--inline {
  margin-top: 0;
  flex-wrap: nowrap;
}

.page-profile-content .profileNoteSave,
.page-profile-content .profileNoteDelete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
}

.page-profile-content .profileNoteSave {
  background: #2f98f3;
  color: #fff;
}

.page-profile-content .profileNoteDelete {
  background: rgba(227, 74, 98, 0.12);
  color: #a7344d;
}

.page-profile-content .profileNoteStatus {
  color: #66717d;
  font-size: 0.92rem;
  line-height: 1.2;
}

.page-profile-content .profileNoteStatus--inline {
  display: inline;
  margin-right: 6px;
  font-weight: 700;
}

.page-profile-content .profileNoteStatus.is-success {
  color: #177f51;
}

body.site-body.route-search .profileCount {
  padding: 5px;
}

body.site-body.route-search #searchShowAllButton {
  background: #8d2f4d !important;
  color: #fff !important;
  border-radius: 5px !important;
}

body.site-body.route-search #searchShowAllButton:hover,
body.site-body.route-search #searchShowAllButton.is-active {
  background: #7a2940 !important;
  color: #fff !important;
}

body.site-body.route-search .filter-button-group button.filter-button--available-today,
body.site-body.route-search .button-group button.filter-button--available-today {
  background: #24b673 !important;
  color: #fff !important;
  border-radius: 5px !important;
}

body.site-body.route-search .filter-button-group button.filter-button--available-today:hover,
body.site-body.route-search .button-group button.filter-button--available-today:hover,
body.site-body.route-search .filter-button-group button.filter-button--available-today.is-active,
body.site-body.route-search .button-group button.filter-button--available-today.is-active {
  background: #1fa464 !important;
  color: #fff !important;
}

body.site-body.route-search .filter-button-group button.filter-button--recently-online,
body.site-body.route-search .button-group button.filter-button--recently-online,
body.site-body.route-search .filter-button-group button.filter-button--has-note,
body.site-body.route-search .button-group button.filter-button--has-note,
body.site-body.route-search .filter-button-group button.filter-button--goyolo,
body.site-body.route-search .button-group button.filter-button--goyolo {
  background: #2f98f3 !important;
  color: #fff !important;
  border-radius: 5px !important;
}

body.site-body.route-search .filter-button-group button.filter-button--recently-online:hover,
body.site-body.route-search .button-group button.filter-button--recently-online:hover,
body.site-body.route-search .filter-button-group button.filter-button--recently-online.is-active,
body.site-body.route-search .button-group button.filter-button--recently-online.is-active,
body.site-body.route-search .filter-button-group button.filter-button--has-note:hover,
body.site-body.route-search .button-group button.filter-button--has-note:hover,
body.site-body.route-search .filter-button-group button.filter-button--has-note.is-active,
body.site-body.route-search .button-group button.filter-button--has-note.is-active,
body.site-body.route-search .filter-button-group button.filter-button--goyolo:hover,
body.site-body.route-search .button-group button.filter-button--goyolo:hover,
body.site-body.route-search .filter-button-group button.filter-button--goyolo.is-active,
body.site-body.route-search .button-group button.filter-button--goyolo.is-active {
  background: #0d7dd8 !important;
  color: #fff !important;
}

body.site-body.route-search .filter-button-group button.filter-button--adultwork,
body.site-body.route-search .button-group button.filter-button--adultwork {
  background: #8d2f4d !important;
  color: #fff !important;
  border-radius: 5px !important;
}

body.site-body.route-search .filter-button-group button.filter-button--adultwork:hover,
body.site-body.route-search .button-group button.filter-button--adultwork:hover,
body.site-body.route-search .filter-button-group button.filter-button--adultwork.is-active,
body.site-body.route-search .button-group button.filter-button--adultwork.is-active {
  background: #7a2940 !important;
  color: #fff !important;
}

body.site-body.route-search .searchCardNoteIndicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(36, 182, 115, 0.18);
  color: #2ac17a;
  font-size: 0.72rem;
  vertical-align: middle;
}

body.site-body.route-search .searchCardNoteIndicator::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 999px;
  background: currentColor;
}

body.site-body.route-search .searchResultContainer--aw .searchCardNoteIndicator {
  background: rgba(23, 144, 90, 0.14);
  color: #17905a;
}

body.site-body.route-search .searchCardHide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(23, 34, 46, 0.08);
  color: #394754;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

body.site-body.route-search .searchCardHide:hover,
body.site-body.route-search .searchCardHide:focus {
  background: rgba(23, 34, 46, 0.14);
  color: #17222d;
  outline: none;
}

body.site-body.route-search .actions.actions--with-hide {
  justify-content: flex-start;
}

body.site-body.route-search .searchResultContainer--aw .actions.actions--with-hide {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
}

body.site-body.route-search .search-result-combined-shell.is-skip-hidden,
body.site-body.route-search .searchResultContainer--local .is-skip-hidden {
  display: none !important;
}

body.site-body.route-search .searchSkipNotice {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 34, 46, 0.06);
  border: 1px solid rgba(23, 34, 46, 0.08);
  color: #17222d;
}

body.site-body.route-search .searchSkipNotice.is-visible {
  display: flex;
}

body.site-body.route-search .searchSkipNotice button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #56c7ff 0%, #1d9bff 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.page-shop-shell {
  display: grid;
  gap: 18px;
}

.shop-hero,
.shop-refresh-banner,
.shop-card,
.shop-basket-strip,
.shop-basket-card,
.shop-suggestion-card {
  background: #ffffff;
  border: 1px solid rgba(23, 34, 46, 0.08);
  border-radius: 5px;
  box-shadow: none;
}

.shop-hero {
  padding: 24px 26px;
}

.shop-hero h1 {
  margin: 0 0 12px;
  color: #872b50;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.98;
}

.shop-hero p,
.shop-card p,
.shop-refresh-banner p,
.shop-basket-copy p,
.shop-note li,
.shop-suggestion-copy p,
.shop-disabled-note,
.shop-empty-copy,
.shop-basket-item-meta,
.shop-basket-line small {
  margin: 0;
  color: #5e6977;
  line-height: 1.65;
}

.shop-refresh-banner {
  padding: 18px 20px;
  background: #872b50;
  border-color: #872b50;
}

.shop-refresh-banner strong,
.shop-refresh-banner p {
  color: #ffffff;
}

.shop-refresh-banner strong {
  display: block;
  margin-bottom: 6px;
}

.shop-basket-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.shop-basket-copy h1,
.shop-basket-copy h2 {
  margin: 0;
  color: #872b50;
  font-size: 1.8rem;
}

.shop-basket-copy h1 {
  margin-bottom: 6px;
}

.shop-basket-copy h2 {
  white-space: nowrap;
}

.shop-basket-side {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.shop-stat-chip {
  box-sizing: border-box;
  width: 132px;
  min-width: 132px;
  height: 62px;
  min-height: 62px;
  padding: 8px 12px;
  background: #f8fbff;
  border: 1px solid #dbe6f1;
  border-radius: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.shop-stat-chip span,
.shop-basket-total span {
  display: block;
  margin-bottom: 4px;
  color: #7d8a98;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-stat-chip strong,
.shop-basket-total strong,
.shop-basket-item-title {
  color: #20262d;
}

.shop-stat-chip strong,
.shop-basket-total strong {
  font-size: 1.15rem;
}

.shop-basket-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.shop-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
}

.shop-card h2,
.shop-suggestion-copy h3 {
  margin: 0;
  color: #872b50;
  line-height: 1.05;
}

.shop-card h2 {
  font-size: 1.5rem;
  text-align: center;
}

.shop-card p {
  text-align: center;
}

.shop-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.shop-button,
.shop-option-button,
.shop-qty-button,
.shop-remove-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.shop-button {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  width: 132px;
  min-width: 132px;
  height: 62px;
  min-height: 62px;
  padding: 8px 12px;
  border: 1px solid #2f98f3;
  border-radius: 5px;
  background: #2f98f3;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  flex-shrink: 0;
}

.shop-button:hover,
.shop-button:focus,
.shop-qty-button:hover,
.shop-qty-button:focus {
  background: #1d7fda;
  border-color: #1d7fda;
  color: #ffffff;
}

.shop-secondary-button,
.shop-secondary-button:visited,
.shop-basket-actions a.shop-button,
.shop-basket-actions a.shop-button:visited {
  background: #2f98f3;
  color: #ffffff !important;
  text-decoration: none;
}

.shop-secondary-button:hover,
.shop-secondary-button:focus,
.shop-basket-actions a.shop-button:hover,
.shop-basket-actions a.shop-button:focus {
  background: #1d7fda;
  color: #ffffff !important;
  text-decoration: none;
}

.shop-disabled-button,
.shop-disabled-button:hover,
.shop-disabled-button:focus {
  width: 132px;
  min-width: 132px;
  height: 62px;
  min-height: 62px;
  padding: 8px 12px;
  background: #2f98f3;
  border-color: #2f98f3;
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  opacity: 0.8;
}

.shop-option-button {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 10px 8px;
  border: 1px solid #2f98f3;
  border-radius: 5px;
  background: #2f98f3;
  color: #ffffff;
  text-align: center;
}

.shop-option-button strong,
.shop-option-button span {
  display: block;
}

.shop-option-button strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

.shop-option-button span {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.1;
}

.shop-option-button:hover,
.shop-option-button:focus {
  border-color: #1d7fda;
  background: #1d7fda;
}

.shop-note {
  padding-top: 2px;
  border-top: 1px solid #edf2f7;
}

.shop-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.shop-note li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  text-align: left;
}

.shop-note li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #2f98f3;
  font-weight: 700;
}

.shop-disabled-note {
  font-size: 0.95rem;
  text-align: right;
}

.shop-basket-card {
  display: grid;
  gap: 18px;
  padding: 24px 26px;
}

.shop-empty-copy {
  padding: 18px;
  background: #f8fbff;
  border: 1px dashed #c8d8e8;
  border-radius: 5px;
  text-align: center;
}

.shop-basket-items {
  display: grid;
  gap: 12px;
}

.shop-basket-item {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) auto 110px 120px;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: #fcfdff;
  border: 1px solid #e3ebf3;
  border-radius: 5px;
}

.shop-basket-item-copy {
  display: block;
}

.shop-basket-item-meta {
  font-size: 0.92rem;
}

.shop-basket-item-copy--category .shop-basket-item-title,
.shop-basket-item-copy--name .shop-basket-item-title {
  white-space: nowrap;
}

.shop-basket-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shop-qty-button,
.shop-remove-button {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.shop-qty-button {
  border: 1px solid #2f98f3;
  background: #2f98f3;
  color: #ffffff;
}

.shop-qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  color: #20262d;
}

.shop-remove-button {
  border: 1px solid #da3a57;
  background: #da3a57;
  color: #ffffff;
}

.shop-remove-button:hover,
.shop-remove-button:focus {
  background: #c42b47;
  border-color: #c42b47;
  color: #ffffff;
}

.shop-basket-price-each,
.shop-basket-line {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
}

.shop-basket-price-each strong,
.shop-basket-line strong {
  color: #20262d;
}

.shop-basket-price-each small,
.shop-basket-line small {
  font-size: 0.92rem;
}

.shop-basket-line {
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 10px;
}

.shop-basket-total-value {
  display: grid;
  gap: 2px;
  justify-items: end;
}

.shop-basket-footer {
  display: grid;
  justify-content: end;
  padding-top: 8px;
  border-top: 1px solid #edf2f7;
}

.shop-basket-footer-side {
  display: grid;
  width: 120px;
  gap: 12px;
  justify-items: end;
}

.shop-basket-total {
  display: grid;
  gap: 2px;
  justify-items: end;
  text-align: right;
}

.shop-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  padding: 12px 16px;
  background: rgba(32, 38, 45, 0.94);
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-suggestion {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(22, 29, 37, 0.45);
}

.shop-suggestion.is-visible {
  display: flex;
}

.shop-suggestion-card {
  width: min(100%, 520px);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.shop-suggestion-copy {
  display: grid;
  gap: 10px;
}

.shop-suggestion-copy span {
  color: #2f98f3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-suggestion-copy h3 {
  font-size: 1.45rem;
}

.shop-suggestion-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 980px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

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

@media only screen and (max-width: 900px) {
  .recentProfilesGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 860px) {
  body.site-body.route-search .searchSkipNotice {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-hero,
  .shop-refresh-banner,
  .shop-card,
  .shop-basket-strip,
  .shop-suggestion-card {
    padding: 18px;
  }

  .shop-basket-strip {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .shop-basket-copy h2 {
    white-space: normal;
  }

  .shop-basket-footer {
    justify-content: stretch;
  }

  .shop-basket-footer-side {
    width: 100%;
    justify-items: stretch;
  }

  .shop-basket-side,
  .shop-basket-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .shop-basket-total,
  .shop-basket-total-value {
    justify-items: start;
    text-align: left;
  }

  .shop-disabled-note {
    text-align: left;
  }

  .shop-basket-item {
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) auto 100px 110px;
    gap: 12px;
  }
}

@media only screen and (max-width: 640px) {
  .recentProfilesGrid {
    grid-template-columns: 1fr;
  }

  body.site-body.route-search .searchResultContainer--aw .actions.actions--with-hide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-stat-chip,
  .shop-button,
  .shop-option-button {
    width: 100%;
    min-width: 0;
  }

  .shop-option-list,
  .shop-basket-item {
    grid-template-columns: 1fr;
  }

  .shop-basket-controls,
  .shop-basket-price-each,
  .shop-basket-line {
    justify-content: flex-start;
    justify-items: start;
    text-align: left;
  }

  .shop-basket-line {
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 1180px) {
  .settingsFieldGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  #searchForm.search-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .search-panel-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .search-panel-actions .button,
  .search-panel-actions input[type='submit'] {
    min-height: 52px;
    height: 52px;
  }

  body.site-body .dashboardNavigationContainer {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  body.site-body .dashboardNavigation {
    padding: 8px 4px !important;
    border-radius: 4px !important;
  }

  body.site-body .dashboardNavigation a {
    min-height: 48px !important;
  }

  body.site-body .dashboardNavigationIcon {
    font-size: 0.92rem !important;
    margin-bottom: 4px !important;
  }

  body.site-body .dashboardNavigationText {
    font-size: 0.68rem !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
  }

  body.site-body .dashboardNavigationBadge {
    top: -6px !important;
    right: -8px !important;
    min-width: 14px !important;
    height: 14px !important;
    font-size: 0.55rem !important;
    line-height: 14px !important;
  }

  body.site-body.route-home .homeHeroContent {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  body.site-body.route-home .homeHeroIntro {
    order: 2;
    max-width: none;
    min-height: 0;
    padding: 22px clamp(180px, 40%, 280px) 22px 20px;
    background-position: top right;
    background-size: cover;
  }

  body.site-body.route-home .homeHero h1 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
  }

  body.site-body.route-home .homeHeroSubline {
    white-space: nowrap;
    font-size: 0.98rem;
    max-width: none;
  }

  body.site-body.route-home .homeHeroInlineLogin {
    order: 1;
    max-width: none;
    justify-self: stretch;
    align-self: stretch;
    padding: 22px 20px;
    border-radius: 5px;
  }

  body.site-body.route-home .homeLoginWarning {
    max-width: none;
  }

  body.site-body.route-home .homeLoginForm {
    max-width: none;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 4px;
    align-items: end;
  }

  body.site-body.route-home .homeLoginField {
    max-width: none;
    min-width: 0;
  }

  body.site-body.route-home .homeLoginButtonStack {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  body.site-body.route-home .homeLoginSubmit,
  body.site-body.route-home .homeLoginJoin,
  body.site-body.route-home .homeLoginForgotButton {
    width: 100%;
    min-width: 0;
  }

  body.site-body.route-home .homeLoginField input[type='email'],
  body.site-body.route-home .homeLoginField input[type='password'],
  body.site-body.route-home .homeLoginField input[type='text'],
  body.site-body.route-home .homeLoginField .passwordFieldWrap {
    min-width: 0;
  }
}

@media only screen and (max-width: 900px) {
  .settingsFieldGrid {
    grid-template-columns: 1fr;
  }

  .settingsSectionCard {
    padding: 20px 18px;
  }

  .settingsFormActions {
    justify-content: stretch;
  }

  .page-dashboard-settings .settingsFormActions .button {
    width: 100%;
  }

  body.site-body .dashboardNavigationContainer {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  body.site-body .dashboardNavigation {
    padding: 7px 3px !important;
  }

  body.site-body .dashboardNavigation a {
    min-height: 42px !important;
  }

  body.site-body .dashboardNavigationText {
    display: block !important;
    font-size: 0.62rem !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
  }

  body.site-body .dashboardNavigationIcon {
    font-size: 0.84rem !important;
    margin-bottom: 3px !important;
  }

  body.site-body .dashboardNavigationIcon {
    margin-bottom: 0 !important;
    font-size: 0.92rem !important;
  }
}

