.howto-tips {
  --howto-screen-bg: transparent;
  --howto-group-bg: color-mix(in srgb, var(--card, #fff) 98%, #eef1f5 2%);
  --howto-row-separator: rgba(60, 66, 87, 0.12);
  --howto-primary-text: color-mix(in srgb, var(--text, #0f172a) 96%, #000 4%);
  --howto-secondary-text: color-mix(in srgb, var(--sub, #667085) 92%, #4b5563 8%);
  --howto-chevron: color-mix(in srgb, var(--sub, #98a2b3) 88%, #c3c8d1 12%);
  --howto-preview-bg: color-mix(in srgb, var(--card, #fff) 88%, #edf1f5 12%);
}

.howto-section-header {
  padding: 24px 4px 0px;
}

.howto-section-header h3 {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  line-height: 1.04;
  color: var(--howto-primary-text);
}

.howto-section-header p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--howto-secondary-text);
}

.howto-grouped-list {
  border-radius: 28px;
  background: var(--howto-group-bg);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.howto-grouped-list.is-large {
  border-radius: 32px;
}

.howto-row {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.howto-grouped-list > .howto-row + .howto-row {
  border-top: 1px solid var(--howto-row-separator);
}

.howto-row--compact {
  min-height: 76px;
  padding: 14px 16px;
}

.howto-row--large {
  min-height: 120px;
  padding: 16px;
  align-items: stretch;
}

.howto-row__leading,
.howto-row__trailing {
  flex: 0 0 auto;
}

.howto-row__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--howto-preview-bg) 92%, white 8%);
}

.howto-row__content {
  min-width: 0;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.howto-row__content--large {
  justify-content: center;
  gap: 8px;
}

.howto-row__title {
  font-weight: 700;
  color: var(--howto-primary-text);
  line-height: 1.24;
}

.howto-row__title--large {
  font-size: clamp(1.15rem, 3.6vw, 1.55rem);
}

.howto-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.howto-row__meta--stacked {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
}

.howto-row__subtitle {
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--howto-secondary-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.howto-row__subtitle--large {
  font-size: 1rem;
  line-height: 1.4;
  -webkit-line-clamp: 2;
}

.howto-row__eyebrow {
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--howto-secondary-text);
}

.howto-row__trailing {
  color: var(--howto-chevron);
  align-self: center;
}

.howto-family-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--howto-secondary-text);
}

.howto-family-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.howto-row__preview {
  width: 108px;
  min-width: 108px;
  height: 108px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--howto-preview-bg);
  border: 1px solid color-mix(in srgb, var(--howto-row-separator) 88%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.howto-row__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.howto-row__preview-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(240,243,247,0.95));
}

.howto-row__preview-icon,
.howto-row__preview-icon > svg {
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
}


.howto-row__preview--accent .howto-row__preview-icon svg path {
  fill: #7f8ea3;
  fill: var(--accent-strong, var(--accent, #7f8ea3));
}

.theme-dark .howto-tips,
[data-theme="dark"] .howto-tips {
  --howto-group-bg: color-mix(in srgb, var(--card, #171a20) 96%, #242938 4%);
  --howto-row-separator: rgba(255, 255, 255, 0.08);
  --howto-primary-text: rgba(255, 255, 255, 0.96);
  --howto-secondary-text: rgba(255, 255, 255, 0.66);
  --howto-chevron: rgba(255, 255, 255, 0.4);
  --howto-preview-bg: rgba(255, 255, 255, 0.06);
}

.theme-dark .howto-row__preview-fallback,
[data-theme="dark"] .howto-row__preview-fallback {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(27, 34, 46, 0.94), rgba(17, 23, 33, 0.98));
}


.howto-tip-slides {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: linear-gradient(180deg, rgba(248, 249, 252, 0.98), rgba(241, 243, 247, 0.98));
  display: flex;
  flex-direction: column;
  padding: 0;
}

.howto-tip-slides__pager {
  flex: 1 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.howto-tip-slides__pager::-webkit-scrollbar {
  display: none;
}

.howto-tip-slides__page {
  scroll-snap-align: start;
  min-width: 0;
  
  padding: calc(56px + 4px) 16px
    calc(84px + env(safe-area-inset-bottom, 0px));
  padding: var(--app-floating-chrome-content-top, calc(var(--app-floating-topbar-h, var(--topbar-h, 56px)) + 4px)) 16px
    calc(84px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.howto-tip-slides__page-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 0 4px;
}

.howto-tip-slides__close-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.72);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 140ms ease;
}

.howto-tip-slides__close-btn:hover {
  background: rgba(17, 24, 39, 0.14);
}

.howto-tip-slides__close-btn:active {
  background: rgba(17, 24, 39, 0.20);
}

.theme-dark .howto-tip-slides__close-btn,
[data-theme="dark"] .howto-tip-slides__close-btn {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.72);
}

.theme-dark .howto-tip-slides__close-btn:hover,
[data-theme="dark"] .howto-tip-slides__close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}



.howto-tip-slides__pagination {
  position: absolute;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(227, 232, 240, 0.72);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.howto-tip-slides__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(142, 145, 153, 0.56);
  padding: 0;
}

.howto-tip-slides__dot.is-active {
  background: rgba(17, 24, 39, 0.96);
}

.howto-tip-slides__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  
  padding: 12px 0;
  
  background: none;
}

.howto-tip-slides__navbtn-primary,
.howto-tip-slides__navbtn-secondary {
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 0 16px;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.howto-tip-slides__navbtn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--howto-secondary-text);
}

.howto-tip-slides__navbtn-primary {
  margin-left: auto;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.16);
}

.howto-tip-slides__navbtn-primary:disabled,
.howto-tip-slides__navbtn-secondary:disabled {
  opacity: 0.38;
}

@media (hover: hover) {
  .howto-tip-slides__navbtn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.92);
  }

  .howto-tip-slides__navbtn-primary:hover:not(:disabled) {
    background: rgba(17, 24, 39, 1);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.24);
  }
}

