/* Qwinky Models — cleaned CSS */
:root {
  --page-bg: #141414;
  --panel-bg: rgba(21, 15, 22, .96);
  --panel-border: rgba(255, 255, 255, .13);
  --pink: #ff5fc8;
  --pink-soft: #ff94d9;
  --gold: #ffd36d;
  --text-soft: rgba(255, 255, 255, .68);

  /* Header geometry — single source of truth */
  --icon-menu-height: 110px;
  --account-bar-height: 64px;
  --account-icon-gap: 6px;
  --filters-bar-height: 58px;
  --top-menu-height: var(--icon-menu-height);
  --chrome-shift: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  padding-top: calc(var(--top-menu-height) + var(--filters-bar-height));
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 59, 177, .11), transparent 24rem),
    radial-gradient(circle at 88% 9%, rgba(255, 211, 109, .07), transparent 25rem),
    var(--page-bg);
}

body.is-guest {
  --top-menu-height: calc(var(--account-bar-height) + var(--account-icon-gap) + var(--icon-menu-height));
}

body.is-member {
  --top-menu-height: var(--icon-menu-height);
}

button,
select,
a {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

[hidden] {
  display: none !important;
}

.blur-video {
  filter: blur(8px);
}

/* Header + account access + permanent icon navigation */
.top-shell {
  position: relative;
  z-index: 5000;
}

.top-shell::before {
  content: "";
  position: fixed;
  z-index: 1;
  inset: 0 0 auto 0;
  height: var(--top-menu-height);
  background: rgba(25, 4, 16, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .26);
  pointer-events: none;
}

.join-menu {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--account-bar-height);
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(14, 3, 10, .99);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .22);
  isolation: isolate;
  overflow: hidden;
}


body.is-member .join-menu {
  display: none !important;
}

.top-button,
.join-menu .top-button {
  min-width: 104px;
  min-height: 38px;
  padding: 8px 20px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  /* Neutralize legacy quests.css positioning so buttons stay inside this row. */
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  align-self: center !important;
  flex: 0 0 auto;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  color: #111;
  background: #eae0e0;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  visibility: visible !important;
  opacity: 1 !important;
  transition: transform .16s ease, filter .16s ease;
}

.top-button:hover {
  filter: brightness(1.08);
}

