:root {
  --ink: #122527;
  --muted: #52696c;
  --paper: #f1f7f6;
  --surface: #ffffff;
  --rule: #b5c9c7;
  --accent: #005e5a;
  --accent-ink: #ffffff;
  --complete: #2f784d;
  --working: #9a4808;
  --working-surface: #fff1d6;
  --danger: #a34036;
  --danger-surface: #fff0ec;
  --shadow: rgba(18, 37, 39, 0.16);
}

body[data-theme="dark"] {
  --ink: #edf7f5;
  --muted: #b7cdca;
  --paper: #102022;
  --surface: #172b2d;
  --rule: #557070;
  --accent: #70d0c3;
  --accent-ink: #092024;
  --complete: #88d99f;
  --working: #ffc06a;
  --working-surface: #3a2b1d;
  --danger: #ff9a8f;
  --danger-surface: #422422;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f1f7f6;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f1f7f6;
  color: #122527;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.35;
}

.board-shell {
  display: flex;
  flex-direction: column;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 4px solid #005e5a;
  outline-offset: 3px;
}

/* iOS 9 does not recognize :focus-visible. */
button:focus,
a:focus,
input:focus,
select:focus {
  outline: 4px solid #005e5a;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 1rem;
  padding: 0.65rem 0.85rem;
  background: #005e5a;
  color: #ffffff;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.tape-label {
  display: inline-block;
  margin: 0;
  color: #005e5a;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.1;
}

.masthead,
.editor-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.4rem 1.25rem 1.25rem;
  padding: clamp(1.4rem, 3vw, 2.6rem) clamp(1.25rem, 4vw, 4rem) 1.25rem;
  border-bottom: 3px solid #122527;
}

.masthead-title {
  flex: 1 1 18rem;
}

.progress-plate,
.account-actions {
  flex: 0 0 auto;
}

