:root {
  --blue: #a7d8ff;
  --blue-deep: #4f85e5;
  --blue-soft: #dcefff;
  --yellow: #ffda00;
  --related-yellow: #ffec9e;
  --ink: #121212;
  --line: #d9d9d9;
  --muted: #6b6b6b;
  --page: #ffffff;
  --wrong: #f7c7c7;
  --right: #dff3df;
  --cell-border: #252525;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-weight: 500;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

.hidden {
  display: none !important;
}

body.auth-locked {
  overflow: hidden;
}

body.auth-locked .nyt-header,
body.auth-locked .home-page,
body.auth-locked .page {
  display: none;
}

.landing-page {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  overflow: hidden;
  background: #f6f5f0;
}

body.auth-locked .landing-page {
  display: grid;
}

.landing-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 44px));
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.landing-content h1 {
  margin: 0;
  color: #121212;
  font-family: "molly-engravers", "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 400;
  line-height: 1.05;
  text-shadow:
    0 1px 0 #fff,
    0 0 18px rgba(255, 255, 255, 0.92);
}

.landing-enter {
  min-width: 156px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid #121212;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.landing-enter:hover,
.landing-enter:focus-visible {
  background: #2a2a2a;
}

.landing-legal-links {
  position: fixed;
  left: 10px;
  bottom: max(8px, env(safe-area-inset-bottom, 0px));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(18, 18, 18, 0.62);
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.landing-legal-links a {
  color: inherit;
  text-decoration: none;
}

.landing-legal-links a:hover,
.landing-legal-links a:focus-visible {
  color: #121212;
  text-decoration: underline;
}

.login-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.30);
}

.login-dialog {
  position: relative;
  width: min(100%, 390px);
  display: grid;
  gap: 16px;
  padding: 42px 38px 34px;
  background: #fff;
  color: #121212;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.login-dialog.busy {
  cursor: wait;
}

.login-dialog h2 {
  margin: 0 0 4px;
  font-family: "molly-engravers", "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.login-mode-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 38px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #f4f4f4;
  overflow: hidden;
}

.login-mode-button {
  border: 0;
  background: transparent;
  color: #5a5a5a;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.login-mode-button.active {
  background: #121212;
  color: #fff;
}

.login-mode-button:focus-visible {
  outline: 2px solid #add8e6;
  outline-offset: -2px;
}

.google-auth-block {
  display: grid;
  gap: 13px;
}

.google-auth-block.hidden {
  display: none !important;
}

.google-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.google-login-button:hover,
.google-login-button:focus-visible {
  border-color: #8b8b8b;
  background: #f8f8f8;
}

.google-login-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.google-login-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: #4285f4;
  font: 700 15px Arial, Helvetica, sans-serif;
}

.login-divider {
  position: relative;
  display: grid;
  place-items: center;
  color: #727272;
  font: 700 12px "nyt-franklin", Arial, sans-serif;
  text-transform: uppercase;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #e0e0e0;
}

.login-divider span {
  position: relative;
  padding: 0 10px;
  background: #fff;
}

.login-dialog label {
  display: grid;
  gap: 6px;
  color: #121212;
  font-size: 13px;
  font-weight: 700;
}

.login-dialog label[hidden],
.login-dialog .hidden {
  display: none !important;
}

.login-dialog input {
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #8b8b8b;
  border-radius: 0;
  background: #fff;
  color: #121212;
  font: 400 16px "nyt-franklin", Arial, sans-serif;
}

.login-dialog input:focus {
  border-color: #121212;
  outline: 2px solid #add8e6;
  outline-offset: 1px;
}

.login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #121212;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 44px;
  margin-top: 4px;
  border: 1px solid #121212;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.login-submit:hover,
.login-submit:focus-visible {
  background: #2a2a2a;
}

.login-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.login-dialog.busy .login-submit::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: login-spin 0.75s linear infinite;
}

@keyframes login-spin {
  to {
    transform: rotate(360deg);
  }
}

.login-message {
  min-height: 18px;
  margin: -4px 0 0;
  color: #267c30;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.login-message.error {
  color: #a90111;
}

.legal-page {
  min-height: 100vh;
  background: #fff;
}

.legal-document {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 72px;
  color: #121212;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
}

.legal-document h1 {
  margin: 0 0 8px;
  font-family: "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.08;
}

.legal-updated {
  margin: 0 0 32px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.4;
}

.legal-document h2 {
  margin: 30px 0 9px;
  font-size: 19px;
  line-height: 1.25;
}

.legal-document p,
.legal-document li {
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-document a {
  color: #346eb7;
}

.legal-home-link {
  display: inline-flex;
  margin-top: 24px;
  color: #121212;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-home-link:hover,
.legal-home-link:focus-visible {
  text-decoration: underline;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
}

.panel {
  width: min(100%, 430px);
  display: grid;
  gap: 16px;
  padding: 38px;
  border: 1px solid #dfdfdf;
  background: #fff;
  text-align: center;
}

.panel h1 {
  margin: 0;
  font-family: "molly-engravers", "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
}

.panel p,
.panel a {
  margin: 0;
  font-size: 15px;
}

.stack {
  display: grid;
  gap: 14px;
  text-align: left;
}

.stack label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.stack input {
  height: 42px;
  padding: 0 11px;
  border: 1px solid #8b8b8b;
  font: 400 16px "nyt-franklin", Arial, sans-serif;
}

.stack button,
.button-link {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #121212;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.message.error {
  color: #a90111;
}

.nyt-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  padding: 0 16px 0 0;
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 1px 0 var(--line);
}

.hamburger {
  width: 56px;
  min-width: 56px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  overflow: visible;
  text-transform: none;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  transition-timing-function: linear;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger:focus {
  background-color: #e6e6e6;
}

.hamburger-box {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 auto;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  width: 20px;
  height: 3px;
  background: #000;
  border-radius: 4px;
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
}

.games-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 3 2 auto;
  width: 148px;
  height: 26px;
  color: #000;
  text-decoration: none;
}

.molly-games-logo {
  display: block;
  width: 148px;
  height: 26px;
}

@media (min-width: 992px) {
  .nyt-header {
    height: 56px;
  }

  .hamburger {
    height: 56px;
  }
}

.molly-mark {
  font-family: "molly-engravers", "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.games-divider {
  display: block;
  width: 1px;
  height: 25px;
  background: #121212;
}

.games-word {
  font-family: "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.puzzle-active .header-actions {
  display: none;
}

body.puzzle-active .year-home-button {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link-light {
  color: #000;
  background: #fff;
}

.mobile-nav-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 70;
  min-width: 178px;
  padding: 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: none;
}

.mobile-nav-menu a,
.mobile-nav-menu button {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 0;
  border-top: 1px solid #e6e6e6;
  background: #fff;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mobile-nav-menu > :first-child {
  border-top: 0;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus-visible,
.mobile-nav-menu button:hover,
.mobile-nav-menu button:focus-visible {
  background: #eeeeee;
}

.mobile-nav-menu button.install-app-menu-item {
  display: none;
}

.mobile-nav-menu button:disabled {
  color: #727272;
  cursor: default;
}

.mobile-nav-menu button:disabled:hover,
.mobile-nav-menu button:disabled:focus-visible {
  background: #fff;
}

.account-menu-button {
  justify-content: space-between;
}

.bonus-puzzle-menu-button {
  justify-content: space-between;
}

.bonus-puzzle-menu-label {
  min-width: 0;
}

.bonus-puzzle-menu-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.bonus-puzzle-menu-icon .progressIcon,
.bonus-puzzle-menu-icon .progressIconContent {
  width: 22px;
  height: 22px;
}

.bonus-puzzle-menu-icon .puzzleProgressInProgress {
  gap: 0.7px;
  border-radius: 2px;
}

.bonus-puzzle-menu-icon .cardRibbon,
.bonus-puzzle-menu-icon .progressIconContent::before,
.bonus-puzzle-menu-icon .progressIconContent::after {
  display: none;
}

.account-menu-avatar {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.account-menu-avatar-fallback {
  display: inline-grid;
  place-items: center;
  background: #121212;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.reset-all-status {
  margin: 10px 0 0;
  color: #424242;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18.2px;
  text-align: center;
}

.reset-all-status.error {
  color: #a90111;
}

.account-delete-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: #424242;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18.2px;
  text-align: center;
}

.account-delete-status.error {
  color: #a90111;
}

.page {
  width: 100%;
  margin: 0;
  padding: 0 0 36px;
}

.home-page {
  width: 100%;
  min-height: calc(100vh - 48px);
  padding: 44px 0 56px;
}

.home-shell {
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
}

.home-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 24px;
}

.home-title-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}