.join-menu .login-button {
  color: #fff;
  border-color: #42c86b;
  background: linear-gradient(180deg, #42c86b, #258b45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.join-menu .join-button {
  color: #fff;
  border-color: #ff3b45;
  background: linear-gradient(180deg, #ff3b45, #c41520);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.top-icon-menu {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 10px;
  height: var(--icon-menu-height);
  display: flex;
  align-items: stretch;
  gap: 1px;
}

body.is-guest .top-icon-menu {
  top: calc(var(--account-bar-height) + var(--account-icon-gap));
}

.top-icon-link {
  width: 110px;
  height: 100%;
  padding: 6px 4px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  border-radius: 16px;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}

.top-icon-link:hover {
  transform: translateY(-1px) scale(1.025);
  color: #fff;
  background: rgba(255, 255, 255, .045);
}

.top-icon-link img {
  width: 108px;
  height: auto;
  max-height: 81px;
  object-fit: contain;
  filter: brightness(.82) saturate(.9);
  transition: filter .18s ease, transform .18s ease;
}

.top-icon-label {
  display: block;
  margin-top: -1px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.top-icon-link:hover img {
  filter: brightness(1.04) saturate(1.05);
}

.top-icon-link.is-active {
  color: var(--pink-soft);
}

.top-icon-link.is-active img {
  filter:
    brightness(1.12)
    saturate(1.15)
    drop-shadow(0 0 5px rgba(255, 105, 210, .98))
    drop-shadow(0 0 12px rgba(255, 71, 190, .82))
    drop-shadow(0 0 24px rgba(255, 46, 174, .54));
}

/* JS drives this variable pixel-for-pixel with page scroll. */
.top-shell::before,
.top-icon-menu,
.join-menu,
.models-search-sticky {
  transform: translateY(var(--chrome-shift));
  transition: none !important;
  will-change: transform;
}

.models-page {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.models-hero {
  padding: 40px 4px 24px;
}

.eyebrow,
.detail-kicker {
  color: var(--pink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.models-hero h1 {
  margin-top: 7px;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: .98;
  letter-spacing: -.045em;
}

.models-hero > p:last-child {
  max-width: 680px;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Fixed model filters */
.models-search-sticky {
  position: fixed;
  z-index: 1900;
  top: var(--top-menu-height);
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 10px 24px;
  background: rgba(13, 10, 14, .89);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 116, 210, .24);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .32);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.models-search-sticky .search-bar-scroll {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.search-bar-scroll {
  display: flex;
  align-items: end;
  gap: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .24) transparent;
}

.search-bar-scroll::-webkit-scrollbar {
  height: 5px;
}

.search-bar-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
}

.filter-control {
  min-width: 80px;
  flex: 0 0 auto;
  display: grid;
  gap: 5px;
}

.sort-control {
  min-width: 80px;
}

.filter-label {
  padding-left: 2px;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pretty-select,
.sort-toggle,
.reset-filters {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)),
    rgba(15, 13, 17, .9);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.pretty-select {
  width: 80px;
  padding: 0 10px 0 11px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23ffffff' d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035));
  background-repeat: no-repeat;
  background-position: right 11px center, 0 0;
}

.pretty-select option {
  color: #111;
}

.pretty-select.is-active {
  border-color: rgba(255, 116, 210, .82);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%23ffffff' d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 83, 196, .62), rgba(122, 20, 92, .78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 0 0 1px rgba(255, 95, 200, .12),
    0 0 16px rgba(255, 73, 181, .18);
}

.filter-control.is-active .filter-label {
  color: var(--pink-soft);
}

.pretty-select:focus,
.sort-toggle:focus-visible,
.reset-filters:focus-visible {
  outline: 2px solid rgba(255, 95, 200, .8);
  outline-offset: 2px;
}

.sort-toggle {
  min-width: 96px;
  padding: 0 13px;
  color: #fff;
  border-color: rgba(255, 116, 210, .42);
  background: linear-gradient(180deg, rgba(255, 75, 190, .48), rgba(130, 22, 97, .62));
}

.reset-filters {
  flex: 0 0 auto;
  padding: 0 17px;
  color: rgba(255, 255, 255, .78);
}

.model-count {
  flex: 0 0 auto;
  min-width: 94px;
  padding: 0 3px 9px 7px;
  color: var(--pink-soft);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.models-results {
  min-height: 40vh;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 22px 16px;
  align-items: start;
}

.model-card {
  min-width: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.model-picture-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  background: #242126;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.model-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.model-card:hover .model-picture-wrap {
  border-color: rgba(255, 255, 255, .55);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .38);
}


.model-card.selected .model-picture-wrap {
  border-color: var(--pink);
  box-shadow:
    0 0 0 2px rgba(255, 95, 200, .3),
    0 0 32px rgba(255, 69, 186, .28),
    0 18px 36px rgba(0, 0, 0, .36);
}

.model-card-name {
  display: block;
  overflow: hidden;
  margin-top: 9px;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scene-badge {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 9px;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.selection-mark {
  position: absolute;
  z-index: 2;
  left: 11px;
  bottom: 11px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff68ce, #9f176f);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .32);
  font-size: 17px;
  font-weight: 900;
  transition: opacity .18s ease, transform .18s ease;
}

.model-card.selected .selection-mark {
  opacity: 1;
}

/* Detail band inserted immediately below the selected row */
.model-details {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  margin: 4px 0 8px;
  border: 1px solid rgba(255, 116, 210, .34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 89, 201, .18), transparent 25rem),
    radial-gradient(circle at 100% 30%, rgba(255, 211, 109, .08), transparent 25rem),
    linear-gradient(180deg, rgba(26, 22, 28, .98), rgba(10, 9, 12, .99));
  box-shadow: 0 22px 50px rgba(0, 0, 0, .34);
  animation: revealDetails .28s ease both;
}


.close-details {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .38);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.model-profile-band {
  display: block;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.model-profile-copy {
  max-width: 900px;
}

.model-profile-copy h2 {
  margin-top: 7px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
}

.detail-meta {
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.detail-title {
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.detail-bio {
  margin-top: 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.75;
  white-space: pre-line;
}

.model-quests-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 14px;
}

.model-quests-heading h3 {
  margin-top: 5px;
  font-size: clamp(21px, 3vw, 32px);
}

.detail-quest-count {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .055);
  font-size: 12px;
  font-weight: 800;
}

.model-quests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
  padding: 0 24px 26px;
}

.model-quest-card {
  min-width: 0;
}

.quest-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.quest-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 2;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  background: #28242a;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .28);
  transition: transform .2s ease, border-color .2s ease;
}

.quest-card-link:not(.quest-card-upcoming):hover .quest-image-wrap {
  border-color: rgba(255, 255, 255, .5);
}

.quest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quest-copy {
  padding: 9px 3px 0;
}

.quest-copy strong,
.quest-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quest-copy strong {
  font-size: 12px;
  line-height: 1.35;
}

.quest-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
}

.quest-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.quest-lock img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.unlocked-lock {
  background: linear-gradient(180deg, #5cab36, #357a1d);
}

.locked-lock {
  background: #e52c37;
}

.quest-price,
.quest-status {
  position: absolute;
  right: 8px;
  left: 8px;
  padding: 7px 8px;
  border-radius: 9px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.quest-price {
  bottom: 8px;
  color: #fff;
  background: rgba(0, 0, 0, .7);
}

.quest-status {
  top: 50%;
  transform: translateY(-50%);
  color: #f44343;
  background: rgba(255, 255, 255, .88);
}

.quest-card-upcoming {
  cursor: default;
}

.empty-state {
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 520px;
  border: 1px dashed rgba(255, 255, 255, .18);
  border-radius: 20px;
  text-align: center;
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

/* Associated quest posters — quests.php structure */
.model-card.modelContainer {
  position: relative;
}

.model-card .fav-heart,
.model-card .favCountBadge {
  z-index: 25;
}

.model-quests-grid .poster3DHero-card,
.model-quests-grid .poster3DHero-inner,
.model-quests-grid .poster3DHero-front,
.model-quests-grid .poster3DHero-back,
.model-quests-grid .questCardInner,
.model-quests-grid .poster,
.model-quests-grid .video-container {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 2 !important;
}

.model-quests-grid .poster3DHero-card {
  margin: 0;
}

.model-quests-grid .questCardInner {
  position: relative;
}

.model-quests-grid .posterHeroImg,
.model-quests-grid .fallback-image {
  display: block;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 2 !important;
  object-fit: cover !important;
}

/* Keep overlay-video valid even if the class is used on a non-video element. */
.model-quests-grid .overlay-video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 2;
  object-fit: cover;
}

.model-quests-grid video {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 2 !important;
  object-fit: cover !important;
}

.model-quests-grid .quest-fav-heart,
.model-quests-grid .questFavCountBadge {
  z-index: 30;
}

.model-quests-grid .quest-fav-heart {
  top: 10%;
  left: 0;
  width: 30%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-size: 61% 61%;
}

.model-quests-grid .questFavCountBadge {
  top: 5%;
  left: 22%;
  padding: 3px 6px;
  font-size: clamp(8px, .8vw, 12px);
}

/* Safari / iOS — sécurise les faces des flipcards */
.model-quests-grid .poster3DHero-inner {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.model-quests-grid .poster3DHero-front,
.model-quests-grid .poster3DHero-back {
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

.model-quests-grid .poster3DHero-front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.model-quests-grid .poster3DHero-back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.is-hidden-on-flip {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  :root {
    --icon-menu-height: 102px;
    --account-bar-height: 46px;
    --account-icon-gap: 3px;
  }

  .models-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .join-menu,
  #menuJOIN.join-menu {
    padding: 0 10px !important;
    gap: 6px;
  }

  .top-button,
  .join-menu .top-button {
    min-width: 80px;
    min-height: 30px;
    padding: 6px 11px;
    font-size: 10px;
  }

  .top-icon-menu {
    left: 0;
    right: 0;
    width: 100%;
    justify-content: space-around;
    gap: 0;
  }

  .top-icon-link {
    width: 33.333%;
    min-width: 0;
    padding-right: 2px;
    padding-left: 2px;
  }

  .top-icon-link img {
    width: min(96px, 27vw);
    max-height: 72px;
  }

  .top-icon-label {
    font-size: 9px;
  }

  .models-search-sticky {
    padding-right: 14px;
    padding-left: 14px;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 18px 12px;
  }

  .model-profile-band {
    padding: 18px;
  }

  .model-quests-heading {
    padding-right: 18px;
    padding-left: 18px;
  }

  .model-quests-grid {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 640px) {
  .models-page {
    padding-right: 8px;
    padding-left: 8px;
  }

  .models-search-sticky {
    padding-right: 8px;
    padding-left: 8px;
  }

  .models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px 8px !important;
  }

  .model-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .model-card .posterRound {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .model-card .fav-heart {
    top: 5px;
    left: 5px;
    width: 28px;
    height: 28px;
  }

  .model-profile-band {
    padding: 12px;
  }

  .model-quests-heading {
    padding: 14px 12px 10px;
  }

  .model-quests-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px 8px;
    padding: 0 8px 14px;
  }
}

@media (max-width: 620px) {
  .top-button,
  .join-menu .top-button {
    min-width: 67px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .models-hero {
    padding-top: 26px;
  }

  .models-hero > p:last-child {
    font-size: 13px;
  }

  .model-card-name {
    font-size: 12px;
  }

  .model-profile-copy h2 {
    padding-right: 28px;
    font-size: 27px;
  }

  .detail-meta {
    font-size: 10px;
  }

  .detail-title {
    margin-top: 12px;
    font-size: 14px;
  }

  .detail-bio {
    font-size: 12px;
    line-height: 1.6;
  }

  .model-quests-heading {
    align-items: start;
  }

  .model-quests-heading h3 {
    font-size: 20px;
  }

  .detail-quest-count {
    padding: 6px 9px;
    font-size: 10px;
  }

  .close-details {
    top: 9px;
    right: 9px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