.masthead-title h1,
.editor-header h1,
.login-card h1 {
  margin: 0.3rem 0 0;
  font-family: "Avenir Next Condensed", "Arial Narrow", "Trebuchet MS", sans-serif;
  font-size: 3.4rem;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.editor-header h1 {
  font-size: 2.6rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.full-date,
.login-intro {
  margin: 0.7rem 0 0;
  color: #52696c;
  font-size: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.progress-plate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: grid;
  width: 7rem;
  width: clamp(7rem, 12vw, 9.5rem);
  height: 7rem;
  height: clamp(7rem, 12vw, 9.5rem);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  border: 3px solid #005e5a;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 7px 7px 0 #005e5a;
  text-align: center;
}

.progress-plate strong {
  color: #005e5a;
  font-size: 1.45rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.progress-plate span {
  margin-top: 0.35rem;
  color: #52696c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  align-items: center;
}

.account-actions form {
  margin: 0;
}

.quiet-link,
.quiet-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: #122527;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.quiet-button {
  padding: 0;
}

.board-main,
.editor-main {
  width: 100%;
  max-width: 1280px;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
  padding: clamp(1.5rem, 3vw, 3.25rem) clamp(1.25rem, 4vw, 4rem) 4rem;
}

.board-main {
  flex: 1 0 auto;
}

.board-footer {
  width: 100%;
  margin-top: auto;
  border-top: 3px solid #122527;
}

.board-footer form {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  text-align: right;
}

.network-status {
  min-height: 1.4em;
  margin: 0 0 0.75rem;
  color: #a34036;
  font-size: 1rem;
  font-weight: 700;
}

.task-board {
  border: 2px solid #122527;
  background: #ffffff;
  box-shadow: 11px 11px 0 #122527;
}

.list-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem;
  padding: 1rem clamp(1rem, 2vw, 1.6rem);
  border-bottom: 2px solid #122527;
  background: #005e5a;
  color: #ffffff;
}

.list-heading p {
  margin: 0;
  font-size: 1.15rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
}

.list-heading span {
  font-size: 0.95rem;
  font-weight: 600;
}

.task-list {
  min-height: 8rem;
}

.task-item {
  display: flex;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: 100%;
  min-height: 5.5rem;
  min-height: clamp(5.5rem, 10vw, 7rem);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  padding: 0.9rem 1rem;
  padding: 0.9rem clamp(1rem, 2.5vw, 1.75rem);
  border-bottom: 2px solid #b5c9c7;
  background: transparent;
  color: inherit;
}

.task-item:last-child {
  border-bottom: 0;
}

.task-item.is-complete {
  color: #52696c;
}

.task-item.is-working {
  background: #fff1d6;
  background: #fff1d6;
}

.task-item.is-complete .task-text {
  text-decoration: line-through;
  text-decoration-thickness: 0.12em;
}

.task-mark {
  display: flex;
  position: relative;
  flex: 0 0 2.45rem;
  min-width: 2.45rem;
  min-height: 2.45rem;
  width: 2.45rem;
  height: 2.45rem;
  margin-right: 1rem;
  justify-content: center;
  align-items: center;
  width: clamp(2.45rem, 5vw, 3.5rem);
  aspect-ratio: 1;
  padding: 0;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: #005e5a;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.35rem;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.task-mark svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.is-complete .task-mark {
  border-color: #2f784d;
  background: #2f784d;
  color: #fff;
}

.task-mark:disabled,
.task-working-button:disabled {
  cursor: wait;
}

.task-content {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
}

.task-text {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.55rem;
}

.task-meta > * {
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

.task-working-button {
  display: flex;
  min-width: 5.6rem;
  min-height: 3.6rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  padding: 0.35rem 0.7rem;
  border: 2px solid #9a4808;
  border: 2px solid #9a4808;
  border-radius: 0;
  background: #fff;
  background: #ffffff;
  color: #9a4808;
  color: #9a4808;
  font-weight: 900;
}

.task-working-button[hidden] {
  display: none;
}

.task-working-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.task-working-label {
  margin-top: 0.2rem;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-working .task-working-button {
  background: #9a4808;
  background: #9a4808;
  color: #fff;
  box-shadow: 4px 4px 0 #6f3309;
}

.task-state {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #2f784d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.is-working .task-state {
  color: #9a4808;
  color: #9a4808;
}

.person-tag,
.person-choice {
  display: inline-flex;
  max-width: 100%;
  min-height: 2.35rem;
  align-items: center;
  padding: 0.3rem 0.65rem 0.3rem 0.35rem;
  border: 2px solid #b5c9c7;
  border: 2px solid var(--person-color, #b5c9c7);
  border-radius: 999px;
  background: #fff;
  background: #ffffff;
  color: #122527;
  color: #122527;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.person-dot {
  display: inline-flex;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 1.45rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--person-color);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-right: 0.4rem;
}

.person-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person-tag.is-unassigned,
.person-choice.is-unassigned {
  border-style: dashed;
  color: #52696c;
  color: #52696c;
}

.person-choice.is-selected {
  background: var(--person-color, #005e5a);
  color: #fff;
}

.person-choice.is-selected .person-dot {
  background: #fff;
  color: var(--person-color);
}

.person-choice.is-unassigned.is-selected {
  border-style: solid;
  background: #52696c;
  background: #52696c;
  color: #fff;
}

.person-color-0 {
  border-color: #176b87;
  --person-color: #176b87;
}

.person-color-0 .person-dot {
  background: #176b87;
}

.person-choice.person-color-0.is-selected {
  background: #176b87;
}

.person-choice.person-color-0.is-selected .person-dot {
  color: #176b87;
}

.person-color-1 {
  border-color: #8a4f7d;
  --person-color: #8a4f7d;
}

.person-color-1 .person-dot {
  background: #8a4f7d;
}

.person-choice.person-color-1.is-selected {
  background: #8a4f7d;
}

.person-choice.person-color-1.is-selected .person-dot {
  color: #8a4f7d;
}

.person-color-2 {
  border-color: #80651c;
  --person-color: #80651c;
}

.person-color-2 .person-dot {
  background: #80651c;
}

.person-choice.person-color-2.is-selected {
  background: #80651c;
}

.person-choice.person-color-2.is-selected .person-dot {
  color: #80651c;
}

.person-color-3 {
  border-color: #a34036;
  --person-color: #a34036;
}

.person-color-3 .person-dot {
  background: #a34036;
}

.person-choice.person-color-3.is-selected {
  background: #a34036;
}

.person-choice.person-color-3.is-selected .person-dot {
  color: #a34036;
}

.person-color-4 {
  border-color: #3f6f44;
  --person-color: #3f6f44;
}

.person-color-4 .person-dot {
  background: #3f6f44;
}

.person-choice.person-color-4.is-selected {
  background: #3f6f44;
}

.person-choice.person-color-4.is-selected .person-dot {
  color: #3f6f44;
}

.person-color-5 {
  border-color: #684b9c;
  --person-color: #684b9c;
}

.person-color-5 .person-dot {
  background: #684b9c;
}

.person-choice.person-color-5.is-selected {
  background: #684b9c;
}

.person-choice.person-color-5.is-selected .person-dot {
  color: #684b9c;
}

.empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  display: grid;
  min-height: 12rem;
  place-items: center;
  padding: 2rem;
  color: #52696c;
  font-size: 1.3rem;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  text-align: center;
}

.login-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1.5rem;
}

.login-card {
  width: 100%;
  max-width: 32rem;
  width: min(32rem, 100%);
  padding: 1.75rem;
  padding: clamp(1.75rem, 5vw, 3.5rem);
  border: 3px solid #122527;
  background: #ffffff;
  box-shadow: 13px 13px 0 #005e5a;
}

.login-card h1 {
  font-size: 3.7rem;
  font-size: clamp(3.7rem, 11vw, 6.5rem);
}

.login-form,
.add-task-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.login-form label,
.editor-row label {
  color: #52696c;
  font-size: 0.95rem;
  font-weight: 800;
}

input,
select {
  min-height: 3.35rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 2px solid #122527;
  border-radius: 0;
  background: #ffffff;
  color: #122527;
  font-size: 1.15rem;
}

.primary-action,
.danger-action {
  min-height: 3.35rem;
  padding: 0.55rem 1rem;
  border: 2px solid #005e5a;
  border-radius: 0;
  background: #005e5a;
  color: #ffffff;
  font-weight: 800;
}

.danger-action {
  border-color: #a34036;
  background: #a34036;
  color: #fff;
}

.form-message {
  margin: 1.25rem 0 0;
  padding: 0.75rem;
  border-left: 4px solid #a34036;
  background: #fff0ec;
  color: #122527;
  font-weight: 700;
}

.editor-main {
  display: flex;
  flex-direction: column;
  display: grid;
  gap: 1.5rem;
}

.editor-main > .editor-section,
.editor-main > .replace-section {
  margin-top: 1.5rem;
}

.editor-section,
.replace-section {
  padding: 1.15rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 2px solid #122527;
  background: #ffffff;
}

.section-title h2,
.section-title h3,
.replace-section h2,
.replace-dialog h2 {
  margin: 0.35rem 0 0;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
}

.section-title h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.add-task-form {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, auto) auto;
  align-items: stretch;
  margin-top: 1.25rem;
}

.add-task-form input {
  flex: 1 1 16rem;
}

.editor-list {
  display: block;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.editor-row {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 2px solid #b5c9c7;
}

.editor-row + .editor-row {
  margin-top: 0.75rem;
}

.editor-position {
  color: #52696c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.editor-task-form {
  display: flex;
  flex: 1 1 18rem;
  min-width: 0;
  gap: 0.5rem;
}

.editor-task-form input {
  min-width: 0;
}

.editor-position-rail {
  display: none;
}

.editor-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.editor-task-body {
  min-width: 0;
  flex: 1 1 18rem;
}

.editor-task-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.editor-task-top > * {
  margin-right: 0.75rem;
}

.editor-current-person {
  flex: 0 0 auto;
}

.editor-person-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid #b5c9c7;
}

.editor-person-picker > * {
  margin-right: 0.45rem;
  margin-bottom: 0.45rem;
}

.editor-person-picker-label {
  margin-right: 0.2rem;
  color: #52696c;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.saved-people-section {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 3px solid #122527;
}

.saved-people-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.85rem;
}

