.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.rt-instruction-icon {
  display: none;
}

.rt-inline-instruction-icon-field {
  display: grid;
  grid-template-columns: max-content minmax(12rem, 1fr);
  align-items: center;
  gap: .55rem;
  margin: .7rem 0 .4rem;
  color: #374550;
  font: 800 .7rem/1.2 var(--font-sans, sans-serif);
  text-transform: uppercase;
}

.rt-inline-instruction-icon-preview {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #607d91;
  font-size: 23px;
}

.rt-inline-instruction-icon-trigger {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) max-content;
  align-items: center;
  gap: .65rem;
  padding: .3rem .7rem .3rem .3rem;
  border: 1px solid #b8c3cc;
  border-radius: 6px;
  color: #1d2933;
  background: #fff;
  font: 600 .78rem/1.2 var(--font-sans, sans-serif);
  text-align: left;
  cursor: pointer;
}

.rt-inline-instruction-icon-trigger:focus-visible {
  border-color: #607d91;
  outline: 2px solid rgba(96, 125, 145, .2);
  outline-offset: 1px;
}

.rt-inline-instruction-icon-change {
  color: #476679;
  font-size: .72rem;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.rt-material-symbol-picker {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(13, 20, 25, .72);
  backdrop-filter: blur(5px);
}

.rt-material-symbol-picker-panel {
  width: min(100%, 1080px);
  height: min(88dvh, 780px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #cbd3da;
  border-radius: 10px;
  color: #111820;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .3);
}

.rt-material-symbol-picker-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #dce2e6;
}

.rt-material-symbol-picker-panel > header > div {
  display: grid;
  gap: .2rem;
}

.rt-material-symbol-picker-panel > header strong {
  font: 800 1.05rem/1.2 var(--font-heading, sans-serif);
}

.rt-material-symbol-picker-panel > header span {
  color: #60717d;
  font: 500 .74rem/1.3 var(--font-sans, sans-serif);
}

.rt-material-symbol-picker-close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #111820;
  background: #eef2f4;
  font: 400 1.6rem/1 var(--font-sans, sans-serif);
  cursor: pointer;
}

.rt-material-symbol-categories {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid #dce2e6;
  background: #f4f7f8;
  overflow-x: auto;
  scrollbar-width: thin;
}

.rt-material-symbol-categories button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: .45rem .72rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #344650;
  background: transparent;
  font: 650 .76rem/1.1 var(--font-sans, sans-serif);
  white-space: nowrap;
  cursor: pointer;
}

.rt-material-symbol-categories button:hover,
.rt-material-symbol-categories button:focus-visible {
  border-color: #91a3ad;
  color: #111820;
  background: #fff;
  outline: 0;
}

.rt-material-symbol-categories button.is-active {
  border-color: #111820;
  color: #fff;
  background: #111820;
}

.rt-material-symbol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(42px, 1fr));
  align-content: start;
  gap: .25rem;
  padding: 1rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.rt-material-symbol-option {
  aspect-ratio: 1;
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #111 !important;
  background: #fff !important;
  cursor: pointer;
}

.rt-material-symbol-option .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.rt-material-symbol-option:hover,
.rt-material-symbol-option:focus-visible {
  border-color: #111;
  background: #eef2f4 !important;
  outline: 0;
}

.rt-material-symbol-option.is-selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
  background: #dce7ed !important;
}

.rt-instructions-mobile-controls {
  display: none;
}