.home-copy h1 {
  margin: 0;
  font-family: "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 39px;
  line-height: 1;
  font-weight: 700;
}

.home-date {
  font-size: 16px;
  font-weight: 400;
}

.archive-tabs {
  margin-top: 24px;
}

@media (min-width: 721px) {
  .home-page {
    padding-top: 0;
  }

  .home-shell {
    width: 100%;
  }

  .home-copy {
    width: min(1132px, calc(100% - 64px));
    min-height: 120px;
    margin: 24px auto 0;
    padding: 0 5px;
    align-items: center;
    justify-content: flex-start;
  }

  .home-title-heading {
    padding-bottom: 18.2px;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 54.6px;
  }

  .home-date {
    font-size: 28px;
    line-height: 36.4px;
    font-weight: 300;
  }

  .archive-tabs {
    width: min(960px, calc(100% - 64px));
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.tab__tabGroup {
  position: relative;
  width: 100%;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
}

.tab__tabGroup .tab__tabNav {
  width: 100%;
  height: 38px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  background-color: #f4f4f4;
}

.tab__tabGroup .tab__tabNavItems {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0 20px;
}

.tab__tabGroup .tab__tab {
  position: relative;
  flex: 1 1 20%;
  height: 36px;
  padding: 0 3%;
  border: 0;
  background: transparent;
  color: #959595;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
}

.tab__tabGroup .tab__tab:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

.tab__tabGroup .tab__tab .tab-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab__tabGroup .tab__tab > .active {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: none;
  height: 45px;
  padding: 0 5px;
  border: 1px solid #dcdcdc;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  line-height: 52px;
}

.tab__tabGroup .tab__tab[aria-selected="true"] > .active {
  display: block;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(64px, 1fr));
  gap: 18px 0;
  max-width: 740px;
  margin: 0 auto;
  padding-top: 26px;
}

.archive_calendar-item {
  display: flex;
  justify-content: center;
}

.year-tile {
  width: 100%;
  min-height: 92px;
  display: grid;
  justify-items: center;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #121212;
  text-align: center;
}

.year-tile.available {
  cursor: pointer;
}

.year-tile.available:focus-visible {
  outline: 2px solid #346eb7;
  outline-offset: 6px;
}

.year-tile.unavailable {
  color: #8b8b8b;
}

.puzzleAction,
.puzzleInfoContent {
  display: grid;
  justify-items: center;
  width: 100%;
}

.puzzleInfoContent {
  gap: 9px;
  padding-top: 20px;
}

.progressIcon {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.progressIconContent {
  position: relative;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: cover;
}

.puzzleProgress0 {
  background-image: url("archive-icons/puzzle-progress-0.svg?v=years-63");
}

.puzzleProgressUnavailable {
  background-image: url("archive-icons/puzzle-progress-0.svg?v=years-63");
  filter: grayscale(1);
  opacity: 0.32;
}

.puzzleProgressGoldStar {
  background-image: url("archive-icons/puzzle-progress-gold-star.svg?v=years-63");
}

.progressIconContent.streakBefore::before,
.progressIconContent.streakAfter::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 6px;
  margin-top: -4px;
  background: #c4a200;
}

.progressIconContent.streakBefore::before {
  right: 100%;
}

.progressIconContent.streakAfter::after {
  left: 100%;
}

.puzzleProgressInProgress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5px;
  overflow: hidden;
  border-radius: 3px;
  background: #d7e7ff;
}

.puzzle-progress-segment {
  background: transparent;
}

.puzzle-progress-segment.filled {
  background: #083aaa;
}

.cardRibbon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  transform: translate(-50%, -50%);
  min-width: 135%;
  padding: 0 10px;
  color: #fff;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 12px;
  line-height: 15.6px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.cardRibbon::before,
.cardRibbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 55%;
  height: 100%;
  background: #4d88f9;
  z-index: -1;
}

.cardRibbon::before {
  left: 0;
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%, 7% 50%, 0 0);
}

.cardRibbon::after {
  right: 0;
  clip-path: polygon(0 0, 96% 0, 100% 0, 93% 50%, 100% 100%, 0 100%);
}

.year-tile:hover .cardRibbon,
.year-tile:focus-visible .cardRibbon {
  display: block;
}

.year-tile-date {
  display: grid;
  gap: 2px;
}

.year-tile-year {
  color: #787886;
  font-size: 14px;
  line-height: 18.2px;
  font-weight: 300;
}

.year-tile-weekday {
  color: #787886;
  font-size: 11px;
  line-height: 13px;
  font-weight: 300;
}

.year-tile.completed .year-tile-year {
  color: #c4a200;
  font-weight: 700;
}

.title-bar {
  width: min(1132px, calc(100% - 64px));
  min-height: 120px;
  margin: 24px auto 0;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.title-copy {
  width: 75%;
  min-width: 0;
  padding-right: 22px;
}

.title-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}

.title-heading h1 {
  margin: 0;
  font-family: "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 54.6px;
  font-weight: 700;
}

#puzzle-date {
  font-size: 28px;
  line-height: 36.4px;
  font-weight: 300;
}

.puzzle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 18.2px;
}

#puzzle-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

#puzzle-byline span + span::before {
  content: "▪";
  margin: 0 8px;
}