.saved-people-list > * {
  margin-right: 0.55rem;
  margin-bottom: 0.55rem;
}

.saved-people-empty {
  margin: 0;
  color: #52696c;
  font-weight: 700;
}

.add-person-form {
  display: flex;
  max-width: 31rem;
  margin-top: 0.85rem;
}

.add-person-form input {
  margin-right: 0.5rem;
}

.editor-move-button,
.editor-delete-button,
.small-action {
  min-height: 2.7rem;
  padding: 0.35rem 0.6rem;
  border: 2px solid #122527;
  border-radius: 0;
  background: transparent;
  color: #122527;
  font-size: 0.9rem;
  font-weight: 800;
}

.editor-move-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.editor-move-button svg {
  display: none;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2.5;
}

.editor-delete-button {
  border-color: #a34036;
  color: #a34036;
}

.editor-move-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.replace-section {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  border-color: #a34036;
}

.replace-section p:not(.tape-label) {
  max-width: 40rem;
  margin: 0.55rem 0 0;
  color: #52696c;
  font-weight: 600;
}

.replace-dialog {
  width: calc(100vw - 2rem);
  max-width: 33rem;
  width: min(33rem, calc(100vw - 2rem));
  padding: 1.25rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 3px solid #122527;
  background: #ffffff;
  color: #122527;
  box-shadow: 10px 10px 0 #005e5a;
}