.theme-dark .howto-tip-slides,
[data-theme="dark"] .howto-tip-slides {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(18, 18, 18, 0.98));
}

.theme-dark .howto-tip-slides__navbtn,
[data-theme="dark"] .howto-tip-slides__navbtn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.theme-dark .howto-tip-slides__pagination,
[data-theme="dark"] .howto-tip-slides__pagination {
  background: rgba(255, 255, 255, 0.08);
}

.theme-dark .howto-tip-slides__navbtn-secondary,
[data-theme="dark"] .howto-tip-slides__navbtn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.theme-dark .howto-tip-slides__navbtn-primary,
[data-theme="dark"] .howto-tip-slides__navbtn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(17, 24, 39, 0.96);
}

@media (hover: hover) {
  .theme-dark .howto-tip-slides__navbtn-secondary:hover:not(:disabled),
  [data-theme="dark"] .howto-tip-slides__navbtn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.16);
  }

  .theme-dark .howto-tip-slides__navbtn-primary:hover:not(:disabled),
  [data-theme="dark"] .howto-tip-slides__navbtn-primary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
  }
}

.theme-dark .howto-tip-slides__dot,
[data-theme="dark"] .howto-tip-slides__dot {
  background: rgba(255, 255, 255, 0.34);
}

.theme-dark .howto-tip-slides__dot.is-active,
[data-theme="dark"] .howto-tip-slides__dot.is-active {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 720px) {
  .howto-row--large {
    min-height: 108px;
    padding: 14px;
    gap: 12px;
  }

  .howto-row__preview {
    width: 86px;
    min-width: 86px;
    height: 86px;
    border-radius: 20px;
  }

  .howto-row__preview-icon,
  .howto-row__preview-icon > svg {
    width: clamp(52px, 12vw, 64px);
    height: clamp(52px, 12vw, 64px);
  }

  
  .howto-tip-slides__page {
    padding-left: 12px;
    padding-right: 12px;
  }
}


.howto-thumb-img {
  display: block;
  border-radius: inherit;
  overflow: hidden;
}

.howto-thumb-img__skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, #111 6%, transparent) 0%,
    color-mix(in srgb, #111 10%, transparent) 50%,
    color-mix(in srgb, #111 6%, transparent) 100%
  );
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--fg, #111) 6%, transparent) 0%,
    color-mix(in srgb, var(--fg, #111) 10%, transparent) 50%,
    color-mix(in srgb, var(--fg, #111) 6%, transparent) 100%
  );
  background-size: 200% 100%;
  animation: howto-thumb-skeleton-shimmer 1.2s ease-in-out infinite;
}

@keyframes howto-thumb-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .howto-thumb-img__skeleton {
    animation: none;
  }
}



.search-field-center-placeholder {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.search-field-center-placeholder > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




.search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.12);
  --search-field-surface-focus: rgba(118, 118, 128, 0.18);
  --search-field-action-hover: rgba(60, 60, 67, 0.09);
  --search-field-action-active: rgba(60, 60, 67, 0.14);
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 56px;
  box-sizing: border-box;
  padding: 0 6px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--search-field-surface);
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  backdrop-filter: blur(16px) saturate(1.12);
  transition: background 160ms ease;
}

.search-field--prominent:focus-within {
  background: var(--search-field-surface-focus);
}

.search-field-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-inline-end: 10px;
  color: rgba(60, 60, 67, 0.66);
  color: var(--sub, rgba(60, 60, 67, 0.66));
  pointer-events: none;
}

