html {
  scroll-behavior: smooth;
}

body {
  background-color: #f4f1ea;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #e7e2d5;
}

::-webkit-scrollbar-thumb {
  background: #78716c;
  border: 2px solid #e7e2d5;
}

.loot-row[data-hidden="true"] {
  display: none;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.accordion-panel[data-open="true"] {
  grid-template-rows: 1fr;
}

.accordion-panel > div {
  overflow: hidden;
}

#cookie-banner {
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

#cookie-banner[data-visible="true"] {
  transform: translateY(0);
}

#cookie-modal[data-open="true"] {
  display: flex;
}

.ticker-mono {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1023px) {
  .lg-sticky-widget {
    position: static;
  }
}