.title-actions {
  display: inline-flex;
  flex: 0 0 25%;
  width: 25%;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.year-home-button {
  min-width: 104px;
  height: 39px;
  padding: 0 16px;
  border: 1px solid #000;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.print-button {
  width: 100%;
  max-width: 264px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  border: 1px solid #000;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.print-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timer {
  min-width: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
}

.timer-control {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  height: 45px;
  margin: auto;
}

.pause-button {
  width: 100px;
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.pause-button:hover,
.pause-button:focus-visible {
  background: transparent;
  color: #000;
}

.pause-button .pz-icon-pause {
  position: relative;
  width: 13px;
  height: 15px;
  min-width: 13px;
  min-height: 0;
  margin-left: 0.5em;
  display: inline-block;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.pause-button:hover .pz-icon-pause,
.pause-button:focus-visible .pz-icon-pause {
  opacity: 1;
}

.pause-button .pz-icon-pause::before,
.pause-button .pz-icon-pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 15px;
  background: currentColor;
}

.pause-button .pz-icon-pause::before {
  left: 1px;
}

.pause-button .pz-icon-pause::after {
  right: 1px;
}

.progress {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.toolbar {
  min-height: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.toolbar-inner {
  position: relative;
  width: min(1208px, calc(100% - 72px));
  min-height: 45px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.toolbar-menu-wrap {
  position: relative;
  height: 45px;
  display: inline-flex;
  align-items: stretch;
}

.toolbar button {
  height: 45px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.toolbar button:hover,
.toolbar button:focus-visible {
  color: #555;
}

.toolbar .icon-tool.active,
.toolbar .icon-tool[aria-pressed="true"] {
  background: #d9d9d9;
  color: #000;
}

.toolbar .icon-tool.active:hover,
.toolbar .icon-tool[aria-pressed="true"]:hover,
.toolbar .icon-tool.active:focus-visible,
.toolbar .icon-tool[aria-pressed="true"]:focus-visible {
  background: #d9d9d9;
  color: #000;
}

.icon-tool {
  width: 45px;
  display: inline-grid;
  place-items: center;
}

.icon-tool svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.xwd__toolbar_icon--settings-gear {
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url("assets/icons/settings-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.xwd__toolbar_icon--support {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjgiIHZpZXdCb3g9IjQgNCAyNCAyNCIgd2lkdGg9IjI4IiBjbGFzcz0iZ2FtZS1pY29uIiBkYXRhLXRlc3RpZD0iaWNvbi1oZWxwIj48cGF0aCBmaWxsPSJ2YXIoLS1jb2xvci10b25lLTEpIiBkPSJNMTQuODMzMyAyM0gxNy4xNjY2VjIwLjY2NjdIMTQuODMzM1YyM1pNMTUuOTk5OSA0LjMzMzM0QzkuNTU5OTIgNC4zMzMzNCA0LjMzMzI1IDkuNTYwMDEgNC4zMzMyNSAxNkM0LjMzMzI1IDIyLjQ0IDkuNTU5OTIgMjcuNjY2NyAxNS45OTk5IDI3LjY2NjdDMjIuNDM5OSAyNy42NjY3IDI3LjY2NjYgMjIuNDQgMjcuNjY2NiAxNkMyNy42NjY2IDkuNTYwMDEgMjIuNDM5OSA0LjMzMzM0IDE1Ljk5OTkgNC4zMzMzNFpNMTUuOTk5OSAyNS4zMzMzQzEwLjg1NDkgMjUuMzMzMyA2LjY2NjU5IDIxLjE0NSA2LjY2NjU5IDE2QzYuNjY2NTkgMTAuODU1IDEwLjg1NDkgNi42NjY2OCAxNS45OTk5IDYuNjY2NjhDMjEuMTQ0OSA2LjY2NjY4IDI1LjMzMzMgMTAuODU1IDI1LjMzMzMgMTZDMjUuMzMzMyAyMS4xNDUgMjEuMTQ0OSAyNS4zMzMzIDE1Ljk5OTkgMjUuMzMzM1pNMTUuOTk5OSA5LjAwMDAxQzEzLjQyMTYgOS4wMDAwMSAxMS4zMzMzIDExLjA4ODMgMTEuMzMzMyAxMy42NjY3SDEzLjY2NjZDMTMuNjY2NiAxMi4zODMzIDE0LjcxNjYgMTEuMzMzMyAxNS45OTk5IDExLjMzMzNDMTcuMjgzMyAxMS4zMzMzIDE4LjMzMzMgMTIuMzgzMyAxOC4zMzMzIDEzLjY2NjdDMTguMzMzMyAxNiAxNC44MzMzIDE1LjcwODMgMTQuODMzMyAxOS41SDE3LjE2NjZDMTcuMTY2NiAxNi44NzUgMjAuNjY2NiAxNi41ODMzIDIwLjY2NjYgMTMuNjY2N0MyMC42NjY2IDExLjA4ODMgMTguNTc4MyA5LjAwMDAxIDE1Ljk5OTkgOS4wMDAwMVoiPjwvcGF0aD48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.mobile-assist-wrap {
  display: none;
}

.xwd__toolbar_icon--cheat-menu-active {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzYzNTlfNiIgc3R5bGU9Im1hc2stdHlwZTphbHBoYSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj4KPHBhdGggZD0iTTEwIDBDMTUuNTEzNiAwIDIwIDQuNDg1NiAyMCAxMEMyMCAxNS41MTQ0IDE1LjUxMzYgMjAgMTAgMjBDNC40ODU2IDIwIDAgMTUuNTE0NCAwIDEwQzAgNC40ODU2IDQuNDg1NiAwIDEwIDBaTTE0LjUyNzIgMTIuMzg4OEMxNC4wNDU2IDEzLjI5ODQgMTMuMjk4NCAxNC4wNDU2IDEyLjM4ODggMTQuNTI3MkwxNC4xMjA4IDE3LjQ3MTJDMTUuNTI4IDE2LjY5MiAxNi42OTIgMTUuNTI4IDE3LjQ3MTIgMTQuMTIwOEwxNC41MjcyIDEyLjM4ODhaTTUuNDcyOCAxMi4zODg4TDIuNTI4OCAxNC4xMjA4QzMuMzA4IDE1LjUyOCA0LjQ3MiAxNi42OTIgNS44NzkyIDE3LjQ3MTJMNy42MTEyIDE0LjUyNzJDNi43MDE2IDE0LjA0NTYgNS45NTQ0IDEzLjI5ODQgNS40NzI4IDEyLjM4ODhaTTEwIDYuMzQxNkM3Ljk4MjQgNi4zNDE2IDYuMzQxNiA3Ljk4MjQgNi4zNDE2IDEwQzYuMzQxNiAxMi4wMTc2IDcuOTgyNCAxMy42NTg0IDEwIDEzLjY1ODRDMTIuMDE3NiAxMy42NTg0IDEzLjY1ODQgMTIuMDE3NiAxMy42NTg0IDEwQzEzLjY1ODQgNy45ODI0IDEyLjAxNzYgNi4zNDE2IDEwIDYuMzQxNlpNNS44NzkyIDIuNTI4OEM0LjQ3MiAzLjMwOCAzLjMwOCA0LjQ3MiAyLjUyODggNS44NzkyTDUuNDcyOCA3LjYxMTJDNS45NTQ0IDYuNzAxNiA2LjcwMTYgNS45NTQ0IDcuNjExMiA1LjQ3MjhMNS44NzkyIDIuNTI4OFpNMTQuMTIwOCAyLjUyODhMMTIuMzg4OCA1LjQ3MjhDMTMuMjk4NCA1Ljk1NDQgMTQuMDQ1NiA2LjcwMTYgMTQuNTI3MiA3LjYxMTJMMTcuNDcxMiA1Ljg3OTJDMTYuNjkyIDQuNDcyIDE1LjUyOCAzLjMwOCAxNC4xMjA4IDIuNTI4OFoiIGZpbGw9IndoaXRlIi8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF82MzU5XzYpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0tNSAyNUgyNVYtNUgtNVYyNVoiIGZpbGw9ImJsYWNrIi8+CjwvZz4KPC9zdmc+);
  display: inline-block;
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.info-tool {
  display: none;
}

.xwd__toolbar_icon--info {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.xwd__toolbar_icon--info::before {
  content: "i";
}

.toolbar .text-tool {
  width: 90px;
  min-width: 90px;
  padding: 0;
  border: 1px solid transparent;
  text-align: center;
  text-transform: capitalize;
}

.toolbar .text-tool:hover,
.toolbar .text-tool:focus-visible {
  background: #f1f1f1;
  color: #121212;
}

.toolbar .text-tool.active,
.toolbar .text-tool[aria-pressed="true"] {
  background: #d9d9d9;
  color: #000;
}

.toolbar .text-tool.active:hover,
.toolbar .text-tool.active:focus-visible,
.toolbar .text-tool[aria-pressed="true"]:hover,
.toolbar .text-tool[aria-pressed="true"]:focus-visible {
  background: #d9d9d9;
  color: #000;
}

.toolbar-menu-wrap .text-tool[aria-expanded="true"] {
  background: #f8f8f8;
  border-color: #e8e8e8;
  border-bottom-color: #f8f8f8;
  color: #121212;
}

.toolbar-menu-wrap .text-tool[aria-expanded="true"]:hover,
.toolbar-menu-wrap .text-tool[aria-expanded="true"]:focus-visible {
  background: #eeeeee;
  border-bottom-color: #eeeeee;
}

.toolbar-menu-wrap .icon-tool[aria-expanded="true"] {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-bottom-color: #fff;
  color: #121212;
}

.toolbar-menu-wrap .icon-tool[aria-expanded="true"]:hover,
.toolbar-menu-wrap .icon-tool[aria-expanded="true"]:focus-visible {
  background: #eeeeee;
  border-bottom-color: #eeeeee;
  color: #121212;
}

.xwd__menu--container {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 40;
  min-width: 118px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  box-shadow: none;
}

.xwd__menu--container.hidden {
  display: none;
}

.xwd__menu--item {
  margin: 0;
}

.toolbar .xwd__menu--btnlink {
  width: 100%;
  min-width: 0;
  height: 41px;
  padding: 0 10px;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 14px;
  line-height: 41px;
  text-align: left;
  white-space: nowrap;
}

.toolbar .xwd__menu--btnlink:hover,
.toolbar .xwd__menu--btnlink:focus-visible {
  background: #eeeeee;
  color: #121212;
}

.xwd__support-menu {
  min-width: 132px;
  background: #fff;
  border-color: #e2e2e2;
}

.xwd__mobile-assist-menu {
  min-width: 158px;
  background: #fafafa;
}

#revealMenu {
  min-width: 90px;
}

.xwd__mobile-assist-menu .mobile-assist-more {
  display: none;
}

.xwd__mobile-assist-menu.show-more .mobile-assist-primary {
  display: none;
}

.xwd__mobile-assist-menu.show-more .mobile-assist-more {
  display: list-item;
}

.toolbar .xwd__mobile-assist-menu .menu-forward {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-assist-tool.autocheck-on {
  background: #e8e8e8;
}

.toolbar .text-tool.autocheck-on {
  background: #f8f8f8;
  border-color: #e8e8e8;
  color: #121212;
}

.toolbar .xwd__menu--btnlink.active,
.toolbar .xwd__menu--btnlink[aria-pressed="true"] {
  background: #eeeeee;
  color: #121212;
  font-weight: 700;
}

.toolbar .xwd__support-menu .xwd__menu--btnlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 41px;
  padding: 0 10px;
  background: #fff;
  color: #121212;
  line-height: 1;
  text-decoration: none;
}

.toolbar .xwd__support-menu .xwd__menu--btnlink:hover,
.toolbar .xwd__support-menu .xwd__menu--btnlink:focus-visible {
  background: #eeeeee;
  color: #121212;
}

.support-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
}

.support-arrow svg {
  width: 16px;
  height: 16px;
  fill: #121212;
}

.game-layout {
  width: min(1074px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 533px minmax(0, 1fr);
  gap: 41px;
  align-items: start;
  padding-top: 10px;
}

.board-area {
  min-width: 0;
}

.current-clue {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  min-height: 60px;
  margin-bottom: 10px;
  background: #dcefff;
  font-size: 17px;
  line-height: 23px;
}

.current-clue-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 17px;
  font-weight: 800;
}

.current-clue-text {
  padding: 9px 14px 9px 0;
}

.board-wrap {
  position: relative;
  width: min(100%, 533px);
  margin: 0;
}

.crossword-grid {
  width: 100%;
  aspect-ratio: 1;
  user-select: none;
}

.crossword-grid-svg {
  display: block;
  width: 100%;
  height: auto;
  font-family: Arial, sans-serif;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.cell {
  cursor: pointer;
  outline: none;
  -webkit-focus-ring-color: transparent;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.cell,
.cell * {
  outline: none !important;
  box-shadow: none !important;
  -webkit-focus-ring-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.cell.block {
  cursor: default;
  pointer-events: none;
}

.cell.block * {
  pointer-events: none;
}

.cell-rect {
  fill: #fff;
  stroke: none;
  outline: none;
  rx: 0;
  ry: 0;
}

.cell:focus,
.cell:focus-visible,
.cell-rect:focus,
.cell-rect:focus-visible {
  outline: none;
}

.cell.block .cell-rect {
  fill: #000;
}

.cell-circle-arc {
  fill: none;
  stroke: dimgray;
  stroke-width: 1;
  pointer-events: none;
}

.cell.related-word .cell-rect {
  fill: var(--related-yellow);
}

.cell.in-word .cell-rect {
  fill: var(--blue);
}

.cell.selected .cell-rect {
  fill: var(--yellow);
}

.rebus-input-box,
.rebus-input-text {
  display: none;
  pointer-events: none;
}

.rebus-input-box {
  fill: #fff;
  stroke: #2873dc;
  stroke-width: 3;
  filter: none;
}

.rebus-input-text {
  fill: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.cell.rebus-entry .guess {
  display: none;
}

.cell.rebus-entry .rebus-input-box,
.cell.rebus-entry .rebus-input-text {
  display: block;
}

.cell-check-slash {
  display: none;
  stroke: #e63333;
  stroke-width: 2;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
}

.cell.incorrect .cell-check-slash {
  display: block;
}

.cell-reveal-flag,
.cell-reveal-tatter {
  display: none;
  pointer-events: none;
}

.cell-reveal-flag {
  fill: #e63333;
}

.cell-reveal-tatter {
  fill: #fff;
}

.cell.revealed .cell-reveal-flag,
.cell.revealed .cell-reveal-tatter {
  display: block;
}

.cell.revealed .guess {
  fill: #2860d8;
}

.cell.penciled .guess {
  fill: #959595;
}

.cell.incorrect.selected .cell-rect,
.cell.correct.selected .cell-rect {
  fill: var(--yellow);
}

.crossword-grid-svg .num {
  color: #000;
  fill: #000;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  pointer-events: none;
}

.crossword-grid-svg .guess {
  color: #000;
  fill: #000;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  pointer-events: none;
  text-transform: uppercase;
}

.keyboard-trap {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  clip-path: inset(50%);
  pointer-events: none;
}

.status-line {
  min-height: 28px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.clue-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-height: 625px;
  overflow: hidden;
  font: 14px "nyt-franklin", Arial, sans-serif;
}

.clue-column {
  min-width: 0;
  max-height: 625px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.clue-column h2 {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0;
  padding: 7px 0 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.clue-column ol {
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
}

.clue-button {
  display: grid;
  grid-template-columns: 24px 1fr;
  width: 100%;
  min-height: 29px;
  padding: 5px 1px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.clue-button:hover,
.clue-button:focus-visible,
.clue-button.active {
  background: #a7d8ff;
}

.clue-button.related {
  background: var(--related-yellow);
}

.clue-button.solved {
  color: #8d8d8d;
}

.clue-number {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.clue-text {
  margin-left: 5px;
  font-size: 14px;
  line-height: 1.4;
}

.mobile-controls {
  display: none;
}

.mobile-clue-bar,
.mobile-keyboard {
  font-family: "nyt-franklin", Arial, sans-serif;
}

.mobile-clue-bar button,
.mobile-keyboard button {
  font: inherit;
  color: #121212;
  -webkit-tap-highlight-color: transparent;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.38);
}

.modal-backdrop.hidden {
  display: none;
}

.settings-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.42);
}

.settings-backdrop.hidden {
  display: none;
}

.print-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.42);
}

.print-backdrop.hidden {
  display: none;
}

.info-backdrop {
  align-items: end;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
}

.xwd__modal--content {
  width: min(100%, 720px);
  max-height: min(86vh, 720px);
  overflow-y: auto;
  padding: 32px 34px 26px;
  background: #fff;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.26);
}

.xwd__settings-modal--title-container {
  display: flex;
  margin-bottom: 22px;
}

.pz-moment__title {
  margin: 0;
  font-family: "nyt-karnak", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.pz-moment__title.large {
  font-size: 42px;
  line-height: 1.05;
}

.pz-moment__description {
  margin: 0;
  font-family: "nyt-karnak", Georgia, serif;
  font-weight: 400;
}

.pz-moment__description.small {
  max-width: 510px;
  font-size: 32px;
  line-height: 1.18;
}

.xwd__settings-modal--form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 26px;
}

.xwd__settings-modal--column {
  min-width: 0;
}

.xwd__settings-modal--section {
  margin-bottom: 20px;
}

.xwd__settings-modal--section:last-child {
  margin-bottom: 0;
}

.xwd__settings-modal--heading {
  margin: 0 0 8px;
  color: #121212;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.xwd__settings-modal--inset {
  margin: 0 0 18px;
}

.xwd__settings-modal--inset:last-child {
  margin-bottom: 0;
}

.xwd__settings-modal--form label {
  display: block;
  margin: 7px 0;
  color: #121212;
  font-size: 15px;
  line-height: 1.28;
  text-align: left;
}

.xwd__settings-modal--form input {
  width: 15px;
  height: 15px;
  margin: 0 7px 0 0;
  vertical-align: -2px;
  accent-color: #121212;
}

.xwd__settings-modal--indented {
  margin-left: 23px;
}

.xwd__print-modal--content {
  position: relative;
  width: min(100%, 520px);
  padding: 76px 38px 30px;
}

.xwd__print-modal--content .pz-moment__title {
  text-align: center;
}

.xwd__modal--close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #121212;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.xwd__modal--close:hover,
.xwd__modal--close:focus-visible {
  color: #5a5a5a;
}

.xwd__print-modal--printModalContent {
  margin-top: 20px;
  margin-bottom: 26px;
}

.xwd__print-modal--printOptions {
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.28;
}

.xwd__print-modal--section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}

.xwd__print-modal--section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.xwd__print-modal--left,
.xwd__print-modal--cellDarkness {
  min-width: 0;
}

.xwd__print-modal--printOptions label {
  display: block;
  margin: 8px 0;
  color: #121212;
}

.xwd__print-modal--printOptions input {
  width: 15px;
  height: 15px;
  margin: 0 8px 0 0;
  vertical-align: -2px;
  accent-color: #121212;
}

.xwd__print-modal--inset {
  margin: 8px 0 14px 24px;
}

.xwd__print-modal--opacityIcon {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 12px 0 0 24px;
  border: 1px solid #121212;
  background:
    linear-gradient(90deg, transparent 19px, #121212 19px, #121212 20px, transparent 20px),
    linear-gradient(transparent 19px, #121212 19px, #121212 20px, transparent 20px),
    #fff;
}

.xwd__print-modal--opacityReference,
.xwd__print-modal--userOpacity {
  position: absolute;
  width: 19px;
  height: 19px;
  background: #121212;
}

.xwd__print-modal--opacityReference {
  top: 0;
  left: 0;
}

.xwd__print-modal--userOpacity {
  right: 0;
  bottom: 0;
}

.xwd__modal--button-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 4px;
}

.pz-moment__button {
  min-width: 132px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #121212;
  border-radius: 999px;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.pz-moment__button.primary {
  background: #121212;
  color: #fff;
}

.pz-moment__button.secondary {
  background: #fff;
  color: #121212;
}

.pz-moment__button:disabled {
  cursor: default;
  opacity: 0.45;
}

.xwd__modal--body {
  position: relative;
  width: min(100%, 600px);
  background: #fff;
  color: #121212;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.xwd__congrats-modal--content,
.xwd__rats-modal .xwd__modal--content {
  width: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 78px 54px 58px;
  text-align: center;
  box-shadow: none;
  overflow: visible;
}

.xwd__confirmation-modal--wrapper {
  width: min(100%, 600px);
}

.xwd__confirmation-modal--wrapper .xwd__modal--content {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 72px 46px 44px;
  text-align: center;
  box-shadow: none;
}

.xwd__info-modal--wrapper {
  width: min(100%, 600px);
  min-height: 50%;
  max-height: calc(100% - 32px);
  display: flex;
  box-sizing: border-box;
  padding: 24px;
  overflow-y: auto;
  box-shadow: 0 3px 12px -1px rgba(0, 0, 0, 0.3);
}

.xwd__info-modal--wrapper .xwd__modal--content {
  width: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.xwd__install-modal {
  width: min(100%, 520px);
}

.xwd__install-modal .xwd__modal--content {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 42px 34px 30px;
  text-align: center;
  box-shadow: none;
}

.install-app-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(18, 18, 18, 0.16);
}

.install-app-message {
  max-width: 360px;
  margin: 0;
  color: #363636;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 21px;
}

.install-app-steps {
  width: min(100%, 360px);
  margin: 0;
  padding-left: 22px;
  color: #121212;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 22px;
  text-align: left;
}

.install-app-steps:empty {
  display: none;
}

.xwd__info-modal {
  width: 100%;
  color: #121212;
}

.xwd__info-modal .pz-moment__title.medium {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.05;
}

.xwd__info-modal .pz-moment__title.large {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.05;
}

.xwd__details--byline-info {
  text-align: left;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.1375rem;
}

.xwd__info-modal .xwd__start-modal--date {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.xwd__details--byline-info span + span::before {
  content: "";
  margin-right: 0;
}

.xwd__details--byline-info span::after {
  content: "▪";
  margin: 0 8px;
  font-size: 15px;
  line-height: 1.21875;
}

.xwd__details--byline-info span:last-of-type::after {
  content: "";
  margin: 0;
}

.xwd__pause-modal .xwd__modal--content {
  width: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 78px 54px 58px;
  text-align: center;
  box-shadow: none;
  overflow: visible;
}

.pz-moment__description.default {
  margin-top: 14px;
  margin-bottom: 30px;
  font-size: 34px;
  line-height: 1.16;
}

.xwd__start-modal--date {
  margin-top: 24px;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.xwd__details--byline {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  color: #121212;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
}

.xwd__details--byline span + span::before {
  content: "•";
  margin-right: 8px;
}

.xwd__details--byline.xwd__details--byline-info {
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.1375rem;
}

.xwd__account-modal {
  width: min(100%, 460px);
}

.xwd__account-modal .xwd__modal--content {
  width: 100%;
  max-height: none;
  padding: 34px 34px 30px;
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 24px;
}

.account-profile-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}

.account-profile-avatar-fallback {
  display: inline-grid;
  place-items: center;
  background: #121212;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-profile-text {
  min-width: 0;
}

.account-profile-name {
  color: #121212;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.account-profile-email {
  margin-top: 3px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.account-details {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid #e6e6e6;
}

.account-details > div {
  display: grid;
  grid-template-columns: minmax(98px, 0.38fr) 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #e6e6e6;
}

.account-details dt,
.account-details dd {
  margin: 0;
  font-family: "nyt-franklin", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.account-details dt {
  color: #5a5a5a;
  font-weight: 700;
}

.account-details dd {
  color: #121212;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.account-legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e6e6e6;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.account-legal-links a {
  color: #424242;
  text-decoration: none;
}

.account-legal-links a:hover,
.account-legal-links a:focus-visible {
  color: #121212;
  text-decoration: underline;
}

.account-danger-zone {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

.account-delete-button {
  border: 0;
  background: transparent;
  color: #a90111;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.account-delete-button:hover,
.account-delete-button:focus-visible {
  text-decoration: underline;
}

.account-delete-warning {
  max-width: 390px;
  margin: 12px auto 0;
  color: #424242;
  font-family: "nyt-franklin", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}

.pz-moment__button.primary.default.danger {
  background: #a90111;
  border-color: #a90111;
}

.pz-moment__button.primary.default.danger:hover,
.pz-moment__button.primary.default.danger:focus-visible {
  background: #84000c;
  border-color: #84000c;
}

.xwd__rats-modal .xwd__modal--content {
  gap: 26px;
}

.xwd__puzzle-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;
  background-repeat: no-repeat;
  background-size: cover;
}

.xwd__puzzle-progress--blue-star {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwX3B1enpsZV9wcm9ncmVzc19ibHVlX3N0YXIpIj4KPHBhdGggZD0iTTU2IDBIOEMzLjU4MTcyIDAgMCAzLjU4MTcyIDAgOFY1NkMwIDYwLjQxODMgMy41ODE3MiA2NCA4IDY0SDU2QzYwLjQxODMgNjQgNjQgNjAuNDE4MyA2NCA1NlY4QzY0IDMuNTgxNzIgNjAuNDE4MyAwIDU2IDBaIiBmaWxsPSIjM0M2RkQzIi8+CjxwYXRoIGQ9Ik01Mi4xNDM1IDExLjg1NTVIMTEuODU1NVY1Mi4xNDM1SDUyLjE0MzVWMTEuODU1NVoiIGZpbGw9IiMwODNBQUEiLz4KPHBhdGggZD0iTTMyLjUxODQgMTYuNDAzNkwzNy4wNjQ1IDI2LjM5NjRDMzcuMTM5MSAyNi41NTc5IDM3LjI5NDMgMjYuNjY5NyAzNy40NjgyIDI2LjY4ODNMNDguMTEzMiAyNy43NTY1QzQ4LjU0MTcgMjcuOCA0OC43MTU2IDI4LjMyNzkgNDguMzk4OSAyOC42MTk4TDQwLjEyNjQgMzYuMjU4OEMzOS45OTU5IDM2LjM4MyAzOS45NCAzNi41NjMxIDM5Ljk3NzMgMzYuNzM3TDQyLjM4NyA0Ni44NjAzQzQyLjQ4NjQgNDcuMjg4OCA0Mi4wMjY4IDQ3LjYzMDQgNDEuNjQ4IDQ3LjQwMDZMMzIuMzI1OSA0MS43OTI0QzMyLjE3MDYgNDEuNjk5MyAzMS45NzE5IDQxLjY5OTMgMzEuODEwNCA0MS43OTI0TDIyLjQ4MjEgNDcuNDA2OEMyMi4xMDMzIDQ3LjYzNjYgMjEuNjM3NSA0Ny4yOTUgMjEuNzQzMSA0Ni44NjY1TDI0LjE1MjggMzYuNzQzMkMyNC4xOTYyIDM2LjU2OTMgMjQuMTQwMyAzNi4zODMgMjQuMDAzNyAzNi4yNjVMMTUuNzMxMiAyOC42MTM2QzE1LjQxNDUgMjguMzIxNyAxNS41OTQ2IDI3Ljc5MzggMTYuMDE2OSAyNy43NTAzTDI2LjY2MTggMjYuNjgyMUMyNi44MzU3IDI2LjY2MzUgMjYuOTkxIDI2LjU1MTcgMjcuMDY1NSAyNi4zOTAyTDMxLjYxMTcgMTYuMzk3NEMzMS43OTE4IDE2LjAxMjMgMzIuMzQ0NSAxNi4wMTIzIDMyLjUxODQgMTYuNDAzNloiIGZpbGw9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfcHV6emxlX3Byb2dyZXNzX2JsdWVfc3RhciI+CjxyZWN0IHdpZHRoPSI2NCIgaGVpZ2h0PSI2NCIgcng9IjQiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
}

.xwd__center {
  text-align: center;
}

.xwd__bold {
  font-weight: 800;
}

.xwd__congrats-modal--message {
  margin: 16px 0 38px;
  font-family: "nyt-karnak", Georgia, serif;
  font-size: 32px;
  line-height: 1.25;
}

.xwd__congrats-modal--buttons-wrapper {
  padding-top: 0;
}

.spacing-top {
  margin-top: 0;
}

.finish-card {
  width: min(100%, 460px);
  padding: 34px 34px 30px;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.finish-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.finish-card h2 {
  margin: 0 0 10px;
  font-family: "nyt-karnakcondensed", Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.1;
}

.finish-card p {
  margin: 0 0 24px;
  color: #333;
}

.finish-card button {
  min-width: 132px;
  min-height: 42px;
  border: 1px solid #000;
  border-radius: 3px;
  background: #000;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .home-shell,
  .title-bar,
  .toolbar-inner,
  .game-layout {
    width: min(760px, calc(100% - 32px));
  }

  .game-layout {
    grid-template-columns: 1fr;
  }

  .board-area {
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .board-wrap {
    width: 100%;
  }

  .clue-lists {
    width: 100%;
    max-height: none;
    margin: 4px auto 0;
    overflow: visible;
  }

  .clue-column {
    max-height: 380px;
  }
}

@media (max-width: 720px) {
  :root {
    --mobile-controls-height: calc(276px + env(safe-area-inset-bottom, 0px));
  }

  .nyt-header {
    display: grid;
    grid-template-columns: 45px 1fr 45px;
    column-gap: 0;
    height: 45px;
    padding: 0;
    width: 100vw;
    width: 100dvw;
  }

  .hamburger {
    width: 45px;
    min-width: 45px;
    height: 45px;
    justify-self: start;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 15px;
    height: 2px;
  }

  .hamburger-inner {
    margin-top: -1px;
  }

  .hamburger-inner::before {
    top: -4.5px;
  }

  .hamburger-inner::after {
    bottom: -4.5px;
  }

  .games-logo {
    grid-column: 2;
    justify-self: center;
  }

  .header-actions {
    display: none;
  }

  .mobile-nav-menu {
    top: 45px;
    left: 0;
  }

  .mobile-nav-menu button.install-app-menu-item {
    display: flex;
  }

  body.puzzle-active .nyt-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: 45px;
    height: 45px;
    display: block;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  body.puzzle-active .nyt-header .games-logo,
  body.puzzle-active .nyt-header .header-actions {
    display: none;
  }

  body.puzzle-active .hamburger {
    width: 45px;
    height: 45px;
    background: transparent;
  }

  body.puzzle-active .mobile-nav-menu {
    top: 45px;
    left: 0;
  }

  body.puzzle-active .toolbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-top: 0;
  }

  body.puzzle-active .page {
    padding-top: 0;
  }

  .landing-content {
    width: calc(100% - 28px);
    gap: 22px;
  }

  .landing-content h1 {
    font-size: 42px;
  }

  .landing-enter {
    min-width: 138px;
    min-height: 46px;
  }

  .login-backdrop {
    place-items: end center;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .login-dialog {
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    padding: calc(58px + env(safe-area-inset-top, 0px)) 24px calc(28px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    animation: login-sheet-in 180ms ease-out;
  }

  .login-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: 12px;
    z-index: 1;
  }

  .login-dialog h2 {
    font-size: 27px;
  }

  @keyframes login-sheet-in {
    from {
      transform: translateY(36px);
    }

    to {
      transform: translateY(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .login-dialog {
      animation: none;
    }
  }

  .page {
    min-height: 100dvh;
    padding: 0 0 var(--mobile-controls-height);
  }

  .home-page {
    padding: 28px 0 36px;
  }

  .home-shell,
  .title-bar,
  .toolbar-inner,
  .game-layout {
    width: calc(100% - 20px);
  }

  .home-copy {
    display: block;
    padding-bottom: 18px;
  }

  .home-title-heading {
    display: block;
  }

  .home-copy h1 {
    font-size: 31px;
    line-height: 1.04;
  }

  .home-date {
    display: block;
    margin-top: 8px;
    font-size: 14px;
  }

  .archive-tabs {
    margin-top: 18px;
    width: calc(100% + 20px);
    margin-right: -10px;
    margin-left: -10px;
  }

  .tab__tabGroup .tab__tabNavItems {
    padding: 0 5px;
  }

  .tab__tabGroup .tab__tab {
    padding: 0 1.5%;
    font-size: 13px;
  }

  .year-grid {
    grid-template-columns: repeat(3, minmax(64px, 1fr));
    gap: 26px 10px;
    max-width: 320px;
    padding-top: 24px;
  }

  .year-tile {
    width: 68px;
    min-height: 74px;
  }

  .year-tile-year {
    font-size: 13px;
  }

  .year-tile-weekday {
    font-size: 10px;
    line-height: 12px;
  }

  .title-bar {
    display: none;
  }

  .title-heading {
    gap: 8px;
  }

  .title-heading h1 {
    font-size: 30px;
  }

  #puzzle-date {
    font-size: 18px;
  }

  .print-button {
    width: min(238px, 100%);
  }

  .title-actions {
    width: 100%;
  }

  .year-home-button {
    width: 104px;
    flex: 0 0 auto;
  }

  .title-actions .print-button {
    flex: 1 1 auto;
  }

  .toolbar-inner {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
    padding: 0 12px 0 45px;
  }

  .toolbar button {
    min-width: 0;
  }

  .settings-tool {
    order: 5;
  }

  .timer-control {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    height: 45px;
    margin: 0;
  }

  .pause-button {
    width: 100px;
    min-width: 100px;
  }

  .tool-group {
    order: 3;
    flex: 0 0 auto;
    gap: 0;
  }

  .toolbar .text-tool {
    width: 70px;
    min-width: 70px;
    padding: 0 10px;
  }

  .tool-group > .text-tool[aria-label="Rebus"],
  #clearMenuWrapper,
  #revealMenuWrapper,
  .tool-group > #checkMenuWrapper,
  .tool-group > .icon-tool[aria-label="Edit mode"] {
    display: none;
  }

  .info-tool {
    display: inline-grid;
    order: 2;
  }

  .mobile-assist-wrap {
    display: inline-flex;
    order: 3;
  }

  #helpMenuWrapper {
    display: inline-flex;
    order: 4;
  }

  .xwd__mobile-assist-menu,
  .xwd__support-menu {
    right: 0;
    left: auto;
  }

  .icon-tool {
    width: 28px;
  }

  .icon-tool svg {
    width: 19px;
    height: 19px;
  }

  .game-layout {
    width: 100%;
    display: block;
    padding-top: 0;
  }

  .current-clue {
    display: none;
  }

  .board-area {
    width: 100%;
    margin: 0;
  }

  .board-wrap {
    width: min(
      calc(100% - 8px),
      calc(100dvh - 45px - var(--mobile-controls-height) - 8px)
    );
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }

  .crossword-grid {
    width: 100%;
    max-width: 100%;
  }

  .status-line {
    display: none;
  }

  .guess {
    bottom: 2px;
    font-size: var(--cell-letter-size-mobile, 12px);
  }

  .num {
    top: 1px;
    left: 2px;
    font-size: 5px;
  }

  .clue-lists {
    display: none;
  }

  .mobile-controls {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    display: block;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #dce5ee;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  }

  .mobile-clue-bar {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #a7d8ff;
    font: 16px/20px "nyt-franklin", Arial, sans-serif;
  }

  .mobile-clue-jump,
  .mobile-clue-main {
    min-height: 48px;
    border: 0;
    background: #a7d8ff;
    cursor: pointer;
  }

  .mobile-clue-jump {
    width: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px 0 0;
  }

  .mobile-clue-jump span {
    width: 11px;
    height: 20px;
    display: block;
    border: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAxMSAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMSAxOWw3Ljk0LTlMMSAxIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .mobile-clue-prev span {
    transform: rotate(180deg);
  }

  .mobile-clue-next span {
    transform: none;
  }

  .mobile-clue-main {
    min-width: 0;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    padding: 6px 0;
    text-align: left;
  }

  .mobile-clue-number {
    display: none;
  }

  .mobile-clue-text {
    min-width: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .mobile-keyboard {
    display: block;
    padding: 13px 10px 14px;
    overflow: visible;
    border-radius: 0;
    background: #e4eaef;
    font-family: "nyt-franklin", Arial, sans-serif;
    font-size: 25px;
  }

  .hg-rows {
    min-height: 40px;
  }

  .mobile-key-row {
    height: 40px;
    display: flex;
  }

  .mobile-key-row:not(:last-child) {
    margin-bottom: 12px;
  }

  .mobile-key {
    height: 40px;
    min-height: 40px;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 20px;
    padding: 5px 4px 3px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    border-bottom: 1px solid #c9d1d9;
    box-shadow: none;
    color: #121212;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-key:not(:last-child) {
    margin-right: 6px;
  }

  .mobile-key span,
  .mobile-key span svg {
    pointer-events: none;
  }

	  .mobile-key:active,
	  .mobile-key:focus-visible,
	  .mobile-clue-jump:active,
	  .mobile-clue-jump:focus-visible,
	  .mobile-clue-main:active,
	  .mobile-clue-main:focus-visible {
	    background: #c8d2dc;
	  }
	
	  .mobile-key-small,
	  .mobile-key-action,
	  .mobile-key.custom,
  .mobile-key-backspace,
  .mobile-key-pencil {
    background: #c8d2dc;
    border-bottom-color: #b3bdc4;
    font-size: 14px;
  }

  .mobile-key-action {
    height: 40px;
    min-height: 40px;
  }
	
	  .mobile-key.active,
	  .mobile-key.selected {
	    background: #333;
	    border-bottom-color: #333;
	    color: #fff;
	  }

  .mobile-key-pencil svg {
    width: 24px;
    height: 24px;
  }

  .mobile-key-backspace svg {
    width: 30px;
    height: 24px;
  }

  .tablet-only {
    display: none;
  }

  @media (max-width: 375px) {
    .mobile-key:not(:last-child) {
      margin-right: 4px;
    }
  }

  .settings-backdrop {
    align-items: end;
    padding: 0;
  }

  .print-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .xwd__congrats-modal--content,
  .xwd__rats-modal .xwd__modal--content {
    min-height: 450px;
    padding: 66px 24px 34px;
  }

  .pz-moment__title.large {
    font-size: 34px;
  }

  .pz-moment__description.small,
  .xwd__congrats-modal--message {
    font-size: 25px;
  }

  .xwd__confirmation-modal--wrapper .xwd__modal--content {
    min-height: 250px;
    padding: 64px 24px 30px;
  }

  .xwd__pause-modal .xwd__modal--content {
    min-height: 450px;
    padding: 66px 24px 34px;
  }

  .pz-moment__description.default {
    font-size: 27px;
  }

  .info-backdrop {
    align-items: end;
    padding: 0;
  }

  .pause-backdrop {
    align-items: end;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .reset-all-backdrop {
    align-items: end;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .install-backdrop {
    align-items: end;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .account-backdrop {
    align-items: end;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .account-delete-backdrop {
    align-items: end;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
  }

  .xwd__account-modal {
    width: 100%;
    max-height: 100%;
  }

  .xwd__account-modal .xwd__modal--content {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    border-radius: 4px 4px 0 0;
    padding: 42px 24px calc(28px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .account-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .account-danger-zone {
    margin-top: 18px;
    padding-top: 16px;
  }

  .account-legal-links {
    margin-top: 16px;
    padding-top: 16px;
  }

  .account-delete-button {
    min-height: 44px;
    padding: 0 12px;
  }

  .account-delete-backdrop .xwd__confirmation-modal--wrapper {
    width: 100%;
  }

  .account-delete-backdrop .xwd__confirmation-modal--wrapper .xwd__modal--content {
    border-radius: 4px 4px 0 0;
  }

  .reset-all-backdrop .xwd__confirmation-modal--wrapper {
    width: 100%;
  }

  .reset-all-backdrop .xwd__confirmation-modal--wrapper .xwd__modal--content {
    border-radius: 4px 4px 0 0;
  }

  .xwd__info-modal--wrapper {
    width: 100%;
    min-height: 50%;
    max-height: calc(100% - 32px);
    padding: 24px;
    border-radius: 4px 4px 0 0;
  }

  .xwd__info-modal--wrapper .xwd__modal--content {
    width: 100%;
    min-height: 0;
    max-height: none;
    padding: 0;
  }

  .xwd__pause-modal {
    width: 100%;
    min-height: 50%;
    max-height: calc(100% - 32px);
    display: flex;
    box-sizing: border-box;
    padding: 24px;
    overflow-y: auto;
    border-radius: 4px 4px 0 0;
  }

  .xwd__pause-modal .xwd__modal--content {
    width: 100%;
    min-height: 0;
    max-height: none;
    padding: 34px 24px 28px;
    border-radius: 0;
  }

  .xwd__install-modal {
    width: 100%;
    min-height: 50%;
    max-height: calc(100% - 32px);
    display: flex;
    box-sizing: border-box;
    padding: 24px;
    overflow-y: auto;
    border-radius: 4px 4px 0 0;
  }

  .xwd__install-modal .xwd__modal--content {
    width: 100%;
    max-height: none;
    padding: 34px 24px 28px;
    border-radius: 0;
  }

  .xwd__info-modal .pz-moment__title.medium {
    font-size: 28px;
  }

  .xwd__info-modal .pz-moment__title.large {
    font-size: 36px;
  }

  .xwd__details--byline {
    flex-direction: column;
    gap: 0;
  }

  .xwd__details--byline-info {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .xwd__details--byline span + span::before {
    content: "";
    margin-right: 0;
  }

  .xwd__details--byline-info span + span::before {
    content: "";
    margin-right: 0;
  }

  .xwd__modal--content {
    width: 100%;
    max-height: 88vh;
    padding: 26px 22px 22px;
  }

  .xwd__print-modal--content {
    padding: 56px 22px 22px;
  }

  .xwd__settings-modal--form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .xwd__print-modal--section {
    display: block;
  }

  .xwd__print-modal--cellDarkness {
    margin-top: 14px;
  }

  .xwd__modal--button-container {
    flex-direction: column;
  }

  .pz-moment__button {
    width: 100%;
  }
}

@media print {
  .nyt-header,
  .toolbar,
  .clue-lists,
  .status-line {
    display: none;
  }

  .page {
    max-width: none;
  }

  .game-layout {
    display: block;
  }

  .board-wrap {
    width: 7.5in;
  }
}