.replace-dialog::backdrop {
  background: rgba(10, 27, 29, 0.72);
}

.replace-dialog p:not(.tape-label) {
  color: #52696c;
  font-weight: 600;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

@supports (display: grid) {
  .task-mark,
  .task-state,
  .task-working-button {
    margin: 0;
  }

  .editor-main > .editor-section,
  .editor-main > .replace-section,
  .editor-row + .editor-row {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .masthead,
  .editor-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .account-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .list-heading,
  .replace-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .task-item {
    flex-wrap: wrap;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .task-item .task-mark {
    grid-row: 1 / 3;
  }

  .task-working-button {
    grid-column: 2;
    justify-self: start;
    min-width: 8rem;
    flex-direction: row;
  }

  .task-working-label {
    margin-top: 0;
    margin-left: 0.45rem;
  }

  .add-task-form {
    grid-template-columns: 1fr;
  }

  .editor-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    padding: 0;
  }

  .editor-position-rail {
    display: flex;
    width: 3.25rem;
    flex: 0 0 3.25rem;
    flex-direction: column;
    align-items: stretch;
    border-right: 2px solid #005e5a;
    background: #005e5a;
  }

  .editor-position-rail .editor-move-button {
    width: 100%;
    min-height: 2.65rem;
    height: 2.65rem;
    border: 0;
    background: #005e5a;
    color: #ffffff;
  }

  .editor-position-rail .editor-move-button svg {
    display: block;
    width: 1.4rem;
    height: 1.4rem;
  }

  .editor-move-label {
    display: none;
  }

  .editor-row > .editor-position {
    display: none;
  }

  .editor-position-rail .editor-position {
    display: flex;
    width: 100%;
    min-height: 2rem;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #005e5a;
  }

  .editor-task-body {
    min-width: 0;
    padding: 0.75rem;
  }

  .editor-task-top {
    flex-direction: column;
    align-items: stretch;
  }

  .editor-task-top > * {
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .editor-task-body .editor-task-form {
    flex: 0 1 auto;
  }

  .editor-controls {
    align-self: flex-end;
  }

  .editor-current-person {
    align-self: flex-start;
  }

  .editor-person-picker {
    align-items: flex-start;
  }

  .editor-person-picker-label {
    width: 100%;
  }

  .editor-controls .editor-move-button {
    display: none;
  }

  .editor-task-form {
    flex-wrap: wrap;
  }

  .editor-task-form .small-action {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .add-person-form {
    flex-direction: column;
  }

  .add-person-form input {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