@media (max-width: 767px) {
  html.rt-normal-instructions-page,
  html.rt-normal-instructions-page body {
    overflow: hidden !important;
  }

  .rt-instructions-screen {
    box-sizing: border-box !important;
    height: calc(100dvh - var(--rt-header-height, 66px)) !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    scroll-snap-type: none !important;
  }

  .rt-instructions-screen .rt-instructions-heading,
  .rt-instructions-screen .rt-instructions-path,
  .rt-instructions-screen .rt-instructions-steps::before {
    display: none !important;
  }

  .rt-instructions-screen > .rt-instructions-back {
    position: absolute !important;
    z-index: 6;
    top: 1rem;
    left: 1rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    width: auto !important;
    min-width: 0 !important;
    min-height: 42px !important;
    height: auto !important;
    margin: 0 !important;
    padding: .55rem .75rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
    font: 600 .9rem/1.2 "Open Sans", var(--font-sans, sans-serif) !important;
    text-align: left;
  }

  .rt-instructions-screen > .rt-instructions-back:hover,
  .rt-instructions-screen > .rt-instructions-back:focus-visible {
    background: rgba(255, 255, 255, .1) !important;
    outline: 1px solid rgba(255, 255, 255, .5);
    outline-offset: 2px;
  }

  .rt-instructions-screen > .rt-instructions-back::before {
    content: "←";
    margin-right: .45rem;
    font-size: 1.05em;
  }

  .rt-instructions-screen .rt-instructions-steps {
    box-sizing: border-box !important;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .rt-instructions-screen .rt-instructions-steps::-webkit-scrollbar {
    display: none;
  }

  .rt-instructions-screen .rt-instruction-card,
  .rt-instructions-screen .rt-instruction-card:nth-child(n) {
    box-sizing: border-box !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    padding: 2rem 1.6rem 8.25rem !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    opacity: .32;
    transform: translateX(1.4rem) scale(.985);
    transition:
      opacity .42s ease,
      transform .58s cubic-bezier(.22, 1, .36, 1);
  }

  .rt-instructions-screen .rt-instruction-card.is-current {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .rt-instructions-screen .rt-instruction-card > div {
    width: min(100%, 34rem) !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .rt-instructions-screen .rt-instruction-icon {
    display: block;
    width: max-content;
    margin: 0 auto 1.35rem;
    color: #fff;
    font-size: clamp(4rem, 18vw, 5.4rem);
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
  }

  .rt-instructions-screen .rt-instruction-number {
    display: inline !important;
    margin-right: .3rem !important;
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }

  .rt-instructions-screen .rt-instruction-text {
    display: inline !important;
    font-size: clamp(1.25rem, 5.8vw, 1.8rem) !important;
    line-height: 1.22 !important;
  }

  .rt-instructions-mobile-controls {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: max(1rem, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: .8rem;
    width: min(calc(100% - 2rem), 32rem);
    margin: auto;
  }

  .rt-instructions-mobile-prev,
  .rt-instructions-mobile-next {
    display: grid;
    place-items: center;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    font: 600 1.45rem/1 "Open Sans", sans-serif;
    backdrop-filter: blur(8px);
  }

  .rt-instructions-mobile-progress {
    display: flex;
    justify-content: center;
    gap: .45rem;
  }

  .rt-instructions-mobile-progress span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .42);
    transition: width .3s ease, background-color .3s ease;
  }

  .rt-instructions-mobile-progress span.is-current {
    width: 24px;
    background: #fff;
  }

  .rt-instructions-mobile-prev[hidden] {
    visibility: hidden;
    display: grid;
  }

  .rt-instructions-mobile-next[hidden] {
    visibility: hidden;
    display: grid;
  }

  @media (prefers-reduced-motion: reduce) {
    .rt-instructions-screen .rt-instructions-steps {
      scroll-behavior: auto;
    }

    .rt-instructions-screen .rt-instruction-card {
      transition: none;
    }
  }
}

@media (max-width: 700px) {
  .rt-inline-instruction-icon-field {
    grid-template-columns: 1fr;
  }

  .rt-inline-instruction-icon-field > span:first-child {
    grid-column: auto;
  }

  .rt-material-symbol-picker {
    padding: 0;
  }

  .rt-material-symbol-picker-panel {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .rt-material-symbol-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .rt-material-symbol-categories {
    padding-inline: .75rem;
  }
}