.search-field-leading > :is(.mdi, .dp-icon) {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

.search-field-control-slot {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
}

.search-field--prominent .search-field-control {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: #1c1c1e;
  color: var(--fg, #1c1c1e);
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-align: start;
  caret-color: #dcaa2e;
  caret-color: var(--accent-strong, var(--accent, #dcaa2e));
  -webkit-appearance: none;
  appearance: none;
}

.search-field--prominent .search-field-control::placeholder {
  color: transparent;
  opacity: 0;
}

.search-field-prominent-placeholder {
  position: absolute;
  inset-inline: 0;
  min-width: 0;
  overflow: hidden;
  color: rgba(60, 60, 67, 0.64);
  color: var(--sub, rgba(60, 60, 67, 0.64));
  font: 500 16px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  pointer-events: none;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-field-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 2px;
  margin-inline-start: 6px;
}

.search-field--prominent .search-field-actions > button,
.search-field--prominent .search-field-clear {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  color: rgba(60, 60, 67, 0.72);
  color: var(--sub, rgba(60, 60, 67, 0.72));
  cursor: pointer;
  touch-action: manipulation;
  transition: color 150ms ease, background 150ms ease, transform 120ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .search-field--prominent .search-field-actions > button:hover,
  .search-field--prominent .search-field-clear:hover {
    background: var(--search-field-action-hover);
    color: #1c1c1e;
    color: var(--fg, #1c1c1e);
  }
}

.search-field--prominent .search-field-actions > button:active,
.search-field--prominent .search-field-clear:active {
  background: var(--search-field-action-active);
  transform: scale(0.94);
}

.search-field--prominent .search-field-actions > button:focus-visible,
.search-field--prominent .search-field-clear:focus-visible {
  outline: 2px solid #dcaa2e;
  outline: 2px solid var(--accent-strong, var(--accent, #dcaa2e));
  outline-offset: -2px;
}

.search-field--prominent .search-field-actions > button.is-active {
  background: rgba(220, 170, 46, 0.18);
  background: var(--accent-tint-active, rgba(220, 170, 46, 0.18));
  color: #1f2328;
  color: var(--fg, #1f2328);
}

.search-field--prominent .search-field-actions > .lab-search-reset {
  width: auto;
  min-width: 44px;
  flex-basis: auto;
  padding-inline: 12px;
  font: 600 14px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.theme-dark .search-field--prominent,
[data-theme="dark"] .search-field--prominent {
  --search-field-surface: rgba(118, 118, 128, 0.26);
  --search-field-surface-focus: rgba(118, 118, 128, 0.34);
  --search-field-action-hover: rgba(255, 255, 255, 0.1);
  --search-field-action-active: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.theme-dark .search-field-leading,
.theme-dark .search-field-prominent-placeholder,
.theme-dark .search-field--prominent .search-field-actions > button,
.theme-dark .search-field--prominent .search-field-clear,
[data-theme="dark"] .search-field-leading,
[data-theme="dark"] .search-field-prominent-placeholder,
[data-theme="dark"] .search-field--prominent .search-field-actions > button,
[data-theme="dark"] .search-field--prominent .search-field-clear {
  color: rgba(235, 235, 245, 0.72);
}

.theme-dark .search-field--prominent .search-field-control,
[data-theme="dark"] .search-field--prominent .search-field-control {
  
  background: transparent;
  color: #fff;
  color: var(--fg, #fff);
}

@media (prefers-reduced-motion: reduce) {
  .search-field--prominent,
  .search-field--prominent .search-field-actions > button,
  .search-field--prominent .search-field-clear {
    transition: none;
  }
}

.lab-search-row--native-toolbar .lab-search-bar:empty,
.lab-search-row--native-toolbar:has(> .lab-search-bar:only-child:empty) {
  display: none;
}
.lab-search-row--native-toolbar {
  justify-content: flex-end;
}






@media (max-width: 835px ) {
.howto-content.photos .lab-wrap .gp-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr))!important;
    gap: clamp(12px, 4vw, 20px);
}
}

.howto-content.photos .gp-grid--expandable {
    padding: 15px 15px 15px;
}

.howto-content.photos .detected-line.tone-light.detected-line-row,
.howto-content.photos .detected-line.tone-dark.detected-line-row {
  justify-content: center;
}

.howto-content.photos .gp-card{
    cursor: pointer;
    cursor: zoom-in;
  border: clamp(10px, 1cqw, 16px) solid #f4f4f4c4;
  background:#f4f4f4c4;
  border-radius:0px;
  box-shadow:
  0 3px 6px rgba(0,0,0,.26);
    overflow: visible;
    overflow: initial;
    transform: scale(1);
transition:
  transform 300ms cubic-bezier(.19,1,.22,1),
  box-shadow 150ms ease!important;
}

.theme-dark .howto-content.photos .gp-card {
    border: clamp(10px, 1cqw, 16px) solid #f4f4f4ee;
    background: #f4f4f4ee;
}

.howto-content.photos .gp-card:hover{
  box-shadow:
  0 3px 6px rgba(0,0,0,.5);
    transform: rotate(0deg) scale(1.051);

    

}

.howto-content.photos .gp-card:hover img {
  transform: scale(1);
  
  filter: initial;
}

.howto-content.photos .gp-grid > article:hover,
.howto-content.photos .gp-grid--expandable > article:hover {
  cursor: pointer;
}



.howto-content.photos .img-wrapper {
    border-radius: 0px!important;
}
.howto-content.photos .img-wrapper {
    position: relative;
}
.howto-content.photos .gp-grid.gp-grid--expandable > article > div:nth-child(2) {
    display: none;
}


.theme-dark .howto-content.photos .gp-badge--top, .howto-content.photos .gp-badge--top {
    position: relative;
    top: 0px;
    padding: 4px 0px;
    background: #f4f4f4ee;
}

.theme-dark .howto-content.photos .gp-badge {
    text-shadow: inherit;
    color: black;
}

.theme-dark .howto-content.photos .detected-line.tone-light {
    color:black
}



.howto-content.photos .gp-badge  {
    bottom: 1em;
    
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 2;
    
    left:0;
    right: auto;
    width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    font-size: 9cqw;
    
    
    height: fit-content;
}

.howto-content.photos .detected-line.tone-dark {
    color: black;
}
.howto-content.photos .detected-text {

line-height: inherit;
letter-spacing: 0.03em;
font-weight: 500;
  display: block;
  
}

.howto-content.photos .img-main.is-loaded {
   
    scale: 1.2;
    
}




.gp-warning .dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  margin:0 6px;
  
  box-shadow:0 0 0 2px #fff;
}

.gp-warning .dot-expected{
  background:#009d08;
}

.gp-warning .dot-unexpected{
  background:#b30000;
}



.gp-card.is-expected:not(.is-unexpected) .img-wrapper::after{
  content:"";
  position:absolute;
  top:10px;
  right:10px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#009d08;
    box-shadow:0 0 0 2px #fff;

  z-index:3;
}


.gp-card.is-unexpected:not(.is-expected) .img-wrapper::after{
  content:"";
  position:absolute;
  top:10px;
  right:10px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#b30000;
    box-shadow:0 0 0 2px #fff;

  z-index:3;
}


.gp-card.is-expected.is-unexpected .img-wrapper::after{
  content:"";
  position:absolute;
  top:10px;
  right:10px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#b30000; 
    box-shadow:0 0 0 2px #fff;

  z-index:3;
}

.gp-card.is-expected.is-unexpected .img-wrapper::before{
  content:"";
  position:absolute;
  top:10px;
  right:26px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#009d08; 
    box-shadow:0 0 0 2px #fff;

  z-index:3;
}




.howto-content.photos .gp-card{
  --tilt: -1.2deg;
  transform: rotate(var(--tilt)) scale(1);
}

.howto-content.photos .gp-card:nth-child(6n+1){ --tilt: -1.6deg; }
.howto-content.photos .gp-card:nth-child(6n+2){ --tilt:  0.8deg; }
.howto-content.photos .gp-card:nth-child(6n+3){ --tilt: -0.4deg; }
.howto-content.photos .gp-card:nth-child(6n+4){ --tilt:  1.4deg; }
.howto-content.photos .gp-card:nth-child(6n+5){ --tilt: -0.9deg; }
.howto-content.photos .gp-card:nth-child(6n){   --tilt:  0.3deg; }




.lab-search-input::-webkit-search-cancel-button {

  cursor: pointer;

}






.fiters-title {
        color: var(--fx-chip-fg);
            font-size: 0.82rem;
    align-content: center;

    line-height: 1;
    font-weight: 500;

}


.intro-gallery-text {
        color: var(--muted);
            font-size: 0.7rem;
    text-align: center;
    text-wrap: balance;
    line-height: 1;
    font-weight: 300;
    margin-top: 1.95em;
    padding-inline: 1.5em;
}

.lab-no-results {
    text-align: center;
    margin-top: 3em;
            color: var(--muted);
}



.chip-sep{
  width:1px;
  height:28px;
  background:rgba(0,0,0,.2);
  background:var(--border,rgba(0,0,0,.2));
  margin:0 6px;
}

.howto-content.photos .filter-chips{
    justify-content: center;
  display:flex;
  flex-wrap:wrap;
  gap: .5em;
  margin:12px 1em 6px;
}

.howto-content.photos .chips-confirm {
    display: flex;
    gap: .5em
}

@media (max-width: 477px) and (min-width:350px) {
.howto-content.photos .filter-chips.groups {
padding-inline: 13cqw;
}

}
@media (max-width: 477px) {


.howto-content.photos .chip-sep {
    display: none;
}
.howto-content.photos .chips-confirm {
    margin-top: .2em;
    border-top: 1px solid rgba(0,0,0,.2);
    border-top: 1px solid var(--border,rgba(0,0,0,.2));
    padding-top:.7em;
    gap:.5em;
    width: auto;
    display: flex;
}
}


.howto-content.photos .chip{
    cursor: pointer!important;
    display: inline-flex;
    align-items: center;
    
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 9px;
    padding: 6px 10px;
    
    white-space: nowrap;
    line-height: 1;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--fx-chip-fg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    flex-shrink: 0;
}


.howto-content.photos .filter-chips .chip{
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


@media (hover:hover){
 .howto-content.photos .filter-chips .chip:hover{
        cursor: pointer;

    background: var(--accent-tint-hover);
    
    border-color: var(--accent-ring);
    box-shadow:
      0 0 6px
      color-mix(in srgb,var(--accent-ring) 50%, transparent);
  }
}

.howto-content.photos .filter-chips .chip.is-on{
        cursor: pointer;

    background: var(--accent-tint-hover);
    
    border-color: var(--accent-ring);
    box-shadow:
      0 0 6px
      color-mix(in srgb,var(--accent-ring) 50%, transparent);
    }







.howto-content.photos .filter-chips.tags {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.19,1,.22,1);
}

.howto-content.photos .filter-chips.tags.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.howto-content.photos .filter-chips.tags .chip {
  opacity: 0;
  transform: translateY(6px) scale(.96);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.19,1,.22,1);
}

.howto-content.photos .filter-chips.tags.is-open .chip {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.results-gallery-host:is(
  .results-gallery-host--testing,
  .results-gallery-host--reagents,
  .results-gallery-host--tlc
) {
  --results-gallery-separator: color-mix(in srgb, var(--fg, #111) 11%, transparent);
  --results-gallery-fill: color-mix(in srgb, var(--fg, #111) 5%, transparent);
  --results-gallery-hover: color-mix(in srgb, var(--fg, #111) 8%, transparent);
  --results-gallery-selected: color-mix(in srgb, var(--accent, #d19a2a) 12%, transparent);
}

.theme-dark .results-gallery-host:is(
  .results-gallery-host--testing,
  .results-gallery-host--reagents,
  .results-gallery-host--tlc
) {
  --results-gallery-separator: rgba(255, 255, 255, .12);
  --results-gallery-fill: rgba(255, 255, 255, .07);
  --results-gallery-hover: rgba(255, 255, 255, .1);
  --results-gallery-selected: color-mix(in srgb, var(--accent, #d19a2a) 16%, transparent);
}

.howto-content.photos .results-gallery-host .filter-chips {
  gap: 8px;
  margin-block: 10px 6px;
}

.howto-content.photos .results-gallery-host .filter-chips .chip {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--results-gallery-separator);
  border-radius: 999px;
  background: var(--results-gallery-fill);
  color: #111;
  color: var(--fg, #111);
  box-shadow: none;
  transition: background-color 140ms ease, border-color 140ms ease, opacity 100ms ease;
}

@media (hover: hover) {
  .howto-content.photos .results-gallery-host .filter-chips .chip:hover {
    border-color: color-mix(in srgb, #111 18%, transparent);
    border-color: color-mix(in srgb, var(--fg, #111) 18%, transparent);
    background: var(--results-gallery-hover);
    box-shadow: none;
  }
}

.howto-content.photos .results-gallery-host .filter-chips .chip.is-on {
  border-color: color-mix(in srgb, #d19a2a 48%, var(--results-gallery-separator));
  border-color: color-mix(in srgb, var(--accent, #d19a2a) 48%, var(--results-gallery-separator));
  background: var(--results-gallery-selected);
  color: #111;
  color: var(--fg, #111);
  box-shadow: none;
}

.howto-content.photos .results-gallery-host .filter-chips .chip:active {
  opacity: .72;
}

.howto-content.photos .results-gallery-host .filter-chips .chip:focus-visible {
  outline: 2px solid #d19a2a;
  outline: 2px solid var(--accent, #d19a2a);
  outline-offset: 2px;
}

.howto-content.photos .results-gallery-host .chip-sep {
  background: var(--results-gallery-separator);
}

.howto-content.photos .results-gallery-host .lab-search-bar {
  min-height: 44px;
  padding: 5px 12px;
  border: 1px solid var(--results-gallery-separator);
  border-radius: 14px;
  background: color-mix(in srgb, #fff 92%, transparent);
  background: color-mix(in srgb, var(--card, #fff) 92%, transparent);
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.theme-dark .howto-content.photos .results-gallery-host .lab-search-bar {
  background: rgba(44, 44, 46, .82);
}


.howto-content.photos .results-gallery-host .lab-search-bar.lab-search-bar--prominent,
.theme-dark .howto-content.photos .results-gallery-host .lab-search-bar.lab-search-bar--prominent {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.howto-content.photos .results-gallery-host .lab-search-input {
  color: #111;
  color: var(--fg, #111);
  font-size: 1rem;
  font-weight: 400;
}

.howto-content.photos .results-gallery-host .lab-search-center-placeholder {
  color: #666;
  color: var(--sub, var(--muted, #666));
  font-size: 1rem;
  opacity: 1;
}

.howto-content.photos .results-gallery-host .lab-search-bar:focus-within {
  border-color: color-mix(in srgb, #d19a2a 58%, var(--results-gallery-separator));
  border-color: color-mix(in srgb, var(--accent, #d19a2a) 58%, var(--results-gallery-separator));
  box-shadow: 0 0 0 3px color-mix(in srgb, #d19a2a 12%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent, #d19a2a) 12%, transparent);
}

.howto-content.photos .results-gallery-host :is(.lab-search-clear, .lab-search-reset, .lab-search-toggle) {
  color: #666;
  color: var(--sub, var(--muted, #666));
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .howto-content.photos .results-gallery-host .filter-chips .chip {
    transform: none !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 560px), (pointer: coarse) and (max-width: 925px) {
  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content {
    box-sizing: border-box;
    gap: 0;
    padding: 8px 16px 14px !important;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content > * {
    flex: none;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .filter-chips {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 8px 0;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .filter-chips.groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 8px;
    gap: 8px;
    padding-inline: 0;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .fiters-title {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 2px 2px;
    color: #8e8e93;
    color: var(--sub, #8e8e93);
    font-size: 13px;
    line-height: 18px;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .chips-confirm {
    display: contents;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .chip-sep {
    grid-column: 1 / -1;
    width: 100%;
    height: 0.5px;
    margin: 2px 0;
    background: var(--results-gallery-separator);
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .filter-chips .chip {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 20px;
  }

  .howto-content.photos .results-gallery-host--testing .results-gallery-filter-sheet-content .filter-chips.tags.is-open {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 0.5px solid var(--results-gallery-separator);
  }
}





.hptlc-content {
  
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  
  
}

.theme-dark .em-grid {
  opacity: .8!important;
}


@media (pointer: coarse) {
.hptlc-content:has(.tlc-two-col.active) {
  touch-action: none;
  overscroll-behavior: none;
  overflow-y: hidden;
}}




.tlctool-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: clamp(12px, 2vw, 18px);
  gap: clamp(12px, 2vw, 18px);
  max-width: 1280px;
  margin: 0 auto;
}

.tlctool-card {
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border: 1px solid var(--border, rgba(0,0,0,0.1));
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  background: rgba(0,0,0,0.02);
  background: var(--bg-card, rgba(0,0,0,0.02));
width: 100%;
}

@media (min-width:1400px){
  .tlctool-card {
    width: -webkit-max-content;
  }
}

.tlctool-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--em-stroke);
}

.tlctool-headerTitle {
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 18px);
}

.tlctool-body {
  padding: 12px 14px 14px;
}

.tlctool-formGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 10px;
  gap: 10px;
  margin-top: 6px;
}

.tlctool-select,
.tlctool-input {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  border: 1px solid var(--border, rgba(0,0,0,0.2));
  font-size: 14px;
}


.tlc-root {
  --bg-card: rgba(0, 0, 0, 0.03);
  --text: #0f172a;
  --muted: rgba(0, 0, 0, 0.6);
  --border: rgba(0, 0, 0, 0.12);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.theme-dark .tlc-root {
  --bg-card: rgba(255, 255, 255, 0.05);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.15);
}


.tlc-header {
  display: flex;
  border: 1px solid var(--em-stroke);
  border-radius: 10px;
  background: var(--bg-card);
  overflow: hidden;
}

.tlc-tab {
  flex: 1 1;
  padding: 10px;
  font-size: 13px;
  border: none;
  background: transparent;
  color: var(--em-title);
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.tlc-tab:nth-child(2) {
  border-left: 1px solid var(--em-stroke);
  border-right: 1px solid var(--em-stroke);
}
.tlc-tab:hover {
  background: rgba(0, 0, 0, 0.04);
}
.tlc-tab.active {
  background: rgba(0, 0, 0, 0.08);
  font-weight: 600;
}
.theme-dark .tlc-tab {
  color: rgba(255, 255, 255, 0.68);
}
.theme-dark .tlc-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark .tlc-tab.active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  color: #111827;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 1px 6px rgba(0, 0, 0, 0.18);
  text-shadow: none;
}


.tlc-card {
  border: 1px solid var(--em-stroke);
  border-radius: 12px;
  padding: 12px;
  background: var(--bg-card);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  color: var(--em-title);
}
.tlc-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.tlc-lane-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.tlc-empty {
  font-size: 12px;
  color: var(--em-muted);
}




.tlc-card.legacy-calc input {
  width: 80px;
}

@media (max-width: 1000px) {
.tlc-card.legacy-calc table tbody td select {
  max-width: 90px;
}
}
@media (max-width: 1100px) {

.tlc-card.legacy-calc input{
width: 40px;
}
}


.tlc-card.legacy-calc table tbody td select {
  border: none;
}

.tlc-card.legacy-calc table:first-of-type tbody td {
  padding-top: 20px;
  padding-bottom: 10px; 
}


.tlc-card.legacy-calc {
  margin-bottom: 2em;
}

.tlc-card.legacy-calc input, .tlc-card.legacy-calc select {
  text-align: center;
}

@media (max-width: 640px) {
  .tlc-legacy-calc-slot {
    padding: 8px;
  }

  .tlc-card.legacy-calc {
    padding: 10px;
  }

  .legacy-calc-fields,
  .legacy-calc-fields tbody,
  .legacy-calc-fields tr {
    display: block;
  }

  .legacy-calc-fields thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .legacy-calc-fields tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px 8px;
    gap: 10px 8px;
    padding-top: 8px;
    border-top: 1px solid var(--em-stroke);
  }

  .legacy-calc-fields tbody td {
    display: flex;
    min-width: 0;
    padding: 0;
    border: 0;
    flex-direction: column;
    gap: 4px;
  }

  .legacy-calc-fields tbody td::before {
    content: attr(data-label);
    min-height: 2.2em;
    color: var(--em-muted);
    font-size: 10px;
    line-height: 1.1;
  }

  .tlc-card.legacy-calc .legacy-calc-fields input,
  .tlc-card.legacy-calc .legacy-calc-fields select {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 8px 6px;
    box-sizing: border-box;
    border: 1px solid var(--em-stroke);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--em-title);
    font-size: 16px;
    text-overflow: ellipsis;
  }

  .legacy-calc-fields .legacy-calc-purity {
    min-height: 62px;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
  }

  .legacy-calc-fields .legacy-calc-purity::before {
    align-self: stretch;
  }

  .legacy-calc-matches {
    table-layout: fixed;
  }

  .legacy-calc-matches th,
  .legacy-calc-matches td {
    padding-inline: 4px;
    overflow-wrap: anywhere;
  }
}


.tlc-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.tlc-results-table {
  table-layout: fixed;
}
.tlc-table th,
.tlc-table td {
  padding: 6px 8px;
  text-align: center;
  border-top: 1px solid var(--em-stroke);
  font-size: 13px;
  white-space: normal;
  
}

.tlc-table th:nth-child(1),
.tlc-table td:nth-child(n) {
  
  text-align: center;
}

.tlc-table td > div {
  text-align: left;
}

.tlc-table th.fit,
.tlc-table td.fit {
  width: 1%;
  white-space: nowrap;
}

@media (max-width: 490px){
  .hptlc-content table > tbody > tr > td:nth-child(5) > span, .hptlc-content  table > thead > tr > th, .tlc-table td > div{
    font-size: 10px!important;
  }
  .tlc-lane-title {
    font-size: 12px;
  }
  
}



.tlc-select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
  color: inherit;
  box-sizing: border-box;
  text-overflow: ellipsis;
}

.theme-dark .tlc-select {
  border: 1px solid var(--gt-fg-muted);
  border-radius: 20px
}


.tlc-detect {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  transition: transform 0.15s ease;
}
.tlc-detect:hover {
  transform: scale(1.15);
}


@media (max-width: 640px) {
  .tlc-results-table,
  .tlc-results-table tbody {
    display: block;
  }

  .tlc-results-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .tlc-results-table .tlc-result-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 8px 6px;
    gap: 8px 6px;
    padding: 8px 0;
    border-top: 1px solid var(--em-stroke);
  }

  .tlc-results-table .tlc-result-row > td {
    min-width: 0;
    padding: 0;
    border-top: 0;
    font-size: 12px;
    line-height: 1.25;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(1) {
    grid-column: 1 / span 2;
    align-self: center;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(2) {
    grid-column: 3 / -1;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(3) {
    grid-column: 1 / span 3;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(4) {
    grid-column: 4 / span 3;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(5) {
    grid-column: 7 / span 3;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(6) {
    grid-column: 10 / span 3;
  }

  .tlc-results-table .tlc-result-row > td:nth-child(n + 3)::before {
    content: attr(data-label);
    display: block;
    min-height: 2.2em;
    margin-bottom: 3px;
    color: var(--em-muted);
    font-size: 9px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .tlc-results-table .tlc-result-note-row {
    display: block;
  }

  .tlc-results-table .tlc-result-note-row > td {
    display: block;
    width: auto;
  }

  .tlc-select {
    font-size: 12px;
    min-height: 34px;
    padding-inline: 8px;
  }
  .tlc-tab {
    font-size: 12px;
    padding: 8px;
  }
}







.tlc-live-rectifier:not(:has(.tlc-two-col))
  .hptlc-header > div:last-child > .tlc-action-button {
  display: flex !important;
}



@media (max-width: 989px) {
  .hptlc-header .tlc-action-button[title]:not([title="Show left column"]) { 
    display: none !important;
  }
}

@media (min-width:990px){
.tlc-live-rectifier:not(:has(.tlc-two-col))
  .hptlc-header .tlc-action-button {
  display: none !important;
}}

.theme-dark .hptlc-header .tlc-action-button {
  background: var(--border)!important;
  color: var(--em-muted)!important;
  border:1px solid rgba(255, 255, 255, 0.15)!important;
}

.tlc-action-button:hover {
  scale: 1.051;
}

.hptlc-header {
  padding: .5em 1.25em 0em;
}


.tlc-canvas-title{
  position:absolute;
  top:10px;
  left:14px;
  z-index:6;
  padding:6px 10px;
  font-size:13px;
  font-weight:600;
  border-radius:10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0,0,0,.45);
  color:#fff;
  pointer-events:none;
}

.tlc-canvas-title--right{
    top: 15px;
  left:14px;
}

.tlc-canvas-title--left{
  top: .9em;
  left:3.5em;
}


.tlc-right-canvas {
  position: relative;
  border-radius: 20px;
  aspect-ratio: 1/2;
  
  min-block-size: 400px;
  overflow: hidden;
  box-shadow: rgba(14, 24, 44, 0.15) 0px 6px 18px, rgba(255, 255, 255, 0.3) 0px 1px 0px inset;
  
  border-radius: 20px;
}

@media (min-width: 768px) {
.tlc-live-rectifier:has(.tlc-left)  .tlc-right-canvas {
    max-block-size: calc(80dvh - 100px);
  }
}



.tlc-eye-toggle--src {
  position: absolute;
  z-index: 999;
  color: white;
  border: none;
  top: 15px;
  left: 10px;
  cursor: pointer;
}

.tlc-live-rectifier:has(.tlc-left)
  .tlc-action-button:has(.mdi.mdi-eye-off) {
  display: none!important;
}




.tlc-right-top-actions .tlc-action-button{
  background: rgba(0,0,0,.45) !important;
  color: #fff !important;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;

  box-shadow:
    0 4px 12px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}


.tlc-right-top-actions .tlc-action-button:hover{
  background: rgba(0,0,0,.55) !important;
}


.tlc-right-top-actions .tlc-action-button:active{
  background: rgba(0,0,0,.65) !important;
  box-shadow:
    0 2px 6px rgba(0,0,0,.45),
    inset 0 2px 4px rgba(0,0,0,.35) !important;
}



@media (orientation: landscape) and (pointer: coarse) and (max-width:990px){

.tlc-left-canvas{
 max-height: calc(124dvh)!important;
}
}

.tlc-left-canvas {
  
  
  
  box-shadow: rgba(14, 24, 44, 0.15) 0px 6px 18px, rgba(255, 255, 255, 0.3) 0px 1px 0px inset;
  
}

.tlc-left {
  height: fit-content;
}

.tlc-right {
  height: intrinsic;
}









.tlc-three-col {

  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 999px) {
  .tlc-three-col
  {margin-top: 1em;}
}



.tlc-tiles {
  width: 100%;
}

.tlc-tiles .em-grid {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.4);
  padding: 1.5em 1rem 1.5em!important;
}

  .tlc-tiles .em-tile {
    text-wrap: balance;
    height: auto;
  }


.tlc-tiles .em-tile:not(:first-child) {
  cursor: default !important;
}

.tlc-tiles .em-tile:not(:first-child):hover {
  transform: none;
}



.tlc-two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 1em;
}

.tlc-left,
.tlc-right {
  width: 100%;
}

.tlc-right {
  aspect-ratio: 1 / 2;
}


@media (max-width: 360px) {
  .tlc-tiles .em-grid {
    grid-template-columns: 1fr;
  }

  .tlc-two-col {
    flex-direction: column;
  }
}



@media (min-width: 501px) and (max-width: 900px) {
  .tlc-tiles .em-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tlc-two-col {
    flex-direction: row;
    align-items: stretch;
  }

  
}


@media (min-width: 901px) {
  .tlc-three-col {
    flex-direction: column;
  }

  .tlc-tiles .em-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .tlc-two-col {
    flex-direction: row;
  }

  .tlc-left,
  .tlc-right {
    flex: 1 1 50%;
  }
}

@media (min-width: 1501px) {
  .tlc-three-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .tlc-three-col .tlc-tiles {
    flex: 0 0 auto;
    width: auto;
    order: 2;
  }

  .tlc-three-col .tlc-two-col {
    flex: 1 1 auto;
    flex-direction: row;
    order: 1;
  }

  .tlc-three-col .tlc-left,
  .tlc-three-col .tlc-right {
    flex: 1 1 50%;
  }
}

@media (min-width: 1501px) and (max-height: 900px) {
  .tlc-three-col .tlc-tiles .em-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1501px) {
  .tlc-three-col .tlc-tiles .em-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .tlc-live-rectifier .tlc-three-col:not(:has(.tlc-two-col)) .tlc-tiles .em-grid {
    display: flex;
  }
}






.tlcLabel {
  text-anchor: middle;
  font-weight: 700;
  fill: #000;
  
  stroke-width: 3px;
  paint-order: stroke;
  pointer-events: none;

  
  font-size: 14px;
}




  .tlcLabel, .tlcSpotLabel, .tlcSpotPurity {
  font-size: 16px;
  font-weight: 700;
  fill: black;
  stroke-width: 3px;
  paint-order: stroke;
  
}

@media (max-width: 999px) {
  .tlcLabel, .tlcSpotLabel, .tlcSpotPurity {
    font-size: 18px;
  }
}

.tlc-two-col, .tlc-two-col *, .tlc-live-rectifier * {
  -webkit-user-select: none!important;
  user-select: none!important;

}



.tlc-live-rectifier svg,


.tlc-live-rectifier svg circle,

.tlc-live-rectifier svg g,
.tlc-card * {
  -webkit-user-select: auto !important;
  user-select: auto !important;
}

.tlc-footer {
  font-size: 10px;
  color: var(--gt-fg-muted);
  text-align: center;
  text-wrap: balance;
}


.tlc-legacy-calc-slot {
  padding: 1em;
}


.tlc-page-footer {
  margin: 0;
  padding: 4px 16px 20px;
  font-size: 11px;
  line-height: 1.8;
}

.tlc-footer-toggle {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--gt-fg-muted);
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .15s ease;
}

.tlc-footer-toggle:hover,
.tlc-footer-toggle:focus-visible {
  color: var(--gt-fg);
}

.tlc-footer-toggle[aria-pressed="true"] {
  color: var(--gt-fg);
  text-decoration-style: solid;
}

@media (prefers-reduced-motion: reduce) {
  .tlc-footer-toggle { transition: none; }
}



.tlc-magnifier {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  
}

.tlc-magnifier{
  position: fixed !important;
  pointer-events: none !important;
  z-index: 9999 !important;
}

