#AppBar {
  background-color: var(--nav-background-color);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  box-shadow: none;
  padding-right: 0 !important;
}
#AppBar.header-unclipped {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}
#AppBar .AppBarInner {
  min-height: 70px;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
  transform: none;
  filter: none;
  transition: filter 0.25s linear, transform 0.25s linear;
}
#AppBar .logo-button {
  color: var(--logo-color);
  width: 106px;
  justify-content: left;
  margin-right: 25px;
  padding: 0;
}
#AppBar .logo {
  font-family: 'Raleway', sans-serif;
  display: grid;
  grid-template-columns: 1fr;
  height: 70px;
  font-weight: 900;
  position: relative;
}
#AppBar .logo span {
  font-weight: bold;
  grid-row-start: 1;
  grid-column-start: 1;
  font-size: 40px;
  --stack-height: calc(100% / var(--stacks) - 1px);
  --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
  --clip-top: calc(var(--stack-height) * var(--index));
  --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
  -webkit-clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
          clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
  animation: stack 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards calc(var(--index) * 120ms), glitch 1s ease infinite 1s alternate-reverse;
  margin-top: 8px;
}
#AppBar .logo span:nth-child(odd) {
  --glitch-translate: 4px;
}
#AppBar .logo span:nth-child(even) {
  --glitch-translate: -4px;
}
#AppBar .mainNav {
  flex-grow: 1;
  display: flex;
  justify-content: left;
}
#AppBar .mainNav > a {
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}
#AppBar .mainNav > a button {
  color: var(--nav-color);
  padding: 8px 18px;
  font-size: 16px;
}
#AppBar .mainNav > a button .MuiButton-startIcon {
  margin-top: -3px;
}
#AppBar .mainNav > a button .MuiButton-startIcon svg {
  font-size: 25px;
  width: 25px;
  height: 25px;
}
#AppBar .mainNav > a:hover {
  color: var(--nav-color);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
@media (hover: none) {
  #AppBar .mainNav > a:hover {
    color: #FFF;
    background-color: transparent;
    border-radius: 10px;
  }
}
#AppBar .mainNav > a.active {
  border-radius: 10px;
}
#AppBar .mainNav > a.active button {
  color: var(--nav-color);
  background-color: #1976d2;
}
.AppBarRight {
  display: flex;
}
.AppBarRight .AppBarRightInner {
  display: flex;
  align-items: center;
}
.AppBarRight .user-profile-button {
  width: 200px;
  justify-content: right;
}
.AppBarRight .user-profile-button .user-profile-button-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.AppBarRight .user-profile-button .user-image-wrapper {
  position: relative;
  height: 40px;
  width: 40px;
}
.AppBarRight .user-profile-button .user-image-overlay {
  position: absolute;
  top: -3px;
  left: -3px;
  height: calc(100% + 6px);
  width: calc(100% + 6px);
}
.AppBarRight .user-profile-button .username {
  display: block;
  width: 100%;
  overflow: hidden;
  margin-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.AppBarRight .get-prime-btn {
  display: inline-block;
  margin-right: 25px;
}
.AppBarRight .get-prime-btn button {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.85);
  animation: prime 2s ease-in-out infinite alternate;
  border-radius: 5px;
  padding-left: 16px;
  padding-right: 16px;
  transition: all 0.2s ease-in-out;
}
.AppBarRight .get-prime-btn button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
@media (hover: none) {
  .AppBarRight .get-prime-btn button:hover {
    background-color: rgba(0, 0, 0, 0.85);
  }
}
@keyframes prime {
  from {
    filter: drop-shadow(0 0 0px #1976d2) drop-shadow(0 0 2px #1976d2) drop-shadow(0 0 3px #1976d2);
  }
  to {
    filter: drop-shadow(0 0 1px #1976d2) drop-shadow(0 0 4px #1976d2) drop-shadow(0 0 6px #1976d2);
  }
}
.AppBarRight .discord-login-btn {
  color: var(--nav-color);
  background: none;
}
.AppBarRight .discord-login-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (hover: none) {
  .AppBarRight .discord-login-btn:hover {
    background: none;
  }
}
.AppBarRight .discord-login-btn svg {
  -webkit-user-select: none;
  user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-size: 22px;
}
.AppBarRight .theme-switch-button {
  margin-left: 10px;
  margin-right: -15px;
  transition: all 0.2s ease-in-out;
}
#menu-appbar .MuiPaper-root {
  background-color: var(--popup-background);
  color: var(--text-color);
}
#menu-appbar .MuiPaper-root ul li {
  padding: 0;
}
#menu-appbar .MuiPaper-root ul li a {
  text-decoration: none;
  width: 100%;
  padding: 6px 16px;
  color: inherit;
  display: flex;
  align-items: center;
}
#menu-appbar .MuiPaper-root ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (hover: none) {
  #menu-appbar .MuiPaper-root ul li a:hover {
    background-color: transparent;
  }
}
#menu-appbar .MuiPaper-root ul li a.active {
  background-color: var(--primary-color);
}
#menu-appbar .MuiPaper-root ul li .logout {
  text-decoration: none;
  width: 100%;
  padding: 6px 16px;
  color: inherit;
  display: flex;
  align-items: center;
  background-color: transparent;
}
#menu-appbar .MuiPaper-root ul li .logout:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (hover: none) {
  #menu-appbar .MuiPaper-root ul li .logout:hover {
    background-color: transparent;
  }
}
#menu-appbar .MuiPaper-root ul li svg {
  margin-left: -5px;
  margin-right: 10px;
  height: 35px;
  width: 35px;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}
.menu-button svg {
  color: var(--text-color-light);
  width: 30px;
  height: 30px;
}
.mobileMenu {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(280px);
  width: 280px;
  background-color: var(--background-color);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  box-shadow: none;
  transition: transform 0.25s linear, box-shadow 0.25s linear;
  overflow: hidden;
  z-index: 100;
}
.mobileMenu.open {
  transform: translateX(0);
}
.mobileMenu .mobileMenu-inner {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  width: 100%;
  justify-content: space-between;
}
.mobileMenu .mobileMenu-top {
  height: 100%;
}
.mobileMenu .mobileMenu-top .mobile-menu-login {
  display: none;
}
.mobileMenu .mobileMenu-top button {
  color: var(--text-color);
  padding: 15px 20px;
  border-radius: 0;
  width: 100%;
  justify-content: left;
  font-size: 16px;
}
.mobileMenu .mobileMenu-top button:hover,
.mobileMenu .mobileMenu-top button.active {
  background-color: var(--primary-color);
}
@media (hover: none) {
  .mobileMenu .mobileMenu-top button:hover {
    background-color: transparent;
  }
}
.mobileMenu .mobileMenu-top button .MuiButton-icon {
  margin-right: 20px;
}
.mobileMenu .mobileMenu-top button .MuiButton-icon svg {
  font-size: 25px;
}
.mobileMenu .mobileMenu-top a {
  display: block;
  text-decoration: none;
}
.mobileMenu .mobileMenu-top a.active,
.mobileMenu .mobileMenu-top a:hover {
  background-color: var(--primary-color);
}
.mobileMenu .mobileMenu-top a.active button,
.mobileMenu .mobileMenu-top a:hover button {
  color: var(--white);
}
@media (hover: none) {
  .mobileMenu .mobileMenu-top a:hover {
    background-color: transparent;
  }
  .mobileMenu .mobileMenu-top a:hover button {
    color: inherit;
  }
}
.mobileMenu .mobileMenu-bottom {
  position: relative;
  height: 50px;
  display: flex;
  justify-content: right;
}
.mobileMenu .mobileMenu-bottom .theme-switch-button {
  margin-right: 10px;
  display: block;
  height: 40px;
  width: 40px;
}
.mobileMenu .mobileMenu-bottom .theme-switch-button svg {
  fill: var(--text-color);
}
@keyframes stack {
  0% {
    opacity: 0;
    transform: translateX(-50%);
    text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
  }
  60% {
    opacity: 0.5;
    transform: translateX(50%);
  }
  80% {
    transform: none;
    opacity: 1;
    text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
  }
  100% {
    text-shadow: none;
  }
}
@keyframes glitch {
  0% {
    text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
    transform: translate(var(--glitch-translate));
  }
  2% {
    text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
  }
  4%,
  100% {
    text-shadow: none;
    transform: none;
  }
}
@media only screen and (max-width: 1100px) {
  .AppBarRight .get-prime-btn button {
    text-indent: -10000em;
    min-width: 50px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .AppBarRight .get-prime-btn button .MuiButton-startIcon {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (min-width: 0px) and (max-width: 955px) {
  #AppBar .logo-button {
    width: auto;
  }
  #AppBar .mainNav {
    display: none;
  }
  #AppBar .menu-button {
    display: flex !important;
    margin-right: -15px;
    margin-left: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .AppBarRight .user-profile-button {
    width: auto;
  }
  .AppBarRight .get-prime-btn button {
    text-indent: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
  .AppBarRight .get-prime-btn button .MuiButton-startIcon {
    margin-right: 5px;
    margin-left: -5px;
  }
  .AppBarRight .theme-switch-button {
    display: none;
  }
  .mobile-menu-opened main {
    transform: translateX(-280px);
    pointer-events: none;
  }
  .mobile-menu-opened #AppBar .AppBarInner {
    transform: translateX(-280px);
  }
  .mobile-menu-opened .AppBarRight .AppBarRightInner {
    pointer-events: none;
  }
  .mobileMenu {
    display: flex;
  }
}
@media only screen and (min-width: 0px) and (max-width: 600px) {
  .AppBarRight .get-prime-btn {
    margin-right: 15px;
  }
  .AppBarRight .discord-login-btn {
    display: none;
  }
  .mobileMenu .mobileMenu-top .mobile-menu-login {
    display: flex;
  }
}

.main-content {
  background-color: transparent;
}
.under-construction {
  display: flex;
  justify-content: center;
  width: 100%;
}
.under-construction .under-construction-box {
  max-width: 760px;
}

/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-centered-offset-before);
              margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-centered-offset-before);
              margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-theme-color);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}


.skinping-dark .slider-container {
  padding: 0 15px 15px 15px;
}
.skinping-dark .slider-container .swiper {
  border-radius: 6px;
}
.slider-container {
  width: 100%;
  padding: 0;
  background-color: var(--background-color);
}
.slider-container .swiper {
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.slider-container .swiper .swiper-next,
.slider-container .swiper .swiper-prev {
  display: none !important;
}
.slider-container .swiper .slickLogo {
  flex-direction: column;
}
.slider-container .swiper .slickLogo .logoName {
  flex-basis: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.slider-container .swiper .slickLogo .logoName span {
  padding: 20px 0;
  font-weight: bold;
  grid-row-start: 1;
  grid-column-start: 1;
  font-size: 70px;
  --stack-height: calc(100% / var(--stacks) - 1px);
  --inverse-index: calc(calc(var(--stacks) - 1) - var(--index));
  --clip-top: calc(var(--stack-height) * var(--index));
  --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
  -webkit-clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
          clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
  animation: stack 340ms cubic-bezier(0.46, 0.29, 0, 1.24) 1 backwards calc(var(--index) * 120ms), glitch 1s ease infinite 1s alternate-reverse;
}
.slider-container .swiper .slickLogo .logoName span:nth-child(odd) {
  --glitch-translate: 4px;
}
.slider-container .swiper .slickLogo .logoName span:nth-child(even) {
  --glitch-translate: -4px;
}
.slider-container .swiper .slickLogo .logoNameSub {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  margin-top: -20px;
}
.slider-container .swiper .card-box-glass {
  background-color: rgba(0, 0, 0, 0.69) !important;
}
.slider-container .swiper .card-box-glass h2 {
  padding-bottom: 10px;
}
.slider-container .swiper .card-box-glass p {
  padding-bottom: 10px;
  line-height: 26px;
}
.slider-container .swiper .card-box-glass .slider-button-bar {
  justify-content: left;
}
.slider-container .swiper .slider-button-bar {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.slider-container .swiper-slide {
  background-color: var(--nav-background-color);
  text-align: center;
  color: white;
  position: relative;
  height: 35vh;
  min-height: 300px;
}
.slider-container .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 1;
}
.slider-container .swiper-slide .video-container {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0.5;
}
.slider-container .swiper-slide .video-container video,
.slider-container .swiper-slide .video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-container .swiper-pagination span {
  background-color: #FFF;
}
.slider-container .text-center {
  position: absolute;
  width: 100%;
  text-align: left;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.slider-container .text-left {
  position: absolute;
  width: calc(50% - 60px);
  left: 60px;
  text-align: left;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.slider-container .text-right {
  position: absolute;
  width: calc(50vw - 60px);
  right: 60px;
  text-align: left;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.slider-container .text-inner {
  padding: 15px 20px 20px 20px;
  border-radius: 5px;
  background-color: var(--background);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 899px) {
  .skinping-light .slider-container {
    padding-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .slider-container .swiper-prev,
  .slider-container .swiper-next {
    width: 40px;
    height: 40px;
  }
  .slider-container .swiper-slide {
    height: 30vh;
  }
  .slider-container .text-left {
    font-size: 14px;
    left: 20px;
  }
  .slider-container .text-center h2 {
    font-size: 28px;
  }
  .slider-container .text-center h3 {
    font-size: 16px;
  }
  .slider-container .swiper .slickLogo .logoName span {
    font-size: 50px;
  }
  .slider-container .swiper .slickLogo .logoNameSub {
    font-size: 18px;
  }
}

.features-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.truststats-section {
  display: flex;
  justify-content: center;
  padding: 25px 0 15px 0;
}
.truststats {
  width: 90vw;
  max-width: 1440px;
  padding: 50px 0 25px 0;
  border-top: 1px solid var(--nearly-transparent);
}
.truststats .card-box {
  background-color: var(--item-background-color);
  color: var(--text-color);
}
@media only screen and (max-width: 899px) {
  .truststats-section {
    padding: 25px 0 0;
  }
  .truststats-section h3 {
    font-size: 2.5rem;
    margin-top: 14px;
    margin-bottom: 30px;
  }
  .truststats-section .truststats {
    padding-top: 25px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 697px) {
  .truststats-section {
    padding: 15px 0;
  }
  .truststats-section h3 {
    font-size: 2rem;
    margin-top: 14px;
    margin-bottom: 30px;
  }
  .truststats-section .truststats {
    padding-top: 25px;
    padding-bottom: 0;
  }
}

.faq-section {
  display: flex;
  justify-content: space-around;
  padding: 50px 0 0;
}
.faq-section .faq {
  max-width: 1200px;
  padding: 50px;
  width: 100%;
  border-top: 1px solid var(--nearly-transparent);
}
.faq-section .faq .faq-accordion {
  margin: 0 !important;
  background-color: transparent;
  color: var(--text-color);
  box-shadow: none;
}
.faq-section .faq .faq-accordion:before {
  display: none !important;
}
.faq-section .faq .faq-accordion svg {
  color: var(--text-color);
}
.faq-section .faq .faq-accordion .faq-summary {
  font-weight: 900;
  flex-direction: row-reverse;
  padding-left: 0;
}
.faq-section .faq .faq-accordion .faq-summary .MuiAccordionSummary-expandIconWrapper {
  margin-right: 15px;
}
.faq-section .faq .faq-accordion .faq-content {
  padding-left: 38px;
}
@media only screen and (max-width: 899px) {
  .faq-section .faq {
    padding: 25px 35px 25px 35px;
  }
}
@media only screen and (max-width: 697px) {
  .faq-section {
    padding: 25px 15px;
  }
  .faq-section h3 {
    font-size: 2rem;
  }
  .faq-section h4 {
    text-align: center;
  }
  .faq-section .faq {
    padding: 30px 0 0;
  }
}

.intro-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}
.intro-section .intro {
  max-width: 1440px;
  padding: 0 25px 25px 25px;
}
.intro-section .intro .intro-text-box .intro-headline {
  font-weight: 800 !important;
  font-size: 44px !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  margin-top: 24px;
}
.intro-section .intro .intro-text-box .intro-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.00938em;
  margin-top: 24px;
  margin-bottom: 24px;
}
.intro-section .slick-slider {
  box-shadow: none;
}
.intro-section .slick-slider .slick-slide {
  height: auto;
}
.intro-section .slick-slider .slick-slide > div {
  display: flex;
  justify-content: center;
}
.intro-section .deal-card {
  width: 100%;
  height: 480px;
  perspective-origin: 50% 50%;
  padding: 25px 0 15px 25px;
  max-width: 450px;
}
.intro-section .deal-card.consumer .item-subcategory,
.intro-section .deal-card.base .item-subcategory {
  color: var(--color-rarity-consumer-grade);
}
.intro-section .deal-card.industrial .item-subcategory {
  color: var(--color-rarity-industrial-grade);
}
.intro-section .deal-card.mil-spec .item-subcategory,
.intro-section .deal-card.distinguished .item-subcategory,
.intro-section .deal-card.high .item-subcategory {
  color: var(--color-rarity-mil-spec-grade);
}
.intro-section .deal-card.restricted .item-subcategory,
.intro-section .deal-card.exceptional .item-subcategory,
.intro-section .deal-card.remarkable .item-subcategory {
  color: var(--color-rarity-restricted);
}
.intro-section .deal-card.classified .item-subcategory,
.intro-section .deal-card.superior .item-subcategory,
.intro-section .deal-card.exotic .item-subcategory {
  color: var(--color-rarity-classified);
}
.intro-section .deal-card.covert .item-subcategory,
.intro-section .deal-card.master .item-subcategory {
  color: var(--color-rarity-covert);
}
.intro-section .deal-card.covert.skinping-item-knife .item-subcategory,
.intro-section .deal-card.master.skinping-item-knife .item-subcategory {
  color: var(--color-rarity-contraband);
}
.intro-section .deal-card.extraordinary .item-subcategory,
.intro-section .deal-card.contraband .item-subcategory {
  color: var(--color-rarity-contraband);
}
.intro-section .deal-card-container {
  transform-style: preserve-3d;
  perspective: 1500px;
  height: 100%;
}
.intro-section .deal-card-front,
.intro-section .deal-card-back {
  background-color: var(--item-background-color);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  min-height: 280px;
  height: 100%;
  border-radius: 10px;
}
.intro-section .deal-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.intro-section .deal-card-back .deal-card-inner {
  padding: 25px;
  height: auto;
}
.intro-section .deal-card-back h4 {
  font-size: 36px;
  line-height: 38px;
  padding-bottom: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .intro-section .deal-card-back h4 {
    font-size: 32px;
    line-height: 34px;
  }
}
.intro-section .deal-card-back h5 {
  font-size: 34px;
  line-height: 36px;
  padding-bottom: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .intro-section .deal-card-back h5 {
    font-size: 28px;
    line-height: 30px;
  }
}
.intro-section .deal-card-back p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
.intro-section .deal-card-inner {
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  outline: 1px solid transparent;
  perspective: inherit;
  z-index: 2;
  height: 100%;
}
.intro-section .deal-card-container .deal-card-back {
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}
.intro-section .deal-card-container .deal-card-back.ios-transform-fix {
  transform-style: flat;
  transform-style: initial;
}
.intro-section .deal-card-container .deal-card-front {
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}
.intro-section .deal-card-container .deal-card-front.ios-transform-fix {
  transform-style: flat;
  transform-style: initial;
}
.intro-section .deal-card:hover .deal-card-back {
  transform: rotateY(0deg);
}
.intro-section .deal-card:hover .deal-card-back.ios-transform-fix {
  transform-style: flat;
  transform-style: initial;
}
.intro-section .deal-card:hover .deal-card-front {
  transform: rotateY(-180deg);
}
.intro-section .deal-card:hover .deal-card-front.ios-transform-fix {
  transform-style: flat;
  transform-style: initial;
}
.intro-section .deal-card-market {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  left: 5px;
  top: 0;
  height: 32px;
  padding: 12px 5px 0 8px;
}
.intro-section .deal-card-market .deal-card-market-logo {
  position: relative;
  display: block;
  height: 25px;
  width: 25px;
}
.intro-section .deal-card-market .deal-card-market-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.intro-section .deal-card-market .deal-card-market-name {
  margin-left: 15px;
  font-size: 16px;
}
.intro-section .deal-card-explain {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 0;
  height: 32px;
  padding: 12px 5px 0 8px;
}
.intro-section .deal-card-explain svg {
  margin-left: 10px;
}
.intro-section .deal-card-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  margin-top: 20px;
}
.intro-section .deal-card-image {
  margin-top: 60px;
  height: calc(55% - 50px);
  width: 90%;
  margin-left: 5%;
  margin-bottom: 35px;
  transform-origin: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.intro-section .item-price-wrapper {
  min-height: 40px;
  max-height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  position: relative;
  z-index: 2;
}
.intro-section .item-price-wrapper .item-price {
  position: relative;
  font-weight: 800;
  font-size: 30px;
}
.intro-section .deal-card-price {
  text-align: right;
}
.intro-section .item-other-prices {
  max-height: 35px;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: var(--bitmore-transparent);
}
.intro-section .item-other-prices .item-steam-price {
  display: block;
  color: var(--bitmore-transparent);
}
.intro-section .item-other-prices .item-suggested-price {
  color: var(--bitmore-transparent);
}
.intro-section .item-type {
  display: flex;
  font-size: 18px;
  height: 20px;
}
.intro-section .item-stattrak {
  margin-right: 5px;
  color: #fe9400;
}
.intro-section .item-souvenir {
  margin-right: 8px;
  color: #e1db30;
}
.intro-section .item-subcategory {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.intro-section .item-name-wrapper {
  display: flex;
  height: 30px;
  width: 100%;
}
.intro-section .item-name {
  font-weight: bold;
  font-size: 28px;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.intro-section .item-wearname {
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--bitmore-transparent);
  height: 14px;
}
.intro-section .item-buff-price strong,
.intro-section .item-steam-price strong {
  text-decoration: line-through;
}
.intro-section .item-details {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 28px;
  padding: 25px;
}
.intro-section .item-details .item-details-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 4px;
}
.intro-section .item-details .item-details-text .item-wear {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.intro-section .item-details .item-details-text .item-pattern {
  text-align: right;
  font-size: 14px;
  padding-left: 10px;
}
@media only screen and (max-width: 899px) {
  .skinping-light .intro-section {
    padding: 25px 15px 15px 15px;
  }
  .intro-section {
    padding: 15px 0 15px 0;
  }
  .intro-section .intro-buttons {
    justify-content: center;
  }
  .intro-section .slick-slider {
    left: -30px;
    width: calc(100% + 60px);
  }
  .intro-section .intro {
    padding: 0 15px;
    text-align: center;
  }
  .intro-section .intro .intro-text-box {
    max-width: 610px;
    margin: 0 auto;
    padding: 10px;
  }
  .intro-section .intro h2 {
    font-size: 2rem;
  }
  .intro-section .intro h6 {
    margin-top: 15px;
  }
  .intro-section .deal-card {
    padding: 25px 15px 15px 15px;
  }
  .intro-section .deal-card-box {
    padding: 0 15px;
  }
  .intro-section .item-type {
    font-size: 16px;
  }
  .intro-section .item-name {
    font-size: 24px;
    line-height: 26px;
  }
  .intro-section .intro-section .item-wearname {
    margin-top: 0;
  }
  .intro-section .item-price-wrapper {
    min-height: 30px;
  }
  .intro-section .item-price-wrapper .item-price {
    font-size: 24px;
  }
}

/* item.css */
@property --cg-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff6bd6;
}
@property --fi-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff3b3b;
}
@property --fi-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffc0c0;
}
@property --cf-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd66e;
}
@property --cf-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffe8b0;
}
@property --cg-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd6ef;
}
@property --cg-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}
@property --spark-amp {
  syntax: '<length>';
  inherits: true;
  initial-value: 6px;
}
@property --d1x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 20%;
}
@property --d1y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 25%;
}
@property --d1a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.7;
}
@property --d2x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 65%;
}
@property --d2y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 40%;
}
@property --d2a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.75;
}
@property --d3x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 35%;
}
@property --d3y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 70%;
}
@property --d3a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.4;
}
@property --d4x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 78%;
}
@property --d4y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 58%;
}
@property --d4a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.45;
}
@property --d5x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 12%;
}
@property --d5y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 82%;
}
@property --d5a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.65;
}
@property --d6x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d7x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 72%;
}
@property --d7y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 18%;
}
@property --d7a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.6;
}
@property --d8x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 28%;
}
@property --d8y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 14%;
}
@property --d8a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d9x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 84%;
}
@property --d9y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 76%;
}
@property --d9a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.5;
}
@property --d10x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 44%;
}
@property --d10y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 86%;
}
@property --d10a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.58;
}
@property --d11x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 10%;
}
@property --d11y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 48%;
}
@property --d11a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.62;
}
/* per-dot pixel offsets (must be registered too!) */
@property --d1dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d1dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --cr-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #8ecbff;
}
@property --cr-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #cfeaff;
}
@property --cr-x {
  syntax: '<length>';
  inherits: true;
  initial-value: -8px;
}
.consumer .item-subcategory,
.base .item-subcategory {
  color: var(--color-rarity-consumer-grade);
}
.consumer .item-image-wrapper:before,
.base .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 80%);
}
.consumer.guide-header:before,
.base.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 100%);
}
.industrial .item-subcategory {
  color: var(--color-rarity-industrial-grade);
}
.industrial .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 80%);
}
.industrial.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 100%);
}
.mil-spec .item-subcategory,
.distinguished .item-subcategory,
.high .item-subcategory,
.high-grade .item-subcategory {
  color: var(--color-rarity-mil-spec-grade);
}
.mil-spec .item-image-wrapper:before,
.distinguished .item-image-wrapper:before,
.high .item-image-wrapper:before,
.high-grade .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 80%);
}
.mil-spec.guide-header:before,
.distinguished.guide-header:before,
.high.guide-header:before,
.high-grade.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 100%);
}
.restricted .item-subcategory,
.exceptional .item-subcategory,
.remarkable .item-subcategory {
  color: var(--color-rarity-restricted);
}
.restricted .item-image-wrapper:before,
.exceptional .item-image-wrapper:before,
.remarkable .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 80%);
}
.restricted.guide-header:before,
.exceptional.guide-header:before,
.remarkable.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 100%);
}
.classified .item-subcategory,
.superior .item-subcategory,
.exotic .item-subcategory {
  color: var(--color-rarity-classified);
}
.classified .item-image-wrapper:before,
.superior .item-image-wrapper:before,
.exotic .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 80%);
}
.classified.guide-header:before,
.superior.guide-header:before,
.exotic.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 100%);
}
.covert .item-subcategory,
.master .item-subcategory {
  color: var(--color-rarity-covert);
}
.covert .item-image-wrapper:before,
.master .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 80%);
}
.covert.guide-header:before,
.master.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 100%);
}
.covert.guide-header.skinping-item-knife:before,
.master.guide-header.skinping-item-knife:before,
.covert.guide-header.skinping-item-gloves:before,
.master.guide-header.skinping-item-gloves:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.covert.skinping-item-knife .item-subcategory,
.master.skinping-item-knife .item-subcategory,
.covert.skinping-item-gloves .item-subcategory,
.master.skinping-item-gloves .item-subcategory {
  color: var(--color-rarity-contraband);
}
.covert.skinping-item-knife .item-image-wrapper:before,
.master.skinping-item-knife .item-image-wrapper:before,
.covert.skinping-item-gloves .item-image-wrapper:before,
.master.skinping-item-gloves .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary .item-subcategory,
.contraband .item-subcategory {
  color: var(--color-rarity-contraband);
}
.extraordinary .item-image-wrapper:before,
.contraband .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary.guide-header:before,
.contraband.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.item-tier {
  cursor: pointer;
  margin-right: 9px !important;
}
.item-tier svg {
  font-size: 20px;
}
.item-tier.tier1 {
  color: var(--tier-1-color);
}
.item-tier.tier2 {
  color: var(--tier-2-color);
}
.item-tier.tier3 {
  color: var(--tier-3-color);
}
.item-bluegem {
  color: var(--item-bluegem);
  cursor: pointer;
  display: flex;
}
.item-bluegem svg {
  animation: bluegem 1s ease-in-out infinite alternate;
}
@keyframes bluegem {
  from {
    filter: drop-shadow(0 0 2px var(--item-bluegem-shine)) drop-shadow(0 0 4px var(--item-bluegem-shine)) drop-shadow(0 0 6px var(--item-bluegem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-bluegem-shine)) drop-shadow(0 0 10px var(--item-bluegem-shine)) drop-shadow(0 0 15px var(--item-bluegem-shine));
  }
}
.item-goldgem {
  color: var(--item-goldgem);
  cursor: pointer;
  display: flex;
}
.item-goldgem svg {
  animation: goldgem 1s ease-in-out infinite alternate;
}
@keyframes goldgem {
  from {
    filter: drop-shadow(0 0 2px var(--item-goldgem-shine)) drop-shadow(0 0 4px var(--item-goldgem-shine)) drop-shadow(0 0 6px var(--item-goldgem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-goldgem-shine)) drop-shadow(0 0 10px var(--item-goldgem-shine)) drop-shadow(0 0 15px var(--item-goldgem-shine));
  }
}
.item-rare {
  color: var(--item-rare);
  cursor: pointer;
  display: flex;
}
.item-rare svg {
  animation: rare 1s ease-in-out infinite alternate;
}
@keyframes rare {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-shine)) drop-shadow(0 0 4px var(--item-rare-shine)) drop-shadow(0 0 6px var(--item-rare-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-shine)) drop-shadow(0 0 10px var(--item-rare-shine)) drop-shadow(0 0 15px var(--item-rare-shine));
  }
}
.rare-d-pattern {
  color: var(--item-rare-d);
  cursor: pointer;
  display: flex;
}
.rare-d-pattern svg {
  animation: rare-d 1s ease-in-out infinite alternate;
}
@keyframes rare-d {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-d-shine)) drop-shadow(0 0 4px var(--item-rare-d-shine)) drop-shadow(0 0 6px var(--item-rare-d-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-d-shine)) drop-shadow(0 0 10px var(--item-rare-d-shine)) drop-shadow(0 0 15px var(--item-rare-d-shine));
  }
}
.rare-star-pattern {
  color: var(--item-rare-star);
  cursor: pointer;
  display: inline-flex;
}
.rare-star-pattern svg {
  fill: currentColor;
  animation: rare-star 1.15s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--item-rare-star-shine));
  will-change: filter;
}
@keyframes rare-star {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-star-shine)) drop-shadow(0 0 4px var(--item-rare-star-shine)) drop-shadow(0 0 6px var(--item-rare-star-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-star-shine)) drop-shadow(0 0 10px var(--item-rare-star-shine)) drop-shadow(0 0 15px var(--item-rare-star-shine));
    transform: scale(1.02);
  }
}
.rare-blue-hive {
  color: var(--item-rare-blue-hive);
  cursor: pointer;
  display: flex;
}
.rare-blue-hive svg {
  animation: rare-blue-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-blue-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 4px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 6px var(--item-rare-blue-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 10px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 15px var(--item-rare-blue-hive-shine));
  }
}
.rare-orange-hive {
  color: var(--item-rare-orange-hive);
  cursor: pointer;
  display: flex;
}
.rare-orange-hive svg {
  animation: rare-orange-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-orange-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 4px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 6px var(--item-rare-orange-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 10px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 15px var(--item-rare-orange-hive-shine));
  }
}
.rare-fire-and-ice {
  cursor: pointer;
  display: flex;
  color: var(--fi-color);
  animation: fi-cycle 8s linear infinite;
  /* drives color & shine fade */
  /* Color & shine loop — perfectly smooth fade-through */
}
.rare-fire-and-ice svg {
  fill: currentColor;
  animation: rare-fire-and-ice 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--fi-shine));
  will-change: color, filter;
}
@keyframes rare-fire-and-ice {
  from {
    filter: drop-shadow(0 0 1px var(--fi-shine)) drop-shadow(0 0 4px var(--fi-shine)) drop-shadow(0 0 6px var(--fi-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--fi-shine)) drop-shadow(0 0 10px var(--fi-shine)) drop-shadow(0 0 15px var(--fi-shine));
  }
}
@keyframes fi-cycle {
  0% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
  25% {
    --fi-color: var(--item-rare-fire-and-ice-mid1);
    --fi-shine: var(--item-rare-fire-and-ice-shine-mid1);
  }
  75% {
    --fi-color: var(--item-rare-fire-and-ice-end);
    --fi-shine: var(--item-rare-fire-and-ice-shine-end);
  }
  100% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
}
.charm-fade {
  cursor: pointer;
  display: flex;
  color: var(--cf-color);
  animation: cf-cycle 8s linear infinite;
  /* cycles color & shine */
  /* smooth, endless fade-through across Fade palette */
}
.charm-fade svg {
  fill: currentColor;
  animation: charm-fade-glow 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cf-shine));
  will-change: color, filter;
}
@keyframes charm-fade-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cf-shine)) drop-shadow(0 0 4px var(--cf-shine)) drop-shadow(0 0 6px var(--cf-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--cf-shine)) drop-shadow(0 0 10px var(--cf-shine)) drop-shadow(0 0 15px var(--cf-shine));
  }
}
@keyframes cf-cycle {
  0% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
  25% {
    --cf-color: var(--item-charm-fade-mid1);
    --cf-shine: var(--item-charm-fade-shine-mid1);
  }
  50% {
    --cf-color: var(--item-charm-fade-mid2);
    --cf-shine: var(--item-charm-fade-shine-mid2);
  }
  75% {
    --cf-color: var(--item-charm-fade-end);
    --cf-shine: var(--item-charm-fade-shine-end);
  }
  100% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
}
.charm-glitter {
  position: relative;
  display: inline-flex;
  align-items: center;
  animation: cg-cycle 4s linear infinite;
  /* color + shine loop */
}
.charm-glitter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  /* matches the SVG box */
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 1;
  /* speckles + rotating sheen */
  background: radial-gradient(circle at calc(var(--d1x) + var(--d1dx)) calc(var(--d1y) + var(--d1dy)), rgba(255, 255, 255, var(--d1a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d2x) + var(--d2dx)) calc(var(--d2y) + var(--d2dy)), rgba(255, 255, 255, var(--d2a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d3x) + var(--d3dx)) calc(var(--d3y) + var(--d3dy)), rgba(255, 255, 255, var(--d3a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d4x) + var(--d4dx)) calc(var(--d4y) + var(--d4dy)), rgba(255, 255, 255, var(--d4a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d5x) + var(--d5dx)) calc(var(--d5y) + var(--d5dy)), rgba(255, 255, 255, var(--d5a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d6x) + var(--d6dx)) calc(var(--d6y) + var(--d6dy)), rgba(255, 255, 255, var(--d6a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d7x) + var(--d7dx)) calc(var(--d7y) + var(--d7dy)), rgba(255, 255, 255, var(--d7a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d8x) + var(--d8dx)) calc(var(--d8y) + var(--d8dy)), rgba(255, 255, 255, var(--d8a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d9x) + var(--d9dx)) calc(var(--d9y) + var(--d9dy)), rgba(255, 255, 255, var(--d9a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d10x) + var(--d10dx)) calc(var(--d10y) + var(--d10dy)), rgba(255, 255, 255, var(--d10a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d11x) + var(--d11dx)) calc(var(--d11y) + var(--d11dy)), rgba(255, 255, 255, var(--d11a)) 0 1px, transparent 1.3px);
  filter: blur(1px) brightness(1.25);
  /* fast but smooth shimmer + independent speckle drift */
  animation: cg-drift 8s ease-in-out infinite both;
}
.charm-glitter > svg {
  position: relative;
  z-index: 1;
  color: var(--cg-color);
  fill: currentColor;
  will-change: filter, color, transform;
  animation: cg-glow 0.7s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 4px var(--cg-shine)) drop-shadow(0 0 7px var(--cg-shine));
}
/* each dot wanders a bit and eases opacity up/down */
@keyframes cg-drift {
  /* anchors + visible start */
  0% {
    --d1x: 20%;
    --d1y: 25%;
    --d1a: 0.7;
    --d1dx: 0px;
    --d1dy: 0px;
    --d2x: 65%;
    --d2y: 40%;
    --d2a: 0.75;
    --d2dx: 0px;
    --d2dy: 0px;
    --d3x: 35%;
    --d3y: 70%;
    --d3a: 0.4;
    --d3dx: 0px;
    --d3dy: 0px;
    --d4x: 78%;
    --d4y: 58%;
    --d4a: 0.45;
    --d4dx: 0px;
    --d4dy: 0px;
    --d5x: 12%;
    --d5y: 82%;
    --d5a: 0.65;
    --d5dx: 0px;
    --d5dy: 0px;
    --d6x: 50%;
    --d6y: 50%;
    --d6a: 0.55;
    --d6dx: 0px;
    --d6dy: 0px;
    --d7a: 0.6;
    --d8a: 0.55;
    --d9a: 0.5;
    --d10a: 0.58;
    --d11a: 0.62;
  }
  10% {
    --d1dx: calc(var(--spark-amp) * 0.6);
    --d1dy: calc(var(--spark-amp) * -0.8);
    --d1a: 0.95;
    --d4dx: calc(var(--spark-amp) * -0.5);
    --d4dy: calc(var(--spark-amp) * 1);
    --d4a: 0.88;
    --d7dx: calc(var(--spark-amp) * 0.8);
    --d7dy: calc(var(--spark-amp) * 0.4);
    --d7a: 1;
  }
  20% {
    --d2dx: calc(var(--spark-amp) * -0.8);
    --d2dy: calc(var(--spark-amp) * 0.5);
    --d2a: 0.85;
    --d5dx: calc(var(--spark-amp) * 0.4);
    --d5dy: calc(var(--spark-amp) * -0.9);
    --d5a: 1;
    --d9dx: calc(var(--spark-amp) * -1);
    --d9dy: calc(var(--spark-amp) * 0.2);
    --d9a: 0.82;
  }
  30% {
    --d3dx: calc(var(--spark-amp) * 1);
    --d3dy: calc(var(--spark-amp) * -0.5);
    --d3a: 0.75;
    --d6dx: calc(var(--spark-amp) * 0.6);
    --d6dy: calc(var(--spark-amp) * -0.3);
    --d6a: 0.8;
    --d8dx: calc(var(--spark-amp) * -0.7);
    --d8dy: calc(var(--spark-amp) * 0.6);
    --d8a: 0.92;
  }
  40% {
    --d1dx: calc(var(--spark-amp) * -0.6);
    --d1dy: calc(var(--spark-amp) * 0.5);
    --d1a: 0.65;
    --d10dx: calc(var(--spark-amp) * 0.9);
    --d10dy: calc(var(--spark-amp) * -0.6);
    --d10a: 0.95;
    --d11dx: calc(var(--spark-amp) * -0.5);
    --d11dy: calc(var(--spark-amp) * 1);
    --d11a: 0.85;
  }
  50% {
    --d2dx: calc(var(--spark-amp) * 0.7);
    --d2dy: calc(var(--spark-amp) * -0.6);
    --d2a: 0.4;
    --d4dx: calc(var(--spark-amp) * 0.8);
    --d4dy: calc(var(--spark-amp) * -0.9);
    --d4a: 0.55;
    --d7dx: calc(var(--spark-amp) * -0.9);
    --d7dy: calc(var(--spark-amp) * 0.3);
    --d7a: 0.78;
  }
  60% {
    --d3dx: calc(var(--spark-amp) * -0.9);
    --d3dy: calc(var(--spark-amp) * 0.8);
    --d3a: 0.9;
    --d5dx: calc(var(--spark-amp) * -0.3);
    --d5dy: calc(var(--spark-amp) * 0.7);
    --d5a: 0.45;
    --d9dx: calc(var(--spark-amp) * 0.6);
    --d9dy: calc(var(--spark-amp) * -0.7);
    --d9a: 0.6;
  }
  70% {
    --d1dx: calc(var(--spark-amp) * 0.2);
    --d1dy: calc(var(--spark-amp) * 1);
    --d1a: 1;
    --d6dx: calc(var(--spark-amp) * -0.7);
    --d6dy: calc(var(--spark-amp) * 0.6);
    --d6a: 0.95;
    --d8dx: calc(var(--spark-amp) * 0.9);
    --d8dy: calc(var(--spark-amp) * -0.8);
    --d8a: 0.7;
  }
  80% {
    --d2dx: calc(var(--spark-amp) * -1);
    --d2dy: 0px;
    --d2a: 0.88;
    --d10dx: calc(var(--spark-amp) * -0.8);
    --d10dy: calc(var(--spark-amp) * 0.9);
    --d10a: 0.6;
    --d11dx: calc(var(--spark-amp) * 0.7);
    --d11dy: calc(var(--spark-amp) * -0.5);
    --d11a: 1;
  }
  90% {
    --d3dx: calc(var(--spark-amp) * 0.5);
    --d3dy: calc(var(--spark-amp) * 0.9);
    --d3a: 0.35;
    --d4dx: calc(var(--spark-amp) * -0.6);
    --d4dy: calc(var(--spark-amp) * 0.4);
    --d4a: 0.98;
    --d5dx: calc(var(--spark-amp) * 1);
    --d5dy: 0px;
    --d5a: 0.9;
    --d9dx: calc(var(--spark-amp) * -0.5);
    --d9dy: calc(var(--spark-amp) * -0.9);
    --d9a: 0.45;
  }
  100% {
    /* reset offsets but keep dots visible, ready for next loop */
    --d1dx: 0px;
    --d1dy: 0px;
    --d1a: 0.7;
    --d2dx: 0px;
    --d2dy: 0px;
    --d2a: 0.75;
    --d3dx: 0px;
    --d3dy: 0px;
    --d3a: 0.4;
    --d4dx: 0px;
    --d4dy: 0px;
    --d4a: 0.45;
    --d5dx: 0px;
    --d5dy: 0px;
    --d5a: 0.65;
    --d6dx: 0px;
    --d6dy: 0px;
    --d6a: 0.55;
    --d7dx: 0px;
    --d7dy: 0px;
    --d7a: 0.6;
    --d8dx: 0px;
    --d8dy: 0px;
    --d8a: 0.55;
    --d9dx: 0px;
    --d9dy: 0px;
    --d9a: 0.5;
    --d10dx: 0px;
    --d10dy: 0px;
    --d10a: 0.58;
    --d11dx: 0px;
    --d11dy: 0px;
    --d11a: 0.62;
  }
}
/* breathe the glow, not flicker */
@keyframes cg-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 3px var(--cg-shine)) drop-shadow(0 0 6px var(--cg-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--cg-shine)) drop-shadow(0 0 8px var(--cg-shine)) drop-shadow(0 0 12px var(--cg-shine));
    transform: scale(1.01);
  }
}
/* gentle speckle drift so it feels alive */
@keyframes cg-speck {
  0%,
  100% {
    opacity: 0.9;
    filter: blur(0.4px) brightness(1.2);
  }
  50% {
    opacity: 1;
    filter: blur(0.6px) brightness(1.35);
  }
}
/* your palette cycle (reuse your tokens) */
@keyframes cg-cycle {
  0% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
  20% {
    --cg-color: var(--item-charm-glitter-mid1);
    --cg-shine: var(--item-charm-glitter-shine-mid1);
  }
  40% {
    --cg-color: var(--item-charm-glitter-mid2);
    --cg-shine: var(--item-charm-glitter-shine-mid2);
  }
  60% {
    --cg-color: var(--item-charm-glitter-mid3);
    --cg-shine: var(--item-charm-glitter-shine-mid3);
  }
  80% {
    --cg-color: var(--item-charm-glitter-end);
    --cg-shine: var(--item-charm-glitter-shine-end);
  }
  100% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
}
.charm-reflecting {
  display: inline-flex;
  align-items: center;
  animation: cr-cycle 10s linear infinite;
  /* slow color/shine drift */
}
.charm-reflecting > svg {
  /* only affect the icon */
  color: var(--cr-color);
  fill: currentColor;
  will-change: filter, color, transform;
  /* two opposing shadows + brightness pump to fake a moving specular */
  filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine));
  animation: cr-sweep 2.1s ease-in-out infinite, cr-glow 1.1s ease-in-out infinite alternate;
}
@keyframes cr-glow {
  from {
    filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.5);
  }
  to {
    filter: drop-shadow(var(--cr-x) 0 14px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.65);
  }
}
/* sweep the apparent highlight left → right → left */
@keyframes cr-sweep {
  0% {
    --cr-x: -10px;
    transform: translateZ(0) rotate(0.001deg);
  }
  50% {
    --cr-x: 10px;
  }
  100% {
    --cr-x: -10px;
  }
}
/* subtle color/shine drift for reflective vibe */
@keyframes cr-cycle {
  0% {
    --cr-color: var(--item-charm-reflecting-start);
    --cr-shine: var(--item-charm-reflecting-shine-start);
  }
  50% {
    --cr-color: var(--item-charm-reflecting-mid);
    --cr-shine: var(--item-charm-reflecting-shine-mid);
  }
  100% {
    --cr-color: var(--item-charm-reflecting-end);
    --cr-shine: var(--item-charm-reflecting-shine-end);
  }
}
.item-float {
  color: var(--item-float);
  cursor: pointer;
  animation: float 1s ease-in-out infinite alternate;
  display: flex;
}
@keyframes float {
  from {
    filter: drop-shadow(0 0 1px var(--item-float-shine)) drop-shadow(0 0 4px var(--item-float-shine)) drop-shadow(0 0 6px var(--item-float-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-float-shine)) drop-shadow(0 0 10px var(--item-float-shine)) drop-shadow(0 0 15px var(--item-float-shine));
  }
}
/* Charm - Light Green */
.charm-light-green {
  color: var(--charm-light-green);
}
.charm-light-green svg {
  animation: light-green-charm 1s ease-in-out infinite alternate;
}
@keyframes light-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-green-shine)) drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine)) drop-shadow(0 0 6px var(--charm-light-green-shine));
  }
}
/* Charm - Dark Green */
.charm-dark-green {
  color: var(--charm-dark-green);
}
.charm-dark-green svg {
  animation: dark-green-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-green-shine)) drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine)) drop-shadow(0 0 6px var(--charm-dark-green-shine));
  }
}
/* Charm - Teal */
.charm-teal {
  color: var(--charm-teal);
}
.charm-teal svg {
  animation: teal-charm 1s ease-in-out infinite alternate;
}
@keyframes teal-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-teal-shine)) drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine)) drop-shadow(0 0 6px var(--charm-teal-shine));
  }
}
/* Charm - Cyan */
.charm-cyan {
  color: var(--charm-cyan);
}
.charm-cyan svg {
  animation: cyan-charm 1s ease-in-out infinite alternate;
}
@keyframes cyan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-cyan-shine)) drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine)) drop-shadow(0 0 6px var(--charm-cyan-shine));
  }
}
.charm-blue {
  color: var(--charm-blue);
}
.charm-blue svg {
  animation: blue-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine)) drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine)) drop-shadow(0 0 6px var(--charm-blue-shine));
  }
}
/* Charm - Light Blue */
.charm-light-blue {
  color: var(--charm-light-blue);
}
.charm-light-blue svg {
  animation: light-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes light-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-blue-shine)) drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine)) drop-shadow(0 0 6px var(--charm-light-blue-shine));
  }
}
.charm-pink {
  color: var(--charm-pink);
}
.charm-pink svg {
  animation: pink-charm 1s ease-in-out infinite alternate;
}
@keyframes pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pink-shine)) drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine)) drop-shadow(0 0 6px var(--charm-pink-shine));
  }
}
/* Charm - Mix Blue Purple */
.charm-mix-blue-purple {
  color: var(--charm-mix-blue-purple);
}
.charm-mix-blue-purple svg {
  animation: mix-blue-purple-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-blue-purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 6px var(--charm-mix-blue-purple-shine));
  }
}
/* Charm - Mix Purple Blue */
.charm-mix-purple-blue {
  color: var(--charm-mix-purple-blue);
}
.charm-mix-purple-blue svg {
  animation: mix-purple-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-purple-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 6px var(--charm-mix-purple-blue-shine));
  }
}
/* Charm - Purple */
.charm-purple {
  color: var(--charm-purple);
}
.charm-purple svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-shine)) drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine)) drop-shadow(0 0 6px var(--charm-purple-shine));
  }
}
/* Charm - Purple */
.charm-purple-pink {
  color: var(--charm-purple-pink);
}
.charm-purple-pink svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-pink-shine)) drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine)) drop-shadow(0 0 6px var(--charm-purple-pink-shine));
  }
}
/* Charm - Red */
.charm-red {
  color: var(--charm-red);
}
.charm-red svg {
  animation: red-charm 1s ease-in-out infinite alternate;
}
@keyframes red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-shine)) drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine)) drop-shadow(0 0 6px var(--charm-red-shine));
  }
}
/* Charm - Orange */
.charm-orange {
  color: var(--charm-orange);
}
.charm-orange svg {
  animation: orange-charm 1s ease-in-out infinite alternate;
}
@keyframes orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-orange-shine)) drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine)) drop-shadow(0 0 6px var(--charm-orange-shine));
  }
}
/* Charm - Gold */
.charm-gold {
  color: var(--charm-gold);
}
.charm-gold svg {
  animation: gold-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-shine)) drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine)) drop-shadow(0 0 6px var(--charm-gold-shine));
  }
}
/* Charm - Golden */
.charm-golden {
  color: var(--charm-golden);
}
.charm-golden svg {
  animation: golden-charm 1s ease-in-out infinite alternate;
}
@keyframes golden-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-golden-shine)) drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine)) drop-shadow(0 0 6px var(--charm-golden-shine));
  }
}
/* Charm - Bronze */
.charm-bronze {
  color: var(--charm-bronze);
}
.charm-bronze svg {
  animation: bronze-charm 1s ease-in-out infinite alternate;
}
@keyframes bronze-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bronze-shine)) drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine)) drop-shadow(0 0 6px var(--charm-bronze-shine));
  }
}
/* Charm - Fusia */
.charm-fusia {
  color: var(--charm-fusia);
}
.charm-fusia svg {
  animation: fusia-charm 1s ease-in-out infinite alternate;
}
@keyframes fusia-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-fusia-shine)) drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine)) drop-shadow(0 0 6px var(--charm-fusia-shine));
  }
}
/* Charm - Yellow */
.charm-yellow {
  color: var(--charm-yellow);
}
.charm-yellow svg {
  animation: yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-yellow-shine)) drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine)) drop-shadow(0 0 6px var(--charm-yellow-shine));
  }
}
/* Charm - Rainbow */
.charm-rainbow {
  color: var(--charm-rainbow);
}
.charm-rainbow svg {
  animation: rainbow-charm 1s ease-in-out infinite alternate;
}
@keyframes rainbow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-rainbow-shine)) drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine)) drop-shadow(0 0 6px var(--charm-rainbow-shine));
  }
}
/* Charm - Shiny */
.charm-shiny {
  color: var(--charm-shiny);
}
.charm-shiny svg {
  animation: shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-shiny-shine)) drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine)) drop-shadow(0 0 6px var(--charm-shiny-shine));
  }
}
/* Charm - Least Shiny */
.charm-least-shiny {
  color: var(--charm-least-shiny);
}
.charm-least-shiny svg {
  animation: least-shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes least-shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-least-shiny-shine)) drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine)) drop-shadow(0 0 6px var(--charm-least-shiny-shine));
  }
}
/* Charm - Lime Green */
.charm-lime-green {
  color: var(--charm-lime-green);
}
.charm-lime-green svg {
  animation: lime-green-charm 1s ease-in-out infinite alternate;
}
@keyframes lime-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-lime-green-shine)) drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine)) drop-shadow(0 0 6px var(--charm-lime-green-shine));
  }
}
/* Charm - Brown */
.charm-brown {
  color: var(--charm-brown);
}
.charm-brown svg {
  animation: brown-charm 1s ease-in-out infinite alternate;
}
@keyframes brown-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-brown-shine)) drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine)) drop-shadow(0 0 6px var(--charm-brown-shine));
  }
}
/* Charm - Turquoise */
.charm-turquoise {
  color: var(--charm-turquoise);
}
.charm-turquoise svg {
  animation: turquoise-charm 1s ease-in-out infinite alternate;
}
@keyframes turquoise-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-turquoise-shine)) drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine)) drop-shadow(0 0 6px var(--charm-turquoise-shine));
  }
}
/* Charm - Bubblegum Pink */
.charm-bubblegum-pink {
  color: var(--charm-bubblegum-pink);
}
.charm-bubblegum-pink svg {
  animation: bubblegum-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes bubblegum-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 6px var(--charm-bubblegum-pink-shine));
  }
}
/* Charm - Hot Pink */
.charm-hot-pink {
  color: var(--charm-hot-pink);
}
.charm-hot-pink svg {
  animation: hot-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pink-shine)) drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine)) drop-shadow(0 0 6px var(--charm-hot-pink-shine));
  }
}
/* Charm - Violet */
.charm-violet {
  color: var(--charm-violet);
}
.charm-violet svg {
  animation: violet-charm 1s ease-in-out infinite alternate;
}
@keyframes violet-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-violet-shine)) drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine)) drop-shadow(0 0 6px var(--charm-violet-shine));
  }
}
/* Charm - Magenta */
.charm-magenta {
  color: var(--charm-magenta);
}
.charm-magenta svg {
  animation: magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-magenta-shine)) drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine)) drop-shadow(0 0 6px var(--charm-magenta-shine));
  }
}
/* Charm - Maroon */
.charm-maroon {
  color: var(--charm-maroon);
}
.charm-maroon svg {
  animation: maroon-charm 1s ease-in-out infinite alternate;
}
@keyframes maroon-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-maroon-shine)) drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine)) drop-shadow(0 0 6px var(--charm-maroon-shine));
  }
}
/* Charm - Aqua */
.charm-aqua {
  color: var(--charm-aqua);
}
.charm-aqua svg {
  animation: aqua-charm 1s ease-in-out infinite alternate;
}
@keyframes aqua-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-aqua-shine)) drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine)) drop-shadow(0 0 6px var(--charm-aqua-shine));
  }
}
/* Charm - Mustard Yellow */
.charm-mustard-yellow {
  color: var(--charm-mustard-yellow);
}
.charm-mustard-yellow svg {
  animation: mustard-yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes mustard-yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 6px var(--charm-mustard-yellow-shine));
  }
}
/* Charm - Dark */
.charm-dark {
  color: var(--charm-dark);
}
.charm-dark svg {
  animation: dark-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-shine)) drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine)) drop-shadow(0 0 6px var(--charm-dark-shine));
  }
}
/* Charm - Pale */
.charm-pale {
  color: var(--charm-pale);
}
.charm-pale svg {
  animation: pale-charm 1s ease-in-out infinite alternate;
}
@keyframes pale-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pale-shine)) drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine)) drop-shadow(0 0 6px var(--charm-pale-shine));
  }
}
/* Charm - Hot Pick */
.charm-hot-pick {
  color: var(--charm-hot-pick);
}
.charm-hot-pick svg {
  animation: hot-pick-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pick-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pick-shine)) drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine)) drop-shadow(0 0 6px var(--charm-hot-pick-shine));
  }
}
/* Charm - Naked */
.charm-naked {
  color: var(--charm-naked);
}
.charm-naked svg {
  animation: naked-charm 1s ease-in-out infinite alternate;
}
@keyframes naked-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-naked-shine)) drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine)) drop-shadow(0 0 6px var(--charm-naked-shine));
  }
}
/* Charm - Olive */
.charm-olive {
  color: var(--charm-olive);
}
.charm-olive svg {
  animation: olive-charm 1s ease-in-out infinite alternate;
}
@keyframes olive-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-olive-shine)) drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine)) drop-shadow(0 0 6px var(--charm-olive-shine));
  }
}
/* Charm - Deep Blue */
.charm-deep-blue {
  color: var(--charm-deep-blue);
}
.charm-deep-blue svg {
  animation: deep-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes deep-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-deep-blue-shine)) drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine)) drop-shadow(0 0 6px var(--charm-deep-blue-shine));
  }
}
/* Charm - Green */
.charm-green {
  color: var(--charm-green);
}
.charm-green svg {
  animation: green-charm 1s ease-in-out infinite alternate;
}
@keyframes green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-green-shine)) drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine)) drop-shadow(0 0 6px var(--charm-green-shine));
  }
}
/* Charm - Tan */
.charm-tan {
  color: var(--charm-tan);
}
.charm-tan svg {
  animation: tan-charm 1s ease-in-out infinite alternate;
}
@keyframes tan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-tan-shine)) drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine)) drop-shadow(0 0 6px var(--charm-tan-shine));
  }
}
/* Charm - Sunset Orange */
.charm-sunset-orange {
  color: var(--charm-sunset-orange);
}
.charm-sunset-orange svg {
  animation: sunset-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes sunset-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-sunset-orange-shine)) drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine)) drop-shadow(0 0 6px var(--charm-sunset-orange-shine));
  }
}
/* Charm - Clay Green */
.charm-clay-green {
  color: var(--charm-clay-green);
}
.charm-clay-green svg {
  animation: clay-green-charm 1s ease-in-out infinite alternate;
}
@keyframes clay-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-clay-green-shine)) drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine)) drop-shadow(0 0 6px var(--charm-clay-green-shine));
  }
}
/* Charm - Dark Lavender */
.charm-dark-lavender {
  color: var(--charm-dark-lavender);
}
.charm-dark-lavender svg {
  animation: dark-lavender-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-lavender-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-lavender-shine)) drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine)) drop-shadow(0 0 6px var(--charm-dark-lavender-shine));
  }
}
.charm-collectors-gold {
  color: var(--charm-collectors-gold);
}
.charm-collectors-gold svg {
  animation: collectors-gold-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-gold-shine)) drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine)) drop-shadow(0 0 6px var(--charm-collectors-gold-shine));
  }
}
.charm-gold-orange {
  color: var(--charm-gold-orange);
}
.charm-gold-orange svg {
  animation: gold-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-orange-shine)) drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine)) drop-shadow(0 0 6px var(--charm-gold-orange-shine));
  }
}
.charm-collectors-red {
  color: var(--charm-collectors-red);
}
.charm-collectors-red svg {
  animation: collectors-red-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-red-shine)) drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine)) drop-shadow(0 0 6px var(--charm-collectors-red-shine));
  }
}
.charm-red-crimson {
  color: var(--charm-red-crimson);
}
.charm-red-crimson svg {
  animation: red-crimson-charm 1s ease-in-out infinite alternate;
}
@keyframes red-crimson-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-crimson-shine)) drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine)) drop-shadow(0 0 6px var(--charm-red-crimson-shine));
  }
}
.charm-crimson-magenta {
  color: var(--charm-crimson-magenta);
}
.charm-crimson-magenta svg {
  animation: crimson-magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes crimson-magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 6px var(--charm-crimson-magenta-shine));
  }
}
.charm-blue-shine {
  color: var(--charm-blue-shine);
}
.charm-blue-shine svg {
  animation: blue-shine-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-shine-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine-shine)) drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine)) drop-shadow(0 0 6px var(--charm-blue-shine-shine));
  }
}
.charm-heaven-blue {
  color: var(--charm-heaven-blue);
}
.charm-heaven-blue svg {
  animation: heaven-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes heaven-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-heaven-blue-shine)) drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine)) drop-shadow(0 0 6px var(--charm-heaven-blue-shine));
  }
}
.charm-collectors-blue {
  color: var(--charm-collectors-blue);
}
.charm-collectors-blue svg {
  animation: collectors-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-blue-shine)) drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine)) drop-shadow(0 0 6px var(--charm-collectors-blue-shine));
  }
}
.charm-copper {
  color: var(--charm-copper);
}
.charm-copper svg {
  animation: copper-charm 1s ease-in-out infinite alternate;
}
@keyframes copper-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-copper-shine)) drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine)) drop-shadow(0 0 6px var(--charm-copper-shine));
  }
}
.charm-minty-green {
  color: var(--charm-minty-green);
}
.charm-minty-green svg {
  animation: minty-green-charm 1s ease-in-out infinite alternate;
}
@keyframes minty-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-minty-green-shine)) drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine)) drop-shadow(0 0 6px var(--charm-minty-green-shine));
  }
}
/* Charm - Default */
.charm-default {
  color: var(--charm-default);
}
.charm-default svg {
  animation: default-charm 1s ease-in-out infinite alternate;
}
@keyframes default-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-default-shine)) drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine)) drop-shadow(0 0 6px var(--charm-default-shine));
  }
}
.item {
  width: 16.66666667%;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}
.item.menu-open .item-inner .item-content:before {
  opacity: 1;
}
.item:not(.placeholder) .item-content:hover {
  transform: translateY(-25px);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: var(--item-box-shadow);
}
.item:not(.placeholder) .item-content:hover .item-image-wrapper:before {
  opacity: var(--item-image-background-opacity-hover);
}
.item:not(.placeholder) .item-content:hover .item-image-wrapper .item-image {
  transform: scale(1.05);
}
.item:not(.placeholder) .item-content:hover .item-button-group {
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.2s ease-in-out, z-index 0s 0.2s;
  z-index: 5;
}
.item:hover {
  z-index: 2;
}
.item .item-inner {
  height: 100%;
  width: 100%;
  border: 1px solid transparent;
}
.item .item-inner .item-content {
  display: flex;
  flex-direction: column;
  background: var(--item-background-color);
  position: relative;
  transition: all 0.15s ease-in-out;
  height: 100%;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.item .item-inner .item-content:before {
  content: '';
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.item .item-top-icons {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  left: 5px;
  top: 0;
  height: 32px;
  padding: 10px 5px 0 5px;
}
.item .item-top-icons > div {
  display: flex;
  margin-right: 12px;
}
.item .item-tooltip-top {
  color: #000;
}
.item .item-marketplace {
  height: 100%;
  width: 22px;
  cursor: pointer;
}
.item .item-marketplace picture {
  display: block;
  height: 100%;
  width: 100%;
}
.item .item-marketplace picture img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.item div[class^='charm-'] {
  cursor: pointer;
}
.item .heart-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  color: #e57373;
  cursor: pointer;
}
.item .item-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 210px;
  overflow: hidden;
  cursor: pointer;
}
.item .item-image-wrapper.skinping-item-agent .item-image-container:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 25px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.item .item-image-wrapper:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  height: 400%;
  z-index: -1;
  opacity: var(--item-image-background-opacity);
  background-image: radial-gradient(circle at 50% 200%, #FFFFFF, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: 0 100%;
  transition: all 0.2s ease-in-out;
}
.item .item-image-container {
  display: block;
  width: 100%;
  height: 100%;
}
.item .item-image-container.loading {
  position: relative;
}
.item .item-image-container .item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 35px 25px 0 25px;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}
.item .item-image-container .item-image.screenshot {
  padding: 40px 25px 15px 25px;
}
.item .item-image-container .item-image.skinping-item-agent {
  padding: 15px 5px 0 5px;
  object-position: bottom;
}
.item .item-image-container .item-image.skinping-item-container {
  padding: 35px 40px 15px 40px;
}
.item .item-image-container:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 25px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.item .item-image-container.loading .item-image {
  opacity: 0;
}
.item .item-image-container.loaded .item-image {
  opacity: 1;
}
.item .item-image-container .loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.item .item-content-inner {
  padding: 10px 16px 15px 16px;
  background: var(--item-background-color);
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: calc(100% - 210px);
}
.item .item-content-inner .pulse-placeholder {
  border-radius: 15px;
}
.item .item-price-wrapper {
  min-height: 40px;
  max-height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.item .item-price-wrapper .item-price {
  font-weight: 800;
  font-size: 24px;
}
.item .item-price-wrapper .item-discount {
  cursor: pointer;
  border-radius: 6px;
  height: 25px;
  padding: 0 8px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.item .item-price-wrapper .item-discount.negative {
  background-color: rgba(24, 193, 58, 0.12);
  color: #00c327;
}
.item .item-price-wrapper .item-discount.positive {
  background-color: rgba(255, 123, 0, 0.12);
  color: #ff8c20;
}
.item .item-other-prices {
  max-height: 35px;
  width: 100%;
  height: 100%;
  margin-top: -2px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: var(--half-transparent);
}
.item .item-other-prices .item-steam-price {
  display: block;
  color: var(--half-transparent);
}
.item .item-other-prices .item-suggested-price {
  color: var(--half-transparent);
}
.item .item-type {
  display: flex;
  font-size: 14px;
  height: 16px;
  margin-bottom: 2px;
}
.item .item-stattrak {
  margin-right: 5px;
  color: var(--item-stattrak);
}
.item .item-souvenir {
  margin-right: 8px;
  color: var(--item-souvenir);
}
.item .item-subcategory {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item .item-name-wrapper {
  display: flex;
  height: 24px;
}
.item .item-name {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item .item-wearname {
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--bitmore-transparent);
  height: 14px;
}
.item .item-wearname.item-wearname-link {
  text-decoration: none;
  cursor: pointer;
}
.item .item-wearname.item-wearname-link:hover {
  color: var(--primary-color);
}
@media (hover: none) {
  .item .item-wearname.item-wearname-link:hover {
    color: inherit;
  }
}
.item .item-details {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  position: relative;
  height: 28px;
}
.item .item-details .item-details-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 4px;
}
.item .item-details .item-details-text .item-wear {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.item .item-details .item-details-text .item-pattern {
  text-align: right;
  font-size: 14px;
  padding-left: 10px;
}
.item .item-details .item-details-text .item-pattern.no-padding {
  padding-left: 0;
}
.item .item-button-group {
  position: absolute;
  display: flex;
  margin-top: auto;
  bottom: 0;
  height: 50px;
  justify-content: space-between;
  left: 0;
  right: 0;
  transition: all 0.2s ease-in-out, z-index 0s;
  transform: translateY(30px);
  opacity: 0;
  z-index: 2;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.item .item-button-group .item-button-buy-link {
  display: block;
  width: 100%;
  height: 100%;
}
.item .item-button-group .item-button-buy {
  border-radius: 0;
}
.item .item-button-group .item-button-more {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.item .item-button-buy {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  height: 100%;
}
.item .item-button-buy:hover {
  background-color: var(--primary-color);
}
@media (hover: none) {
  .item .item-button-buy:hover {
    background-color: var(--primary-color);
  }
}
.item .item-button-more {
  overflow: hidden;
  padding: 10px 10px;
  border: none;
  border-radius: 0;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.item .item-button-more:hover {
  background-color: var(--primary-color);
}
@media (hover: none) {
  .item .item-button-more:hover {
    background-color: var(--primary-color);
  }
}
.item-stickers,
.item-patches {
  display: flex;
  margin-left: 5px;
  width: 80%;
  height: 35px;
  z-index: 2;
  flex-direction: row;
  top: 175px;
  padding-bottom: 5px;
  position: absolute;
}
.item-stickers .item-sticker,
.item-patches .item-sticker {
  cursor: pointer;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: scale(1);
  transition: transform 0.15s ease-in-out;
}
.item-stickers .item-sticker img,
.item-patches .item-sticker img,
.item-stickers .item-sticker svg,
.item-patches .item-sticker svg {
  width: 100%;
  height: auto;
}
.item-stickers .item-sticker:hover,
.item-patches .item-sticker:hover {
  transform: scale(1.7);
}
.item-stickers .item-patch,
.item-patches .item-patch {
  cursor: pointer;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: scale(1);
  transition: transform 0.15s ease-in-out;
}
.item-stickers .item-patch img,
.item-patches .item-patch img,
.item-stickers .item-patch svg,
.item-patches .item-patch svg {
  width: 100%;
  height: auto;
}
.item-stickers .item-patch:hover,
.item-patches .item-patch:hover {
  transform: scale(1.7);
}
.item-charms {
  display: flex;
  height: 40px;
  z-index: 2;
  flex-direction: row;
  top: 170px;
  right: 0;
  padding-bottom: 5px;
  position: absolute;
}
.item-charms .item-charm {
  cursor: pointer;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: scale(1);
  transition: transform 0.15s ease-in-out;
}
.item-charms .item-charm img,
.item-charms .item-charm svg {
  width: 100%;
  height: auto;
}
.item-charms .item-charm:hover {
  transform: scale(1.7);
}
.slide-up-menu {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 100%;
  background-color: var(--item-menu-background);
  border-bottom: 2px solid var(--item-menu-background);
  color: var(--text-color);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.2s ease-out;
  z-index: -1;
  pointer-events: none;
}
.slide-up-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.slide-up-menu .menu-list {
  padding: 0;
}
.slide-up-menu .menu-item {
  display: flex;
  width: 100%;
  color: var(--text-color);
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.2s ease-out;
  justify-content: center;
  align-items: center;
}
.slide-up-menu .menu-item:hover {
  color: #FFF;
  background-color: var(--primary-color);
}
@media (hover: none) {
  .slide-up-menu .menu-item:hover {
    background-color: transparent;
    color: var(--text-color);
  }
}
.slide-up-menu .menu-item .menu-icon {
  margin-right: 8px;
}
.Skinport .item-button-buy,
.Skinport .item-button-more {
  background-color: var(--market-skinport);
  color: var(--market-skinport-text);
}
.Skinport .item-button-buy:hover,
.Skinport .item-button-more:hover {
  background-color: var(--market-skinport-hover);
}
@media (hover: none) {
  .Skinport .item-button-buy:hover,
  .Skinport .item-button-more:hover {
    background-color: var(--market-skinport);
  }
}
.Skinport .slide-up-menu .menu-item:hover {
  color: var(--market-skinport-text);
  background-color: var(--market-skinport);
}
@media (hover: none) {
  .Skinport .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.GamerPay .item-button-buy,
.GamerPay .item-button-more {
  background-color: var(--market-gamerpay);
  color: var(--market-gamerpay-text);
}
.GamerPay .item-button-buy:hover,
.GamerPay .item-button-more:hover {
  background-color: var(--market-gamerpay-hover);
}
@media (hover: none) {
  .GamerPay .item-button-buy:hover,
  .GamerPay .item-button-more:hover {
    background-color: var(--market-gamerpay);
  }
}
.GamerPay .slide-up-menu .menu-item:hover {
  color: var(--market-gamerpay-text);
  background-color: var(--market-gamerpay);
}
@media (hover: none) {
  .GamerPay .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.dMarket .item-button-buy,
.dMarket .item-button-more {
  background-color: var(--market-dmarket);
  color: var(--market-dmarket-text);
}
.dMarket .item-button-buy:hover,
.dMarket .item-button-more:hover {
  background-color: var(--market-dmarket-hover);
}
@media (hover: none) {
  .dMarket .item-button-buy:hover,
  .dMarket .item-button-more:hover {
    background-color: var(--market-dmarket);
  }
}
.dMarket .slide-up-menu .menu-item:hover {
  color: var(--market-dmarket-text);
  background-color: var(--market-dmarket);
}
@media (hover: none) {
  .dMarket .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.Skinbaron .item-button-buy,
.Skinbaron .item-button-more {
  background-color: var(--market-skinbaron);
  color: var(--market-skinbaron-text);
}
.Skinbaron .item-button-buy:hover,
.Skinbaron .item-button-more:hover {
  background-color: var(--market-skinbaron-hover);
}
@media (hover: none) {
  .Skinbaron .item-button-buy:hover,
  .Skinbaron .item-button-more:hover {
    background-color: var(--market-skinbaron);
  }
}
.Skinbaron .slide-up-menu .menu-item:hover {
  color: var(--market-skinbaron-text);
  background-color: var(--market-skinbaron);
}
@media (hover: none) {
  .Skinbaron .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.Bitskins .item-button-buy,
.Bitskins .item-button-more {
  background-color: var(--market-bitskins);
  color: var(--market-bitskins-text);
}
.Bitskins .item-button-buy:hover,
.Bitskins .item-button-more:hover {
  background-color: var(--market-bitskins-hover);
}
@media (hover: none) {
  .Bitskins .item-button-buy:hover,
  .Bitskins .item-button-more:hover {
    background-color: var(--market-bitskins);
  }
}
.Bitskins .slide-up-menu .menu-item:hover {
  color: var(--market-bitskins-text);
  background-color: var(--market-bitskins);
}
@media (hover: none) {
  .Bitskins .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.csmoneymarket .item-button-buy,
.csmoneytrade .item-button-buy,
.csmoneymarket .item-button-more,
.csmoneytrade .item-button-more {
  background-color: var(--market-csmoney);
  color: var(--market-csmoney-text);
}
.csmoneymarket .item-button-buy:hover,
.csmoneytrade .item-button-buy:hover,
.csmoneymarket .item-button-more:hover,
.csmoneytrade .item-button-more:hover {
  background-color: var(--market-csmoney-hover);
}
@media (hover: none) {
  .csmoneymarket .item-button-buy:hover,
  .csmoneytrade .item-button-buy:hover,
  .csmoneymarket .item-button-more:hover,
  .csmoneytrade .item-button-more:hover {
    background-color: var(--market-csmoney);
  }
}
.csmoneymarket .slide-up-menu .menu-item:hover,
.csmoneytrade .slide-up-menu .menu-item:hover {
  color: var(--market-csmoney-text);
  background-color: var(--market-csmoney);
}
@media (hover: none) {
  .csmoneymarket .slide-up-menu .menu-item:hover,
  .csmoneytrade .slide-up-menu .menu-item:hover {
    background-color: inherit;
    color: inherit;
  }
}
.item-popover-attachment-name {
  font-weight: 900;
}
.item-popover-strong {
  font-weight: 900;
}
@media (hover: none) {
  .item:not(.placeholder) .item-content:hover {
    transform: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
  }
  .item:not(.placeholder) .item-content:hover .item-image-wrapper:before {
    opacity: var(--item-image-background-opacity-hover);
  }
  .item:not(.placeholder) .item-content:hover .item-image-wrapper .item-image {
    transform: scale(1.05);
  }
  .item:not(.placeholder) .item-content:hover .item-button-group {
    opacity: 1;
    transform: none;
    transition: all 0.2s ease-in-out, z-index 0s 0.2s;
    z-index: 5;
  }
  .item:not(.placeholder) .item-content .item-content-inner {
    height: calc(100% - 260px);
  }
  .item:not(.placeholder) .item-content .item-button-group {
    position: relative;
    opacity: 1;
    transform: none;
  }
}
.pulse-placeholder {
  animation: pulse 1.5s infinite ease-in-out;
  background-color: var(--item-pulse-color) !important;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media only screen and (max-width: 400px) {
  .item {
    width: 100%;
  }
}
@media only screen and (min-width: 400px) and (max-width: 750px) {
  .item {
    width: 50%;
  }
  .item-stickers .item-sticker,
  .item-patches .item-sticker,
  .item-stickers .item-patch,
  .item-patches .item-patch {
    width: 30px;
  }
}
@media only screen and (min-width: 750px) and (max-width: 841px) {
  .item {
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 841px) and (max-width: 1050px) {
  .item {
    width: 50%;
  }
}
@media only screen and (min-width: 1050px) and (max-width: 1300px) {
  .item {
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1550px) {
  .item {
    width: 25%;
  }
}
@media only screen and (min-width: 1550px) and (max-width: 1700px) {
  .item {
    width: 20%;
  }
}
@media only screen and (min-width: 1700px) and (max-width: 2450px) {
  .item {
    width: 16.66666667%;
  }
}
@media only screen and (min-width: 2450px) and (max-width: 2950px) {
  .item {
    width: 10%;
  }
}
@media only screen and (min-width: 2950px) and (max-width: 3450px) {
  .item {
    width: 8.33333333%;
  }
}
@media only screen and (min-width: 3450px) {
  .item {
    width: 6.66666667%;
  }
}

.item-slider-section {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
}
.item-slider-section .item-slider-top {
  max-width: 1500px;
  padding: 25px 25px 15px 25px;
  width: 100%;
}
.item-slider-section .item-slider-top .item-slider-nav-container {
  justify-content: space-between;
}
.item-slider-section .item-slider-top .item-slider-tabs {
  padding-left: 10px;
  padding-right: 8px;
}
.item-slider-section .item-slider-top .item-slider-tabs .item-slider-tab {
  max-height: 40px;
  min-height: auto;
  height: auto;
  color: var(--text-color);
}
.item-slider-section .item-slider-bottom {
  padding: 15px 25px 25px 25px;
  width: 100%;
}
.item-slider-section .item-slider-bottom .item-slider-items-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.item-slider-section .item-slider-bottom .item-slider-items {
  width: 100%;
}
.item-slider-section .item-slider-bottom .item-slider-items.loadingPlaceholder {
  display: flex;
  justify-content: center;
}
.item-slider-section .item-slider-bottom .item-slider-items .item-slider-items-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-slider-section .item-slider-bottom .item {
  width: 290px !important;
  min-width: 290px !important;
  max-width: 290px !important;
  height: 485px;
  display: flex;
}
.item-slider-section .item-slider-bottom .item:not(.placeholder) .item-content:hover {
  transform: none;
  box-shadow: none;
}
.item-slider-section .item-slider-bottom .item:not(.placeholder) .item-content:hover .item-button-group {
  transform: none;
}
.item-slider-section .item-slider-bottom .item .item-content-inner {
  height: calc(100% - 260px);
}
.item-slider-section .item-slider-bottom .item .item-inner {
  border-width: 8px;
}
.item-slider-section .item-slider-bottom .item .item-inner .item-content {
  border-radius: 5px;
}
.item-slider-section .item-slider-bottom .item .item-button-group {
  position: relative;
  transform: none;
  opacity: 1;
}
.item-slider-section .item-slider-bottom .item .item-button-group .item-button-buy {
  border-bottom-left-radius: 5px;
}
.item-slider-section .item-slider-bottom .item .item-button-group .item-button-more {
  border-bottom-right-radius: 5px;
}
.item-slider-section .item-slider-bottom .item-slider-left {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
  padding-right: 25px;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transform: rotateY(-180deg);
}
.item-slider-section .item-slider-bottom .item-slider-left:before {
  content: '';
  position: absolute;
  top: -150%;
  right: 0;
  height: 400%;
  width: 200%;
  pointer-events: none;
  background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 50%, var(--background-color) 70%);
}
.item-slider-section .item-slider-bottom .item-slider-more {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
  padding-right: 25px;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.item-slider-section .item-slider-bottom .item-slider-more:before {
  content: '';
  position: absolute;
  top: -150%;
  right: 0;
  height: 400%;
  width: 200%;
  pointer-events: none;
  background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 50%, var(--background-color) 70%);
}
.item-slider-section .item-slider-bottom .item-slider-more button {
  pointer-events: auto;
  background-color: var(--half-transparent-invert);
  color: var(--text-color);
  border: 1px solid var(--half-transparent);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.item-slider-section .item-slider-bottom .item-slider-more button:hover {
  transform: scale(1.05);
}
.item-slider-section .item-slider-bottom .item-slider-more button:hover svg {
  animation: move-left-right 1s ease-in-out infinite;
}
.item-slider-section .swiper {
  width: 100%;
  height: 100%;
}
.item-slider-section .swiper-wrapper {
  transition-timing-function: linear;
}
.item-slider-section .swiper-slide {
  width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 899px) {
  .item-slider-section {
    padding: 0 25px 0 25px;
  }
}
@media only screen and (max-width: 697px) {
  .item-slider-section {
    padding: 0 15px 15px 15px;
  }
  .item-slider-section .item-slider-top .item-slider-tabs {
    padding-left: 0;
    padding-right: 0;
  }
  .item-slider-section .item-slider-top .item-slider-nav-container {
    justify-content: center;
  }
  .item-slider-section .item-slider-top .item-slider-nav-container .item-slider-nav-button {
    display: none;
  }
  .item-slider-section .item-slider-bottom {
    padding: 0;
  }
  .item-slider-section .item-slider-bottom .item-slider-left {
    width: 50px;
    padding-right: 0;
  }
  .item-slider-section .item-slider-bottom .item-slider-left:before {
    background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 55%, var(--background-color) 70%);
  }
  .item-slider-section .item-slider-bottom .item-slider-more {
    width: 50px;
    padding-right: 10px;
  }
  .item-slider-section .item-slider-bottom .item-slider-more:before {
    background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 55%, var(--background-color) 70%);
  }
}

.mobile-menu-opened .footer {
  transform: translateX(-280px);
  pointer-events: none;
}
.footer {
  background: var(--background-color);
  color: var(--text-color);
  padding: 45px 0 0 0;
  font-family: "Arial", sans-serif;
  height: auto;
  border-top: 1px solid var(--nearly-transparent);
  transition: filter 0.25s linear, transform 0.25s linear;
}
@media (max-width: 450px) {
  .footer {
    padding-top: 25px;
  }
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    justify-content: center;
  }
}
.footer .footer-links-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.footer .footer-link-box {
  margin: 10px;
}
@media (max-width: 550px) {
  .footer .footer-link-box {
    width: calc(50% - 20px);
    text-align: center;
  }
}
.footer .footer-link-box .footer-headline {
  margin-bottom: 10px;
  font-weight: bold;
}
.footer .footer-link-box a {
  display: block;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: none;
}
.footer .footer-link-box a:hover {
  text-decoration: underline;
}
.footer .footer-logo-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer .footer-logo-social {
    flex-direction: column;
    align-items: center;
  }
}
.footer .social-icons {
  margin-left: 0;
}
.footer .social-icons button:hover {
  color: var(--text-color);
}
.footer .social-icons button:hover svg {
  fill: var(--primary-color);
}
.footer .social-icons svg {
  -webkit-user-select: none;
          user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-size: 1.5rem;
}
.footer .social-icons .MuiIconButton-root {
  color: var(--text-color);
  margin-left: 10px;
}
.footer .social-icons .MuiIconButton-root:first-child {
  margin-left: 0;
}
.footer .social-icons .MuiIconButton-root .MuiSvgIcon-root {
  font-size: 24px;
}
.footer .footer-bottom {
  text-align: center;
  width: 100%;
  margin: 45px 0 0 0;
  padding-bottom: 25px;
  padding-left: 16px;
  padding-right: 16px;
}
.footer .footer-bottom .footer-terms {
  margin-top: 10px;
}
.footer .footer-bottom .footer-terms a {
  color: var(--text-color);
  margin: 0 5px;
}
.footer .footer-bottom .footer-terms a:hover {
  color: var(--text-color);
  text-decoration: none;
}
@media only screen and (max-width: 899px) {
  .footer {
    padding: 25px 0 0 0;
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: 44px;

  width: var(--swiper-navigation-size);
  height: 44px;
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (44px / 2));
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: 4px;
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: 4px;
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: 50%;
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (44px / 2));
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: 4px;
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: 4px;
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: 50%;
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (44px / 2));
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: 4px;
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: 4px;
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.menu-top {
  border-bottom: 2px solid var(--subFilter-border-color);
  margin-bottom: -2px;
}
.menu-top,
.subcategory-box {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--filter-background-color);
  height: 70px;
  z-index: 5;
  /* Anpassungen für das MUI Menu */
}
.menu-top .menu-top-element.menu-top-element-more,
.subcategory-box .menu-top-element.menu-top-element-more {
  margin-right: auto;
}
.menu-top .menu-button,
.subcategory-box .menu-button,
.menu-top .subcategory-button,
.subcategory-box .subcategory-button {
  color: var(--text-color);
  margin-right: 10px;
  padding: 10px 20px;
  border: 2px solid transparent;
  height: 46px;
}
.menu-top .menu-button.active,
.subcategory-box .menu-button.active,
.menu-top .subcategory-button.active,
.subcategory-box .subcategory-button.active {
  background-color: var(--nearly-transparent);
  color: var(--text-color);
  border-color: var(--primary-color);
}
.menu-top .menu-button.active svg,
.subcategory-box .menu-button.active svg,
.menu-top .subcategory-button.active svg,
.subcategory-box .subcategory-button.active svg {
  fill: var(--text-color);
}
.menu-top .menu-button:hover,
.subcategory-box .menu-button:hover,
.menu-top .subcategory-button:hover,
.subcategory-box .subcategory-button:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}
@media (hover: none) {
  .menu-top .menu-button:hover,
  .subcategory-box .menu-button:hover,
  .menu-top .subcategory-button:hover,
  .subcategory-box .subcategory-button:hover {
    color: var(--text-color);
    background-color: transparent;
  }
}
.menu-top .menu-button:hover svg,
.subcategory-box .menu-button:hover svg,
.menu-top .subcategory-button:hover svg,
.subcategory-box .subcategory-button:hover svg {
  fill: var(--text-color-light);
}
@media (hover: none) {
  .menu-top .menu-button:hover svg,
  .subcategory-box .menu-button:hover svg,
  .menu-top .subcategory-button:hover svg,
  .subcategory-box .subcategory-button:hover svg {
    fill: var(--text-color);
  }
}
.menu-top .menu-button svg,
.subcategory-box .menu-button svg,
.menu-top .subcategory-button svg,
.subcategory-box .subcategory-button svg {
  fill: var(--text-color);
}
.menu-top .filter-input,
.subcategory-box .filter-input {
  position: relative;
  margin-right: 10px;
  width: 25vw;
  min-width: 280px;
  margin-left: auto;
}
.menu-top .filter-input label,
.subcategory-box .filter-input label {
  color: var(--text-color);
}
.menu-top .filter-input input,
.subcategory-box .filter-input input {
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  color: var(--text-color);
}
.menu-top .filter-input .search-icon,
.subcategory-box .filter-input .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  cursor: pointer;
}
.menu-top .filter-input .MuiInputLabel-root.Mui-focused,
.subcategory-box .filter-input .MuiInputLabel-root.Mui-focused,
.menu-top .filter-input .MuiInputLabel-root.MuiInputLabel-shrink,
.subcategory-box .filter-input .MuiInputLabel-root.MuiInputLabel-shrink {
  transform: translate(14px, -10px) scale(0.75);
}
.menu-top .filter-input .MuiInputBase-root,
.subcategory-box .filter-input .MuiInputBase-root {
  height: 45px;
}
.menu-top .filter-input .MuiInputLabel-root,
.subcategory-box .filter-input .MuiInputLabel-root {
  transform: translate(14px, 9px) scale(1);
}
.menu-top .filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline,
.subcategory-box .filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-hover-color);
}
@media (hover: none) {
  .menu-top .filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline,
  .subcategory-box .filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: inherit;
  }
}
.menu-top .filter-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline,
.subcategory-box .filter-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.menu-top .filter-input .MuiOutlinedInput-notchedOutline,
.subcategory-box .filter-input .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.menu-top .filter-input .MuiAutocomplete-endAdornment button,
.subcategory-box .filter-input .MuiAutocomplete-endAdornment button {
  color: var(--text-color);
}
.menu-top .item-sort-button,
.subcategory-box .item-sort-button {
  min-width: 110px;
  margin-right: 0;
  padding-right: 12px;
  line-height: 1.2;
}
.menu-top .item-sort-button:hover svg,
.subcategory-box .item-sort-button:hover svg {
  fill: var(--text-color-light);
}
.menu-top .item-sort-button svg,
.subcategory-box .item-sort-button svg {
  fill: var(--text-color);
}
.menu-top .menu-sort button,
.subcategory-box .menu-sort button {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
.menu-top .menu-sort button:hover,
.subcategory-box .menu-sort button:hover {
  background-color: #040404;
}
@media (hover: none) {
  .menu-top .menu-sort button:hover,
  .subcategory-box .menu-sort button:hover {
    background: none;
  }
}
.menu-top .MuiPaper-root,
.subcategory-box .MuiPaper-root {
  background-color: #333;
  color: #ffffff;
}
.menu-top .MuiPaper-root .MuiMenuItem-root:hover,
.subcategory-box .MuiPaper-root .MuiMenuItem-root:hover {
  background-color: #1a1a1a;
}
@media (hover: none) {
  .menu-top .MuiPaper-root .MuiMenuItem-root:hover,
  .subcategory-box .MuiPaper-root .MuiMenuItem-root:hover {
    background-color: transparent;
  }
}
.sub-menu .MuiPaper-elevation {
  background-color: var(--background-color);
  color: var(--text-color);
}
.sub-menu .sub-menu-button:hover {
  background-color: var(--background-color-secondary);
  color: var(--text-color);
}
@media (hover: none) {
  .sub-menu .sub-menu-button:hover {
    color: inherit;
    background-color: transparent;
  }
}
.sub-menu .sub-menu-button.active {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}
.menu-loading-items {
  background: var(--subFilter-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.subcategory-box {
  position: static;
  width: 100%;
  background: var(--subFilter-background-color);
  border-top: 2px solid var(--subFilter-border-color);
}
.subcategory-box .subcategory-items {
  width: 100%;
  display: flex;
}
.subcategory-box .subcategory-items .subcategory-noitems-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.subcategory-box .subcategory-button {
  white-space: nowrap;
  min-width: auto;
  padding: 6px 10px;
  font-size: 13px;
  height: 40px;
}
.subcategory-box .subcategory-button.subcategory-button-item {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 200px;
  min-width: 60px;
}
.subcategory-box .subcategory-button.hide {
  display: none;
}
.subcategory-box .subcategory-button.more-button {
  padding-right: 0;
}
.subcategory-box .subcategory-button.more-button svg {
  margin-left: 2px;
}
.subcategory-box .subcategory-button.close-button {
  margin-left: auto;
  margin-right: 0;
}
.subcategory-box .close-button.margin-left-auto {
  margin-left: auto;
}
.skinping-light .results-box {
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.1);
}
.results-box {
  background: var(--subFilter-background-color);
  border-top: 2px solid var(--subFilter-border-color);
}
.results-box .swiper {
  padding-left: 40px;
  padding-right: 40px;
}
.results-box .swiper-slide {
  cursor: pointer;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.results-box .swiper-button-prev,
.results-box .swiper-button-next {
  top: 0;
  height: 100%;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  width: 50px;
}
.results-box .swiper-button-prev:after,
.results-box .swiper-button-next:after {
  font-size: 24px;
  color: var(--text-color);
}
.results-box .swiper-button-prev {
  left: 0;
}
.results-box .swiper-button-next {
  right: 0;
}
.results-box .item-card {
  display: flex;
  flex-direction: column;
  padding: 0 0 16px 0;
  position: relative;
  width: 100%;
  z-index: 4;
  justify-content: start;
  align-items: center;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.results-box .item-card.active {
  background-color: var(--nearly-transparent);
  border-color: var(--primary-color);
}
.results-box .item-card .item-card-image {
  padding: 10px;
  width: 100%;
  height: 120px;
}
.results-box .item-card .item-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.results-box .item-card .item-card-text {
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (min-width: 0px) and (max-width: 840px) {
  .menu-top .menu-search {
    display: none;
  }
}

.menu-left-wrapper {
  position: relative;
  width: 280px;
  min-width: 280px;
  margin-bottom: 83px;
}
.menu-left {
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  height: -webkit-fit-content;
  height: fit-content;
  width: 280px;
  min-width: 280px;
}
.menu-left::-webkit-scrollbar {
  display: none;
}
.menu-left .Mui-disabled {
  cursor: not-allowed;
}
.menu-left .Mui-disabled > span:first-child {
  opacity: 0.2;
}
.menu-left .Mui-disabled > span:last-child {
  color: var(--text-color);
  opacity: 0.2;
}
.menu-left input {
  color: var(--text-color);
}
.menu-left .filter-header {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-left: 15px;
  background: var(--filter-background-color);
}
.menu-left .filter-header h2 {
  color: var(--text-color);
}
.menu-left .filter-header .reset-filters {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 10px 20px;
}
.menu-left .filter-header .reset-filters:hover {
  text-decoration: underline;
}
@media (hover: none) {
  .menu-left .filter-header .reset-filters:hover {
    text-decoration: none;
  }
}
.menu-left .MuiAccordion-root {
  background-color: var(--filter-background-color);
  color: var(--text-color);
}
.menu-left .MuiAccordion-root:before {
  background-color: var(--background-color);
}
.menu-left .MuiAccordion-root .MuiAccordionSummary-expandIconWrapper {
  color: var(--text-color);
}
.menu-left .MuiAccordion-root.Mui-expanded {
  margin: 0 !important;
}
.menu-left .MuiAccordion-root.Mui-expanded:before {
  opacity: 1;
}
.menu-left .MuiAccordion-root .MuiAccordionSummary-root {
  min-height: 48px;
}
.menu-left .MuiAccordion-root .MuiAccordionSummary-root .MuiAccordionSummary-content {
  margin: 0;
}
.menu-left .MuiAccordion-root .MuiAccordionDetails-root {
  display: flex;
  flex-direction: column;
  padding: 0 16px 16px 16px;
}
.menu-left .MuiAccordion-root .MuiAccordionDetails-root span {
  margin: 0 8px;
}
.menu-left .MuiAccordion-root:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.menu-left > .MuiButton-contained {
  border-radius: 0;
  padding: 12px 22px;
}
.menu-left .rarity-colors {
  display: flex;
}
.menu-left .rarity-colors .rarity-dot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.menu-left .apply-button {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  box-shadow: none;
  z-index: 3;
}
.menu-left .apply-button:hover {
  box-shadow: none;
}
@media (hover: none) {
  .menu-left .apply-button:hover {
    box-shadow: none;
  }
}
.filter-sticker-positions,
.filter-patch-positions,
.filter-charm-positions {
  padding-bottom: 10px;
}
.filter-sticker-positions .filter-sticker-position-button,
.filter-patch-positions .filter-sticker-position-button,
.filter-charm-positions .filter-sticker-position-button,
.filter-sticker-positions .filter-patch-position-button,
.filter-patch-positions .filter-patch-position-button,
.filter-charm-positions .filter-patch-position-button,
.filter-sticker-positions .filter-charm-position-button,
.filter-patch-positions .filter-charm-position-button,
.filter-charm-positions .filter-charm-position-button {
  position: relative;
  padding: 5px 0 5px 0;
  height: 48px;
  border: 2px solid var(--nearly-transparent);
  color: var(--nearly-transparent);
  margin-left: 5px;
  background-color: transparent;
  box-shadow: none;
  cursor: auto;
}
.filter-sticker-positions .filter-sticker-position-button:hover,
.filter-patch-positions .filter-sticker-position-button:hover,
.filter-charm-positions .filter-sticker-position-button:hover,
.filter-sticker-positions .filter-patch-position-button:hover,
.filter-patch-positions .filter-patch-position-button:hover,
.filter-charm-positions .filter-patch-position-button:hover,
.filter-sticker-positions .filter-charm-position-button:hover,
.filter-patch-positions .filter-charm-position-button:hover,
.filter-charm-positions .filter-charm-position-button:hover {
  background-color: transparent;
  border: 2px dashed var(--half-transparent);
  color: var(--half-transparent);
  cursor: pointer;
}
@media (hover: none) {
  .filter-sticker-positions .filter-sticker-position-button:hover,
  .filter-patch-positions .filter-sticker-position-button:hover,
  .filter-charm-positions .filter-sticker-position-button:hover,
  .filter-sticker-positions .filter-patch-position-button:hover,
  .filter-patch-positions .filter-patch-position-button:hover,
  .filter-charm-positions .filter-patch-position-button:hover,
  .filter-sticker-positions .filter-charm-position-button:hover,
  .filter-patch-positions .filter-charm-position-button:hover,
  .filter-charm-positions .filter-charm-position-button:hover {
    background-color: transparent;
    color: var(--nearly-transparent);
    border: 2px solid var(--nearly-transparent);
  }
}
.filter-sticker-positions .filter-sticker-position-button.pre-selected,
.filter-patch-positions .filter-sticker-position-button.pre-selected,
.filter-charm-positions .filter-sticker-position-button.pre-selected,
.filter-sticker-positions .filter-patch-position-button.pre-selected,
.filter-patch-positions .filter-patch-position-button.pre-selected,
.filter-charm-positions .filter-patch-position-button.pre-selected,
.filter-sticker-positions .filter-charm-position-button.pre-selected,
.filter-patch-positions .filter-charm-position-button.pre-selected,
.filter-charm-positions .filter-charm-position-button.pre-selected {
  background-color: transparent;
  border: 2px dashed var(--half-transparent);
  color: var(--half-transparent);
  cursor: pointer;
}
.filter-sticker-positions .filter-sticker-position-button.selected,
.filter-patch-positions .filter-sticker-position-button.selected,
.filter-charm-positions .filter-sticker-position-button.selected,
.filter-sticker-positions .filter-patch-position-button.selected,
.filter-patch-positions .filter-patch-position-button.selected,
.filter-charm-positions .filter-patch-position-button.selected,
.filter-sticker-positions .filter-charm-position-button.selected,
.filter-patch-positions .filter-charm-position-button.selected,
.filter-charm-positions .filter-charm-position-button.selected {
  border: 2px solid var(--half-transparent);
  color: var(--half-transparent);
}
.filter-sticker-positions .filter-sticker-position-button.selected.pre-selected,
.filter-patch-positions .filter-sticker-position-button.selected.pre-selected,
.filter-charm-positions .filter-sticker-position-button.selected.pre-selected,
.filter-sticker-positions .filter-patch-position-button.selected.pre-selected,
.filter-patch-positions .filter-patch-position-button.selected.pre-selected,
.filter-charm-positions .filter-patch-position-button.selected.pre-selected,
.filter-sticker-positions .filter-charm-position-button.selected.pre-selected,
.filter-patch-positions .filter-charm-position-button.selected.pre-selected,
.filter-charm-positions .filter-charm-position-button.selected.pre-selected {
  background-color: transparent;
  border: 2px dashed var(--half-transparent);
  color: var(--half-transparent);
  cursor: pointer;
}
.filter-sticker-positions .filter-sticker-position-button.selected:before,
.filter-patch-positions .filter-sticker-position-button.selected:before,
.filter-charm-positions .filter-sticker-position-button.selected:before,
.filter-sticker-positions .filter-patch-position-button.selected:before,
.filter-patch-positions .filter-patch-position-button.selected:before,
.filter-charm-positions .filter-patch-position-button.selected:before,
.filter-sticker-positions .filter-charm-position-button.selected:before,
.filter-patch-positions .filter-charm-position-button.selected:before,
.filter-charm-positions .filter-charm-position-button.selected:before {
  content: attr(data-position);
  position: absolute;
  bottom: -10px;
  left: -10px;
  padding: 2px;
  z-index: 2;
  color: var(--white);
  background-color: var(--primary-color);
  height: 14px;
  width: 14px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 10px;
}
.filter-sticker-positions .filter-sticker-position-button:first-child,
.filter-patch-positions .filter-sticker-position-button:first-child,
.filter-charm-positions .filter-sticker-position-button:first-child,
.filter-sticker-positions .filter-patch-position-button:first-child,
.filter-patch-positions .filter-patch-position-button:first-child,
.filter-charm-positions .filter-patch-position-button:first-child,
.filter-sticker-positions .filter-charm-position-button:first-child,
.filter-patch-positions .filter-charm-position-button:first-child,
.filter-charm-positions .filter-charm-position-button:first-child {
  margin-left: 0;
}
.filter-sticker-positions .filter-sticker-position-button span,
.filter-patch-positions .filter-sticker-position-button span,
.filter-charm-positions .filter-sticker-position-button span,
.filter-sticker-positions .filter-patch-position-button span,
.filter-patch-positions .filter-patch-position-button span,
.filter-charm-positions .filter-patch-position-button span,
.filter-sticker-positions .filter-charm-position-button span,
.filter-patch-positions .filter-charm-position-button span,
.filter-charm-positions .filter-charm-position-button span {
  margin: 0 !important;
}
.filter-sticker-positions .filter-sticker-position-button img,
.filter-patch-positions .filter-sticker-position-button img,
.filter-charm-positions .filter-sticker-position-button img,
.filter-sticker-positions .filter-patch-position-button img,
.filter-patch-positions .filter-patch-position-button img,
.filter-charm-positions .filter-patch-position-button img,
.filter-sticker-positions .filter-charm-position-button img,
.filter-patch-positions .filter-charm-position-button img,
.filter-charm-positions .filter-charm-position-button img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.filter-sticker-positions .filter-sticker-position-button svg,
.filter-patch-positions .filter-sticker-position-button svg,
.filter-charm-positions .filter-sticker-position-button svg,
.filter-sticker-positions .filter-patch-position-button svg,
.filter-patch-positions .filter-patch-position-button svg,
.filter-charm-positions .filter-patch-position-button svg,
.filter-sticker-positions .filter-charm-position-button svg,
.filter-patch-positions .filter-charm-position-button svg,
.filter-charm-positions .filter-charm-position-button svg {
  position: absolute;
  z-index: 2;
  top: -8px;
  right: -8px;
  cursor: pointer;
  background-color: var(--background-color);
  color: var(--text-color);
  border-radius: 100%;
  padding: 2px;
  font-size: 20px;
}
.filter-sticker-byslot,
.filter-patches-byslot,
.filter-charms-byslot {
  margin-bottom: 15px;
}
.filter-sticker-wearless-sticker,
.filter-sticker-wearless-sticker {
  margin-bottom: 15px;
}
.filter-input {
  position: relative;
  margin-right: 10px;
  width: 100%;
}
.filter-input label {
  color: var(--text-color) !important;
}
.filter-input input {
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  color: var(--text-color);
}
.filter-input .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  cursor: pointer;
}
.filter-input .MuiInputLabel-root.Mui-focused,
.filter-input .MuiInputLabel-root.MuiInputLabel-shrink {
  transform: translate(14px, -7px) scale(0.75);
}
.filter-input .MuiInputBase-root {
  height: 48px;
}
.filter-input .MuiInputBase-input {
  height: 24px;
  padding: 8px 14px;
}
.filter-input .MuiInputLabel-root {
  transform: translate(14px, 13px) scale(1);
}
.filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-hover-color);
}
@media (hover: none) {
  .filter-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: inherit;
  }
}
.filter-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.filter-input .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.filter-input .MuiAutocomplete-endAdornment button {
  color: var(--text-color);
}
.filter-input fieldset legend span {
  margin: 0 !important;
  color: var(--text-color) !important;
}
.filter-sticker-loading,
.filter-patch-loading,
.filter-charm-loading {
  padding: 45px 25px 25px 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-sticker-loading svg,
.filter-patch-loading svg,
.filter-charm-loading svg {
  color: var(--text-color);
}
.filter-sticker-list,
.filter-patch-list,
.filter-charm-list {
  margin-top: 15px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.filter-sticker-list .filter-sticker-list-item,
.filter-patch-list .filter-sticker-list-item,
.filter-charm-list .filter-sticker-list-item,
.filter-sticker-list .filter-patch-list-item,
.filter-patch-list .filter-patch-list-item,
.filter-charm-list .filter-patch-list-item,
.filter-sticker-list .filter-charm-list-item,
.filter-patch-list .filter-charm-list-item,
.filter-charm-list .filter-charm-list-item {
  padding-left: 0;
  cursor: pointer;
}
.filter-sticker-list .filter-sticker-list-item:first-child,
.filter-patch-list .filter-sticker-list-item:first-child,
.filter-charm-list .filter-sticker-list-item:first-child,
.filter-sticker-list .filter-patch-list-item:first-child,
.filter-patch-list .filter-patch-list-item:first-child,
.filter-charm-list .filter-patch-list-item:first-child,
.filter-sticker-list .filter-charm-list-item:first-child,
.filter-patch-list .filter-charm-list-item:first-child,
.filter-charm-list .filter-charm-list-item:first-child {
  padding-top: 0;
}
.filter-sticker-list .filter-sticker-list-item:last-child,
.filter-patch-list .filter-sticker-list-item:last-child,
.filter-charm-list .filter-sticker-list-item:last-child,
.filter-sticker-list .filter-patch-list-item:last-child,
.filter-patch-list .filter-patch-list-item:last-child,
.filter-charm-list .filter-patch-list-item:last-child,
.filter-sticker-list .filter-charm-list-item:last-child,
.filter-patch-list .filter-charm-list-item:last-child,
.filter-charm-list .filter-charm-list-item:last-child {
  padding-bottom: 0;
}
.filter-sticker-list .filter-sticker-list-item .filter-sticker-list-item-text,
.filter-patch-list .filter-sticker-list-item .filter-sticker-list-item-text,
.filter-charm-list .filter-sticker-list-item .filter-sticker-list-item-text,
.filter-sticker-list .filter-patch-list-item .filter-sticker-list-item-text,
.filter-patch-list .filter-patch-list-item .filter-sticker-list-item-text,
.filter-charm-list .filter-patch-list-item .filter-sticker-list-item-text,
.filter-sticker-list .filter-charm-list-item .filter-sticker-list-item-text,
.filter-patch-list .filter-charm-list-item .filter-sticker-list-item-text,
.filter-charm-list .filter-charm-list-item .filter-sticker-list-item-text,
.filter-sticker-list .filter-sticker-list-item .filter-patch-list-item-text,
.filter-patch-list .filter-sticker-list-item .filter-patch-list-item-text,
.filter-charm-list .filter-sticker-list-item .filter-patch-list-item-text,
.filter-sticker-list .filter-patch-list-item .filter-patch-list-item-text,
.filter-patch-list .filter-patch-list-item .filter-patch-list-item-text,
.filter-charm-list .filter-patch-list-item .filter-patch-list-item-text,
.filter-sticker-list .filter-charm-list-item .filter-patch-list-item-text,
.filter-patch-list .filter-charm-list-item .filter-patch-list-item-text,
.filter-charm-list .filter-charm-list-item .filter-patch-list-item-text,
.filter-sticker-list .filter-sticker-list-item .filter-charm-list-item-text,
.filter-patch-list .filter-sticker-list-item .filter-charm-list-item-text,
.filter-charm-list .filter-sticker-list-item .filter-charm-list-item-text,
.filter-sticker-list .filter-patch-list-item .filter-charm-list-item-text,
.filter-patch-list .filter-patch-list-item .filter-charm-list-item-text,
.filter-charm-list .filter-patch-list-item .filter-charm-list-item-text,
.filter-sticker-list .filter-charm-list-item .filter-charm-list-item-text,
.filter-patch-list .filter-charm-list-item .filter-charm-list-item-text,
.filter-charm-list .filter-charm-list-item .filter-charm-list-item-text {
  margin: 0;
}
.filter-sticker-list .filter-sticker-list-item .filter-sticker-list-item-text span,
.filter-patch-list .filter-sticker-list-item .filter-sticker-list-item-text span,
.filter-charm-list .filter-sticker-list-item .filter-sticker-list-item-text span,
.filter-sticker-list .filter-patch-list-item .filter-sticker-list-item-text span,
.filter-patch-list .filter-patch-list-item .filter-sticker-list-item-text span,
.filter-charm-list .filter-patch-list-item .filter-sticker-list-item-text span,
.filter-sticker-list .filter-charm-list-item .filter-sticker-list-item-text span,
.filter-patch-list .filter-charm-list-item .filter-sticker-list-item-text span,
.filter-charm-list .filter-charm-list-item .filter-sticker-list-item-text span,
.filter-sticker-list .filter-sticker-list-item .filter-patch-list-item-text span,
.filter-patch-list .filter-sticker-list-item .filter-patch-list-item-text span,
.filter-charm-list .filter-sticker-list-item .filter-patch-list-item-text span,
.filter-sticker-list .filter-patch-list-item .filter-patch-list-item-text span,
.filter-patch-list .filter-patch-list-item .filter-patch-list-item-text span,
.filter-charm-list .filter-patch-list-item .filter-patch-list-item-text span,
.filter-sticker-list .filter-charm-list-item .filter-patch-list-item-text span,
.filter-patch-list .filter-charm-list-item .filter-patch-list-item-text span,
.filter-charm-list .filter-charm-list-item .filter-patch-list-item-text span,
.filter-sticker-list .filter-sticker-list-item .filter-charm-list-item-text span,
.filter-patch-list .filter-sticker-list-item .filter-charm-list-item-text span,
.filter-charm-list .filter-sticker-list-item .filter-charm-list-item-text span,
.filter-sticker-list .filter-patch-list-item .filter-charm-list-item-text span,
.filter-patch-list .filter-patch-list-item .filter-charm-list-item-text span,
.filter-charm-list .filter-patch-list-item .filter-charm-list-item-text span,
.filter-sticker-list .filter-charm-list-item .filter-charm-list-item-text span,
.filter-patch-list .filter-charm-list-item .filter-charm-list-item-text span,
.filter-charm-list .filter-charm-list-item .filter-charm-list-item-text span {
  font-weight: 900;
  margin-left: 0;
}
.filter-sticker-list .filter-sticker-list-item .filter-sticker-list-item-text p,
.filter-patch-list .filter-sticker-list-item .filter-sticker-list-item-text p,
.filter-charm-list .filter-sticker-list-item .filter-sticker-list-item-text p,
.filter-sticker-list .filter-patch-list-item .filter-sticker-list-item-text p,
.filter-patch-list .filter-patch-list-item .filter-sticker-list-item-text p,
.filter-charm-list .filter-patch-list-item .filter-sticker-list-item-text p,
.filter-sticker-list .filter-charm-list-item .filter-sticker-list-item-text p,
.filter-patch-list .filter-charm-list-item .filter-sticker-list-item-text p,
.filter-charm-list .filter-charm-list-item .filter-sticker-list-item-text p,
.filter-sticker-list .filter-sticker-list-item .filter-patch-list-item-text p,
.filter-patch-list .filter-sticker-list-item .filter-patch-list-item-text p,
.filter-charm-list .filter-sticker-list-item .filter-patch-list-item-text p,
.filter-sticker-list .filter-patch-list-item .filter-patch-list-item-text p,
.filter-patch-list .filter-patch-list-item .filter-patch-list-item-text p,
.filter-charm-list .filter-patch-list-item .filter-patch-list-item-text p,
.filter-sticker-list .filter-charm-list-item .filter-patch-list-item-text p,
.filter-patch-list .filter-charm-list-item .filter-patch-list-item-text p,
.filter-charm-list .filter-charm-list-item .filter-patch-list-item-text p,
.filter-sticker-list .filter-sticker-list-item .filter-charm-list-item-text p,
.filter-patch-list .filter-sticker-list-item .filter-charm-list-item-text p,
.filter-charm-list .filter-sticker-list-item .filter-charm-list-item-text p,
.filter-sticker-list .filter-patch-list-item .filter-charm-list-item-text p,
.filter-patch-list .filter-patch-list-item .filter-charm-list-item-text p,
.filter-charm-list .filter-patch-list-item .filter-charm-list-item-text p,
.filter-sticker-list .filter-charm-list-item .filter-charm-list-item-text p,
.filter-patch-list .filter-charm-list-item .filter-charm-list-item-text p,
.filter-charm-list .filter-charm-list-item .filter-charm-list-item-text p {
  color: var(--text-color);
}
.filter-start-searching {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  line-height: 21px;
  padding: 30px 30px 20px 30px;
}
@media only screen and (min-width: 0px) and (max-width: 840px) {
  .menu-left-wrapper {
    display: none;
  }
}

.item-section {
  display: flex;
  width: 100%;
  padding-bottom: 80px;
  border-top: 2px solid var(--background-color);
}
.item-list-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: var(--filter-background-color);
  border-left: 2px solid var(--background-color);
  border-bottom: 1px solid var(--background-color);
  color: var(--text-color);
  width: 100%;
  height: 50px;
}
.item-list-info .MuiTypography-body2 {
  display: flex;
  align-items: center;
}
.item-list-info span[aria-hidden="true"] {
  margin: 0 8px;
}
.item-list-info .item-breadcrumb {
  flex: 1 1 33.33333333%;
  justify-content: left;
  max-width: 33.3333333%;
}
.item-list-info .item-breadcrumb .bread-crumb-button {
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  display: inline-block;
}
.item-list-info .item-breadcrumb .bread-crumb-button:hover {
  color: var(--primary-color);
  background-color: transparent;
}
@media (hover: none) {
  .item-list-info .item-breadcrumb .bread-crumb-button:hover {
    color: var(--text-color);
  }
}
.item-list-info .item-breadcrumb .bread-crumb-line {
  color: var(--text-color);
}
.item-list-info .item-breadcrumb .active {
  font-weight: bold;
  color: var(--half-transparent-font);
}
.item-list-info .item-breadcrumb .active:hover {
  color: var(--half-transparent-font);
  background-color: transparent;
}
@media (hover: none) {
  .item-list-info .item-breadcrumb .active:hover {
    color: var(--half-transparent-font);
  }
}
.item-list-info .items-info-overview {
  flex: 1 1 33.33333333%;
  justify-content: center;
  max-width: 33.3333333%;
}
.item-list-info .extra-buttons {
  flex: 1 1 33.33333333%;
  justify-content: right;
  max-width: 33.3333333%;
}
.item-list-info .extra-buttons button {
  color: var(--text-color);
}
.item-list-info .extra-buttons button.active {
  color: var(--primary-color);
}
.item-list-info .extra-buttons .live-refresh-button {
  border-color: var(--half-transparent);
  line-height: 25px;
}
.item-list-info .extra-buttons .live-refresh-button .MuiButton-startIcon svg {
  font-size: 12px;
}
.item-list-info .extra-buttons .live-refresh-button.live-active {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
}
.item-list-info .extra-buttons .live-refresh-button.live-active:hover {
  background-color: var(--primary-color-hover);
}
@media (hover: none) {
  .item-list-info .extra-buttons .live-refresh-button.live-active:hover {
    background-color: var(--primary-color);
  }
}
.item-list-info .extra-buttons .live-refresh-button.live-active .MuiButton-startIcon {
  animation: live-animation 2s linear infinite;
}
.item-list {
  padding-left: 1px;
  width: 100%;
  background-color: var(--item-section-background-color);
}
.item-list .item-list-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  width: calc(100% - 1px);
}
.no-items-found {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 50px;
}
.no-items-found.filter-sticker-patches {
  line-height: 21px;
  padding: 30px 30px 20px 30px;
}
.no-items-found .no-items-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.no-items-found .sad-icon {
  font-size: 60px;
  animation: bounce 1s infinite;
}
.no-items-found .no-items-text {
  margin-bottom: 20px;
  color: #666;
}
.no-items-found .navigate-home-btn {
  background-color: #007bff;
  color: #fff;
  box-shadow: none;
}
.no-items-found .navigate-home-btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (hover: none) {
  .no-items-found .navigate-home-btn:hover {
    box-shadow: none;
  }
}
.upgrade-box.item {
  text-align: center;
}
.upgrade-box.item:not(.placeholder) .item-content:hover {
  transform: translateY(0);
  box-shadow: none;
}
.upgrade-box.item .swiper {
  height: 100%;
}
.upgrade-box.item .item-inner .item-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.upgrade-box.item .item-inner .item-content .video-container {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0.9;
}
.upgrade-box.item .item-inner .item-content .video-container video,
.upgrade-box.item .item-inner .item-content .video-container img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.upgrade-box.item .item-inner .item-content .video-container video {
  z-index: 2;
}
.upgrade-box.item .item-inner .item-content .upgrade-item-text {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  color: #FFF;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
.upgrade-box.item .item-inner .item-content .upgrade-item-text h5 {
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.upgrade-box.item .item-inner .item-content .upgrade-item-text p {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
}
.upgrade-box.item .item-inner .item-content .upgrade-item-text .prime-icon svg {
  font-size: 50px;
}
.upgrade-box.item .item-inner .item-content .upgrade-item-text button {
  font-weight: 700;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes live-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 840px) {
  .item-section {
    padding-bottom: 25px;
  }
  .item-list .item-list-inner {
    width: calc(100% - 1px);
  }
  .item-list-info {
    border-left: none;
  }
}

#skins {
  background-color: transparent;
}

@property --cg-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff6bd6;
}
@property --fi-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff3b3b;
}
@property --fi-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffc0c0;
}
@property --cf-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd66e;
}
@property --cf-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffe8b0;
}
@property --cg-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd6ef;
}
@property --cg-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}
@property --spark-amp {
  syntax: '<length>';
  inherits: true;
  initial-value: 6px;
}
@property --d1x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 20%;
}
@property --d1y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 25%;
}
@property --d1a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.7;
}
@property --d2x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 65%;
}
@property --d2y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 40%;
}
@property --d2a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.75;
}
@property --d3x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 35%;
}
@property --d3y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 70%;
}
@property --d3a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.4;
}
@property --d4x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 78%;
}
@property --d4y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 58%;
}
@property --d4a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.45;
}
@property --d5x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 12%;
}
@property --d5y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 82%;
}
@property --d5a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.65;
}
@property --d6x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d7x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 72%;
}
@property --d7y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 18%;
}
@property --d7a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.6;
}
@property --d8x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 28%;
}
@property --d8y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 14%;
}
@property --d8a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d9x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 84%;
}
@property --d9y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 76%;
}
@property --d9a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.5;
}
@property --d10x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 44%;
}
@property --d10y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 86%;
}
@property --d10a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.58;
}
@property --d11x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 10%;
}
@property --d11y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 48%;
}
@property --d11a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.62;
}
/* per-dot pixel offsets (must be registered too!) */
@property --d1dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d1dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --cr-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #8ecbff;
}
@property --cr-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #cfeaff;
}
@property --cr-x {
  syntax: '<length>';
  inherits: true;
  initial-value: -8px;
}
.consumer .item-subcategory,
.base .item-subcategory {
  color: var(--color-rarity-consumer-grade);
}
.consumer .item-image-wrapper:before,
.base .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 80%);
}
.consumer.guide-header:before,
.base.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 100%);
}
.industrial .item-subcategory {
  color: var(--color-rarity-industrial-grade);
}
.industrial .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 80%);
}
.industrial.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 100%);
}
.mil-spec .item-subcategory,
.distinguished .item-subcategory,
.high .item-subcategory,
.high-grade .item-subcategory {
  color: var(--color-rarity-mil-spec-grade);
}
.mil-spec .item-image-wrapper:before,
.distinguished .item-image-wrapper:before,
.high .item-image-wrapper:before,
.high-grade .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 80%);
}
.mil-spec.guide-header:before,
.distinguished.guide-header:before,
.high.guide-header:before,
.high-grade.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 100%);
}
.restricted .item-subcategory,
.exceptional .item-subcategory,
.remarkable .item-subcategory {
  color: var(--color-rarity-restricted);
}
.restricted .item-image-wrapper:before,
.exceptional .item-image-wrapper:before,
.remarkable .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 80%);
}
.restricted.guide-header:before,
.exceptional.guide-header:before,
.remarkable.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 100%);
}
.classified .item-subcategory,
.superior .item-subcategory,
.exotic .item-subcategory {
  color: var(--color-rarity-classified);
}
.classified .item-image-wrapper:before,
.superior .item-image-wrapper:before,
.exotic .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 80%);
}
.classified.guide-header:before,
.superior.guide-header:before,
.exotic.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 100%);
}
.covert .item-subcategory,
.master .item-subcategory {
  color: var(--color-rarity-covert);
}
.covert .item-image-wrapper:before,
.master .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 80%);
}
.covert.guide-header:before,
.master.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 100%);
}
.covert.guide-header.skinping-item-knife:before,
.master.guide-header.skinping-item-knife:before,
.covert.guide-header.skinping-item-gloves:before,
.master.guide-header.skinping-item-gloves:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.covert.skinping-item-knife .item-subcategory,
.master.skinping-item-knife .item-subcategory,
.covert.skinping-item-gloves .item-subcategory,
.master.skinping-item-gloves .item-subcategory {
  color: var(--color-rarity-contraband);
}
.covert.skinping-item-knife .item-image-wrapper:before,
.master.skinping-item-knife .item-image-wrapper:before,
.covert.skinping-item-gloves .item-image-wrapper:before,
.master.skinping-item-gloves .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary .item-subcategory,
.contraband .item-subcategory {
  color: var(--color-rarity-contraband);
}
.extraordinary .item-image-wrapper:before,
.contraband .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary.guide-header:before,
.contraband.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.item-tier {
  cursor: pointer;
  margin-right: 9px !important;
}
.item-tier svg {
  font-size: 20px;
}
.item-tier.tier1 {
  color: var(--tier-1-color);
}
.item-tier.tier2 {
  color: var(--tier-2-color);
}
.item-tier.tier3 {
  color: var(--tier-3-color);
}
.item-bluegem {
  color: var(--item-bluegem);
  cursor: pointer;
  display: flex;
}
.item-bluegem svg {
  animation: bluegem 1s ease-in-out infinite alternate;
}
@keyframes bluegem {
  from {
    filter: drop-shadow(0 0 2px var(--item-bluegem-shine)) drop-shadow(0 0 4px var(--item-bluegem-shine)) drop-shadow(0 0 6px var(--item-bluegem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-bluegem-shine)) drop-shadow(0 0 10px var(--item-bluegem-shine)) drop-shadow(0 0 15px var(--item-bluegem-shine));
  }
}
.item-goldgem {
  color: var(--item-goldgem);
  cursor: pointer;
  display: flex;
}
.item-goldgem svg {
  animation: goldgem 1s ease-in-out infinite alternate;
}
@keyframes goldgem {
  from {
    filter: drop-shadow(0 0 2px var(--item-goldgem-shine)) drop-shadow(0 0 4px var(--item-goldgem-shine)) drop-shadow(0 0 6px var(--item-goldgem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-goldgem-shine)) drop-shadow(0 0 10px var(--item-goldgem-shine)) drop-shadow(0 0 15px var(--item-goldgem-shine));
  }
}
.item-rare {
  color: var(--item-rare);
  cursor: pointer;
  display: flex;
}
.item-rare svg {
  animation: rare 1s ease-in-out infinite alternate;
}
@keyframes rare {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-shine)) drop-shadow(0 0 4px var(--item-rare-shine)) drop-shadow(0 0 6px var(--item-rare-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-shine)) drop-shadow(0 0 10px var(--item-rare-shine)) drop-shadow(0 0 15px var(--item-rare-shine));
  }
}
.rare-d-pattern {
  color: var(--item-rare-d);
  cursor: pointer;
  display: flex;
}
.rare-d-pattern svg {
  animation: rare-d 1s ease-in-out infinite alternate;
}
@keyframes rare-d {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-d-shine)) drop-shadow(0 0 4px var(--item-rare-d-shine)) drop-shadow(0 0 6px var(--item-rare-d-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-d-shine)) drop-shadow(0 0 10px var(--item-rare-d-shine)) drop-shadow(0 0 15px var(--item-rare-d-shine));
  }
}
.rare-star-pattern {
  color: var(--item-rare-star);
  cursor: pointer;
  display: inline-flex;
}
.rare-star-pattern svg {
  fill: currentColor;
  animation: rare-star 1.15s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--item-rare-star-shine));
  will-change: filter;
}
@keyframes rare-star {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-star-shine)) drop-shadow(0 0 4px var(--item-rare-star-shine)) drop-shadow(0 0 6px var(--item-rare-star-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-star-shine)) drop-shadow(0 0 10px var(--item-rare-star-shine)) drop-shadow(0 0 15px var(--item-rare-star-shine));
    transform: scale(1.02);
  }
}
.rare-blue-hive {
  color: var(--item-rare-blue-hive);
  cursor: pointer;
  display: flex;
}
.rare-blue-hive svg {
  animation: rare-blue-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-blue-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 4px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 6px var(--item-rare-blue-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 10px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 15px var(--item-rare-blue-hive-shine));
  }
}
.rare-orange-hive {
  color: var(--item-rare-orange-hive);
  cursor: pointer;
  display: flex;
}
.rare-orange-hive svg {
  animation: rare-orange-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-orange-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 4px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 6px var(--item-rare-orange-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 10px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 15px var(--item-rare-orange-hive-shine));
  }
}
.rare-fire-and-ice {
  cursor: pointer;
  display: flex;
  color: var(--fi-color);
  animation: fi-cycle 8s linear infinite;
  /* drives color & shine fade */
  /* Color & shine loop — perfectly smooth fade-through */
}
.rare-fire-and-ice svg {
  fill: currentColor;
  animation: rare-fire-and-ice 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--fi-shine));
  will-change: color, filter;
}
@keyframes rare-fire-and-ice {
  from {
    filter: drop-shadow(0 0 1px var(--fi-shine)) drop-shadow(0 0 4px var(--fi-shine)) drop-shadow(0 0 6px var(--fi-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--fi-shine)) drop-shadow(0 0 10px var(--fi-shine)) drop-shadow(0 0 15px var(--fi-shine));
  }
}
@keyframes fi-cycle {
  0% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
  25% {
    --fi-color: var(--item-rare-fire-and-ice-mid1);
    --fi-shine: var(--item-rare-fire-and-ice-shine-mid1);
  }
  75% {
    --fi-color: var(--item-rare-fire-and-ice-end);
    --fi-shine: var(--item-rare-fire-and-ice-shine-end);
  }
  100% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
}
.charm-fade {
  cursor: pointer;
  display: flex;
  color: var(--cf-color);
  animation: cf-cycle 8s linear infinite;
  /* cycles color & shine */
  /* smooth, endless fade-through across Fade palette */
}
.charm-fade svg {
  fill: currentColor;
  animation: charm-fade-glow 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cf-shine));
  will-change: color, filter;
}
@keyframes charm-fade-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cf-shine)) drop-shadow(0 0 4px var(--cf-shine)) drop-shadow(0 0 6px var(--cf-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--cf-shine)) drop-shadow(0 0 10px var(--cf-shine)) drop-shadow(0 0 15px var(--cf-shine));
  }
}
@keyframes cf-cycle {
  0% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
  25% {
    --cf-color: var(--item-charm-fade-mid1);
    --cf-shine: var(--item-charm-fade-shine-mid1);
  }
  50% {
    --cf-color: var(--item-charm-fade-mid2);
    --cf-shine: var(--item-charm-fade-shine-mid2);
  }
  75% {
    --cf-color: var(--item-charm-fade-end);
    --cf-shine: var(--item-charm-fade-shine-end);
  }
  100% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
}
.charm-glitter {
  position: relative;
  display: inline-flex;
  align-items: center;
  animation: cg-cycle 4s linear infinite;
  /* color + shine loop */
}
.charm-glitter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  /* matches the SVG box */
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 1;
  /* speckles + rotating sheen */
  background: radial-gradient(circle at calc(var(--d1x) + var(--d1dx)) calc(var(--d1y) + var(--d1dy)), rgba(255, 255, 255, var(--d1a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d2x) + var(--d2dx)) calc(var(--d2y) + var(--d2dy)), rgba(255, 255, 255, var(--d2a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d3x) + var(--d3dx)) calc(var(--d3y) + var(--d3dy)), rgba(255, 255, 255, var(--d3a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d4x) + var(--d4dx)) calc(var(--d4y) + var(--d4dy)), rgba(255, 255, 255, var(--d4a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d5x) + var(--d5dx)) calc(var(--d5y) + var(--d5dy)), rgba(255, 255, 255, var(--d5a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d6x) + var(--d6dx)) calc(var(--d6y) + var(--d6dy)), rgba(255, 255, 255, var(--d6a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d7x) + var(--d7dx)) calc(var(--d7y) + var(--d7dy)), rgba(255, 255, 255, var(--d7a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d8x) + var(--d8dx)) calc(var(--d8y) + var(--d8dy)), rgba(255, 255, 255, var(--d8a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d9x) + var(--d9dx)) calc(var(--d9y) + var(--d9dy)), rgba(255, 255, 255, var(--d9a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d10x) + var(--d10dx)) calc(var(--d10y) + var(--d10dy)), rgba(255, 255, 255, var(--d10a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d11x) + var(--d11dx)) calc(var(--d11y) + var(--d11dy)), rgba(255, 255, 255, var(--d11a)) 0 1px, transparent 1.3px);
  filter: blur(1px) brightness(1.25);
  /* fast but smooth shimmer + independent speckle drift */
  animation: cg-drift 8s ease-in-out infinite both;
}
.charm-glitter > svg {
  position: relative;
  z-index: 1;
  color: var(--cg-color);
  fill: currentColor;
  will-change: filter, color, transform;
  animation: cg-glow 0.7s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 4px var(--cg-shine)) drop-shadow(0 0 7px var(--cg-shine));
}
/* each dot wanders a bit and eases opacity up/down */
@keyframes cg-drift {
  /* anchors + visible start */
  0% {
    --d1x: 20%;
    --d1y: 25%;
    --d1a: 0.7;
    --d1dx: 0px;
    --d1dy: 0px;
    --d2x: 65%;
    --d2y: 40%;
    --d2a: 0.75;
    --d2dx: 0px;
    --d2dy: 0px;
    --d3x: 35%;
    --d3y: 70%;
    --d3a: 0.4;
    --d3dx: 0px;
    --d3dy: 0px;
    --d4x: 78%;
    --d4y: 58%;
    --d4a: 0.45;
    --d4dx: 0px;
    --d4dy: 0px;
    --d5x: 12%;
    --d5y: 82%;
    --d5a: 0.65;
    --d5dx: 0px;
    --d5dy: 0px;
    --d6x: 50%;
    --d6y: 50%;
    --d6a: 0.55;
    --d6dx: 0px;
    --d6dy: 0px;
    --d7a: 0.6;
    --d8a: 0.55;
    --d9a: 0.5;
    --d10a: 0.58;
    --d11a: 0.62;
  }
  10% {
    --d1dx: calc(var(--spark-amp) * 0.6);
    --d1dy: calc(var(--spark-amp) * -0.8);
    --d1a: 0.95;
    --d4dx: calc(var(--spark-amp) * -0.5);
    --d4dy: calc(var(--spark-amp) * 1);
    --d4a: 0.88;
    --d7dx: calc(var(--spark-amp) * 0.8);
    --d7dy: calc(var(--spark-amp) * 0.4);
    --d7a: 1;
  }
  20% {
    --d2dx: calc(var(--spark-amp) * -0.8);
    --d2dy: calc(var(--spark-amp) * 0.5);
    --d2a: 0.85;
    --d5dx: calc(var(--spark-amp) * 0.4);
    --d5dy: calc(var(--spark-amp) * -0.9);
    --d5a: 1;
    --d9dx: calc(var(--spark-amp) * -1);
    --d9dy: calc(var(--spark-amp) * 0.2);
    --d9a: 0.82;
  }
  30% {
    --d3dx: calc(var(--spark-amp) * 1);
    --d3dy: calc(var(--spark-amp) * -0.5);
    --d3a: 0.75;
    --d6dx: calc(var(--spark-amp) * 0.6);
    --d6dy: calc(var(--spark-amp) * -0.3);
    --d6a: 0.8;
    --d8dx: calc(var(--spark-amp) * -0.7);
    --d8dy: calc(var(--spark-amp) * 0.6);
    --d8a: 0.92;
  }
  40% {
    --d1dx: calc(var(--spark-amp) * -0.6);
    --d1dy: calc(var(--spark-amp) * 0.5);
    --d1a: 0.65;
    --d10dx: calc(var(--spark-amp) * 0.9);
    --d10dy: calc(var(--spark-amp) * -0.6);
    --d10a: 0.95;
    --d11dx: calc(var(--spark-amp) * -0.5);
    --d11dy: calc(var(--spark-amp) * 1);
    --d11a: 0.85;
  }
  50% {
    --d2dx: calc(var(--spark-amp) * 0.7);
    --d2dy: calc(var(--spark-amp) * -0.6);
    --d2a: 0.4;
    --d4dx: calc(var(--spark-amp) * 0.8);
    --d4dy: calc(var(--spark-amp) * -0.9);
    --d4a: 0.55;
    --d7dx: calc(var(--spark-amp) * -0.9);
    --d7dy: calc(var(--spark-amp) * 0.3);
    --d7a: 0.78;
  }
  60% {
    --d3dx: calc(var(--spark-amp) * -0.9);
    --d3dy: calc(var(--spark-amp) * 0.8);
    --d3a: 0.9;
    --d5dx: calc(var(--spark-amp) * -0.3);
    --d5dy: calc(var(--spark-amp) * 0.7);
    --d5a: 0.45;
    --d9dx: calc(var(--spark-amp) * 0.6);
    --d9dy: calc(var(--spark-amp) * -0.7);
    --d9a: 0.6;
  }
  70% {
    --d1dx: calc(var(--spark-amp) * 0.2);
    --d1dy: calc(var(--spark-amp) * 1);
    --d1a: 1;
    --d6dx: calc(var(--spark-amp) * -0.7);
    --d6dy: calc(var(--spark-amp) * 0.6);
    --d6a: 0.95;
    --d8dx: calc(var(--spark-amp) * 0.9);
    --d8dy: calc(var(--spark-amp) * -0.8);
    --d8a: 0.7;
  }
  80% {
    --d2dx: calc(var(--spark-amp) * -1);
    --d2dy: 0px;
    --d2a: 0.88;
    --d10dx: calc(var(--spark-amp) * -0.8);
    --d10dy: calc(var(--spark-amp) * 0.9);
    --d10a: 0.6;
    --d11dx: calc(var(--spark-amp) * 0.7);
    --d11dy: calc(var(--spark-amp) * -0.5);
    --d11a: 1;
  }
  90% {
    --d3dx: calc(var(--spark-amp) * 0.5);
    --d3dy: calc(var(--spark-amp) * 0.9);
    --d3a: 0.35;
    --d4dx: calc(var(--spark-amp) * -0.6);
    --d4dy: calc(var(--spark-amp) * 0.4);
    --d4a: 0.98;
    --d5dx: calc(var(--spark-amp) * 1);
    --d5dy: 0px;
    --d5a: 0.9;
    --d9dx: calc(var(--spark-amp) * -0.5);
    --d9dy: calc(var(--spark-amp) * -0.9);
    --d9a: 0.45;
  }
  100% {
    /* reset offsets but keep dots visible, ready for next loop */
    --d1dx: 0px;
    --d1dy: 0px;
    --d1a: 0.7;
    --d2dx: 0px;
    --d2dy: 0px;
    --d2a: 0.75;
    --d3dx: 0px;
    --d3dy: 0px;
    --d3a: 0.4;
    --d4dx: 0px;
    --d4dy: 0px;
    --d4a: 0.45;
    --d5dx: 0px;
    --d5dy: 0px;
    --d5a: 0.65;
    --d6dx: 0px;
    --d6dy: 0px;
    --d6a: 0.55;
    --d7dx: 0px;
    --d7dy: 0px;
    --d7a: 0.6;
    --d8dx: 0px;
    --d8dy: 0px;
    --d8a: 0.55;
    --d9dx: 0px;
    --d9dy: 0px;
    --d9a: 0.5;
    --d10dx: 0px;
    --d10dy: 0px;
    --d10a: 0.58;
    --d11dx: 0px;
    --d11dy: 0px;
    --d11a: 0.62;
  }
}
/* breathe the glow, not flicker */
@keyframes cg-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 3px var(--cg-shine)) drop-shadow(0 0 6px var(--cg-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--cg-shine)) drop-shadow(0 0 8px var(--cg-shine)) drop-shadow(0 0 12px var(--cg-shine));
    transform: scale(1.01);
  }
}
/* gentle speckle drift so it feels alive */
@keyframes cg-speck {
  0%,
  100% {
    opacity: 0.9;
    filter: blur(0.4px) brightness(1.2);
  }
  50% {
    opacity: 1;
    filter: blur(0.6px) brightness(1.35);
  }
}
/* your palette cycle (reuse your tokens) */
@keyframes cg-cycle {
  0% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
  20% {
    --cg-color: var(--item-charm-glitter-mid1);
    --cg-shine: var(--item-charm-glitter-shine-mid1);
  }
  40% {
    --cg-color: var(--item-charm-glitter-mid2);
    --cg-shine: var(--item-charm-glitter-shine-mid2);
  }
  60% {
    --cg-color: var(--item-charm-glitter-mid3);
    --cg-shine: var(--item-charm-glitter-shine-mid3);
  }
  80% {
    --cg-color: var(--item-charm-glitter-end);
    --cg-shine: var(--item-charm-glitter-shine-end);
  }
  100% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
}
.charm-reflecting {
  display: inline-flex;
  align-items: center;
  animation: cr-cycle 10s linear infinite;
  /* slow color/shine drift */
}
.charm-reflecting > svg {
  /* only affect the icon */
  color: var(--cr-color);
  fill: currentColor;
  will-change: filter, color, transform;
  /* two opposing shadows + brightness pump to fake a moving specular */
  filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine));
  animation: cr-sweep 2.1s ease-in-out infinite, cr-glow 1.1s ease-in-out infinite alternate;
}
@keyframes cr-glow {
  from {
    filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.5);
  }
  to {
    filter: drop-shadow(var(--cr-x) 0 14px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.65);
  }
}
/* sweep the apparent highlight left → right → left */
@keyframes cr-sweep {
  0% {
    --cr-x: -10px;
    transform: translateZ(0) rotate(0.001deg);
  }
  50% {
    --cr-x: 10px;
  }
  100% {
    --cr-x: -10px;
  }
}
/* subtle color/shine drift for reflective vibe */
@keyframes cr-cycle {
  0% {
    --cr-color: var(--item-charm-reflecting-start);
    --cr-shine: var(--item-charm-reflecting-shine-start);
  }
  50% {
    --cr-color: var(--item-charm-reflecting-mid);
    --cr-shine: var(--item-charm-reflecting-shine-mid);
  }
  100% {
    --cr-color: var(--item-charm-reflecting-end);
    --cr-shine: var(--item-charm-reflecting-shine-end);
  }
}
.item-float {
  color: var(--item-float);
  cursor: pointer;
  animation: float 1s ease-in-out infinite alternate;
  display: flex;
}
@keyframes float {
  from {
    filter: drop-shadow(0 0 1px var(--item-float-shine)) drop-shadow(0 0 4px var(--item-float-shine)) drop-shadow(0 0 6px var(--item-float-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-float-shine)) drop-shadow(0 0 10px var(--item-float-shine)) drop-shadow(0 0 15px var(--item-float-shine));
  }
}
/* Charm - Light Green */
.charm-light-green {
  color: var(--charm-light-green);
}
.charm-light-green svg {
  animation: light-green-charm 1s ease-in-out infinite alternate;
}
@keyframes light-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-green-shine)) drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine)) drop-shadow(0 0 6px var(--charm-light-green-shine));
  }
}
/* Charm - Dark Green */
.charm-dark-green {
  color: var(--charm-dark-green);
}
.charm-dark-green svg {
  animation: dark-green-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-green-shine)) drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine)) drop-shadow(0 0 6px var(--charm-dark-green-shine));
  }
}
/* Charm - Teal */
.charm-teal {
  color: var(--charm-teal);
}
.charm-teal svg {
  animation: teal-charm 1s ease-in-out infinite alternate;
}
@keyframes teal-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-teal-shine)) drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine)) drop-shadow(0 0 6px var(--charm-teal-shine));
  }
}
/* Charm - Cyan */
.charm-cyan {
  color: var(--charm-cyan);
}
.charm-cyan svg {
  animation: cyan-charm 1s ease-in-out infinite alternate;
}
@keyframes cyan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-cyan-shine)) drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine)) drop-shadow(0 0 6px var(--charm-cyan-shine));
  }
}
.charm-blue {
  color: var(--charm-blue);
}
.charm-blue svg {
  animation: blue-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine)) drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine)) drop-shadow(0 0 6px var(--charm-blue-shine));
  }
}
/* Charm - Light Blue */
.charm-light-blue {
  color: var(--charm-light-blue);
}
.charm-light-blue svg {
  animation: light-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes light-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-blue-shine)) drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine)) drop-shadow(0 0 6px var(--charm-light-blue-shine));
  }
}
.charm-pink {
  color: var(--charm-pink);
}
.charm-pink svg {
  animation: pink-charm 1s ease-in-out infinite alternate;
}
@keyframes pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pink-shine)) drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine)) drop-shadow(0 0 6px var(--charm-pink-shine));
  }
}
/* Charm - Mix Blue Purple */
.charm-mix-blue-purple {
  color: var(--charm-mix-blue-purple);
}
.charm-mix-blue-purple svg {
  animation: mix-blue-purple-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-blue-purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 6px var(--charm-mix-blue-purple-shine));
  }
}
/* Charm - Mix Purple Blue */
.charm-mix-purple-blue {
  color: var(--charm-mix-purple-blue);
}
.charm-mix-purple-blue svg {
  animation: mix-purple-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-purple-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 6px var(--charm-mix-purple-blue-shine));
  }
}
/* Charm - Purple */
.charm-purple {
  color: var(--charm-purple);
}
.charm-purple svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-shine)) drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine)) drop-shadow(0 0 6px var(--charm-purple-shine));
  }
}
/* Charm - Purple */
.charm-purple-pink {
  color: var(--charm-purple-pink);
}
.charm-purple-pink svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-pink-shine)) drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine)) drop-shadow(0 0 6px var(--charm-purple-pink-shine));
  }
}
/* Charm - Red */
.charm-red {
  color: var(--charm-red);
}
.charm-red svg {
  animation: red-charm 1s ease-in-out infinite alternate;
}
@keyframes red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-shine)) drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine)) drop-shadow(0 0 6px var(--charm-red-shine));
  }
}
/* Charm - Orange */
.charm-orange {
  color: var(--charm-orange);
}
.charm-orange svg {
  animation: orange-charm 1s ease-in-out infinite alternate;
}
@keyframes orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-orange-shine)) drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine)) drop-shadow(0 0 6px var(--charm-orange-shine));
  }
}
/* Charm - Gold */
.charm-gold {
  color: var(--charm-gold);
}
.charm-gold svg {
  animation: gold-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-shine)) drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine)) drop-shadow(0 0 6px var(--charm-gold-shine));
  }
}
/* Charm - Golden */
.charm-golden {
  color: var(--charm-golden);
}
.charm-golden svg {
  animation: golden-charm 1s ease-in-out infinite alternate;
}
@keyframes golden-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-golden-shine)) drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine)) drop-shadow(0 0 6px var(--charm-golden-shine));
  }
}
/* Charm - Bronze */
.charm-bronze {
  color: var(--charm-bronze);
}
.charm-bronze svg {
  animation: bronze-charm 1s ease-in-out infinite alternate;
}
@keyframes bronze-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bronze-shine)) drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine)) drop-shadow(0 0 6px var(--charm-bronze-shine));
  }
}
/* Charm - Fusia */
.charm-fusia {
  color: var(--charm-fusia);
}
.charm-fusia svg {
  animation: fusia-charm 1s ease-in-out infinite alternate;
}
@keyframes fusia-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-fusia-shine)) drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine)) drop-shadow(0 0 6px var(--charm-fusia-shine));
  }
}
/* Charm - Yellow */
.charm-yellow {
  color: var(--charm-yellow);
}
.charm-yellow svg {
  animation: yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-yellow-shine)) drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine)) drop-shadow(0 0 6px var(--charm-yellow-shine));
  }
}
/* Charm - Rainbow */
.charm-rainbow {
  color: var(--charm-rainbow);
}
.charm-rainbow svg {
  animation: rainbow-charm 1s ease-in-out infinite alternate;
}
@keyframes rainbow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-rainbow-shine)) drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine)) drop-shadow(0 0 6px var(--charm-rainbow-shine));
  }
}
/* Charm - Shiny */
.charm-shiny {
  color: var(--charm-shiny);
}
.charm-shiny svg {
  animation: shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-shiny-shine)) drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine)) drop-shadow(0 0 6px var(--charm-shiny-shine));
  }
}
/* Charm - Least Shiny */
.charm-least-shiny {
  color: var(--charm-least-shiny);
}
.charm-least-shiny svg {
  animation: least-shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes least-shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-least-shiny-shine)) drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine)) drop-shadow(0 0 6px var(--charm-least-shiny-shine));
  }
}
/* Charm - Lime Green */
.charm-lime-green {
  color: var(--charm-lime-green);
}
.charm-lime-green svg {
  animation: lime-green-charm 1s ease-in-out infinite alternate;
}
@keyframes lime-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-lime-green-shine)) drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine)) drop-shadow(0 0 6px var(--charm-lime-green-shine));
  }
}
/* Charm - Brown */
.charm-brown {
  color: var(--charm-brown);
}
.charm-brown svg {
  animation: brown-charm 1s ease-in-out infinite alternate;
}
@keyframes brown-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-brown-shine)) drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine)) drop-shadow(0 0 6px var(--charm-brown-shine));
  }
}
/* Charm - Turquoise */
.charm-turquoise {
  color: var(--charm-turquoise);
}
.charm-turquoise svg {
  animation: turquoise-charm 1s ease-in-out infinite alternate;
}
@keyframes turquoise-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-turquoise-shine)) drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine)) drop-shadow(0 0 6px var(--charm-turquoise-shine));
  }
}
/* Charm - Bubblegum Pink */
.charm-bubblegum-pink {
  color: var(--charm-bubblegum-pink);
}
.charm-bubblegum-pink svg {
  animation: bubblegum-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes bubblegum-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 6px var(--charm-bubblegum-pink-shine));
  }
}
/* Charm - Hot Pink */
.charm-hot-pink {
  color: var(--charm-hot-pink);
}
.charm-hot-pink svg {
  animation: hot-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pink-shine)) drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine)) drop-shadow(0 0 6px var(--charm-hot-pink-shine));
  }
}
/* Charm - Violet */
.charm-violet {
  color: var(--charm-violet);
}
.charm-violet svg {
  animation: violet-charm 1s ease-in-out infinite alternate;
}
@keyframes violet-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-violet-shine)) drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine)) drop-shadow(0 0 6px var(--charm-violet-shine));
  }
}
/* Charm - Magenta */
.charm-magenta {
  color: var(--charm-magenta);
}
.charm-magenta svg {
  animation: magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-magenta-shine)) drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine)) drop-shadow(0 0 6px var(--charm-magenta-shine));
  }
}
/* Charm - Maroon */
.charm-maroon {
  color: var(--charm-maroon);
}
.charm-maroon svg {
  animation: maroon-charm 1s ease-in-out infinite alternate;
}
@keyframes maroon-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-maroon-shine)) drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine)) drop-shadow(0 0 6px var(--charm-maroon-shine));
  }
}
/* Charm - Aqua */
.charm-aqua {
  color: var(--charm-aqua);
}
.charm-aqua svg {
  animation: aqua-charm 1s ease-in-out infinite alternate;
}
@keyframes aqua-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-aqua-shine)) drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine)) drop-shadow(0 0 6px var(--charm-aqua-shine));
  }
}
/* Charm - Mustard Yellow */
.charm-mustard-yellow {
  color: var(--charm-mustard-yellow);
}
.charm-mustard-yellow svg {
  animation: mustard-yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes mustard-yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 6px var(--charm-mustard-yellow-shine));
  }
}
/* Charm - Dark */
.charm-dark {
  color: var(--charm-dark);
}
.charm-dark svg {
  animation: dark-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-shine)) drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine)) drop-shadow(0 0 6px var(--charm-dark-shine));
  }
}
/* Charm - Pale */
.charm-pale {
  color: var(--charm-pale);
}
.charm-pale svg {
  animation: pale-charm 1s ease-in-out infinite alternate;
}
@keyframes pale-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pale-shine)) drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine)) drop-shadow(0 0 6px var(--charm-pale-shine));
  }
}
/* Charm - Hot Pick */
.charm-hot-pick {
  color: var(--charm-hot-pick);
}
.charm-hot-pick svg {
  animation: hot-pick-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pick-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pick-shine)) drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine)) drop-shadow(0 0 6px var(--charm-hot-pick-shine));
  }
}
/* Charm - Naked */
.charm-naked {
  color: var(--charm-naked);
}
.charm-naked svg {
  animation: naked-charm 1s ease-in-out infinite alternate;
}
@keyframes naked-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-naked-shine)) drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine)) drop-shadow(0 0 6px var(--charm-naked-shine));
  }
}
/* Charm - Olive */
.charm-olive {
  color: var(--charm-olive);
}
.charm-olive svg {
  animation: olive-charm 1s ease-in-out infinite alternate;
}
@keyframes olive-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-olive-shine)) drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine)) drop-shadow(0 0 6px var(--charm-olive-shine));
  }
}
/* Charm - Deep Blue */
.charm-deep-blue {
  color: var(--charm-deep-blue);
}
.charm-deep-blue svg {
  animation: deep-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes deep-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-deep-blue-shine)) drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine)) drop-shadow(0 0 6px var(--charm-deep-blue-shine));
  }
}
/* Charm - Green */
.charm-green {
  color: var(--charm-green);
}
.charm-green svg {
  animation: green-charm 1s ease-in-out infinite alternate;
}
@keyframes green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-green-shine)) drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine)) drop-shadow(0 0 6px var(--charm-green-shine));
  }
}
/* Charm - Tan */
.charm-tan {
  color: var(--charm-tan);
}
.charm-tan svg {
  animation: tan-charm 1s ease-in-out infinite alternate;
}
@keyframes tan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-tan-shine)) drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine)) drop-shadow(0 0 6px var(--charm-tan-shine));
  }
}
/* Charm - Sunset Orange */
.charm-sunset-orange {
  color: var(--charm-sunset-orange);
}
.charm-sunset-orange svg {
  animation: sunset-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes sunset-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-sunset-orange-shine)) drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine)) drop-shadow(0 0 6px var(--charm-sunset-orange-shine));
  }
}
/* Charm - Clay Green */
.charm-clay-green {
  color: var(--charm-clay-green);
}
.charm-clay-green svg {
  animation: clay-green-charm 1s ease-in-out infinite alternate;
}
@keyframes clay-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-clay-green-shine)) drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine)) drop-shadow(0 0 6px var(--charm-clay-green-shine));
  }
}
/* Charm - Dark Lavender */
.charm-dark-lavender {
  color: var(--charm-dark-lavender);
}
.charm-dark-lavender svg {
  animation: dark-lavender-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-lavender-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-lavender-shine)) drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine)) drop-shadow(0 0 6px var(--charm-dark-lavender-shine));
  }
}
.charm-collectors-gold {
  color: var(--charm-collectors-gold);
}
.charm-collectors-gold svg {
  animation: collectors-gold-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-gold-shine)) drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine)) drop-shadow(0 0 6px var(--charm-collectors-gold-shine));
  }
}
.charm-gold-orange {
  color: var(--charm-gold-orange);
}
.charm-gold-orange svg {
  animation: gold-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-orange-shine)) drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine)) drop-shadow(0 0 6px var(--charm-gold-orange-shine));
  }
}
.charm-collectors-red {
  color: var(--charm-collectors-red);
}
.charm-collectors-red svg {
  animation: collectors-red-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-red-shine)) drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine)) drop-shadow(0 0 6px var(--charm-collectors-red-shine));
  }
}
.charm-red-crimson {
  color: var(--charm-red-crimson);
}
.charm-red-crimson svg {
  animation: red-crimson-charm 1s ease-in-out infinite alternate;
}
@keyframes red-crimson-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-crimson-shine)) drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine)) drop-shadow(0 0 6px var(--charm-red-crimson-shine));
  }
}
.charm-crimson-magenta {
  color: var(--charm-crimson-magenta);
}
.charm-crimson-magenta svg {
  animation: crimson-magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes crimson-magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 6px var(--charm-crimson-magenta-shine));
  }
}
.charm-blue-shine {
  color: var(--charm-blue-shine);
}
.charm-blue-shine svg {
  animation: blue-shine-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-shine-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine-shine)) drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine)) drop-shadow(0 0 6px var(--charm-blue-shine-shine));
  }
}
.charm-heaven-blue {
  color: var(--charm-heaven-blue);
}
.charm-heaven-blue svg {
  animation: heaven-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes heaven-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-heaven-blue-shine)) drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine)) drop-shadow(0 0 6px var(--charm-heaven-blue-shine));
  }
}
.charm-collectors-blue {
  color: var(--charm-collectors-blue);
}
.charm-collectors-blue svg {
  animation: collectors-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-blue-shine)) drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine)) drop-shadow(0 0 6px var(--charm-collectors-blue-shine));
  }
}
.charm-copper {
  color: var(--charm-copper);
}
.charm-copper svg {
  animation: copper-charm 1s ease-in-out infinite alternate;
}
@keyframes copper-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-copper-shine)) drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine)) drop-shadow(0 0 6px var(--charm-copper-shine));
  }
}
.charm-minty-green {
  color: var(--charm-minty-green);
}
.charm-minty-green svg {
  animation: minty-green-charm 1s ease-in-out infinite alternate;
}
@keyframes minty-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-minty-green-shine)) drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine)) drop-shadow(0 0 6px var(--charm-minty-green-shine));
  }
}
/* Charm - Default */
.charm-default {
  color: var(--charm-default);
}
.charm-default svg {
  animation: default-charm 1s ease-in-out infinite alternate;
}
@keyframes default-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-default-shine)) drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine)) drop-shadow(0 0 6px var(--charm-default-shine));
  }
}
.item-detail {
  width: 100%;
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 2px solid var(--background-color);
  border-bottom: 2px solid var(--background-color);
}
.item-detail .pulse-placeholder {
  border-radius: 5px;
}
.item-detail .item-tier {
  margin-right: 0 !important;
}
.item-detail .item-detail-inner {
  display: flex;
}
.item-detail .item-detail-inner.skinping-item-agent .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin {
  padding-bottom: 0;
}
.item-detail .item-detail-inner.skinping-item-agent .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.item-detail .item-detail-inner.skinping-item-agent .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper picture img {
  object-position: bottom;
}
.item-detail .item-detail-inner.skinping-item-agent .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras {
  bottom: 10px;
}
.item-detail .item-detail-inner.skinping-item-music .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-sticker .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-patch .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-charm .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-container .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-graffiti .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-collectible .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-pass .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin,
.item-detail .item-detail-inner.skinping-item-key .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin {
  padding: 25px 0;
}
.item-detail .item-detail-inner.skinping-item-music .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-sticker .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-patch .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-charm .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-container .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-graffiti .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-collectible .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-pass .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper,
.item-detail .item-detail-inner.skinping-item-key .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper {
  padding-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
}
.item-detail .item-detail-inner.skinping-item-music .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-sticker .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-patch .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-charm .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-container .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-graffiti .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-collectible .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-pass .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras,
.item-detail .item-detail-inner.skinping-item-key .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras {
  bottom: 10px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper {
  position: relative;
  width: 50%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner {
  position: relative;
  max-height: 700px;
  min-height: 430px;
  height: 60vh;
  background-color: var(--item-detail-background);
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 0;
  height: 40px;
  padding: 10px 5px 0 5px;
  gap: 0 15px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons svg {
  font-size: 26px;
  display: block;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons .item-marketplace {
  height: 100%;
  width: 30px;
  cursor: pointer;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons .item-marketplace picture {
  display: block;
  height: 100%;
  width: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons .item-marketplace picture img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin-icons div[class^='charm-'] {
  cursor: pointer;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 85px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin.pulse-placeholder {
  border-radius: 0;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin.character {
  padding-bottom: 0;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-nav {
  width: 100px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-nav .item-image-nav-link {
  width: 100%;
  height: 80px;
  border: 1px solid var(--nearly-transparent);
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: border 0.25s ease-in-out;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-nav .item-image-nav-link:hover {
  border: 1px solid var(--half-transparent);
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-nav .item-image-nav-link img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper {
  width: calc(100% - 100px);
  padding: 25px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  height: 400%;
  opacity: var(--item-image-background-opacity);
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: 0 100%;
  transition: all 0.2s ease-in-out;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper .swiper {
  height: 100%;
  width: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper picture {
  display: block;
  height: 100%;
  width: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-skin .item-image-wrapper picture img {
  display: block;
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 25px 10px 25px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-details {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  position: relative;
  height: 30px;
  width: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-details .item-details-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 4px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-details .item-details-text .item-wear {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-details .item-details-text .item-pattern {
  text-align: center;
  font-size: 14px;
  padding-left: 0;
  margin-bottom: -26px;
  margin-right: -14px;
  width: 50px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-details .item-details-text .item-pattern.no-padding {
  padding-left: 0;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-wear .item-wear-bar {
  width: calc(100% - 50px);
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras {
  display: flex;
  position: absolute;
  right: 5px;
  bottom: 30px;
  align-items: baseline;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches {
  position: relative;
  top: 0;
  height: 55px;
  width: auto;
  padding-bottom: 0;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-sticker,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-sticker,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-patch,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-patch {
  width: 70px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms {
  display: flex;
  height: 85px;
  z-index: 2;
  flex-direction: row;
  top: 5px;
  right: -10px;
  margin-left: -10px;
  padding-bottom: 5px;
  position: relative;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms .item-charm {
  cursor: pointer;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms .item-charm img,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms .item-charm svg {
  width: 100%;
  height: auto;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons {
  background: var(--item-background-color);
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--background-color);
  height: 60px;
  gap: 15px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button {
  color: var(--text-color);
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a:hover,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button:hover {
  background-color: transparent;
  text-decoration: underline;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a.pulse-placeholder,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button.pulse-placeholder {
  min-width: 80px;
}
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a .menu-icon,
.item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button .menu-icon {
  margin-right: 10px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper {
  padding: 25px;
  width: 50%;
  background: var(--item-background-color);
  position: relative;
  border-left: 2px solid var(--background-color);
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-detail-info-icons {
  position: absolute;
  top: 0;
  right: 0;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-type {
  display: flex;
  font-size: 18px;
  height: 20px;
  margin-bottom: 5px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-stattrak {
  margin-right: 5px;
  color: var(--item-stattrak);
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-souvenir {
  margin-right: 8px;
  color: var(--item-souvenir);
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-subcategory {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-subcategory.pulse-placeholder {
  min-width: 100px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-name-wrapper {
  display: flex;
  height: 36px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-name {
  font-weight: bold;
  font-size: 33px;
  line-height: 33px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-name.pulse-placeholder {
  min-width: 180px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-wearname {
  margin-top: 6px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 300;
  color: var(--bitmore-transparent);
  height: 16px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-wearname.pulse-placeholder {
  min-width: 80px;
  max-width: 80px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-wearname.item-wearname-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-wearname.item-wearname-link:hover {
  color: var(--primary-color);
}
@media (hover: none) {
  .item-detail .item-detail-inner .item-detail-info-wrapper .item-wearname.item-wearname-link:hover {
    color: inherit;
  }
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper {
  min-height: 46px;
  max-height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 13px;
  margin-bottom: 19px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper .item-price {
  font-weight: 800;
  font-size: 46px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper .item-price.pulse-placeholder {
  min-width: 140px;
  max-width: 140px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper .item-discount {
  cursor: pointer;
  border-radius: 6px;
  height: 28px;
  padding: 0 10px;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper .item-discount.negative {
  background-color: rgba(24, 193, 58, 0.12);
  color: #00c327;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-price-wrapper .item-discount.positive {
  background-color: rgba(255, 123, 0, 0.12);
  color: #ff8c20;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-other-prices {
  max-height: none;
  height: auto;
  width: 100%;
  margin-top: -2px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: var(--half-transparent);
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-other-prices .item-steam-price {
  display: block;
  color: var(--half-transparent);
  margin-bottom: 4px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-other-prices .item-steam-price.pulse-placeholder {
  min-width: 110px;
  max-width: 110px;
  margin-bottom: 10px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-other-prices .item-suggested-price {
  color: var(--half-transparent);
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-other-prices .item-suggested-price.pulse-placeholder {
  min-width: 100px;
  max-width: 100px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-button-buy-link {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: 20px;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-button-buy-link .item-button-buy {
  padding-left: 25px;
  padding-right: 25px;
  height: 50px;
  font-weight: 900;
}
.item-detail .item-detail-inner .item-detail-info-wrapper .item-button-buy-link .item-button-buy.pulse-placeholder {
  margin-top: 15px;
  min-width: 150px;
  max-width: 150px;
}
.item-detail .item-detail-inner .item-details-raw-infos {
  margin-top: 25px;
}
.item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr;
  grid-gap: 10px;
  gap: 10px;
}
.item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table .item-details-raw-table-row {
  display: contents;
}
.item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table .item-details-raw-table-row .item-details-raw-category {
  display: block;
  padding: 5px;
  font-weight: 900;
}
.item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table .item-details-raw-table-row .item-details-raw-info {
  display: block;
  padding: 5px;
  color: var(--half-transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-details-matching {
  background-color: var(--item-detail-background);
}
.item-details-matching .item .item-inner .item-content {
  background-color: var(--item-background-color);
}
.item-details-matching .item .item-content-inner {
  background-color: var(--item-background-color);
}
.item-details-matching .item-slider-section .item-slider-bottom .item-slider-left:before,
.item-details-matching .item-slider-section .item-slider-bottom .item-slider-more:before {
  background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 50%, var(--item-detail-background) 70%);
}
@media only screen and (max-width: 1300px) {
  .item-detail .item-detail-inner .item-detail-skin-wrapper {
    width: 60%;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras {
    bottom: 25px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-sticker,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-sticker {
    width: 60px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-patch,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-patch {
    width: 60px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms {
    height: 80px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms .item-charm {
    width: 90px;
  }
  .item-detail .item-detail-inner .item-detail-info-wrapper {
    width: 40%;
  }
}
@media only screen and (max-width: 1100px) {
  .item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table {
    grid-template-columns: 1fr 2fr;
  }
}
@media only screen and (max-width: 970px) {
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras {
    bottom: 20px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-sticker,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-sticker {
    width: 45px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-stickers .item-patch,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-detail-stickers .item-patches .item-patch {
    width: 45px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms {
    height: 70px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner .item-detail-extras .item-charms .item-charm {
    width: 80px;
  }
  .item-detail .item-detail-inner .item-detail-info-wrapper {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .item-detail .item-detail-inner {
    flex-direction: column;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper,
  .item-detail .item-detail-inner .item-detail-info-wrapper {
    width: 100%;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button {
    text-indent: -999999px;
  }
  .item-detail .item-detail-inner .item-detail-info-wrapper {
    border-left: none;
    border-top: 2px solid var(--background-color);
  }
  .item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table {
    grid-template-columns: 1fr 2fr 1fr 2fr;
  }
}
@media only screen and (max-width: 525px) {
  .item-detail .item-detail-inner.skinping-item-agent .item-detail-skin-wrapper .item-detail-skin-inner {
    max-height: 450px;
    min-height: 370px;
    height: 30vh;
  }
  .item-detail .item-detail-inner.skinping-item-music .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-sticker .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-patch .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-charm .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-container .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-graffiti .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-collectible .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-pass .item-detail-skin-wrapper .item-detail-skin-inner,
  .item-detail .item-detail-inner.skinping-item-key .item-detail-skin-wrapper .item-detail-skin-inner {
    max-height: 450px;
    min-height: 370px;
    height: 30vh;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-inner {
    max-height: 550px;
    min-height: 420px;
    height: 30vh;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button {
    text-indent: -999999px;
  }
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons a .menu-icon,
  .item-detail .item-detail-inner .item-detail-skin-wrapper .item-detail-skin-buttons button .menu-icon {
    margin-right: 0;
  }
  .item-detail .item-detail-inner .item-details-raw-infos .item-details-raw-table {
    grid-template-columns: 1fr 2fr;
  }
}

.notFound-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color);
  padding: 25px;
}
.notFound-wrapper .notFound-card {
  background-color: var(--item-background-color);
}
.notFound-wrapper .notFound-card h1 {
  font-size: 30px !important;
  color: var(--text-color);
  padding-bottom: 5px;
}
.notFound-wrapper .notFound-card .tier-1 {
  background-color: var(--tier-1-color);
  color: var(--black);
}
.notFound-wrapper .notFound-card .tier-1 svg {
  fill: var(--black) !important;
}
.notFound-wrapper .notFound-card .tier-2 {
  background-color: var(--tier-2-color);
  color: var(--black);
}
.notFound-wrapper .notFound-card .tier-2 svg {
  fill: var(--black) !important;
}
.notFound-wrapper .notFound-card .tier-3 {
  background-color: var(--tier-3-color);
  color: var(--black);
}
.notFound-wrapper .notFound-card .tier-3 svg {
  fill: var(--black) !important;
}
.notFound-wrapper .notFound-card .tier-4 {
  color: var(--tier-4-color);
  border: 2px solid var(--tier-4-color);
}
.notFound-wrapper .notFound-card .tier-4 svg {
  fill: var(--tier-4-color);
}
.notFound-wrapper .notFound-card .user-avatar {
  width: 80px;
  height: 80px;
}
.notFound-wrapper .notFound-card .MuiChip-root {
  font-weight: 600;
  height: 30px;
  padding-left: 5px;
  padding-right: 5px;
}
.notFound-wrapper .notFound-card .MuiChip-root svg {
  fill: var(--text-color);
}
.notFound-wrapper .notFound-card .MuiChip-root.notFound-chip {
  cursor: pointer;
}
.notFound-wrapper .notFound-card .MuiChip-root.verified {
  background-color: var(--primary-color);
  color: var(--text-color);
}
.notFound-wrapper .notFound-card .MuiChip-root.mfa-enabled {
  background-color: var(--success);
  color: var(--text-color);
}
.notFound-wrapper .notFound-card .MuiChip-root.not-verified,
.notFound-wrapper .notFound-card .MuiChip-root.mfa-not-enabled {
  background-color: var(--error);
  color: var(--text-color-light);
}
.notFound-wrapper .notFound-card .MuiChip-root.not-verified:hover,
.notFound-wrapper .notFound-card .MuiChip-root.mfa-not-enabled:hover {
  cursor: pointer;
}

.freeDeals-section {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
}
.freeDeals-section .freeDeals-top {
  max-width: 1500px;
  padding: 25px 25px 15px 25px;
  width: 100%;
}
.freeDeals-section .freeDeals-top .freeDeals-nav-container {
  justify-content: space-between;
}
.freeDeals-section .freeDeals-top .freeDeals-tabs {
  padding-left: 10px;
  padding-right: 8px;
}
.freeDeals-section .freeDeals-top .freeDeals-tabs .freeDeals-tab {
  max-height: 40px;
  min-height: auto;
  height: auto;
  color: var(--text-color);
}
.freeDeals-section .freeDeals-bottom {
  padding: 15px 25px 25px 25px;
  width: 100%;
}
.freeDeals-section .freeDeals-bottom .freeDeals-items-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.freeDeals-section .freeDeals-bottom .freeDeals-items {
  width: 100%;
}
.freeDeals-section .freeDeals-bottom .freeDeals-items.loadingPlaceholder {
  display: flex;
  justify-content: center;
}
.freeDeals-section .freeDeals-bottom .freeDeals-items .freeDeals-items-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.freeDeals-section .freeDeals-bottom .item {
  width: 290px !important;
  min-width: 290px !important;
  max-width: 290px !important;
  height: 485px;
  display: flex;
}
.freeDeals-section .freeDeals-bottom .item:not(.placeholder) .item-content:hover {
  transform: none;
  box-shadow: none;
}
.freeDeals-section .freeDeals-bottom .item:not(.placeholder) .item-content:hover .item-button-group {
  transform: none;
}
.freeDeals-section .freeDeals-bottom .item .item-content-inner {
  height: calc(100% - 260px);
}
.freeDeals-section .freeDeals-bottom .item .item-inner {
  border-width: 8px;
}
.freeDeals-section .freeDeals-bottom .item .item-inner .item-content {
  border-radius: 5px;
}
.freeDeals-section .freeDeals-bottom .item .item-button-group {
  position: relative;
  transform: none;
  opacity: 1;
}
.freeDeals-section .freeDeals-bottom .item .item-button-group .item-button-buy {
  border-bottom-left-radius: 5px;
}
.freeDeals-section .freeDeals-bottom .item .item-button-group .item-button-more {
  border-bottom-right-radius: 5px;
}
.freeDeals-section .freeDeals-bottom .freeDeals-left {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
  padding-right: 25px;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transform: rotateY(-180deg);
}
.freeDeals-section .freeDeals-bottom .freeDeals-left:before {
  content: '';
  position: absolute;
  top: -150%;
  right: 0;
  height: 400%;
  width: 200%;
  pointer-events: none;
  background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 50%, var(--background-color) 70%);
}
.freeDeals-section .freeDeals-bottom .freeDeals-more {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
  padding-right: 25px;
  top: 0;
  right: 0;
  height: 100%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.freeDeals-section .freeDeals-bottom .freeDeals-more:before {
  content: '';
  position: absolute;
  top: -150%;
  right: 0;
  height: 400%;
  width: 200%;
  pointer-events: none;
  background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 50%, var(--background-color) 70%);
}
.freeDeals-section .freeDeals-bottom .freeDeals-more button {
  pointer-events: auto;
  background-color: var(--half-transparent-invert);
  color: var(--text-color);
  border: 1px solid var(--half-transparent);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.freeDeals-section .freeDeals-bottom .freeDeals-more button:hover {
  transform: scale(1.05);
}
.freeDeals-section .freeDeals-bottom .freeDeals-more button:hover svg {
  animation: move-left-right 1s ease-in-out infinite;
}
.freeDeals-section .swiper {
  width: 100%;
  height: 100%;
}
.freeDeals-section .swiper-wrapper {
  transition-timing-function: linear;
}
.freeDeals-section .swiper-slide {
  width: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 899px) {
  .freeDeals-section {
    padding: 0 25px 0 25px;
  }
}
@media only screen and (max-width: 697px) {
  .freeDeals-section {
    padding: 0 15px 15px 15px;
  }
  .freeDeals-section .freeDeals-top .freeDeals-tabs {
    padding-left: 0;
    padding-right: 0;
  }
  .freeDeals-section .freeDeals-top .freeDeals-nav-container {
    justify-content: center;
  }
  .freeDeals-section .freeDeals-top .freeDeals-nav-container .freeDeals-nav-button {
    display: none;
  }
  .freeDeals-section .freeDeals-bottom {
    padding: 0;
  }
  .freeDeals-section .freeDeals-bottom .freeDeals-left {
    width: 50px;
    padding-right: 0;
  }
  .freeDeals-section .freeDeals-bottom .freeDeals-left:before {
    background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 55%, var(--background-color) 70%);
  }
  .freeDeals-section .freeDeals-bottom .freeDeals-more {
    width: 50px;
    padding-right: 10px;
  }
  .freeDeals-section .freeDeals-bottom .freeDeals-more:before {
    background-image: radial-gradient(ellipse at -100% 50%, rgba(255, 255, 255, 0) 55%, var(--background-color) 70%);
  }
}

.login-upgrade-wrapper {
  background-color: var(--item-background-color);
  display: flex;
  align-content: center;
  justify-content: center;
}
.login-upgrade-wrapper .login-upgrade-content {
  text-align: center;
  padding: 50px 25px 70px 25px;
  max-width: 500px;
}

#skins {
  background-color: transparent;
}

#craft {
  background-color: transparent;
}

#artwork {
  background-color: transparent;
}

.guide-header {
  position: relative;
  text-align: center;
  padding: 35px 25px;
  color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background-color: var(--nav-background-color);
}
.guide-header.guide-header-overview {
  background-color: var(--item-background-color);
  padding-bottom: 5px;
  padding-top: 25px;
}
.guide-header.guide-header-overview .guide-title {
  color: var(--text-color);
  font-size: 42px !important;
}
.guide-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.guide-header .guide-header-inner {
  max-width: 910px;
}
.guide-header .guide-title {
  position: relative;
  margin-bottom: 10px !important;
  font-size: 46px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: var(--white);
}
.guide-header .guide-subtitle {
  position: relative;
  margin-bottom: 0;
  font-size: 16px !important;
  font-weight: 400 !important;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: var(--white);
}
.guide-header .guides-headline {
  font-size: 35px !important;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.guide-header .search-bar {
  display: flex;
  justify-content: center;
}
.guide-header .search-bar input[type="text"] {
  width: 100%;
  max-width: 550px;
  padding: var(--spacing-md);
  font-size: var(--font-size-base);
  border: 1px solid var(--input-border-color);
  border-radius: var(--spacing-sm);
  background-color: var(--input-background-color);
  color: var(--input-text-color);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.guide-header .search-bar input[type="text"]::placeholder {
  color: var(--half-transparent-font);
}
.guide-header .search-bar input[type="text"]:hover {
  border-color: var(--input-border-hover-color);
}
.guide-header .filter-bar {
  display: flex;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 6px 0 10px 0;
}
.guide-header .filter-bar .tag-row {
  display: flex;
  gap: 8px;
  padding: 4px 2px 8px 2px;
  flex-wrap: wrap;
}
.guide-header .filter-bar .tag-chip {
  --chip-bg: color-mix(in oklab, var(--item-background-color) 92%, transparent);
  --chip-border: color-mix(in oklab, var(--text-color) 20%, transparent);
  --chip-hover: color-mix(in oklab, var(--primary-color) 24%, transparent);
  -webkit-appearance: none;
          appearance: none;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--text-color);
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
  -webkit-user-select: none;
          user-select: none;
}
.guide-header .filter-bar .tag-chip:hover {
  border-color: var(--primary-color);
  background: var(--chip-hover);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.guide-header .filter-bar .tag-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary-color) 40%, transparent);
}
.guide-header .filter-bar .tag-chip.is-active {
  background: color-mix(in oklab, var(--primary-color) 32%, var(--item-background-color) 68%);
  border-color: var(--primary-color);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.guide-header .filter-bar .filter-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 2px 0 2px;
  color: var(--half-transparent-font);
  font-size: 0.9rem;
}
.guide-header .filter-bar .filter-meta .result-count {
  opacity: 0.8;
}
.guide-header .filter-bar .filter-meta .clear-filters {
  background: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color var(--transition-fast);
}
.guide-header .filter-bar .filter-meta .clear-filters:hover {
  background-color: color-mix(in oklab, var(--primary-color) 12%, transparent);
}
.guide-header .filter-bar .filter-meta .clear-filters:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary-color) 35%, transparent);
}
.loading-rare-items {
  display: flex;
  justify-content: center;
}
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border-left-color: var(--primary-color);
  animation: spin 1s infinite linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rare-items {
  padding: 0 25px 50px 25px;
  /* Optional: make rarity pill sit top-left on the image */
}
.rare-items .item-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
}
.rare-items .item-image-wrapper.skinping-item-agent .item-image-container:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 25px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.rare-items .item-image-wrapper:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  height: 400%;
  z-index: -1;
  opacity: 0.8;
  background-image: radial-gradient(circle at 50% 200%, #FFFFFF, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: 0 100%;
  transition: all 0.2s ease-in-out;
}
.rare-items .skins-group-inner {
  max-width: 1625px;
  max-width: var(--page-max-width, 1625px);
  margin: 0 auto;
}
.rare-items .skins-group-title {
  margin: 18px 0 18px;
  line-height: 1.2;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}
.rare-items .rarity-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.rare-items .skins-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 15px;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}
.rare-items .skins-grid .skin-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--item-background-color);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  color: #FFF;
  width: 100%;
}
.rare-items .skins-grid .skin-item:hover {
  box-shadow: var(--box-shadow);
}
.rare-items .skins-grid .skin-item .skin-item-image {
  height: 100%;
  width: 100%;
}
.rare-items .skins-grid .skin-item .skin-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.rare-items .skins-grid .skin-item .skin-details {
  padding: 10px;
  background-color: var(--item-background-color);
  border-top: 1px solid var(--half-transparent);
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.rare-items .skins-grid .skin-item .skin-details h3,
.rare-items .skins-grid .skin-item .skin-details p {
  color: var(--text-color);
  margin: var(--spacing-xs) 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.rare-items .skins-grid .skin-item .skin-details a {
  text-decoration: none;
}
.rare-items .skins-grid .skin-item .skin-details .sub-category {
  font-weight: var(--font-weight-bold);
}
.show-all-row {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.show-all-button {
  -webkit-appearance: none;
          appearance: none;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
}
.show-all-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--box-shadow);
}
.show-all-button:active {
  transform: translateY(0);
  opacity: 0.9;
}
.rare-item-details {
  padding: 15px 25px 25px 25px;
  display: flex;
  justify-content: center;
  color: var(--text-color);
}
.rare-item-details .item-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 210px;
  overflow: hidden;
  cursor: pointer;
  margin: -20px -20px 15px -20px;
  padding: 15px;
}
.rare-item-details .item-image-wrapper.skinping-item-agent .item-image-container:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 25px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}
.rare-item-details .item-image-wrapper:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400%;
  height: 400%;
  z-index: -1;
  opacity: 0.8;
  background-image: radial-gradient(circle at 50% 200%, #FFFFFF, rgba(255, 255, 255, 0) 80%);
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: 0 100%;
  transition: all 0.2s ease-in-out;
}
.rare-item-details .rare-item-details-container {
  display: flex;
  width: 100%;
}
.rare-item-details .rare-item-details-wrapper {
  max-width: 100%;
}
.rare-item-details .rare-item-details-wrapper .rare-item-details-box {
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  background: var(--item-background-color);
}
.rare-item-details .rare-item-details-wrapper .rare-item-details-box h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
}
.rare-item-details .rare-item-details-wrapper .rare-item-details-box img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.rare-item-details .rare-item-details-wrapper .rare-item-details-box p {
  color: var(--text-color-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.rare-item-details .rare-item-details-wrapper .rare-item-details-box p:not(:last-of-type) {
  margin-bottom: 10px;
}
.rare-item-details .pattern-tables {
  width: 100%;
}
.rare-item-details .patterns {
  position: relative;
  flex-grow: 1;
  background: var(--item-background-color);
  color: var(--text-color);
  padding: 15px 15px 5px 15px;
  border-radius: 10px;
  margin-top: 15px;
}
.rare-item-details .patterns:first-child {
  margin-top: 0;
}
.rare-item-details .patterns .pattern-table {
  display: flex;
  flex-direction: column;
}
.rare-item-details .patterns .pattern-table .pattern-table-header {
  display: flex;
  font-weight: var(--font-weight-bold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 5px;
  align-items: center;
}
.rare-item-details .patterns .pattern-table .pattern-table-header .guide-category {
  justify-content: center;
  align-items: center;
  display: flex;
}
.rare-item-details .patterns .pattern-table .pattern-table-header .guide-category > div {
  align-items: center;
  display: flex;
  height: 100%;
  font-size: 16px;
  line-height: 20px;
  padding-right: 12px;
  cursor: auto;
}
.rare-item-details .patterns .pattern-table .pattern-table-header .guide-category > div svg {
  margin-right: 15px;
}
.rare-item-details .patterns .pattern-table .pattern-table-header .category-table-title {
  height: 100%;
  font-size: 16px;
  line-height: 20px;
}
.rare-item-details .patterns .pattern-table .pattern-table-header > div {
  flex: 1 1;
  line-height: 14px;
}
.rare-item-details .patterns .pattern-table .pattern-table-header > div:first-child {
  max-width: 200px;
}
.rare-item-details .patterns .pattern-table .pattern-table-row {
  display: flex;
  padding: 10px 0;
  line-height: 28px;
}
.rare-item-details .patterns .pattern-table .pattern-table-row > div {
  flex: 1 1;
}
.rare-item-details .patterns .pattern-table .pattern-table-row > div:first-child {
  max-width: 200px;
  font-weight: var(--font-weight-bold);
}
.rare-item-details .patterns .pattern-table .pattern-chip {
  border-color: var(--text-color);
  color: var(--text-color);
  margin: 4px;
  cursor: not-allowed;
  font-weight: bold;
}
.rare-item-details .patterns .pattern-table .pattern-chip.highlighted {
  border-color: var(--success);
  box-shadow: 0 0 5px var(--success);
}
.rare-item-details .patterns .pattern-table .pattern-chip.hover {
  cursor: pointer;
}
.rare-item-details .patterns .pattern-table .pattern-chip.hover:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFF;
  box-shadow: none;
}
.pattern-modal .pattern-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  max-width: 690px;
  background-color: var(--background-color);
  border: none;
}
.pattern-modal .pattern-modal-box .pattern-modal-description {
  color: var(--text-color);
  padding: 15px 15px 10px 15px;
}
.pattern-modal .pattern-modal-box .pattern-modal-description strong {
  font-weight: bold;
}
.pattern-input {
  position: relative;
  margin-right: 10px;
  width: 25vw;
  min-width: 280px;
  margin-left: auto;
}
.pattern-input label {
  color: var(--text-color);
}
.pattern-input input {
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  color: var(--text-color);
}
.pattern-input .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  cursor: pointer;
}
.pattern-input .MuiInputLabel-root.Mui-focused,
.pattern-input .MuiInputLabel-root.MuiInputLabel-shrink {
  transform: translate(14px, -10px) scale(0.75);
}
.pattern-input .MuiInputBase-root {
  height: 45px;
}
.pattern-input .MuiInputLabel-root {
  transform: translate(14px, 9px) scale(1);
}
.pattern-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-hover-color);
}
@media (hover: none) {
  .pattern-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
    border-color: inherit;
  }
}
.pattern-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.pattern-input .MuiOutlinedInput-notchedOutline {
  border-color: var(--input-border-color);
}
.pattern-input .MuiAutocomplete-endAdornment button {
  color: var(--text-color);
}
@media only screen and (min-width: 0px) and (max-width: 955px) {
  .rare-item-details {
    padding: 15px;
  }
  .rare-item-details .rare-item-details-container {
    grid-template-columns: none !important;
  }
  .rare-item-details .rare-item-details-container .rare-item-details-wrapper {
    margin-right: 0;
  }
  .guide-header.guide-header-overview .guide-title {
    font-size: 36px !important;
  }
  .rare-items .skins-group-title {
    font-size: 21px;
  }
}
@property --cg-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff6bd6;
}
@property --fi-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ff3b3b;
}
@property --fi-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffc0c0;
}
@property --cf-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd66e;
}
@property --cf-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffe8b0;
}
@property --cg-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #ffd6ef;
}
@property --cg-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}
@property --spark-amp {
  syntax: '<length>';
  inherits: true;
  initial-value: 6px;
}
@property --d1x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 20%;
}
@property --d1y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 25%;
}
@property --d1a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.7;
}
@property --d2x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 65%;
}
@property --d2y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 40%;
}
@property --d2a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.75;
}
@property --d3x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 35%;
}
@property --d3y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 70%;
}
@property --d3a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.4;
}
@property --d4x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 78%;
}
@property --d4y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 58%;
}
@property --d4a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.45;
}
@property --d5x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 12%;
}
@property --d5y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 82%;
}
@property --d5a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.65;
}
@property --d6x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 50%;
}
@property --d6a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d7x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 72%;
}
@property --d7y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 18%;
}
@property --d7a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.6;
}
@property --d8x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 28%;
}
@property --d8y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 14%;
}
@property --d8a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.55;
}
@property --d9x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 84%;
}
@property --d9y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 76%;
}
@property --d9a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.5;
}
@property --d10x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 44%;
}
@property --d10y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 86%;
}
@property --d10a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.58;
}
@property --d11x {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 10%;
}
@property --d11y {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 48%;
}
@property --d11a {
  syntax: '<number>';
  inherits: true;
  initial-value: 0.62;
}
/* per-dot pixel offsets (must be registered too!) */
@property --d1dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d1dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d2dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d3dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d4dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d5dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d6dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d7dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d8dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d9dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d10dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dx {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --d11dy {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
@property --cr-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #8ecbff;
}
@property --cr-shine {
  syntax: '<color>';
  inherits: true;
  initial-value: #cfeaff;
}
@property --cr-x {
  syntax: '<length>';
  inherits: true;
  initial-value: -8px;
}
.consumer .item-subcategory,
.base .item-subcategory {
  color: var(--color-rarity-consumer-grade);
}
.consumer .item-image-wrapper:before,
.base .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 80%);
}
.consumer.guide-header:before,
.base.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-consumer-grade), rgba(255, 255, 255, 0) 100%);
}
.industrial .item-subcategory {
  color: var(--color-rarity-industrial-grade);
}
.industrial .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 80%);
}
.industrial.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-industrial-grade), rgba(255, 255, 255, 0) 100%);
}
.mil-spec .item-subcategory,
.distinguished .item-subcategory,
.high .item-subcategory,
.high-grade .item-subcategory {
  color: var(--color-rarity-mil-spec-grade);
}
.mil-spec .item-image-wrapper:before,
.distinguished .item-image-wrapper:before,
.high .item-image-wrapper:before,
.high-grade .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 80%);
}
.mil-spec.guide-header:before,
.distinguished.guide-header:before,
.high.guide-header:before,
.high-grade.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-mil-spec-grade), rgba(255, 255, 255, 0) 100%);
}
.restricted .item-subcategory,
.exceptional .item-subcategory,
.remarkable .item-subcategory {
  color: var(--color-rarity-restricted);
}
.restricted .item-image-wrapper:before,
.exceptional .item-image-wrapper:before,
.remarkable .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 80%);
}
.restricted.guide-header:before,
.exceptional.guide-header:before,
.remarkable.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-restricted), rgba(255, 255, 255, 0) 100%);
}
.classified .item-subcategory,
.superior .item-subcategory,
.exotic .item-subcategory {
  color: var(--color-rarity-classified);
}
.classified .item-image-wrapper:before,
.superior .item-image-wrapper:before,
.exotic .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 80%);
}
.classified.guide-header:before,
.superior.guide-header:before,
.exotic.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-classified), rgba(255, 255, 255, 0) 100%);
}
.covert .item-subcategory,
.master .item-subcategory {
  color: var(--color-rarity-covert);
}
.covert .item-image-wrapper:before,
.master .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 80%);
}
.covert.guide-header:before,
.master.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-covert), rgba(255, 255, 255, 0) 100%);
}
.covert.guide-header.skinping-item-knife:before,
.master.guide-header.skinping-item-knife:before,
.covert.guide-header.skinping-item-gloves:before,
.master.guide-header.skinping-item-gloves:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.covert.skinping-item-knife .item-subcategory,
.master.skinping-item-knife .item-subcategory,
.covert.skinping-item-gloves .item-subcategory,
.master.skinping-item-gloves .item-subcategory {
  color: var(--color-rarity-contraband);
}
.covert.skinping-item-knife .item-image-wrapper:before,
.master.skinping-item-knife .item-image-wrapper:before,
.covert.skinping-item-gloves .item-image-wrapper:before,
.master.skinping-item-gloves .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary .item-subcategory,
.contraband .item-subcategory {
  color: var(--color-rarity-contraband);
}
.extraordinary .item-image-wrapper:before,
.contraband .item-image-wrapper:before {
  background-image: radial-gradient(circle at 50% 200%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 80%);
}
.extraordinary.guide-header:before,
.contraband.guide-header:before {
  background-image: radial-gradient(circle at 50% -700%, var(--color-rarity-contraband), rgba(0, 0, 0, 0) 100%);
}
.item-tier {
  cursor: pointer;
  margin-right: 9px !important;
}
.item-tier svg {
  font-size: 20px;
}
.item-tier.tier1 {
  color: var(--tier-1-color);
}
.item-tier.tier2 {
  color: var(--tier-2-color);
}
.item-tier.tier3 {
  color: var(--tier-3-color);
}
.item-bluegem {
  color: var(--item-bluegem);
  cursor: pointer;
  display: flex;
}
.item-bluegem svg {
  animation: bluegem 1s ease-in-out infinite alternate;
}
@keyframes bluegem {
  from {
    filter: drop-shadow(0 0 2px var(--item-bluegem-shine)) drop-shadow(0 0 4px var(--item-bluegem-shine)) drop-shadow(0 0 6px var(--item-bluegem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-bluegem-shine)) drop-shadow(0 0 10px var(--item-bluegem-shine)) drop-shadow(0 0 15px var(--item-bluegem-shine));
  }
}
.item-goldgem {
  color: var(--item-goldgem);
  cursor: pointer;
  display: flex;
}
.item-goldgem svg {
  animation: goldgem 1s ease-in-out infinite alternate;
}
@keyframes goldgem {
  from {
    filter: drop-shadow(0 0 2px var(--item-goldgem-shine)) drop-shadow(0 0 4px var(--item-goldgem-shine)) drop-shadow(0 0 6px var(--item-goldgem-shine));
  }
  to {
    filter: drop-shadow(0 0 5px var(--item-goldgem-shine)) drop-shadow(0 0 10px var(--item-goldgem-shine)) drop-shadow(0 0 15px var(--item-goldgem-shine));
  }
}
.item-rare {
  color: var(--item-rare);
  cursor: pointer;
  display: flex;
}
.item-rare svg {
  animation: rare 1s ease-in-out infinite alternate;
}
@keyframes rare {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-shine)) drop-shadow(0 0 4px var(--item-rare-shine)) drop-shadow(0 0 6px var(--item-rare-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-shine)) drop-shadow(0 0 10px var(--item-rare-shine)) drop-shadow(0 0 15px var(--item-rare-shine));
  }
}
.rare-d-pattern {
  color: var(--item-rare-d);
  cursor: pointer;
  display: flex;
}
.rare-d-pattern svg {
  animation: rare-d 1s ease-in-out infinite alternate;
}
@keyframes rare-d {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-d-shine)) drop-shadow(0 0 4px var(--item-rare-d-shine)) drop-shadow(0 0 6px var(--item-rare-d-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-d-shine)) drop-shadow(0 0 10px var(--item-rare-d-shine)) drop-shadow(0 0 15px var(--item-rare-d-shine));
  }
}
.rare-star-pattern {
  color: var(--item-rare-star);
  cursor: pointer;
  display: inline-flex;
}
.rare-star-pattern svg {
  fill: currentColor;
  animation: rare-star 1.15s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--item-rare-star-shine));
  will-change: filter;
}
@keyframes rare-star {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-star-shine)) drop-shadow(0 0 4px var(--item-rare-star-shine)) drop-shadow(0 0 6px var(--item-rare-star-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-star-shine)) drop-shadow(0 0 10px var(--item-rare-star-shine)) drop-shadow(0 0 15px var(--item-rare-star-shine));
    transform: scale(1.02);
  }
}
.rare-blue-hive {
  color: var(--item-rare-blue-hive);
  cursor: pointer;
  display: flex;
}
.rare-blue-hive svg {
  animation: rare-blue-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-blue-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 4px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 6px var(--item-rare-blue-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 10px var(--item-rare-blue-hive-shine)) drop-shadow(0 0 15px var(--item-rare-blue-hive-shine));
  }
}
.rare-orange-hive {
  color: var(--item-rare-orange-hive);
  cursor: pointer;
  display: flex;
}
.rare-orange-hive svg {
  animation: rare-orange-hive 1s ease-in-out infinite alternate;
}
@keyframes rare-orange-hive {
  from {
    filter: drop-shadow(0 0 1px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 4px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 6px var(--item-rare-orange-hive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 10px var(--item-rare-orange-hive-shine)) drop-shadow(0 0 15px var(--item-rare-orange-hive-shine));
  }
}
.rare-fire-and-ice {
  cursor: pointer;
  display: flex;
  color: var(--fi-color);
  animation: fi-cycle 8s linear infinite;
  /* drives color & shine fade */
  /* Color & shine loop — perfectly smooth fade-through */
}
.rare-fire-and-ice svg {
  fill: currentColor;
  animation: rare-fire-and-ice 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--fi-shine));
  will-change: color, filter;
}
@keyframes rare-fire-and-ice {
  from {
    filter: drop-shadow(0 0 1px var(--fi-shine)) drop-shadow(0 0 4px var(--fi-shine)) drop-shadow(0 0 6px var(--fi-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--fi-shine)) drop-shadow(0 0 10px var(--fi-shine)) drop-shadow(0 0 15px var(--fi-shine));
  }
}
@keyframes fi-cycle {
  0% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
  25% {
    --fi-color: var(--item-rare-fire-and-ice-mid1);
    --fi-shine: var(--item-rare-fire-and-ice-shine-mid1);
  }
  75% {
    --fi-color: var(--item-rare-fire-and-ice-end);
    --fi-shine: var(--item-rare-fire-and-ice-shine-end);
  }
  100% {
    --fi-color: var(--item-rare-fire-and-ice-start);
    --fi-shine: var(--item-rare-fire-and-ice-shine-start);
  }
}
.charm-fade {
  cursor: pointer;
  display: flex;
  color: var(--cf-color);
  animation: cf-cycle 8s linear infinite;
  /* cycles color & shine */
  /* smooth, endless fade-through across Fade palette */
}
.charm-fade svg {
  fill: currentColor;
  animation: charm-fade-glow 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cf-shine));
  will-change: color, filter;
}
@keyframes charm-fade-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cf-shine)) drop-shadow(0 0 4px var(--cf-shine)) drop-shadow(0 0 6px var(--cf-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--cf-shine)) drop-shadow(0 0 10px var(--cf-shine)) drop-shadow(0 0 15px var(--cf-shine));
  }
}
@keyframes cf-cycle {
  0% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
  25% {
    --cf-color: var(--item-charm-fade-mid1);
    --cf-shine: var(--item-charm-fade-shine-mid1);
  }
  50% {
    --cf-color: var(--item-charm-fade-mid2);
    --cf-shine: var(--item-charm-fade-shine-mid2);
  }
  75% {
    --cf-color: var(--item-charm-fade-end);
    --cf-shine: var(--item-charm-fade-shine-end);
  }
  100% {
    --cf-color: var(--item-charm-fade-start);
    --cf-shine: var(--item-charm-fade-shine-start);
  }
}
.charm-glitter {
  position: relative;
  display: inline-flex;
  align-items: center;
  animation: cg-cycle 4s linear infinite;
  /* color + shine loop */
}
.charm-glitter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  /* matches the SVG box */
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 1;
  /* speckles + rotating sheen */
  background: radial-gradient(circle at calc(var(--d1x) + var(--d1dx)) calc(var(--d1y) + var(--d1dy)), rgba(255, 255, 255, var(--d1a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d2x) + var(--d2dx)) calc(var(--d2y) + var(--d2dy)), rgba(255, 255, 255, var(--d2a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d3x) + var(--d3dx)) calc(var(--d3y) + var(--d3dy)), rgba(255, 255, 255, var(--d3a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d4x) + var(--d4dx)) calc(var(--d4y) + var(--d4dy)), rgba(255, 255, 255, var(--d4a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d5x) + var(--d5dx)) calc(var(--d5y) + var(--d5dy)), rgba(255, 255, 255, var(--d5a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d6x) + var(--d6dx)) calc(var(--d6y) + var(--d6dy)), rgba(255, 255, 255, var(--d6a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d7x) + var(--d7dx)) calc(var(--d7y) + var(--d7dy)), rgba(255, 255, 255, var(--d7a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d8x) + var(--d8dx)) calc(var(--d8y) + var(--d8dy)), rgba(255, 255, 255, var(--d8a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d9x) + var(--d9dx)) calc(var(--d9y) + var(--d9dy)), rgba(255, 255, 255, var(--d9a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d10x) + var(--d10dx)) calc(var(--d10y) + var(--d10dy)), rgba(255, 255, 255, var(--d10a)) 0 1px, transparent 1.3px), radial-gradient(circle at calc(var(--d11x) + var(--d11dx)) calc(var(--d11y) + var(--d11dy)), rgba(255, 255, 255, var(--d11a)) 0 1px, transparent 1.3px);
  filter: blur(1px) brightness(1.25);
  /* fast but smooth shimmer + independent speckle drift */
  animation: cg-drift 8s ease-in-out infinite both;
}
.charm-glitter > svg {
  position: relative;
  z-index: 1;
  color: var(--cg-color);
  fill: currentColor;
  will-change: filter, color, transform;
  animation: cg-glow 0.7s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 4px var(--cg-shine)) drop-shadow(0 0 7px var(--cg-shine));
}
/* each dot wanders a bit and eases opacity up/down */
@keyframes cg-drift {
  /* anchors + visible start */
  0% {
    --d1x: 20%;
    --d1y: 25%;
    --d1a: 0.7;
    --d1dx: 0px;
    --d1dy: 0px;
    --d2x: 65%;
    --d2y: 40%;
    --d2a: 0.75;
    --d2dx: 0px;
    --d2dy: 0px;
    --d3x: 35%;
    --d3y: 70%;
    --d3a: 0.4;
    --d3dx: 0px;
    --d3dy: 0px;
    --d4x: 78%;
    --d4y: 58%;
    --d4a: 0.45;
    --d4dx: 0px;
    --d4dy: 0px;
    --d5x: 12%;
    --d5y: 82%;
    --d5a: 0.65;
    --d5dx: 0px;
    --d5dy: 0px;
    --d6x: 50%;
    --d6y: 50%;
    --d6a: 0.55;
    --d6dx: 0px;
    --d6dy: 0px;
    --d7a: 0.6;
    --d8a: 0.55;
    --d9a: 0.5;
    --d10a: 0.58;
    --d11a: 0.62;
  }
  10% {
    --d1dx: calc(var(--spark-amp) * 0.6);
    --d1dy: calc(var(--spark-amp) * -0.8);
    --d1a: 0.95;
    --d4dx: calc(var(--spark-amp) * -0.5);
    --d4dy: calc(var(--spark-amp) * 1);
    --d4a: 0.88;
    --d7dx: calc(var(--spark-amp) * 0.8);
    --d7dy: calc(var(--spark-amp) * 0.4);
    --d7a: 1;
  }
  20% {
    --d2dx: calc(var(--spark-amp) * -0.8);
    --d2dy: calc(var(--spark-amp) * 0.5);
    --d2a: 0.85;
    --d5dx: calc(var(--spark-amp) * 0.4);
    --d5dy: calc(var(--spark-amp) * -0.9);
    --d5a: 1;
    --d9dx: calc(var(--spark-amp) * -1);
    --d9dy: calc(var(--spark-amp) * 0.2);
    --d9a: 0.82;
  }
  30% {
    --d3dx: calc(var(--spark-amp) * 1);
    --d3dy: calc(var(--spark-amp) * -0.5);
    --d3a: 0.75;
    --d6dx: calc(var(--spark-amp) * 0.6);
    --d6dy: calc(var(--spark-amp) * -0.3);
    --d6a: 0.8;
    --d8dx: calc(var(--spark-amp) * -0.7);
    --d8dy: calc(var(--spark-amp) * 0.6);
    --d8a: 0.92;
  }
  40% {
    --d1dx: calc(var(--spark-amp) * -0.6);
    --d1dy: calc(var(--spark-amp) * 0.5);
    --d1a: 0.65;
    --d10dx: calc(var(--spark-amp) * 0.9);
    --d10dy: calc(var(--spark-amp) * -0.6);
    --d10a: 0.95;
    --d11dx: calc(var(--spark-amp) * -0.5);
    --d11dy: calc(var(--spark-amp) * 1);
    --d11a: 0.85;
  }
  50% {
    --d2dx: calc(var(--spark-amp) * 0.7);
    --d2dy: calc(var(--spark-amp) * -0.6);
    --d2a: 0.4;
    --d4dx: calc(var(--spark-amp) * 0.8);
    --d4dy: calc(var(--spark-amp) * -0.9);
    --d4a: 0.55;
    --d7dx: calc(var(--spark-amp) * -0.9);
    --d7dy: calc(var(--spark-amp) * 0.3);
    --d7a: 0.78;
  }
  60% {
    --d3dx: calc(var(--spark-amp) * -0.9);
    --d3dy: calc(var(--spark-amp) * 0.8);
    --d3a: 0.9;
    --d5dx: calc(var(--spark-amp) * -0.3);
    --d5dy: calc(var(--spark-amp) * 0.7);
    --d5a: 0.45;
    --d9dx: calc(var(--spark-amp) * 0.6);
    --d9dy: calc(var(--spark-amp) * -0.7);
    --d9a: 0.6;
  }
  70% {
    --d1dx: calc(var(--spark-amp) * 0.2);
    --d1dy: calc(var(--spark-amp) * 1);
    --d1a: 1;
    --d6dx: calc(var(--spark-amp) * -0.7);
    --d6dy: calc(var(--spark-amp) * 0.6);
    --d6a: 0.95;
    --d8dx: calc(var(--spark-amp) * 0.9);
    --d8dy: calc(var(--spark-amp) * -0.8);
    --d8a: 0.7;
  }
  80% {
    --d2dx: calc(var(--spark-amp) * -1);
    --d2dy: 0px;
    --d2a: 0.88;
    --d10dx: calc(var(--spark-amp) * -0.8);
    --d10dy: calc(var(--spark-amp) * 0.9);
    --d10a: 0.6;
    --d11dx: calc(var(--spark-amp) * 0.7);
    --d11dy: calc(var(--spark-amp) * -0.5);
    --d11a: 1;
  }
  90% {
    --d3dx: calc(var(--spark-amp) * 0.5);
    --d3dy: calc(var(--spark-amp) * 0.9);
    --d3a: 0.35;
    --d4dx: calc(var(--spark-amp) * -0.6);
    --d4dy: calc(var(--spark-amp) * 0.4);
    --d4a: 0.98;
    --d5dx: calc(var(--spark-amp) * 1);
    --d5dy: 0px;
    --d5a: 0.9;
    --d9dx: calc(var(--spark-amp) * -0.5);
    --d9dy: calc(var(--spark-amp) * -0.9);
    --d9a: 0.45;
  }
  100% {
    /* reset offsets but keep dots visible, ready for next loop */
    --d1dx: 0px;
    --d1dy: 0px;
    --d1a: 0.7;
    --d2dx: 0px;
    --d2dy: 0px;
    --d2a: 0.75;
    --d3dx: 0px;
    --d3dy: 0px;
    --d3a: 0.4;
    --d4dx: 0px;
    --d4dy: 0px;
    --d4a: 0.45;
    --d5dx: 0px;
    --d5dy: 0px;
    --d5a: 0.65;
    --d6dx: 0px;
    --d6dy: 0px;
    --d6a: 0.55;
    --d7dx: 0px;
    --d7dy: 0px;
    --d7a: 0.6;
    --d8dx: 0px;
    --d8dy: 0px;
    --d8a: 0.55;
    --d9dx: 0px;
    --d9dy: 0px;
    --d9a: 0.5;
    --d10dx: 0px;
    --d10dy: 0px;
    --d10a: 0.58;
    --d11dx: 0px;
    --d11dy: 0px;
    --d11a: 0.62;
  }
}
/* breathe the glow, not flicker */
@keyframes cg-glow {
  from {
    filter: drop-shadow(0 0 1px var(--cg-shine)) drop-shadow(0 0 3px var(--cg-shine)) drop-shadow(0 0 6px var(--cg-shine));
    transform: scale(1);
  }
  to {
    filter: drop-shadow(0 0 2px var(--cg-shine)) drop-shadow(0 0 8px var(--cg-shine)) drop-shadow(0 0 12px var(--cg-shine));
    transform: scale(1.01);
  }
}
/* gentle speckle drift so it feels alive */
@keyframes cg-speck {
  0%,
  100% {
    opacity: 0.9;
    filter: blur(0.4px) brightness(1.2);
  }
  50% {
    opacity: 1;
    filter: blur(0.6px) brightness(1.35);
  }
}
/* your palette cycle (reuse your tokens) */
@keyframes cg-cycle {
  0% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
  20% {
    --cg-color: var(--item-charm-glitter-mid1);
    --cg-shine: var(--item-charm-glitter-shine-mid1);
  }
  40% {
    --cg-color: var(--item-charm-glitter-mid2);
    --cg-shine: var(--item-charm-glitter-shine-mid2);
  }
  60% {
    --cg-color: var(--item-charm-glitter-mid3);
    --cg-shine: var(--item-charm-glitter-shine-mid3);
  }
  80% {
    --cg-color: var(--item-charm-glitter-end);
    --cg-shine: var(--item-charm-glitter-shine-end);
  }
  100% {
    --cg-color: var(--item-charm-glitter-start);
    --cg-shine: var(--item-charm-glitter-shine-start);
  }
}
.charm-reflecting {
  display: inline-flex;
  align-items: center;
  animation: cr-cycle 10s linear infinite;
  /* slow color/shine drift */
}
.charm-reflecting > svg {
  /* only affect the icon */
  color: var(--cr-color);
  fill: currentColor;
  will-change: filter, color, transform;
  /* two opposing shadows + brightness pump to fake a moving specular */
  filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine));
  animation: cr-sweep 2.1s ease-in-out infinite, cr-glow 1.1s ease-in-out infinite alternate;
}
@keyframes cr-glow {
  from {
    filter: drop-shadow(var(--cr-x) 0 8px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.5);
  }
  to {
    filter: drop-shadow(var(--cr-x) 0 14px var(--cr-shine)) drop-shadow(calc(var(--cr-x) * -1) 0 5px var(--cr-shine)) brightness(1.65);
  }
}
/* sweep the apparent highlight left → right → left */
@keyframes cr-sweep {
  0% {
    --cr-x: -10px;
    transform: translateZ(0) rotate(0.001deg);
  }
  50% {
    --cr-x: 10px;
  }
  100% {
    --cr-x: -10px;
  }
}
/* subtle color/shine drift for reflective vibe */
@keyframes cr-cycle {
  0% {
    --cr-color: var(--item-charm-reflecting-start);
    --cr-shine: var(--item-charm-reflecting-shine-start);
  }
  50% {
    --cr-color: var(--item-charm-reflecting-mid);
    --cr-shine: var(--item-charm-reflecting-shine-mid);
  }
  100% {
    --cr-color: var(--item-charm-reflecting-end);
    --cr-shine: var(--item-charm-reflecting-shine-end);
  }
}
.item-float {
  color: var(--item-float);
  cursor: pointer;
  animation: float 1s ease-in-out infinite alternate;
  display: flex;
}
@keyframes float {
  from {
    filter: drop-shadow(0 0 1px var(--item-float-shine)) drop-shadow(0 0 4px var(--item-float-shine)) drop-shadow(0 0 6px var(--item-float-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--item-float-shine)) drop-shadow(0 0 10px var(--item-float-shine)) drop-shadow(0 0 15px var(--item-float-shine));
  }
}
/* Charm - Light Green */
.charm-light-green {
  color: var(--charm-light-green);
}
.charm-light-green svg {
  animation: light-green-charm 1s ease-in-out infinite alternate;
}
@keyframes light-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-green-shine)) drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-green-shine)) drop-shadow(0 0 3px var(--charm-light-green-shine)) drop-shadow(0 0 6px var(--charm-light-green-shine));
  }
}
/* Charm - Dark Green */
.charm-dark-green {
  color: var(--charm-dark-green);
}
.charm-dark-green svg {
  animation: dark-green-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-green-shine)) drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-green-shine)) drop-shadow(0 0 3px var(--charm-dark-green-shine)) drop-shadow(0 0 6px var(--charm-dark-green-shine));
  }
}
/* Charm - Teal */
.charm-teal {
  color: var(--charm-teal);
}
.charm-teal svg {
  animation: teal-charm 1s ease-in-out infinite alternate;
}
@keyframes teal-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-teal-shine)) drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-teal-shine)) drop-shadow(0 0 3px var(--charm-teal-shine)) drop-shadow(0 0 6px var(--charm-teal-shine));
  }
}
/* Charm - Cyan */
.charm-cyan {
  color: var(--charm-cyan);
}
.charm-cyan svg {
  animation: cyan-charm 1s ease-in-out infinite alternate;
}
@keyframes cyan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-cyan-shine)) drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-cyan-shine)) drop-shadow(0 0 3px var(--charm-cyan-shine)) drop-shadow(0 0 6px var(--charm-cyan-shine));
  }
}
.charm-blue {
  color: var(--charm-blue);
}
.charm-blue svg {
  animation: blue-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine)) drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine)) drop-shadow(0 0 3px var(--charm-blue-shine)) drop-shadow(0 0 6px var(--charm-blue-shine));
  }
}
/* Charm - Light Blue */
.charm-light-blue {
  color: var(--charm-light-blue);
}
.charm-light-blue svg {
  animation: light-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes light-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-light-blue-shine)) drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-light-blue-shine)) drop-shadow(0 0 3px var(--charm-light-blue-shine)) drop-shadow(0 0 6px var(--charm-light-blue-shine));
  }
}
.charm-pink {
  color: var(--charm-pink);
}
.charm-pink svg {
  animation: pink-charm 1s ease-in-out infinite alternate;
}
@keyframes pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pink-shine)) drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pink-shine)) drop-shadow(0 0 3px var(--charm-pink-shine)) drop-shadow(0 0 6px var(--charm-pink-shine));
  }
}
/* Charm - Mix Blue Purple */
.charm-mix-blue-purple {
  color: var(--charm-mix-blue-purple);
}
.charm-mix-blue-purple svg {
  animation: mix-blue-purple-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-blue-purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 3px var(--charm-mix-blue-purple-shine)) drop-shadow(0 0 6px var(--charm-mix-blue-purple-shine));
  }
}
/* Charm - Mix Purple Blue */
.charm-mix-purple-blue {
  color: var(--charm-mix-purple-blue);
}
.charm-mix-purple-blue svg {
  animation: mix-purple-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes mix-purple-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 3px var(--charm-mix-purple-blue-shine)) drop-shadow(0 0 6px var(--charm-mix-purple-blue-shine));
  }
}
/* Charm - Purple */
.charm-purple {
  color: var(--charm-purple);
}
.charm-purple svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-shine)) drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-shine)) drop-shadow(0 0 3px var(--charm-purple-shine)) drop-shadow(0 0 6px var(--charm-purple-shine));
  }
}
/* Charm - Purple */
.charm-purple-pink {
  color: var(--charm-purple-pink);
}
.charm-purple-pink svg {
  animation: purple-charm 1s ease-in-out infinite alternate;
}
@keyframes purple-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-purple-pink-shine)) drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-purple-pink-shine)) drop-shadow(0 0 3px var(--charm-purple-pink-shine)) drop-shadow(0 0 6px var(--charm-purple-pink-shine));
  }
}
/* Charm - Red */
.charm-red {
  color: var(--charm-red);
}
.charm-red svg {
  animation: red-charm 1s ease-in-out infinite alternate;
}
@keyframes red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-shine)) drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-shine)) drop-shadow(0 0 3px var(--charm-red-shine)) drop-shadow(0 0 6px var(--charm-red-shine));
  }
}
/* Charm - Orange */
.charm-orange {
  color: var(--charm-orange);
}
.charm-orange svg {
  animation: orange-charm 1s ease-in-out infinite alternate;
}
@keyframes orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-orange-shine)) drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-orange-shine)) drop-shadow(0 0 3px var(--charm-orange-shine)) drop-shadow(0 0 6px var(--charm-orange-shine));
  }
}
/* Charm - Gold */
.charm-gold {
  color: var(--charm-gold);
}
.charm-gold svg {
  animation: gold-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-shine)) drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-shine)) drop-shadow(0 0 3px var(--charm-gold-shine)) drop-shadow(0 0 6px var(--charm-gold-shine));
  }
}
/* Charm - Golden */
.charm-golden {
  color: var(--charm-golden);
}
.charm-golden svg {
  animation: golden-charm 1s ease-in-out infinite alternate;
}
@keyframes golden-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-golden-shine)) drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-golden-shine)) drop-shadow(0 0 3px var(--charm-golden-shine)) drop-shadow(0 0 6px var(--charm-golden-shine));
  }
}
/* Charm - Bronze */
.charm-bronze {
  color: var(--charm-bronze);
}
.charm-bronze svg {
  animation: bronze-charm 1s ease-in-out infinite alternate;
}
@keyframes bronze-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bronze-shine)) drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bronze-shine)) drop-shadow(0 0 3px var(--charm-bronze-shine)) drop-shadow(0 0 6px var(--charm-bronze-shine));
  }
}
/* Charm - Fusia */
.charm-fusia {
  color: var(--charm-fusia);
}
.charm-fusia svg {
  animation: fusia-charm 1s ease-in-out infinite alternate;
}
@keyframes fusia-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-fusia-shine)) drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-fusia-shine)) drop-shadow(0 0 3px var(--charm-fusia-shine)) drop-shadow(0 0 6px var(--charm-fusia-shine));
  }
}
/* Charm - Yellow */
.charm-yellow {
  color: var(--charm-yellow);
}
.charm-yellow svg {
  animation: yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-yellow-shine)) drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-yellow-shine)) drop-shadow(0 0 3px var(--charm-yellow-shine)) drop-shadow(0 0 6px var(--charm-yellow-shine));
  }
}
/* Charm - Rainbow */
.charm-rainbow {
  color: var(--charm-rainbow);
}
.charm-rainbow svg {
  animation: rainbow-charm 1s ease-in-out infinite alternate;
}
@keyframes rainbow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-rainbow-shine)) drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-rainbow-shine)) drop-shadow(0 0 3px var(--charm-rainbow-shine)) drop-shadow(0 0 6px var(--charm-rainbow-shine));
  }
}
/* Charm - Shiny */
.charm-shiny {
  color: var(--charm-shiny);
}
.charm-shiny svg {
  animation: shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-shiny-shine)) drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-shiny-shine)) drop-shadow(0 0 3px var(--charm-shiny-shine)) drop-shadow(0 0 6px var(--charm-shiny-shine));
  }
}
/* Charm - Least Shiny */
.charm-least-shiny {
  color: var(--charm-least-shiny);
}
.charm-least-shiny svg {
  animation: least-shiny-charm 1s ease-in-out infinite alternate;
}
@keyframes least-shiny-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-least-shiny-shine)) drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-least-shiny-shine)) drop-shadow(0 0 3px var(--charm-least-shiny-shine)) drop-shadow(0 0 6px var(--charm-least-shiny-shine));
  }
}
/* Charm - Lime Green */
.charm-lime-green {
  color: var(--charm-lime-green);
}
.charm-lime-green svg {
  animation: lime-green-charm 1s ease-in-out infinite alternate;
}
@keyframes lime-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-lime-green-shine)) drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-lime-green-shine)) drop-shadow(0 0 3px var(--charm-lime-green-shine)) drop-shadow(0 0 6px var(--charm-lime-green-shine));
  }
}
/* Charm - Brown */
.charm-brown {
  color: var(--charm-brown);
}
.charm-brown svg {
  animation: brown-charm 1s ease-in-out infinite alternate;
}
@keyframes brown-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-brown-shine)) drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-brown-shine)) drop-shadow(0 0 3px var(--charm-brown-shine)) drop-shadow(0 0 6px var(--charm-brown-shine));
  }
}
/* Charm - Turquoise */
.charm-turquoise {
  color: var(--charm-turquoise);
}
.charm-turquoise svg {
  animation: turquoise-charm 1s ease-in-out infinite alternate;
}
@keyframes turquoise-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-turquoise-shine)) drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-turquoise-shine)) drop-shadow(0 0 3px var(--charm-turquoise-shine)) drop-shadow(0 0 6px var(--charm-turquoise-shine));
  }
}
/* Charm - Bubblegum Pink */
.charm-bubblegum-pink {
  color: var(--charm-bubblegum-pink);
}
.charm-bubblegum-pink svg {
  animation: bubblegum-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes bubblegum-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 3px var(--charm-bubblegum-pink-shine)) drop-shadow(0 0 6px var(--charm-bubblegum-pink-shine));
  }
}
/* Charm - Hot Pink */
.charm-hot-pink {
  color: var(--charm-hot-pink);
}
.charm-hot-pink svg {
  animation: hot-pink-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pink-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pink-shine)) drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pink-shine)) drop-shadow(0 0 3px var(--charm-hot-pink-shine)) drop-shadow(0 0 6px var(--charm-hot-pink-shine));
  }
}
/* Charm - Violet */
.charm-violet {
  color: var(--charm-violet);
}
.charm-violet svg {
  animation: violet-charm 1s ease-in-out infinite alternate;
}
@keyframes violet-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-violet-shine)) drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-violet-shine)) drop-shadow(0 0 3px var(--charm-violet-shine)) drop-shadow(0 0 6px var(--charm-violet-shine));
  }
}
/* Charm - Magenta */
.charm-magenta {
  color: var(--charm-magenta);
}
.charm-magenta svg {
  animation: magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-magenta-shine)) drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-magenta-shine)) drop-shadow(0 0 3px var(--charm-magenta-shine)) drop-shadow(0 0 6px var(--charm-magenta-shine));
  }
}
/* Charm - Maroon */
.charm-maroon {
  color: var(--charm-maroon);
}
.charm-maroon svg {
  animation: maroon-charm 1s ease-in-out infinite alternate;
}
@keyframes maroon-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-maroon-shine)) drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-maroon-shine)) drop-shadow(0 0 3px var(--charm-maroon-shine)) drop-shadow(0 0 6px var(--charm-maroon-shine));
  }
}
/* Charm - Aqua */
.charm-aqua {
  color: var(--charm-aqua);
}
.charm-aqua svg {
  animation: aqua-charm 1s ease-in-out infinite alternate;
}
@keyframes aqua-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-aqua-shine)) drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-aqua-shine)) drop-shadow(0 0 3px var(--charm-aqua-shine)) drop-shadow(0 0 6px var(--charm-aqua-shine));
  }
}
/* Charm - Mustard Yellow */
.charm-mustard-yellow {
  color: var(--charm-mustard-yellow);
}
.charm-mustard-yellow svg {
  animation: mustard-yellow-charm 1s ease-in-out infinite alternate;
}
@keyframes mustard-yellow-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 3px var(--charm-mustard-yellow-shine)) drop-shadow(0 0 6px var(--charm-mustard-yellow-shine));
  }
}
/* Charm - Dark */
.charm-dark {
  color: var(--charm-dark);
}
.charm-dark svg {
  animation: dark-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-shine)) drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-shine)) drop-shadow(0 0 3px var(--charm-dark-shine)) drop-shadow(0 0 6px var(--charm-dark-shine));
  }
}
/* Charm - Pale */
.charm-pale {
  color: var(--charm-pale);
}
.charm-pale svg {
  animation: pale-charm 1s ease-in-out infinite alternate;
}
@keyframes pale-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-pale-shine)) drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-pale-shine)) drop-shadow(0 0 3px var(--charm-pale-shine)) drop-shadow(0 0 6px var(--charm-pale-shine));
  }
}
/* Charm - Hot Pick */
.charm-hot-pick {
  color: var(--charm-hot-pick);
}
.charm-hot-pick svg {
  animation: hot-pick-charm 1s ease-in-out infinite alternate;
}
@keyframes hot-pick-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-hot-pick-shine)) drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-hot-pick-shine)) drop-shadow(0 0 3px var(--charm-hot-pick-shine)) drop-shadow(0 0 6px var(--charm-hot-pick-shine));
  }
}
/* Charm - Naked */
.charm-naked {
  color: var(--charm-naked);
}
.charm-naked svg {
  animation: naked-charm 1s ease-in-out infinite alternate;
}
@keyframes naked-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-naked-shine)) drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-naked-shine)) drop-shadow(0 0 3px var(--charm-naked-shine)) drop-shadow(0 0 6px var(--charm-naked-shine));
  }
}
/* Charm - Olive */
.charm-olive {
  color: var(--charm-olive);
}
.charm-olive svg {
  animation: olive-charm 1s ease-in-out infinite alternate;
}
@keyframes olive-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-olive-shine)) drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-olive-shine)) drop-shadow(0 0 3px var(--charm-olive-shine)) drop-shadow(0 0 6px var(--charm-olive-shine));
  }
}
/* Charm - Deep Blue */
.charm-deep-blue {
  color: var(--charm-deep-blue);
}
.charm-deep-blue svg {
  animation: deep-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes deep-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-deep-blue-shine)) drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-deep-blue-shine)) drop-shadow(0 0 3px var(--charm-deep-blue-shine)) drop-shadow(0 0 6px var(--charm-deep-blue-shine));
  }
}
/* Charm - Green */
.charm-green {
  color: var(--charm-green);
}
.charm-green svg {
  animation: green-charm 1s ease-in-out infinite alternate;
}
@keyframes green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-green-shine)) drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-green-shine)) drop-shadow(0 0 3px var(--charm-green-shine)) drop-shadow(0 0 6px var(--charm-green-shine));
  }
}
/* Charm - Tan */
.charm-tan {
  color: var(--charm-tan);
}
.charm-tan svg {
  animation: tan-charm 1s ease-in-out infinite alternate;
}
@keyframes tan-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-tan-shine)) drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-tan-shine)) drop-shadow(0 0 3px var(--charm-tan-shine)) drop-shadow(0 0 6px var(--charm-tan-shine));
  }
}
/* Charm - Sunset Orange */
.charm-sunset-orange {
  color: var(--charm-sunset-orange);
}
.charm-sunset-orange svg {
  animation: sunset-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes sunset-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-sunset-orange-shine)) drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-sunset-orange-shine)) drop-shadow(0 0 3px var(--charm-sunset-orange-shine)) drop-shadow(0 0 6px var(--charm-sunset-orange-shine));
  }
}
/* Charm - Clay Green */
.charm-clay-green {
  color: var(--charm-clay-green);
}
.charm-clay-green svg {
  animation: clay-green-charm 1s ease-in-out infinite alternate;
}
@keyframes clay-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-clay-green-shine)) drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-clay-green-shine)) drop-shadow(0 0 3px var(--charm-clay-green-shine)) drop-shadow(0 0 6px var(--charm-clay-green-shine));
  }
}
/* Charm - Dark Lavender */
.charm-dark-lavender {
  color: var(--charm-dark-lavender);
}
.charm-dark-lavender svg {
  animation: dark-lavender-charm 1s ease-in-out infinite alternate;
}
@keyframes dark-lavender-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-dark-lavender-shine)) drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-dark-lavender-shine)) drop-shadow(0 0 3px var(--charm-dark-lavender-shine)) drop-shadow(0 0 6px var(--charm-dark-lavender-shine));
  }
}
.charm-collectors-gold {
  color: var(--charm-collectors-gold);
}
.charm-collectors-gold svg {
  animation: collectors-gold-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-gold-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-gold-shine)) drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-gold-shine)) drop-shadow(0 0 3px var(--charm-collectors-gold-shine)) drop-shadow(0 0 6px var(--charm-collectors-gold-shine));
  }
}
.charm-gold-orange {
  color: var(--charm-gold-orange);
}
.charm-gold-orange svg {
  animation: gold-orange-charm 1s ease-in-out infinite alternate;
}
@keyframes gold-orange-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-gold-orange-shine)) drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-gold-orange-shine)) drop-shadow(0 0 3px var(--charm-gold-orange-shine)) drop-shadow(0 0 6px var(--charm-gold-orange-shine));
  }
}
.charm-collectors-red {
  color: var(--charm-collectors-red);
}
.charm-collectors-red svg {
  animation: collectors-red-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-red-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-red-shine)) drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-red-shine)) drop-shadow(0 0 3px var(--charm-collectors-red-shine)) drop-shadow(0 0 6px var(--charm-collectors-red-shine));
  }
}
.charm-red-crimson {
  color: var(--charm-red-crimson);
}
.charm-red-crimson svg {
  animation: red-crimson-charm 1s ease-in-out infinite alternate;
}
@keyframes red-crimson-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-red-crimson-shine)) drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-red-crimson-shine)) drop-shadow(0 0 3px var(--charm-red-crimson-shine)) drop-shadow(0 0 6px var(--charm-red-crimson-shine));
  }
}
.charm-crimson-magenta {
  color: var(--charm-crimson-magenta);
}
.charm-crimson-magenta svg {
  animation: crimson-magenta-charm 1s ease-in-out infinite alternate;
}
@keyframes crimson-magenta-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 3px var(--charm-crimson-magenta-shine)) drop-shadow(0 0 6px var(--charm-crimson-magenta-shine));
  }
}
.charm-blue-shine {
  color: var(--charm-blue-shine);
}
.charm-blue-shine svg {
  animation: blue-shine-charm 1s ease-in-out infinite alternate;
}
@keyframes blue-shine-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-blue-shine-shine)) drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-blue-shine-shine)) drop-shadow(0 0 3px var(--charm-blue-shine-shine)) drop-shadow(0 0 6px var(--charm-blue-shine-shine));
  }
}
.charm-heaven-blue {
  color: var(--charm-heaven-blue);
}
.charm-heaven-blue svg {
  animation: heaven-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes heaven-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-heaven-blue-shine)) drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-heaven-blue-shine)) drop-shadow(0 0 3px var(--charm-heaven-blue-shine)) drop-shadow(0 0 6px var(--charm-heaven-blue-shine));
  }
}
.charm-collectors-blue {
  color: var(--charm-collectors-blue);
}
.charm-collectors-blue svg {
  animation: collectors-blue-charm 1s ease-in-out infinite alternate;
}
@keyframes collectors-blue-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-collectors-blue-shine)) drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-collectors-blue-shine)) drop-shadow(0 0 3px var(--charm-collectors-blue-shine)) drop-shadow(0 0 6px var(--charm-collectors-blue-shine));
  }
}
.charm-copper {
  color: var(--charm-copper);
}
.charm-copper svg {
  animation: copper-charm 1s ease-in-out infinite alternate;
}
@keyframes copper-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-copper-shine)) drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-copper-shine)) drop-shadow(0 0 3px var(--charm-copper-shine)) drop-shadow(0 0 6px var(--charm-copper-shine));
  }
}
.charm-minty-green {
  color: var(--charm-minty-green);
}
.charm-minty-green svg {
  animation: minty-green-charm 1s ease-in-out infinite alternate;
}
@keyframes minty-green-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-minty-green-shine)) drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-minty-green-shine)) drop-shadow(0 0 3px var(--charm-minty-green-shine)) drop-shadow(0 0 6px var(--charm-minty-green-shine));
  }
}
/* Charm - Default */
.charm-default {
  color: var(--charm-default);
}
.charm-default svg {
  animation: default-charm 1s ease-in-out infinite alternate;
}
@keyframes default-charm {
  from {
    filter: drop-shadow(0 0 1px var(--charm-default-shine)) drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine));
  }
  to {
    filter: drop-shadow(0 0 2px var(--charm-default-shine)) drop-shadow(0 0 3px var(--charm-default-shine)) drop-shadow(0 0 6px var(--charm-default-shine));
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
.skinping-light {
  /* Global */
  --bit-transparent: rgba(0, 0, 0, 0.9);
  --bitmore-transparent: rgba(0, 0, 0, 0.7);
  --half-transparent: rgba(0, 0, 0, 0.5);
  --nearly-transparent: rgba(0, 0, 0, 0.1);
  --bit-transparent-invert: rgba(255, 255, 255, 0.9);
  --bitmore-transparent-invert: rgba(255, 255, 255, 0.7);
  --half-transparent-invert: rgba(255, 255, 255, 0.5);
  --nearly-transparent-invert: rgba(255, 255, 255, 0.1);
  --half-transparent-font: rgba(0, 0, 0, 0.5);
  --half-transparent-font-invert: rgba(255, 255, 255, 0.5);
  --popup-background: #FFFFFF;
  /* Grundfarben */
  --primary-color: #1976d2;
  --primary-color-hover: #2f5e9a;
  --secondary-color: #FF3C7A;
  --accent-color: #00BFA5;
  --black: #000000;
  --white: #FFFFFF;
  --success: #23b91f;
  --error: #cf1a13;
  /* Logo */
  --logo-color: #FFFFFF;
  /* Textfarben */
  --text-color: #030303;
  /* Dunkler für bessere Lesbarkeit im Light Mode */
  --text-color-light: #FFFFFF;
  /* Für Kontrastelemente */
  --text-color-secondary: #575757;
  /* Leichter als im Dark Mode, aber dunkel genug für Kontrast */
  /* Hintergrund */
  --background-image: none;
  --background-color: #E8E8E8;
  /* Heller Hintergrund */
  --background-color-secondary: #FFFFFF;
  /* Reiner Weiß für Karten / Segmente */
  /* Rand- und Trennlinien */
  --divider-color: #E0E0E0;
  /* Ebenfalls heller für sichtbare Trennungen */
  /* Schriftgrößen */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-xxl: 1.5rem;
  /* 24px */
  /* Schriftgewicht */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* Zeilenhöhe */
  --line-height-base: 1.5;
  --line-height-compressed: 1.25;
  /* Abstände */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  /* Container und Breite */
  --container-width: 1200px;
  --sidebar-width: 250px;
  --header-height: 60px;
  /* Buttonfarben */
  --button-color: var(--primary-color);
  --button-text-color: var(--text-color);
  /* Anpassung für bessere Sichtbarkeit */
  /* Formulare */
  --border-color: rgba(0, 0, 0, 0.8);
  --input-border-color: var(--border-color);
  --input-border-hover-color: #000000;
  --input-background-color: #FFFFFF;
  /* Weißer Hintergrund für Inputs */
  --input-text-color: var(--text-color);
  /* Dunkle Schrift für gute Lesbarkeit */
  /* Navigation */
  --nav-color: #FFFFFF;
  --nav-background-color: #080808;
  --nav-hover-background: rgba(0, 0, 0, 0.05);
  --nav-active-background: rgba(0, 0, 0, 0.1);
  --nav-text-color: var(--text-color-light);
  --nav-text-color-active: var(--primary-color);
  /* Filter */
  --filter-background-color: var(--background-color-secondary);
  --subFilter-background-color: #efefef;
  --subFilter-border-color: #E8E8E8;
  /* Header */
  --header-background-color: var(--background-color-secondary);
  --header-text-color: var(--text-color);
  /* Slider */
  --imageslider-buttons-background-color: #FFFFFF;
  --imageslider-buttons-color: #000000;
  /* Item */
  --item-section-background-color: var(--background-color);
  --item-background-color: var(--background-color-secondary);
  --item-pulse-color: rgba(0, 0, 0, 0.2);
  --item-image-background-opacity: 0.3;
  --item-image-background-opacity-hover: 0.6;
  --item-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.35);
  --item-menu-background: rgba(255, 255, 255, 0.85);
  --item-buy-mobile-background-color: var(--item-background-color);
  --item-buy-mobile-color: var(--text-color);
  --item-detail-background: #e6e6e6;
  /* Box-Schatten */
  --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  /* Übergänge */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  /* Seltenheit */
  --color-rarity-consumer-grade: #b0c2d8;
  --color-rarity-industrial-grade: #5c99d5;
  --color-rarity-mil-spec-grade: #446df8;
  --color-rarity-restricted: #834ef8;
  --color-rarity-classified: #d239df;
  --color-rarity-covert: #eb4f50;
  --color-rarity-contraband: #e4ae49;
  --tier-1-color: #ffca00;
  --tier-2-color: #3db69c;
  --tier-3-color: #229853;
  --tier-4-color: var(--text-color);
  --item-bluegem: #06dcde;
  --item-bluegem-shine: #a7fdff;
  --item-goldgem: #D4AF37;
  --item-goldgem-shine: #d7c692;
  --item-rare: #9606ff;
  --item-rare-shine: #c4a2d9;
  --item-rare-blue-hive: #3c57ec;
  --item-rare-blue-hive-shine: #586ed6;
  --item-rare-orange-hive: #e96514;
  --item-rare-orange-hive-shine: #e18a54;
  --item-rare-star: #428ffa;
  --item-rare-star-shine: #6c9ff3;
  --item-rare-d: #31A8FF;
  --item-rare-d-shine: #54aff8;
  --item-rare-fire-and-ice-start: #ff3b3b;
  --item-rare-fire-and-ice-mid1: #ff7b3b;
  --item-rare-fire-and-ice-mid2: #ffd93b;
  --item-rare-fire-and-ice-mid3: #3bafff;
  --item-rare-fire-and-ice-end: #1c4bff;
  --item-rare-fire-and-ice-shine-start: #ffc0c0;
  --item-rare-fire-and-ice-shine-mid1: #ffd9b0;
  --item-rare-fire-and-ice-shine-mid2: #fff2b0;
  --item-rare-fire-and-ice-shine-mid3: #b0e3ff;
  --item-rare-fire-and-ice-shine-end: #bcdcff;
  --item-float: #2f61c7;
  --item-float-shine: #86a5ea;
  --item-stattrak: #ff7600;
  --item-souvenir: #cac307;
  --charm-light-green: #a3e635;
  --charm-light-green-shine: #d9f99d;
  --charm-dark-green: #065f46;
  --charm-dark-green-shine: #10b981;
  --charm-teal: #14b8a6;
  --charm-teal-shine: #2dd4bf;
  --charm-cyan: #06b6d4;
  --charm-cyan-shine: #67e8f9;
  --charm-blue: #3b82f6;
  --charm-blue-shine: #93c5fd;
  --charm-light-blue: #3b82f6;
  --charm-light-blue-shine: #93c5fd;
  --charm-pink: #ec4899;
  --charm-pink-shine: #f9a8d4;
  --charm-mix-blue-purple: #7c3aed;
  --charm-mix-blue-purple-shine: #c084fc;
  --charm-mix-purple-blue: #8b5cf6;
  --charm-mix-purple-blue-shine: #d8b4fe;
  --charm-purple: #9333ea;
  --charm-purple-shine: #c4b5fd;
  --charm-purple-pink: #d233ea;
  --charm-purple-pink-shine: #dab5fd;
  --charm-red: #ef4444;
  --charm-red-shine: #fecaca;
  --charm-orange: #f97316;
  --charm-orange-shine: #fdba74;
  --charm-gold: #fde801;
  --charm-gold-shine: #fcd34d;
  --charm-golden: #fdc201;
  --charm-golden-shine: #fef08a;
  --charm-bronze: #b45309;
  --charm-bronze-shine: #f49247;
  --charm-fusia: #d946ef;
  --charm-fusia-shine: #f0abfc;
  --charm-yellow: #f5b30b;
  --charm-yellow-shine: #fef08a;
  --charm-rainbow: #8b5cf6;
  /* approximated */
  --charm-rainbow-shine: #d8b4fe;
  /* approximated */
  --charm-shiny: #ffd700;
  --charm-shiny-shine: #ffef94;
  --charm-least-shiny: #a5a5a5;
  --charm-least-shiny-shine: #d1d1d1;
  --charm-lime-green: #84cc16;
  --charm-lime-green-shine: #bef264;
  --charm-brown: #8b4513;
  --charm-brown-shine: #cd853f;
  --charm-turquoise: #40e0d0;
  --charm-turquoise-shine: #8df0e0;
  --charm-bubblegum-pink: #ff66cc;
  --charm-bubblegum-pink-shine: #ffb3e0;
  --charm-hot-pink: #ff69b4;
  --charm-hot-pink-shine: #ffa6d6;
  --charm-violet: #700538;
  --charm-violet-shine: #c8236e;
  --charm-magenta: #ff00ff;
  --charm-magenta-shine: #ff77ff;
  --charm-maroon: #800000;
  --charm-maroon-shine: #a0522d;
  --charm-aqua: #00ffff;
  --charm-aqua-shine: #bbffff;
  --charm-mustard-yellow: #ffdb58;
  --charm-mustard-yellow-shine: #fff5cc;
  --charm-dark: #2f4f4f;
  --charm-dark-shine: #556b6b;
  --charm-pale: #fdf5e6;
  --charm-pale-shine: #fffae5;
  --charm-hot-pick: #ff1493;
  --charm-hot-pick-shine: #ff7fae;
  --charm-naked: #d2b48c;
  --charm-naked-shine: #e8cfae;
  --charm-olive: #6b8e23;
  --charm-olive-shine: #a2c651;
  --charm-deep-blue: #0000cd;
  --charm-deep-blue-shine: #4c4cff;
  --charm-green: #32cd32;
  --charm-green-shine: #66ff66;
  --charm-tan: #d2b48c;
  --charm-tan-shine: #e8d3b5;
  --charm-sunset-orange: #ff4500;
  --charm-sunset-orange-shine: #ff7252;
  --charm-clay-green: #8f9779;
  --charm-clay-green-shine: #b0c2a1;
  --charm-dark-lavender: #734f96;
  --charm-dark-lavender-shine: #9d7fba;
  --charm-default: #808080;
  --charm-default-shine: #a6a6a6;
  --charm-collectors-gold: #f7b500;
  --charm-collectors-gold-shine: #ffe08a;
  --charm-gold-orange: #ffb000;
  --charm-gold-orange-shine: #ffd49a;
  --charm-collectors-red: #d61f26;
  --charm-collectors-red-shine: #ff8a8a;
  --charm-red-crimson: #dc143c;
  --charm-red-crimson-shine: #ff98b0;
  --charm-crimson-magenta: #e0006a;
  --charm-crimson-magenta-shine: #ff8ac2;
  --charm-blue-shine-shine: #cfe1ff;
  --charm-heaven-blue: #7dd3fc;
  --charm-heaven-blue-shine: #dbeafe;
  --charm-collectors-blue: #1e90ff;
  --charm-collectors-blue-shine: #a6d4ff;
  --charm-copper: #b87333;
  --charm-copper-shine: #f1b87a;
  --charm-minty-green: #34e59a;
  --charm-minty-green-shine: #b7f3d9;
  --item-charm-fade: #ff8ac9;
  --item-charm-fade-shine: #ffd1e9;
  --item-charm-fade-start: #ffd66e;
  --item-charm-fade-mid1: #ff7da2;
  --item-charm-fade-mid2: #b25cff;
  --item-charm-fade-end: #6e47ff;
  --item-charm-fade-shine-start: #ffe8b0;
  --item-charm-fade-shine-mid1: #ffc6d9;
  --item-charm-fade-shine-mid2: #e2c6ff;
  --item-charm-fade-shine-end: #c7beff;
  --item-charm-glitter-start: #ff6bd6;
  --item-charm-glitter-mid1: #ffd166;
  --item-charm-glitter-mid2: #66ffd6;
  --item-charm-glitter-mid3: #8b6bff;
  --item-charm-glitter-end: #ffffff;
  --item-charm-glitter-shine-start: #ffd6ef;
  --item-charm-glitter-shine-mid1: #fff0c4;
  --item-charm-glitter-shine-mid2: #c8fff0;
  --item-charm-glitter-shine-mid3: #e1d9ff;
  --item-charm-glitter-shine-end: #ffffff;
  --item-charm-reflecting-start: #8ecbff;
  --item-charm-reflecting-mid: #8fe9ff;
  --item-charm-reflecting-end: #b9c9ff;
  --item-charm-reflecting-shine-start: #cfeaff;
  --item-charm-reflecting-shine-mid: #d6ffff;
  --item-charm-reflecting-shine-end: #e7ecff;
  --market-skinport: #fa490a;
  --market-skinport-hover: #d03c09;
  --market-skinport-text: #FFFFFF;
  --market-gamerpay: #019eff;
  --market-gamerpay-hover: #017fcc;
  --market-gamerpay-text: #121626;
  --market-dmarket: #44a569;
  --market-dmarket-hover: #26623d;
  --market-dmarket-text: #FFFFFF;
  --market-skinbaron: #FFFFFF;
  --market-skinbaron-hover: #FFFFFF;
  --market-skinbaron-text: #191630;
  --market-bitskins: #0e0e0e;
  --market-bitskins-hover: #151515;
  --market-bitskins-text: #FFFFFFF;
  --market-csmoney: #ff3ec8;
  --market-csmoney-hover: #f13abd;
  --market-csmoney-text: #FFFFFF;
  --scrollbar-thumb: #CCCCCC;
  --scrollbar-track: #F0F0F0;
}
.skinping-dark {
  /* Global */
  --bit-transparent: rgba(255, 255, 255, 0.9);
  --bitmore-transparent: rgba(255, 255, 255, 0.7);
  --half-transparent: rgba(255, 255, 255, 0.5);
  --nearly-transparent: rgba(255, 255, 255, 0.1);
  --bit-transparent-invert: rgba(0, 0, 0, 0.9);
  --bitmore-transparent-invert: rgba(0, 0, 0, 0.7);
  --half-transparent-invert: rgba(0, 0, 0, 0.5);
  --nearly-transparent-invert: rgba(0, 0, 0, 0.1);
  --half-transparent-font: rgba(255, 255, 255, 0.5);
  --half-transparent-font-invert: rgba(0, 0, 0, 0.5);
  --popup-background: #1e1e1e;
  /* Grundfarben */
  --primary-color: #1976d2;
  --primary-color-hover: #2f5e9a;
  --secondary-color: #FF3C7A;
  --accent-color: #00BFA5;
  --black: #000000;
  --white: #FFFFFF;
  --success: #23b91f;
  --error: #cf1a13;
  /* Logo */
  --logo-color: #FFFFFF;
  /* Textfarben */
  --text-color: #FFFFFF;
  --text-color-light: #FFFFFF;
  --text-color-secondary: #757575;
  /* Hintergrund */
  --background-image: none;
  --background-color: #080808;
  --background-color-secondary: #1e1e1e;
  /* Rand- und Trennlinien */
  --divider-color: #BDBDBD;
  /* Schriftgrößen */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-xxl: 1.5rem;
  /* 24px */
  /* Schriftgewicht */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* Zeilenhöhe */
  --line-height-base: 1.5;
  --line-height-compressed: 1.25;
  /* Abstände */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  /* Container und Breite */
  --container-width: 1200px;
  --sidebar-width: 250px;
  --header-height: 60px;
  /* Buttonfarben */
  --button-color: var(--primary-color);
  --button-text-color: var(--text-color-light);
  /* Formulare */
  --border-color: rgba(255, 255, 255, 0.8);
  --input-border-color: #8c8c8c;
  --input-border-hover-color: #8c8c8c;
  --input-background-color: var(--background-color-light);
  --input-text-color: var(--text-color);
  /* Navigation */
  --nav-color: #FFFFFF;
  --nav-background-color: var(--background-color);
  --nav-hover-background: rgba(255, 255, 255, 0.1);
  --nav-active-background: rgba(255, 255, 255, 0.2);
  --nav-text-color: var(--text-color-light);
  --nav-text-color-active: var(--primary-color);
  /* Filter */
  --filter-background-color: var(--background-color-secondary);
  --subFilter-background-color: #141414;
  --subFilter-border-color: var(--background-color);
  /* Header */
  --header-background-color: var(--background-color-dark);
  --header-text-color: var(--text-color-light);
  /* Slider */
  --imageslider-buttons-background-color: #FFFFFF;
  --imageslider-buttons-color: #000000;
  /* Item */
  --item-section-background-color: #080808;
  --item-background-color: #1e1e1e;
  --item-pulse-color: rgba(255, 255, 255, 0.15);
  --item-image-background-opacity: 0.2;
  --item-image-background-opacity-hover: 0.5;
  --item-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.55);
  --item-menu-background: rgba(8, 8, 8, 0.95);
  --item-menu-text-hover-color: var(--text-color);
  --item-buy-mobile-background-color: var(--item-background-color);
  --item-buy-mobile-color: #ffffff;
  --item-detail-background: #131313;
  /* Box-Schatten */
  --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  /* Übergänge */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  /* Seltenheit */
  --color-rarity-consumer-grade: #b0c2d8;
  --color-rarity-industrial-grade: #5c99d5;
  --color-rarity-mil-spec-grade: #446df8;
  --color-rarity-restricted: #834ef8;
  --color-rarity-classified: #d239df;
  --color-rarity-covert: #eb4f50;
  --color-rarity-contraband: #ffa600;
  --tier-1-color: #ffca00;
  --tier-2-color: #57ffde;
  --tier-3-color: #2ecc71;
  --tier-4-color: var(--text-color);
  --item-bluegem: #06fdff;
  --item-bluegem-shine: #145657;
  --item-goldgem: #D4AF37;
  --item-goldgem-shine: #705a19;
  --item-rare: #9606ff;
  --item-rare-shine: #4d0d7a;
  --item-rare-blue-hive: #3c57ec;
  --item-rare-blue-hive-shine: #1f37bd;
  --item-rare-orange-hive: #e96514;
  --item-rare-orange-hive-shine: #a14910;
  --item-rare-star: #66B2FF;
  --item-rare-star-shine: #4b82ba;
  --item-rare-d: #7CCBFF;
  --item-rare-d-shine: #578bae;
  --item-rare-fire-and-ice-start: #ff5252;
  --item-rare-fire-and-ice-mid1: #ff9952;
  --item-rare-fire-and-ice-mid2: #ffe652;
  --item-rare-fire-and-ice-mid3: #52b8ff;
  --item-rare-fire-and-ice-end: #2e6cff;
  --item-rare-fire-and-ice-shine-start: #c64040;
  --item-rare-fire-and-ice-shine-mid1: #ba703c;
  --item-rare-fire-and-ice-shine-mid2: #b6a53b;
  --item-rare-fire-and-ice-shine-mid3: #3880b1;
  --item-rare-fire-and-ice-shine-end: #204cb5;
  --item-float: #2f61c7;
  --item-float-shine: #1b46ab;
  --item-stattrak: #ff7600;
  --item-souvenir: #fff600;
  --charm-light-green: #a3e635;
  --charm-light-green-shine: #6c921b;
  --charm-dark-green: #065f46;
  --charm-dark-green-shine: #044334;
  --charm-teal: #14b8a6;
  --charm-teal-shine: #0e8f82;
  --charm-cyan: #06b6d4;
  --charm-cyan-shine: #047b91;
  --charm-blue: #3b82f6;
  --charm-blue-shine: #2a5db5;
  --charm-light-blue: #3b82f6;
  --charm-light-blue-shine: #2a5db5;
  --charm-pink: #ec4899;
  --charm-pink-shine: #b3366f;
  --charm-mix-blue-purple: #7c3aed;
  --charm-mix-blue-purple-shine: #582aa3;
  --charm-mix-purple-blue: #8b5cf6;
  --charm-mix-purple-blue-shine: #613dba;
  --charm-purple: #9333ea;
  --charm-purple-shine: #5e2a8d;
  --charm-purple-pink: #e433ea;
  --charm-purple-pink-shine: #802a8d;
  --charm-red: #ef4444;
  --charm-red-shine: #a33030;
  --charm-orange: #f97316;
  --charm-orange-shine: #c65911;
  --charm-gold: #fde801;
  --charm-gold-shine: #b6a905;
  --charm-golden: #fdc201;
  --charm-golden-shine: #bd9307;
  --charm-bronze: #b45309;
  --charm-bronze-shine: #733505;
  --charm-fusia: #d946ef;
  --charm-fusia-shine: #9c32ab;
  --charm-yellow: #f5b30b;
  --charm-yellow-shine: #b57508;
  --charm-rainbow: #8b5cf6;
  /* approximated */
  --charm-rainbow-shine: #613dba;
  /* approximated */
  --charm-shiny: #ffd700;
  --charm-shiny-shine: #bba100;
  --charm-least-shiny: #a5a5a5;
  --charm-least-shiny-shine: #737373;
  --charm-lime-green: #84cc16;
  --charm-lime-green-shine: #5e9211;
  --charm-brown: #8b4513;
  --charm-brown-shine: #613012;
  --charm-turquoise: #40e0d0;
  --charm-turquoise-shine: #2b9f95;
  --charm-bubblegum-pink: #ff66cc;
  --charm-bubblegum-pink-shine: #b34a92;
  --charm-hot-pink: #ff69b4;
  --charm-hot-pink-shine: #b34d7d;
  --charm-violet: #670433;
  --charm-violet-shine: #40021f;
  --charm-magenta: #ff00ff;
  --charm-magenta-shine: #b300b3;
  --charm-maroon: #800000;
  --charm-maroon-shine: #580000;
  --charm-aqua: #00ffff;
  --charm-aqua-shine: #00baba;
  --charm-mustard-yellow: #ffdb58;
  --charm-mustard-yellow-shine: #b8973b;
  --charm-dark: #2f4f4f;
  --charm-dark-shine: #1f3535;
  --charm-pale: #fdf5e6;
  --charm-pale-shine: #cbbfa7;
  --charm-hot-pick: #ff1493;
  --charm-hot-pick-shine: #b30d69;
  --charm-naked: #d2b48c;
  --charm-naked-shine: #977855;
  --charm-olive: #556b2f;
  --charm-olive-shine: #3e4e22;
  --charm-deep-blue: #00008b;
  --charm-deep-blue-shine: #000066;
  --charm-green: #228b22;
  --charm-green-shine: #176617;
  --charm-tan: #d2b48c;
  --charm-tan-shine: #a58963;
  --charm-sunset-orange: #ff4500;
  --charm-sunset-orange-shine: #b33000;
  --charm-clay-green: #8f9779;
  --charm-clay-green-shine: #647054;
  --charm-dark-lavender: #734f96;
  --charm-dark-lavender-shine: #533973;
  --charm-default: #808080;
  --charm-default-shine: #5a5a5a;
  --charm-collectors-gold: #f7b500;
  --charm-collectors-gold-shine: #a57a00;
  --charm-gold-orange: #ffb000;
  --charm-gold-orange-shine: #b37500;
  --charm-collectors-red: #d61f26;
  --charm-collectors-red-shine: #8e1418;
  --charm-red-crimson: #dc143c;
  --charm-red-crimson-shine: #8e0c25;
  --charm-crimson-magenta: #e0006a;
  --charm-crimson-magenta-shine: #990049;
  --charm-blue-shine-shine: #1c3f7a;
  --charm-heaven-blue: #7dd3fc;
  --charm-heaven-blue-shine: #3a77a3;
  --charm-collectors-blue: #1e90ff;
  --charm-collectors-blue-shine: #155a99;
  --charm-copper: #b87333;
  --charm-copper-shine: #7b4d22;
  --charm-minty-green: #34e59a;
  --charm-minty-green-shine: #208a62;
  --item-charm-fade: #ff9ad8;
  --item-charm-fade-shine: #70315e;
  --item-charm-fade-start: #ffd66e;
  --item-charm-fade-mid1: #ff7da2;
  --item-charm-fade-mid2: #b25cff;
  --item-charm-fade-end: #6e47ff;
  --item-charm-fade-shine-start: #b3862a;
  --item-charm-fade-shine-mid1: #8e2f57;
  --item-charm-fade-shine-mid2: #5b2a99;
  --item-charm-fade-shine-end: #2f1f8e;
  --item-charm-glitter-start: #ff85e4;
  --item-charm-glitter-mid1: #ffd97a;
  --item-charm-glitter-mid2: #7affea;
  --item-charm-glitter-mid3: #a08aff;
  --item-charm-glitter-end: #e6f7ff;
  --item-charm-glitter-shine-start: #7a3e66;
  --item-charm-glitter-shine-mid1: #7a6430;
  --item-charm-glitter-shine-mid2: #2f7a6e;
  --item-charm-glitter-shine-mid3: #473a7a;
  --item-charm-glitter-shine-end: #395a7a;
  --item-charm-reflecting-start: #76b2ff;
  --item-charm-reflecting-mid: #6fdcff;
  --item-charm-reflecting-end: #9fb2ff;
  --item-charm-reflecting-shine-start: #274769;
  --item-charm-reflecting-shine-mid: #1f5a6b;
  --item-charm-reflecting-shine-end: #324272;
  --market-skinport: #fa490a;
  --market-skinport-hover: #d03c09;
  --market-skinport-text: #FFFFFF;
  --market-gamerpay: #019eff;
  --market-gamerpay-hover: #017fcc;
  --market-gamerpay-text: #121626;
  --market-dmarket: #44a569;
  --market-dmarket-hover: #26623d;
  --market-dmarket-text: #FFFFFF;
  --market-skinbaron: #FFFFFF;
  --market-skinbaron-hover: #FFFFFF;
  --market-skinbaron-text: #191630;
  --market-bitskins: #0e0e0e;
  --market-bitskins-hover: #151515;
  --market-bitskins-text: #FFFFFFF;
  --market-csmoney: #ff3ec8;
  --market-csmoney-hover: #f13abd;
  --market-csmoney-text: #FFFFFF;
  --scrollbar-thumb: #5E5E5E;
  --scrollbar-track: #2E2E2E;
}
.helloween-theme {
  --halloween-headline-color: #13e60e;
  --halloween-primary: #109d0d;
  --halloween-primary-darker: #158e12;
  --halloween-secondary: #ff4600;
  --halloween-secondary-darker: #dc460d;
  /*
  h1 {
    color: var(--halloween-headline-color);
  }

  .MuiButton-contained {
    background-color: var(--halloween-primary);

    &:hover {
      background-color: var(--halloween-primary-darker);
    }
  }

  .MuiButton-outlined {
    border-color: var(--halloween-secondary);
    color: var(--halloween-secondary);

    &:hover {
      border-color: var(--halloween-secondary-darker);
      color: var(--halloween-secondary-darker);
    }
  }
   */
}
.helloween-theme header .logo {
  color: var(--halloween-headline-color);
}
iframe {
  display: none;
  visibility: hidden;
  opacity: 0;
}
body {
  width: 100%;
  overflow: hidden;
  overflow-y: scroll !important;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  padding-right: 0 !important;
}
body.mobile-menu-opened {
  overflow-y: hidden !important;
  height: 100% !important;
}
body.loading-login #root {
  filter: blur(6px);
}
main {
  padding-top: 70px;
  filter: none;
  transform: none;
  transition: filter 0.25s linear, transform 0.25s linear;
}
a {
  color: var(--primary-color);
}
a.no-underline {
  text-decoration: none;
}
#root h1 {
  font-weight: 300;
  font-size: 6rem;
  line-height: 1.167;
  letter-spacing: -0.01562em;
}
.logoName {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 24px;
}
.item-main-content {
  width: 100%;
  min-height: calc(100vh - 392px);
  padding-bottom: 25px;
}
.nav-header-offset-top {
  padding-top: 0;
}
.MuiDialog-paper {
  background-color: var(--background-color) !important;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.MuiDialog-paper .alert-dialog-title {
  font-size: 24px;
  color: var(--text-color);
  text-transform: uppercase;
  text-align: center;
}
.MuiDialog-paper .alert-dialog-description {
  font-size: 16px;
  color: var(--text-color);
}
.MuiDialog-paper .dialog-button-wrapper {
  justify-content: center;
}
.MuiDialog-paper .verify-user-button {
  background-color: #1976d2;
}
.MuiDialog-paper .verify-user-button:hover {
  background-color: #1669bb;
}
.pagination {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  width: 100%;
}
.pagination button {
  color: var(--text-color);
}
.pagination button svg {
  color: var(--text-color);
}
.pagination button.Mui-selected {
  background-color: rgba(255, 255, 255, 0.08);
}
.pagination .MuiPaginationItem-ellipsis {
  color: var(--text-color);
}
.scrollbar-custom {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  scrollbar-face-color: var(--scrollbar-thumb);
  scrollbar-track-color: var(--scrollbar-track);
}
.scrollbar-custom::-webkit-scrollbar {
  width: 12px;
}
.scrollbar-custom::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  box-shadow: none;
}
.scrollbar-custom::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 6px;
  border: 3px solid var(--scrollbar-track);
  box-shadow: none;
}
.MuiButton-startIcon svg {
  -webkit-user-select: none;
  user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.card-box {
  background-color: var(--item-background-color);
}
.card-box-glass {
  background-color: var(--half-transparent-invert) !important;
}
.card-box-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}
.item-wear-bar {
  position: relative;
  padding-bottom: 5px;
}
.item-wear-bar .item-wear-bar-inner {
  height: 4px;
  width: 100%;
  display: flex;
}
.item-wear-bar .item-wear-bar-inner > div {
  height: 100%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-bs {
  background: #e05a59;
  width: 55%;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-ww {
  background: #e9a75d;
  width: 7%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-ft {
  background: #e3e15b;
  width: 23%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-mw {
  background: #79d154;
  width: 8%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-fn {
  background: #5eb648;
  width: 7%;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.item-wear-bar .item-wear-bar-progress {
  position: absolute;
  bottom: 0;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent var(--text-color) transparent;
  transform: rotate(0deg);
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@keyframes move-left-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
html,
body {
  width: 100%;
}
.App {
  margin: 0 auto;
}
.container {
  font-family: Arial, sans-serif;
  padding: 20px;
}
.do-a-roll #root {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  max-height: 100vh;
  overflow: hidden;
  animation: doARoll 2s ease-out;
}
@keyframes doARoll {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.for-ai-or-llm {
  position: absolute;
  z-index: -1;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  font-size: 0px;
  line-height: 0px;
}
.cookie-banner-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  animation: fadeInBannerBG 0.5s ease-out;
}
.cookie-banner-wrapper .cookie-banner {
  max-width: 600px;
  padding: 20px;
  background-color: var(--background-color);
  color: var(--text-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  animation: scaleInBanner 0.5s ease-out;
  transform: scale(1);
}
.cookie-banner-wrapper .cookie-banner-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.cookie-banner-wrapper .cookie-banner-icon svg {
  font-size: 50px;
}
.cookie-banner-wrapper .cookie-banner-inner {
  text-align: center;
  max-width: 500px;
  padding: 15px;
}
.cookie-banner-wrapper .cookie-banner-buttons {
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cookie-banner-wrapper .cookie-banner-buttons .cookie-button-decline {
  margin-top: 10px;
}
@keyframes fadeInBannerBG {
  from {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@keyframes scaleInBanner {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.MuiFormControl-root .MuiInputLabel-formControl {
  color: var(--text-color);
}
.MuiFormControlLabel-root .MuiButtonBase-root .MuiSvgIcon-root {
  color: var(--text-color);
}

.redirect-box {
  margin-top: -80px;
  background-color: var(--background-color);
}

.skinping-light .skinping-paper {
  padding-top: 15px;
}
.skinping-paper .skinping-paper-box {
  background-color: var(--item-background-color);
  color: var(--text-color);
}
.skinping-paper .skinping-paper-box hr {
  border-color: var(--nearly-transparent);
}

.skinping-light .skinping-paper {
  padding-top: 15px;
}
.skinping-paper .skinping-paper-box {
  background-color: var(--item-background-color);
  color: var(--text-color);
}
.skinping-paper .skinping-paper-box hr {
  border-color: var(--nearly-transparent);
}

.skinping-light .skinping-paper {
  padding-top: 15px;
}
.skinping-paper .skinping-paper-box {
  background-color: var(--item-background-color);
  color: var(--text-color);
}
.skinping-paper .skinping-paper-box hr {
  border-color: var(--nearly-transparent);
}

.profile-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color);
  padding: 25px;
}
.profile-wrapper .profile-card {
  background-color: var(--item-background-color);
}
.profile-wrapper .profile-card h1 {
  font-size: 30px !important;
  color: var(--text-color);
  padding-bottom: 5px;
}
.profile-wrapper .profile-card .tier-1 {
  background-color: var(--tier-1-color);
  color: var(--black);
}
.profile-wrapper .profile-card .tier-1 svg {
  fill: var(--black) !important;
}
.profile-wrapper .profile-card .tier-2 {
  background-color: var(--tier-2-color);
  color: var(--black);
}
.profile-wrapper .profile-card .tier-2 svg {
  fill: var(--black) !important;
}
.profile-wrapper .profile-card .tier-3 {
  background-color: var(--tier-3-color);
  color: var(--black);
}
.profile-wrapper .profile-card .tier-3 svg {
  fill: var(--black) !important;
}
.profile-wrapper .profile-card .tier-4 {
  color: var(--tier-4-color);
  border: 2px solid var(--tier-4-color);
}
.profile-wrapper .profile-card .tier-4 svg {
  fill: var(--tier-4-color);
}
.profile-wrapper .profile-card .user-avatar {
  width: 80px;
  height: 80px;
}
.profile-wrapper .profile-card .MuiChip-root {
  font-weight: 600;
  height: 30px;
  padding-left: 5px;
  padding-right: 5px;
}
.profile-wrapper .profile-card .MuiChip-root svg {
  fill: var(--text-color);
}
.profile-wrapper .profile-card .MuiChip-root.profile-chip {
  cursor: pointer;
}
.profile-wrapper .profile-card .MuiChip-root.verified {
  background-color: var(--primary-color);
  color: var(--text-color);
}
.profile-wrapper .profile-card .MuiChip-root.mfa-enabled {
  background-color: var(--success);
  color: var(--text-color);
}
.profile-wrapper .profile-card .MuiChip-root.not-verified,
.profile-wrapper .profile-card .MuiChip-root.mfa-not-enabled {
  background-color: var(--error);
  color: var(--text-color-light);
}
.profile-wrapper .profile-card .MuiChip-root.not-verified:hover,
.profile-wrapper .profile-card .MuiChip-root.mfa-not-enabled:hover {
  cursor: pointer;
}

.admin .dashboard {
  padding-top: 25px;
  max-width: 95%;
  margin: 0 auto;
}
.admin .admin-wrapper .loading {
  display: flex;
  justify-content: center;
  width: 100%;
}
.admin .admin-wrapper .adminNav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.admin .admin-wrapper .adminNav > a {
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}
.admin .admin-wrapper .adminNav > a button {
  color: var(--nav-color);
  padding: 10px 20px;
}
.admin .admin-wrapper .adminNav > a:hover {
  color: var(--nav-color);
  background-color: var(--nav-hover-background);
  border-radius: 10px;
}
.admin .admin-wrapper .adminNav > a.active {
  border-radius: 10px;
}
.admin .admin-wrapper .adminNav > a.active button {
  color: var(--nav-color);
  background-color: var(--primary-color);
}
.admin .sub-content.users .loading,
.admin .sub-content.users .error {
  text-align: center;
  margin-top: 50px;
}
.admin .sub-content.users .grid-container {
  margin: 0;
  padding: 15px 15px 15px 0;
  width: 100%;
}
.admin .sub-content.users .user-card {
  cursor: pointer;
  background-color: var(--item-background-color);
  box-shadow: var(--item-box-shadow);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.admin .sub-content.users .user-card:hover {
  background-color: var(--item-background-color);
}
.admin .sub-content.users .user-card .card-content {
  position: relative;
  display: flex;
  padding: 16px;
  z-index: 1;
}
.admin .sub-content.users .user-card .card-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--item-background-color);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
}
.admin .sub-content.users .user-avatar {
  width: 56px;
  height: 56px;
}
.admin .sub-content.users .user-details {
  margin-left: 15px;
  color: var(--text-color);
  width: 100%;
  overflow: hidden;
}
.admin .sub-content.users .user-details h6 {
  display: block;
  width: 100%;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin .sub-content.users .user-details p {
  display: block;
  width: 100%;
  color: var(--half-transparent);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin .sub-content.users .pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.admin-modal {
  border: none !important;
}
.admin-modal__content {
  background-color: transparent;
  display: flex;
  justify-content: center;
  max-width: 1440px;
  width: 90%;
  margin: auto;
  max-height: 90vh;
  overflow: hidden;
  overflow-y: auto;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.admin-modal__content.banned-user .model-element {
  border-color: var(--error);
  background-color: var(--error) !important;
  color: #FFF !important;
}
.admin-modal .model-user-details {
  background-color: rgba(30, 30, 30, 0.85);
}
.admin-modal .model-user-details .MuiCardHeader-content {
  width: 100%;
  overflow: hidden;
}
.admin-modal .model-user-details h6,
.admin-modal .model-user-details p,
.admin-modal .model-user-details span {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.admin-modal .model-element {
  background-color: var(--item-background-color);
  color: var(--text-color);
  background-size: cover;
  background-position: center;
}
.admin-modal .model-element p,
.admin-modal .model-element span,
.admin-modal .model-element svg {
  color: var(--text-color);
}
.admin-modal .model-element .add-new-role {
  border: 1px solid var(--text-color);
}
.admin-pattern-modal {
  display: flex;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}
.admin-pattern-modal .admin-pattern-modal-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.admin-pattern-modal .admin-pattern-modal-close svg {
  color: var(--text-color);
}
.admin-pattern-modal .rare-item-content {
  max-width: 1200px;
  align-items: center;
  justify-content: center;
}
.admin-pattern-modal .rare-item-details {
  max-height: 100vh;
}
.admin-pattern-modal .rare-item-details .rare-item-details-container {
  overflow-x: hidden;
  overflow-y: scroll;
  max-width: 100%;
}
.admin-modal__loading {
  border: none;
  outline: none;
}

.sub-content.hall-of-shame .header-hall {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: calc(70vh - 80px);
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: headerHall 2s 6s forwards;
}
.sub-content.hall-of-shame .header-hall .curtain-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.sub-content.hall-of-shame .header-hall .curtain-container:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 11;
  animation: curtainOverlayFadeout 2s 6s forwards;
}
.sub-content.hall-of-shame .header-hall .curtain-container .curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0.7) 25%, rgba(255, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.5) 100%), repeating-linear-gradient(90deg, #590000, #B22222 15px, #590000 30px);
  background-blend-mode: multiply;
  background-size: cover;
  z-index: 10;
}
.sub-content.hall-of-shame .header-hall .curtain-container .curtain.left {
  left: -50%;
  animation: curtainLeft 4s ease-in-out;
}
.sub-content.hall-of-shame .header-hall .curtain-container .curtain.right {
  right: -50%;
  animation: curtainRight 4s ease-in-out;
  transform: scaleX(-1);
}
.sub-content.hall-of-shame .header-hall .curtain-container .header-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  z-index: 1;
  opacity: 0;
  animation: skinpingHeadline 3s 2s forwards;
  mix-blend-mode: screen;
  text-align: center;
}
.sub-content.hall-of-shame .header-hall .curtain-container .header-text-container .header-text {
  font-size: 3.5rem;
  font-weight: 900;
  background-color: #a5a5a5;
  background-image: linear-gradient(-75deg, transparent 0, transparent 3%, #ffffff 3%, #ffffff 6%, transparent 6%, transparent 100%);
  background-size: 200% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  animation: skinpingShine 3.5s 4s linear forwards;
  white-space: nowrap;
}
.sub-content.hall-of-shame .floating-user-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: userFadeIn 10s 8s linear forwards;
  z-index: 1;
}
@keyframes userFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sub-content.hall-of-shame .floating-user-container .floating-user {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  animation-name: floatUserAnimation;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  filter: brightness(0.4) blur(3px);
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.2s ease-in-out;
}
.sub-content.hall-of-shame .floating-user-container .floating-user:hover {
  filter: brightness(1) blur(0px);
  animation-play-state: paused;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin-left: -25px;
  margin-top: 50px;
  padding: 2px;
  box-shadow: 0 0 20px var(--primary-color);
  transform: scale(2);
}
.sub-content.hall-of-shame .floating-user-container .floating-user:hover:before {
  content: '';
  position: absolute;
  left: -6px;
  top: -6px;
  background-color: var(--primary-color);
  background-size: 400%;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  z-index: -1;
}
@keyframes floatUserAnimation {
  0% {
    transform: translateY(55px);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}
.sub-content.hall-of-shame .header-description {
  margin: 20px auto;
  padding: 25px;
  color: var(--text-color);
  font-size: 1.35rem;
  text-align: center;
  max-width: 900px;
  line-height: 1.6;
}
@keyframes curtainLeft {
  0% {
    left: 0;
  }
  25% {
    left: 0;
  }
  100% {
    left: -50%;
  }
}
@keyframes curtainRight {
  0% {
    right: 0;
  }
  25% {
    right: 0;
  }
  100% {
    right: -50%;
  }
}
@keyframes skinpingHeadline {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes curtainOverlayFadeout {
  to {
    opacity: 0;
  }
}
@keyframes skinpingShine {
  30% {
    background-position: -120% 0;
    background-color: #a5a5a5;
  }
  100% {
    background-position: -120% 0;
    background-color: #FFF;
  }
}
@keyframes headerHall {
  100% {
    height: calc(40vh - 80px);
  }
}
.sub-content.hall-of-shame .loading,
.sub-content.hall-of-shame .error {
  text-align: center;
  margin-top: 50px;
}
.sub-content.hall-of-shame .grid-container {
  margin: 0;
  padding: 0 15px 45px 0;
  width: 100%;
}
.sub-content.hall-of-shame .user-card {
  background-color: var(--item-background-color);
  box-shadow: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-content.hall-of-shame .user-card:hover {
  background-color: var(--item-background-color);
}
.sub-content.hall-of-shame .user-card .card-content {
  position: relative;
  display: flex;
  padding: 16px;
  z-index: 1;
}
.sub-content.hall-of-shame .user-card .card-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--item-background-color);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
}
.sub-content.hall-of-shame .user-avatar {
  width: 56px;
  height: 56px;
}
.sub-content.hall-of-shame .user-details {
  margin-left: 15px;
  color: var(--text-color);
  width: 100%;
  overflow: hidden;
}
.sub-content.hall-of-shame .user-details h6 {
  display: block;
  width: 100%;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sub-content.hall-of-shame .user-details p {
  display: block;
  width: 100%;
  color: var(--half-transparent);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sub-content.hall-of-shame .pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.sub-content .loading-spinner {
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 555px) {
  .sub-content.hall-of-shame .header-hall .curtain-container .header-text-container .header-text {
    font-size: 2.5rem;
  }
  .sub-content.hall-of-shame .header-description {
    padding: 25px 25px 0 25px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .sub-content.hall-of-shame .grid-container {
    padding-bottom: 15px;
  }
}

#confetti-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.confetti-outer {
  position: absolute;
  top: -20px;
  will-change: transform;
}
.confetti-inner {
  position: relative;
  will-change: transform;
}
.confetti-main {
  width: 2px;
  height: 8px;
  opacity: 0.9;
  border-radius: 2px;
  will-change: transform;
  transform-style: preserve-3d;
}
@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
@keyframes sway {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(15px);
  }
  30% {
    transform: translateX(-15px);
  }
  55% {
    transform: translateX(15px);
  }
  75% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotate3D {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

.faq-page .faq-header {
  position: relative;
  text-align: center;
  padding: 50px 25px;
  color: white;
  overflow: hidden;
  background-color: #1976d2;
}
.faq-page .faq-header .floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
.faq-page .faq-header .floating-icons-container .floating-icon {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  animation-name: floatAnimation;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  filter: brightness(0.2) blur(4px);
  width: 50px;
  height: 50px;
  transform: translateY(calc(100% + 80px)) translateX(0);
}
.faq-page .faq-header .floating-icons-container .floating-icon svg {
  fill: var(--primary-color);
  width: 100%;
  height: auto;
}
.faq-page .faq-header .faq-title {
  position: relative;
  margin-bottom: 20px;
  font-size: 46px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.faq-page .faq-header .faq-search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.faq-page .faq-header .faq-search .faq-search-inner {
  max-width: 1280px;
  width: 100%;
}
.faq-page .faq-header .faq-search .faq-search-input {
  background-color: var(--item-background-color);
  color: var(--text-color);
  border-radius: 4px;
  width: 90%;
  max-width: 600px;
}
.faq-page .faq-header .faq-search .faq-search-input input {
  color: var(--text-color);
  padding: 7.5px 4px 7.5px 15px;
}
.faq-page .faq-header .faq-search .faq-search-input fieldset {
  border: none;
}
.faq-page .faq-header .faq-search .faq-search-input svg {
  fill: var(--text-color);
}
.faq-page .faq-content .faq-content-grid {
  padding-bottom: 25px;
}
.faq-page .faq-content,
.faq-page .faq-detail-content {
  text-align: center;
  padding: 25px;
  max-width: 1440px;
  margin: 0 auto;
}
.faq-page .faq-content .faq-categories-title,
.faq-page .faq-detail-content .faq-categories-title {
  margin-top: 15px;
  margin-bottom: 40px;
}
.faq-page .faq-content .faq-categories,
.faq-page .faq-detail-content .faq-categories,
.faq-page .faq-content .faq-detail-content,
.faq-page .faq-detail-content .faq-detail-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.faq-page .faq-content .faq-category,
.faq-page .faq-detail-content .faq-category {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.faq-page .faq-content .faq-category,
.faq-page .faq-detail-content .faq-category,
.faq-page .faq-content .faq-sidebar,
.faq-page .faq-detail-content .faq-sidebar,
.faq-page .faq-content .faq-main,
.faq-page .faq-detail-content .faq-main {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
  background-color: var(--item-background-color);
}
.faq-page .faq-content .faq-category .faq-category-header,
.faq-page .faq-detail-content .faq-category .faq-category-header,
.faq-page .faq-content .faq-sidebar .faq-category-header,
.faq-page .faq-detail-content .faq-sidebar .faq-category-header,
.faq-page .faq-content .faq-main .faq-category-header,
.faq-page .faq-detail-content .faq-main .faq-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.faq-page .faq-content .faq-category .faq-category-header .faq-category-icon,
.faq-page .faq-detail-content .faq-category .faq-category-header .faq-category-icon,
.faq-page .faq-content .faq-sidebar .faq-category-header .faq-category-icon,
.faq-page .faq-detail-content .faq-sidebar .faq-category-header .faq-category-icon,
.faq-page .faq-content .faq-main .faq-category-header .faq-category-icon,
.faq-page .faq-detail-content .faq-main .faq-category-header .faq-category-icon {
  display: flex;
  align-items: center;
}
.faq-page .faq-content .faq-category .faq-category-header .faq-category-icon svg,
.faq-page .faq-detail-content .faq-category .faq-category-header .faq-category-icon svg,
.faq-page .faq-content .faq-sidebar .faq-category-header .faq-category-icon svg,
.faq-page .faq-detail-content .faq-sidebar .faq-category-header .faq-category-icon svg,
.faq-page .faq-content .faq-main .faq-category-header .faq-category-icon svg,
.faq-page .faq-detail-content .faq-main .faq-category-header .faq-category-icon svg {
  -webkit-user-select: none;
  user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-size: 2.1875rem;
}
.faq-page .faq-content .faq-category .faq-category-header .faq-category-title,
.faq-page .faq-detail-content .faq-category .faq-category-header .faq-category-title,
.faq-page .faq-content .faq-sidebar .faq-category-header .faq-category-title,
.faq-page .faq-detail-content .faq-sidebar .faq-category-header .faq-category-title,
.faq-page .faq-content .faq-main .faq-category-header .faq-category-title,
.faq-page .faq-detail-content .faq-main .faq-category-header .faq-category-title {
  margin-left: 20px;
}
.faq-page .faq-content .faq-category .faq-category-description,
.faq-page .faq-detail-content .faq-category .faq-category-description,
.faq-page .faq-content .faq-sidebar .faq-category-description,
.faq-page .faq-detail-content .faq-sidebar .faq-category-description,
.faq-page .faq-content .faq-main .faq-category-description,
.faq-page .faq-detail-content .faq-main .faq-category-description {
  margin-bottom: 25px;
  height: 100%;
}
.faq-page .faq-content .faq-category .faq-category-link-wrapper,
.faq-page .faq-detail-content .faq-category .faq-category-link-wrapper,
.faq-page .faq-content .faq-sidebar .faq-category-link-wrapper,
.faq-page .faq-detail-content .faq-sidebar .faq-category-link-wrapper,
.faq-page .faq-content .faq-main .faq-category-link-wrapper,
.faq-page .faq-detail-content .faq-main .faq-category-link-wrapper {
  display: flex;
  justify-content: right;
}
.faq-page .faq-content .faq-category .faq-category-link,
.faq-page .faq-detail-content .faq-category .faq-category-link,
.faq-page .faq-content .faq-sidebar .faq-category-link,
.faq-page .faq-detail-content .faq-sidebar .faq-category-link,
.faq-page .faq-content .faq-main .faq-category-link,
.faq-page .faq-detail-content .faq-main .faq-category-link,
.faq-page .faq-content .faq-category .faq-category-learn-more,
.faq-page .faq-detail-content .faq-category .faq-category-learn-more,
.faq-page .faq-content .faq-sidebar .faq-category-learn-more,
.faq-page .faq-detail-content .faq-sidebar .faq-category-learn-more,
.faq-page .faq-content .faq-main .faq-category-learn-more,
.faq-page .faq-detail-content .faq-main .faq-category-learn-more {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}
.faq-page .faq-content .faq-category .faq-category-link button,
.faq-page .faq-detail-content .faq-category .faq-category-link button,
.faq-page .faq-content .faq-sidebar .faq-category-link button,
.faq-page .faq-detail-content .faq-sidebar .faq-category-link button,
.faq-page .faq-content .faq-main .faq-category-link button,
.faq-page .faq-detail-content .faq-main .faq-category-link button,
.faq-page .faq-content .faq-category .faq-category-learn-more button,
.faq-page .faq-detail-content .faq-category .faq-category-learn-more button,
.faq-page .faq-content .faq-sidebar .faq-category-learn-more button,
.faq-page .faq-detail-content .faq-sidebar .faq-category-learn-more button,
.faq-page .faq-content .faq-main .faq-category-learn-more button,
.faq-page .faq-detail-content .faq-main .faq-category-learn-more button {
  margin-bottom: 0;
}
.faq-page .faq-detail-content {
  display: flex;
  flex-direction: row;
  max-width: 1440px;
  padding-left: 25px;
  padding-right: 25px;
}
.faq-page .faq-detail-content .faq-sidebar-mobile {
  display: none;
}
.faq-page .faq-detail-content .faq-sidebar-mobile button {
  color: var(--text-color);
}
.faq-page .faq-detail-content .faq-sidebar-mobile button svg {
  height: 24px;
  width: 24px;
  fill: var(--text-color);
  margin-bottom: 6px;
}
.faq-page .faq-detail-content .faq-sidebar {
  max-width: 20%;
  min-width: 250px;
  width: 100%;
  background: var(--item-background-color);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}
.faq-page .faq-detail-content .faq-sidebar .faq-sidebar-top {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--half-transparent);
}
.faq-page .faq-detail-content .faq-sidebar ul {
  list-style: none;
  padding-top: 0;
}
.faq-page .faq-detail-content .faq-main {
  width: 100%;
  background: var(--item-background-color);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.faq-page .faq-detail-content .faq-main h1 {
  padding: 25px 25px 15px 25px;
  font-size: 45px !important;
  margin-bottom: 0 !important;
}
.faq-page .faq-detail-content .faq-main h1.faq-category-title {
  margin-bottom: 20px;
  font-size: 35px !important;
}
.faq-page .faq-detail-content .faq-main .faq-question {
  padding: 10px 25px;
}
.faq-page .faq-detail-content .faq-main .faq-question h2.faq-question-title {
  font-weight: bold;
  border-bottom: 1px solid var(--half-transparent);
  font-size: 20px !important;
}
.faq-page .faq-detail-content .faq-main .faq-question .faq-question-answer {
  margin-top: 10px;
}
.faq-page .faq-detail-content .faq-main .faq-question .faq-question-answer h3 {
  margin-top: 15px;
  font-size: 1.2em;
  text-decoration: underline;
}
.faq-page .faq-detail-content .faq-main .faq-question .faq-question-answer ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.faq-page .faq-detail-content .faq-main .faq-question .faq-question-answer ul ul {
  list-style-type: circle;
  padding-left: 20px;
  margin-top: 5px;
}
.faq-page .faq-detail-content .faq-main .faq-question .faq-question-answer ul .faq-question-answer li {
  margin-bottom: 5px;
}
.faq-page .faq-list-menu .faq-list-item.back-to {
  border-bottom: 1px solid var(--half-transparent);
}
.faq-page .faq-list-menu .faq-list-item.active {
  background-color: #1976d2;
  color: #FFF !important;
}
.faq-page .faq-list-menu .faq-list-item.active .faq-list-icon svg,
.faq-page .faq-list-menu .faq-list-item.active .faq-list-link svg {
  fill: #FFF;
}
.faq-page .faq-list-menu .faq-list-item .faq-list-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--text-color);
}
.faq-page .faq-list-menu .faq-list-item .faq-list-text {
  width: 100%;
  color: var(--text-color);
}
.faq-page .faq-list-menu .faq-list-item .faq-list-link {
  min-width: 22px;
}
.faq-page .faq-list-menu .faq-list-item .faq-list-link svg {
  fill: var(--text-color);
}
.faq-blink {
  position: relative;
  z-index: 1;
}
.faq-blink:before {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  animation: faq-blink 1s steps(500, start) 2;
  opacity: 0.5;
}
.faq-autocomplete-popper {
  background-color: var(--item-background-color);
  border-radius: 4px;
  z-index: 2;
}
.faq-autocomplete-popper ul {
  background-color: var(--item-background-color);
}
.faq-autocomplete-option {
  padding: 8px 16px;
  cursor: pointer;
  color: var(--text-color);
}
.faq-autocomplete-option:hover {
  background-color: var(--nearly-transparent);
  color: var(--text-color);
}
@keyframes faq-blink {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--primary-color);
  }
  100% {
    background-color: transparent;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateY(55px) translateX(0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-240px) translateX(0);
    opacity: 0;
  }
}
@media only screen and (min-width: 0px) and (max-width: 686px) {
  .faq-page .faq-detail-content {
    flex-direction: column;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .faq-page .faq-detail-content .faq-sidebar {
    display: none;
  }
  .faq-page .faq-detail-content .faq-sidebar-mobile {
    display: flex;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 555px) {
  .faq-page .faq-header .faq-title {
    font-size: 32px !important;
  }
  .faq-page .faq-content h2 {
    font-size: 28px;
  }
}

#support {
  background-color: transparent;
}
#support .support-header {
  position: relative;
  text-align: center;
  padding: 50px 25px;
  color: white;
  overflow: hidden;
  background-color: #1976d2;
}
#support .support-header .floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
#support .support-header .floating-icons-container .floating-icon {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  animation-name: floatAnimation;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  filter: brightness(0.2) blur(4px);
  width: 50px;
  height: 50px;
  transform: translateY(calc(100% + 80px)) translateX(0);
}
#support .support-header .floating-icons-container .floating-icon svg {
  fill: var(--primary-color);
  width: 100%;
  height: auto;
}
#support .support-header .support-title {
  position: relative;
  margin-bottom: 0;
  font-size: 46px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#support .support-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
}
#support .support-boxes .support-box-info {
  padding-top: 25px;
  max-width: 600px;
}
#support .support-boxes .support-box {
  background-color: var(--item-background-color);
  color: var(--text-color);
  height: 100%;
}
#support .support-boxes .support-box .support-box-headline {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
#support .support-boxes .support-box .support-box-headline svg {
  margin-right: 15px;
}

#prime {
  background-color: transparent;
}
#prime .prime-header {
  position: relative;
  text-align: center;
  padding: 50px 25px;
  color: white;
  overflow: hidden;
  background-color: #1976d2;
}
#prime .prime-header .floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}
#prime .prime-header .floating-icons-container .floating-icon {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  animation-name: floatAnimation;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  filter: brightness(0.2) blur(4px);
  width: 50px;
  height: 50px;
  transform: translateY(calc(100% + 80px)) translateX(0);
}
#prime .prime-header .floating-icons-container .floating-icon svg {
  fill: var(--primary-color);
  width: 100%;
  height: auto;
}
#prime .prime-header .prime-title {
  position: relative;
  margin-bottom: 0;
  font-size: 46px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 1px !important;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#prime .prime-header .prime-subtitle {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#prime .prime-header .prime-subtitle p {
  padding-top: 0;
}
#prime .prime-boxes {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 25px;
}
#prime .prime-boxes .prime-box-info {
  max-width: 800px;
}
#prime .prime-boxes .MuiGrid-item {
  display: flex;
}
#prime .subscription-switch .subscription-switcher {
  color: var(--text-color);
  font-weight: 900;
  font-size: 18px;
  width: 200px;
  overflow: visible !important;
  margin-top: 25px;
}
#prime .subscription-switch .subscription-switcher.Mui-selected .subscription-switcher-badge span,
#prime .subscription-switch .subscription-switcher:hover .subscription-switcher-badge span {
  opacity: 1;
}
#prime .subscription-switch .subscription-switcher .subscription-switcher-badge {
  position: static;
}
#prime .subscription-switch .subscription-switcher .subscription-switcher-badge span {
  opacity: 0;
  top: -10px;
  left: 60px;
  right: auto;
  transition: all 0.2s ease-in-out;
  font-weight: 900;
  letter-spacing: 1px;
  height: 25px;
}
#prime .subscription-switch .subscription-switcher .subscription-switcher-badge span:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1976d2;
  position: absolute;
  left: 12px;
  bottom: -5px;
}
#prime .pricing-card-container {
  width: 100%;
  margin-left: 0;
  padding-top: 25px;
  --Grid-rowSpacing: 0;
  --Grid-columnSpacing: 0;
  --Grid-columns: 0;
  justify-content: center;
}
#prime .pricing-card-wrapper {
  justify-content: center;
  padding-left: 0;
  width: 100%;
}
#prime .pricing-card-wrapper .pricing-card {
  position: relative;
  background-color: var(--item-background-color);
  color: var(--text-color);
  width: 100%;
  height: 100%;
  max-height: 80%;
  z-index: 1;
  margin-top: 10%;
}
#prime .pricing-card-wrapper .pricing-card.Tier-3 {
  margin-left: 25px;
  padding-right: 31px;
}
#prime .pricing-card-wrapper .pricing-card.Tier-1 {
  background-color: #1976d2;
  color: #FFF;
  z-index: 2;
  max-height: 100%;
  margin-top: 0;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
#prime .pricing-card-wrapper .pricing-card.Tier-1 .pricing-card-content .pricing-card-list .pricing-card-list-item .pricing-card-list-icon svg {
  fill: #FFF;
}
#prime .pricing-card-wrapper .pricing-card.Tier-1 .pricing-card-content .pricing-card-button {
  color: #FFF;
  border-color: #FFF;
}
#prime .pricing-card-wrapper .pricing-card.Tier-2 {
  margin-left: -25px;
  padding-left: 31px;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-title {
  text-align: center;
  text-transform: uppercase;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .tier3-badge {
  position: absolute;
  top: 0;
  left: 0;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .tier3-badge span {
  border-radius: 0;
  height: 60px;
  width: 200px;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  --f: 8px;
  line-height: 1.3;
  padding-inline: 1lh;
  text-align: center;
  padding: 5px 50px 8px;
  border-image: conic-gradient(#0008 0 0) 51% / 8px;
  -webkit-clip-path: polygon(100% calc(100% - 8px), 100% 100%, calc(100% - 8px) calc(100% - 8px), 8px calc(100% - 8px), 0 100%, 0 calc(100% - 8px), 999px calc(100% - 8px - 999px), calc(100% - 999px) calc(100% - 8px - 999px));
          clip-path: polygon(100% calc(100% - 8px), 100% 100%, calc(100% - 8px) calc(100% - 8px), 8px calc(100% - 8px), 0 100%, 0 calc(100% - 8px), 999px calc(100% - 8px - 999px), calc(100% - 999px) calc(100% - 8px - 999px));
  transform: translate(calc((0.70710678 - 1)*100%), -100%) rotate(-45deg);
  transform-origin: 100% 100%;
  background-color: #1976d2;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-value {
  position: relative;
  font-size: 50px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1px;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-value span {
  position: relative;
  top: 0;
  font-size: 18px;
  font-weight: 100;
  letter-spacing: -0.5px;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-list {
  padding: 0;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-list .pricing-card-list-item {
  padding: 4px 0;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-list .pricing-card-list-item .pricing-card-list-icon {
  min-width: 40px;
}
#prime .pricing-card-wrapper .pricing-card .pricing-card-content .pricing-card-button {
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 16px;
}
#prime .subscription-time-switch-wrapper {
  margin-top: 45px;
  margin-bottom: 15px;
}
#prime .subscription-time-switch-wrapper .subscription-time-switch {
  background-color: var(--item-background-color);
}
#prime .subscription-time-switch-wrapper .subscription-time-switch .subscription-time-switcher {
  color: var(--text-color);
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 700;
}
#prime .subscription-time-switch-wrapper .subscription-time-switch .subscription-time-switcher.Mui-selected {
  background-color: #1976d2;
  color: #FFF;
}
@media only screen and (min-width: 0px) and (max-width: 899px) {
  #prime .prime-boxes .prime-box-info {
    order: 1;
  }
  #prime .prime-boxes .subscription-switch {
    order: 2;
  }
  #prime .prime-boxes .subscription-time-switch-wrapper {
    order: 3;
    margin-top: 15px;
    margin-bottom: 0;
  }
  #prime .prime-boxes .subscription-time-switch-wrapper .subscription-time-switch .subscription-time-switcher {
    padding-left: 10px;
    padding-right: 10px;
  }
  #prime .pricing-card-container {
    max-width: 500px;
    order: 4;
    padding: 25px 15px 0 15px;
    margin-top: 0;
    --Grid-rowSpacing: 15px;
  }
  #prime .pricing-card-wrapper:nth-child(1) {
    order: 1;
  }
  #prime .pricing-card-wrapper:nth-child(2) {
    order: 3;
  }
  #prime .pricing-card-wrapper:nth-child(3) {
    order: 2;
  }
  #prime .pricing-card-wrapper .pricing-card {
    margin-top: 0;
    margin-top: initial;
    max-height: 100%;
  }
  #prime .pricing-card-wrapper .pricing-card.Tier-3 {
    margin-left: 0;
    padding-right: 16px;
  }
  #prime .pricing-card-wrapper .pricing-card.Tier-2 {
    margin-left: 0;
    padding-left: 16px;
  }
  #prime .subscription-switch .subscription-switcher {
    width: 170px;
  }
}

.skinping-maintenance {
  min-height: calc(100vh - 64px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--text-color);
}
.skinping-maintenance .skinping-maintenance-avatar-box {
  display: flex;
  justify-content: center;
}
.skinping-maintenance .skinping-maintenance-avatar-box .skinping-maintenance-avatar {
  background-color: transparent;
  width: 100px;
  height: 100px;
}
.skinping-maintenance .skinping-maintenance-avatar-box .skinping-maintenance-avatar .skinping-maintenance-icon {
  font-size: 80px;
  color: var(--text-color);
}
.skinping-maintenance .skinping-maintenance-headline {
  font-weight: 700 !important;
  font-size: 40px !important;
  line-height: 1.167;
  letter-spacing: -0.01562em;
}
.skinping-maintenance .skinping-maintenance-text {
  font-size: 20px;
}
.skinping-maintenance .skinping-maintenance-icons svg {
  font-size: 40px;
  height: 40px;
  color: var(--text-color);
  fill: var(--text-color);
}

#skinping-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.snowflake {
  position: absolute;
  will-change: transform;
}
.snowflake-inner {
  will-change: transform;
  position: relative;
  /* to position .snowflake-melt absolutely inside */
}
.snowflake-main {
  will-change: transform;
  border-radius: 100%;
}
/* Once we add .melt, fade out and shrink it */
.snowflake-melt.melt {
  animation: meltdown forwards;
  animation-duration: 3s;
  /* match your "meltTime" if you like */
}
@keyframes meltdown {
  0% {
    opacity: 1;
    height: auto;
    width: auto;
  }
  80% {
    opacity: 0;
    height: 0;
    width: 0;
  }
}
/* Some standard toggle styling (unchanged) */
.snow-toggle {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  background-color: var(--item-background-color);
  color: var(--text-color);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.snow-toggle label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-color);
}
.snow-toggle input[type="checkbox"] {
  margin-right: 5px;
  -webkit-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  background: var(--error);
  border: 1px solid #aaa;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.snow-toggle input[type="checkbox"]:checked {
  background: var(--success);
}
/* The falling/swaying/rotating animations */
@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(99.5vh);
  }
}
@keyframes sway {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
  75% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.christmas-hat {
  top: 1px;
  right: -6px;
  width: 23px;
  height: 23px;
  margin: 0;
  position: absolute;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  transform: rotate(18deg);
  /* Subtle "wiggle" animation */
  animation: wiggle 2s ease-in-out infinite;
  /* Keyframes for the subtle wiggle */
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(16deg);
  }
  50% {
    transform: rotate(21deg);
  }
}
.christmas-hat .base {
  background: #f6f6f6;
  border-radius: 5px;
  color: #f6f6f6;
  width: 80%;
  position: relative;
  left: 7%;
  z-index: -1;
  height: 10%;
}
.christmas-hat .body {
  position: relative;
  left: 10%;
  width: 100%;
  height: 60%;
  background-color: #ee2b47;
  border-radius: 300% 0 0;
  z-index: -3;
}
.christmas-hat .ball {
  width: 30%;
  height: 30%;
  background: #f6f6f6;
  border-radius: 50%;
  position: relative;
  left: 70%;
  top: 7%;
  z-index: -1;
}
.christmas-hat .circle {
  height: 100%;
  width: 100%;
  background: var(--nav-background-color);
  border-radius: 50%;
  top: 15%;
  left: 80%;
  position: absolute;
  z-index: -2;
}

#ghost-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9998;
}
#ghost-container .ghost {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  transition: transform 3s ease-in-out, opacity 2s ease-in-out;
  opacity: 0;
}
#ghost-container .ghost .ghost-body {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 100%;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: bodyBounce 1s ease-in-out infinite;
}
#ghost-container .ghost .ghost-left-arm,
#ghost-container .ghost .ghost-right-arm {
  width: 20%;
  height: 20%;
  background: white;
  position: absolute;
  bottom: 30%;
  border-radius: 100%;
  animation: armBounce 1s ease-in-out infinite;
}
#ghost-container .ghost .ghost-left-arm {
  left: -5%;
}
#ghost-container .ghost .ghost-right-arm {
  right: -5%;
}
#ghost-container .ghost .ghost-eye {
  width: 10%;
  height: 10%;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 30%;
}
#ghost-container .ghost .ghost-left-eye {
  left: 30%;
}
#ghost-container .ghost .ghost-right-eye {
  right: 30%;
}
#ghost-container .ghost.fade-in {
  opacity: 1;
  transition: opacity 2s ease-in;
}
#ghost-container .ghost.fade-out {
  opacity: 0;
  transition: opacity 2s ease-out;
}
@keyframes bodyBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes armBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
.ghosts-toggle {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
  background-color: var(--item-background-color);
  color: var(--text-color);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.ghosts-toggle label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-color);
}
.ghosts-toggle input[type="checkbox"] {
  margin-right: 5px;
  -webkit-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  background: var(--error);
  border: 1px solid #aaa;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.ghosts-toggle input[type="checkbox"]:checked {
  background: var(--success);
}

#balloon-container {
  position: fixed;
  pointer-events: none;
  /* Let clicks go through except for balloon's own click */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 9999;
}
/* The "balloon" container wraps the shape + rope */
.balloon {
  position: absolute;
  transform: translateX(-50%);
  pointer-events: auto;
  cursor: pointer;
  animation: floatUp 20s linear forwards;
  /* float fully out of the screen */
}
/* The balloon shape (the "body" of the balloon) */
.balloon-shape {
  position: relative;
  width: 40px;
  height: 50px;
  border-radius: 50% 50% 45% 45%;
  opacity: 0.9;
}
/* Thin rope attached to the bottom center of the balloon */
.balloon-rope {
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #333;
  /* or any rope color you like */
  left: 50%;
  top: 50px;
  /* lines up with bottom of balloon-shape (height: 50px) */
  transform: translateX(-50%);
}
/* Keyframe for balloon floating from below screen to above screen */
@keyframes floatUp {
  0% {
    transform: translate(-50%, 100vh);
  }
  100% {
    /* Move it well above the top to ensure it's fully out of view */
    transform: translate(-50%, -120vh);
  }
}
/* Explosion fragments for the balloon pop */
.balloon-explosion-fragment {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  pointer-events: none;
}

/* Fireworks.less */
#fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 9999;
}
.firework-rocket {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  transform: translateX(0);
  pointer-events: none;
}
.firework-rocket-inner {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  margin-left: 2px;
}
.firework-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.8;
}
.firework-fragment {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  opacity: 0.9;
  pointer-events: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
.skinping-light {
  /* Global */
  --bit-transparent: rgba(0, 0, 0, 0.9);
  --bitmore-transparent: rgba(0, 0, 0, 0.7);
  --half-transparent: rgba(0, 0, 0, 0.5);
  --nearly-transparent: rgba(0, 0, 0, 0.1);
  --bit-transparent-invert: rgba(255, 255, 255, 0.9);
  --bitmore-transparent-invert: rgba(255, 255, 255, 0.7);
  --half-transparent-invert: rgba(255, 255, 255, 0.5);
  --nearly-transparent-invert: rgba(255, 255, 255, 0.1);
  --half-transparent-font: rgba(0, 0, 0, 0.5);
  --half-transparent-font-invert: rgba(255, 255, 255, 0.5);
  --popup-background: #FFFFFF;
  /* Grundfarben */
  --primary-color: #1976d2;
  --primary-color-hover: #2f5e9a;
  --secondary-color: #FF3C7A;
  --accent-color: #00BFA5;
  --black: #000000;
  --white: #FFFFFF;
  --success: #23b91f;
  --error: #cf1a13;
  /* Logo */
  --logo-color: #FFFFFF;
  /* Textfarben */
  --text-color: #030303;
  /* Dunkler für bessere Lesbarkeit im Light Mode */
  --text-color-light: #FFFFFF;
  /* Für Kontrastelemente */
  --text-color-secondary: #575757;
  /* Leichter als im Dark Mode, aber dunkel genug für Kontrast */
  /* Hintergrund */
  --background-image: none;
  --background-color: #E8E8E8;
  /* Heller Hintergrund */
  --background-color-secondary: #FFFFFF;
  /* Reiner Weiß für Karten / Segmente */
  /* Rand- und Trennlinien */
  --divider-color: #E0E0E0;
  /* Ebenfalls heller für sichtbare Trennungen */
  /* Schriftgrößen */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-xxl: 1.5rem;
  /* 24px */
  /* Schriftgewicht */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* Zeilenhöhe */
  --line-height-base: 1.5;
  --line-height-compressed: 1.25;
  /* Abstände */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  /* Container und Breite */
  --container-width: 1200px;
  --sidebar-width: 250px;
  --header-height: 60px;
  /* Buttonfarben */
  --button-color: var(--primary-color);
  --button-text-color: var(--text-color);
  /* Anpassung für bessere Sichtbarkeit */
  /* Formulare */
  --border-color: rgba(0, 0, 0, 0.8);
  --input-border-color: var(--border-color);
  --input-border-hover-color: #000000;
  --input-background-color: #FFFFFF;
  /* Weißer Hintergrund für Inputs */
  --input-text-color: var(--text-color);
  /* Dunkle Schrift für gute Lesbarkeit */
  /* Navigation */
  --nav-color: #FFFFFF;
  --nav-background-color: #080808;
  --nav-hover-background: rgba(0, 0, 0, 0.05);
  --nav-active-background: rgba(0, 0, 0, 0.1);
  --nav-text-color: var(--text-color-light);
  --nav-text-color-active: var(--primary-color);
  /* Filter */
  --filter-background-color: var(--background-color-secondary);
  --subFilter-background-color: #efefef;
  --subFilter-border-color: #E8E8E8;
  /* Header */
  --header-background-color: var(--background-color-secondary);
  --header-text-color: var(--text-color);
  /* Slider */
  --imageslider-buttons-background-color: #FFFFFF;
  --imageslider-buttons-color: #000000;
  /* Item */
  --item-section-background-color: var(--background-color);
  --item-background-color: var(--background-color-secondary);
  --item-pulse-color: rgba(0, 0, 0, 0.2);
  --item-image-background-opacity: 0.3;
  --item-image-background-opacity-hover: 0.6;
  --item-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.35);
  --item-menu-background: rgba(255, 255, 255, 0.85);
  --item-buy-mobile-background-color: var(--item-background-color);
  --item-buy-mobile-color: var(--text-color);
  --item-detail-background: #e6e6e6;
  /* Box-Schatten */
  --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  /* Übergänge */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  /* Seltenheit */
  --color-rarity-consumer-grade: #b0c2d8;
  --color-rarity-industrial-grade: #5c99d5;
  --color-rarity-mil-spec-grade: #446df8;
  --color-rarity-restricted: #834ef8;
  --color-rarity-classified: #d239df;
  --color-rarity-covert: #eb4f50;
  --color-rarity-contraband: #e4ae49;
  --tier-1-color: #ffca00;
  --tier-2-color: #3db69c;
  --tier-3-color: #229853;
  --tier-4-color: var(--text-color);
  --item-bluegem: #06dcde;
  --item-bluegem-shine: #a7fdff;
  --item-goldgem: #D4AF37;
  --item-goldgem-shine: #d7c692;
  --item-rare: #9606ff;
  --item-rare-shine: #c4a2d9;
  --item-rare-blue-hive: #3c57ec;
  --item-rare-blue-hive-shine: #586ed6;
  --item-rare-orange-hive: #e96514;
  --item-rare-orange-hive-shine: #e18a54;
  --item-rare-star: #428ffa;
  --item-rare-star-shine: #6c9ff3;
  --item-rare-d: #31A8FF;
  --item-rare-d-shine: #54aff8;
  --item-rare-fire-and-ice-start: #ff3b3b;
  --item-rare-fire-and-ice-mid1: #ff7b3b;
  --item-rare-fire-and-ice-mid2: #ffd93b;
  --item-rare-fire-and-ice-mid3: #3bafff;
  --item-rare-fire-and-ice-end: #1c4bff;
  --item-rare-fire-and-ice-shine-start: #ffc0c0;
  --item-rare-fire-and-ice-shine-mid1: #ffd9b0;
  --item-rare-fire-and-ice-shine-mid2: #fff2b0;
  --item-rare-fire-and-ice-shine-mid3: #b0e3ff;
  --item-rare-fire-and-ice-shine-end: #bcdcff;
  --item-float: #2f61c7;
  --item-float-shine: #86a5ea;
  --item-stattrak: #ff7600;
  --item-souvenir: #cac307;
  --charm-light-green: #a3e635;
  --charm-light-green-shine: #d9f99d;
  --charm-dark-green: #065f46;
  --charm-dark-green-shine: #10b981;
  --charm-teal: #14b8a6;
  --charm-teal-shine: #2dd4bf;
  --charm-cyan: #06b6d4;
  --charm-cyan-shine: #67e8f9;
  --charm-blue: #3b82f6;
  --charm-blue-shine: #93c5fd;
  --charm-light-blue: #3b82f6;
  --charm-light-blue-shine: #93c5fd;
  --charm-pink: #ec4899;
  --charm-pink-shine: #f9a8d4;
  --charm-mix-blue-purple: #7c3aed;
  --charm-mix-blue-purple-shine: #c084fc;
  --charm-mix-purple-blue: #8b5cf6;
  --charm-mix-purple-blue-shine: #d8b4fe;
  --charm-purple: #9333ea;
  --charm-purple-shine: #c4b5fd;
  --charm-purple-pink: #d233ea;
  --charm-purple-pink-shine: #dab5fd;
  --charm-red: #ef4444;
  --charm-red-shine: #fecaca;
  --charm-orange: #f97316;
  --charm-orange-shine: #fdba74;
  --charm-gold: #fde801;
  --charm-gold-shine: #fcd34d;
  --charm-golden: #fdc201;
  --charm-golden-shine: #fef08a;
  --charm-bronze: #b45309;
  --charm-bronze-shine: #f49247;
  --charm-fusia: #d946ef;
  --charm-fusia-shine: #f0abfc;
  --charm-yellow: #f5b30b;
  --charm-yellow-shine: #fef08a;
  --charm-rainbow: #8b5cf6;
  /* approximated */
  --charm-rainbow-shine: #d8b4fe;
  /* approximated */
  --charm-shiny: #ffd700;
  --charm-shiny-shine: #ffef94;
  --charm-least-shiny: #a5a5a5;
  --charm-least-shiny-shine: #d1d1d1;
  --charm-lime-green: #84cc16;
  --charm-lime-green-shine: #bef264;
  --charm-brown: #8b4513;
  --charm-brown-shine: #cd853f;
  --charm-turquoise: #40e0d0;
  --charm-turquoise-shine: #8df0e0;
  --charm-bubblegum-pink: #ff66cc;
  --charm-bubblegum-pink-shine: #ffb3e0;
  --charm-hot-pink: #ff69b4;
  --charm-hot-pink-shine: #ffa6d6;
  --charm-violet: #700538;
  --charm-violet-shine: #c8236e;
  --charm-magenta: #ff00ff;
  --charm-magenta-shine: #ff77ff;
  --charm-maroon: #800000;
  --charm-maroon-shine: #a0522d;
  --charm-aqua: #00ffff;
  --charm-aqua-shine: #bbffff;
  --charm-mustard-yellow: #ffdb58;
  --charm-mustard-yellow-shine: #fff5cc;
  --charm-dark: #2f4f4f;
  --charm-dark-shine: #556b6b;
  --charm-pale: #fdf5e6;
  --charm-pale-shine: #fffae5;
  --charm-hot-pick: #ff1493;
  --charm-hot-pick-shine: #ff7fae;
  --charm-naked: #d2b48c;
  --charm-naked-shine: #e8cfae;
  --charm-olive: #6b8e23;
  --charm-olive-shine: #a2c651;
  --charm-deep-blue: #0000cd;
  --charm-deep-blue-shine: #4c4cff;
  --charm-green: #32cd32;
  --charm-green-shine: #66ff66;
  --charm-tan: #d2b48c;
  --charm-tan-shine: #e8d3b5;
  --charm-sunset-orange: #ff4500;
  --charm-sunset-orange-shine: #ff7252;
  --charm-clay-green: #8f9779;
  --charm-clay-green-shine: #b0c2a1;
  --charm-dark-lavender: #734f96;
  --charm-dark-lavender-shine: #9d7fba;
  --charm-default: #808080;
  --charm-default-shine: #a6a6a6;
  --charm-collectors-gold: #f7b500;
  --charm-collectors-gold-shine: #ffe08a;
  --charm-gold-orange: #ffb000;
  --charm-gold-orange-shine: #ffd49a;
  --charm-collectors-red: #d61f26;
  --charm-collectors-red-shine: #ff8a8a;
  --charm-red-crimson: #dc143c;
  --charm-red-crimson-shine: #ff98b0;
  --charm-crimson-magenta: #e0006a;
  --charm-crimson-magenta-shine: #ff8ac2;
  --charm-blue-shine-shine: #cfe1ff;
  --charm-heaven-blue: #7dd3fc;
  --charm-heaven-blue-shine: #dbeafe;
  --charm-collectors-blue: #1e90ff;
  --charm-collectors-blue-shine: #a6d4ff;
  --charm-copper: #b87333;
  --charm-copper-shine: #f1b87a;
  --charm-minty-green: #34e59a;
  --charm-minty-green-shine: #b7f3d9;
  --item-charm-fade: #ff8ac9;
  --item-charm-fade-shine: #ffd1e9;
  --item-charm-fade-start: #ffd66e;
  --item-charm-fade-mid1: #ff7da2;
  --item-charm-fade-mid2: #b25cff;
  --item-charm-fade-end: #6e47ff;
  --item-charm-fade-shine-start: #ffe8b0;
  --item-charm-fade-shine-mid1: #ffc6d9;
  --item-charm-fade-shine-mid2: #e2c6ff;
  --item-charm-fade-shine-end: #c7beff;
  --item-charm-glitter-start: #ff6bd6;
  --item-charm-glitter-mid1: #ffd166;
  --item-charm-glitter-mid2: #66ffd6;
  --item-charm-glitter-mid3: #8b6bff;
  --item-charm-glitter-end: #ffffff;
  --item-charm-glitter-shine-start: #ffd6ef;
  --item-charm-glitter-shine-mid1: #fff0c4;
  --item-charm-glitter-shine-mid2: #c8fff0;
  --item-charm-glitter-shine-mid3: #e1d9ff;
  --item-charm-glitter-shine-end: #ffffff;
  --item-charm-reflecting-start: #8ecbff;
  --item-charm-reflecting-mid: #8fe9ff;
  --item-charm-reflecting-end: #b9c9ff;
  --item-charm-reflecting-shine-start: #cfeaff;
  --item-charm-reflecting-shine-mid: #d6ffff;
  --item-charm-reflecting-shine-end: #e7ecff;
  --market-skinport: #fa490a;
  --market-skinport-hover: #d03c09;
  --market-skinport-text: #FFFFFF;
  --market-gamerpay: #019eff;
  --market-gamerpay-hover: #017fcc;
  --market-gamerpay-text: #121626;
  --market-dmarket: #44a569;
  --market-dmarket-hover: #26623d;
  --market-dmarket-text: #FFFFFF;
  --market-skinbaron: #FFFFFF;
  --market-skinbaron-hover: #FFFFFF;
  --market-skinbaron-text: #191630;
  --market-bitskins: #0e0e0e;
  --market-bitskins-hover: #151515;
  --market-bitskins-text: #FFFFFFF;
  --market-csmoney: #ff3ec8;
  --market-csmoney-hover: #f13abd;
  --market-csmoney-text: #FFFFFF;
  --scrollbar-thumb: #CCCCCC;
  --scrollbar-track: #F0F0F0;
}
.skinping-dark {
  /* Global */
  --bit-transparent: rgba(255, 255, 255, 0.9);
  --bitmore-transparent: rgba(255, 255, 255, 0.7);
  --half-transparent: rgba(255, 255, 255, 0.5);
  --nearly-transparent: rgba(255, 255, 255, 0.1);
  --bit-transparent-invert: rgba(0, 0, 0, 0.9);
  --bitmore-transparent-invert: rgba(0, 0, 0, 0.7);
  --half-transparent-invert: rgba(0, 0, 0, 0.5);
  --nearly-transparent-invert: rgba(0, 0, 0, 0.1);
  --half-transparent-font: rgba(255, 255, 255, 0.5);
  --half-transparent-font-invert: rgba(0, 0, 0, 0.5);
  --popup-background: #1e1e1e;
  /* Grundfarben */
  --primary-color: #1976d2;
  --primary-color-hover: #2f5e9a;
  --secondary-color: #FF3C7A;
  --accent-color: #00BFA5;
  --black: #000000;
  --white: #FFFFFF;
  --success: #23b91f;
  --error: #cf1a13;
  /* Logo */
  --logo-color: #FFFFFF;
  /* Textfarben */
  --text-color: #FFFFFF;
  --text-color-light: #FFFFFF;
  --text-color-secondary: #757575;
  /* Hintergrund */
  --background-image: none;
  --background-color: #080808;
  --background-color-secondary: #1e1e1e;
  /* Rand- und Trennlinien */
  --divider-color: #BDBDBD;
  /* Schriftgrößen */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-xxl: 1.5rem;
  /* 24px */
  /* Schriftgewicht */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  /* Zeilenhöhe */
  --line-height-base: 1.5;
  --line-height-compressed: 1.25;
  /* Abstände */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  /* Container und Breite */
  --container-width: 1200px;
  --sidebar-width: 250px;
  --header-height: 60px;
  /* Buttonfarben */
  --button-color: var(--primary-color);
  --button-text-color: var(--text-color-light);
  /* Formulare */
  --border-color: rgba(255, 255, 255, 0.8);
  --input-border-color: #8c8c8c;
  --input-border-hover-color: #8c8c8c;
  --input-background-color: var(--background-color-light);
  --input-text-color: var(--text-color);
  /* Navigation */
  --nav-color: #FFFFFF;
  --nav-background-color: var(--background-color);
  --nav-hover-background: rgba(255, 255, 255, 0.1);
  --nav-active-background: rgba(255, 255, 255, 0.2);
  --nav-text-color: var(--text-color-light);
  --nav-text-color-active: var(--primary-color);
  /* Filter */
  --filter-background-color: var(--background-color-secondary);
  --subFilter-background-color: #141414;
  --subFilter-border-color: var(--background-color);
  /* Header */
  --header-background-color: var(--background-color-dark);
  --header-text-color: var(--text-color-light);
  /* Slider */
  --imageslider-buttons-background-color: #FFFFFF;
  --imageslider-buttons-color: #000000;
  /* Item */
  --item-section-background-color: #080808;
  --item-background-color: #1e1e1e;
  --item-pulse-color: rgba(255, 255, 255, 0.15);
  --item-image-background-opacity: 0.2;
  --item-image-background-opacity-hover: 0.5;
  --item-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.55);
  --item-menu-background: rgba(8, 8, 8, 0.95);
  --item-menu-text-hover-color: var(--text-color);
  --item-buy-mobile-background-color: var(--item-background-color);
  --item-buy-mobile-color: #ffffff;
  --item-detail-background: #131313;
  /* Box-Schatten */
  --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  /* Übergänge */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  /* Seltenheit */
  --color-rarity-consumer-grade: #b0c2d8;
  --color-rarity-industrial-grade: #5c99d5;
  --color-rarity-mil-spec-grade: #446df8;
  --color-rarity-restricted: #834ef8;
  --color-rarity-classified: #d239df;
  --color-rarity-covert: #eb4f50;
  --color-rarity-contraband: #ffa600;
  --tier-1-color: #ffca00;
  --tier-2-color: #57ffde;
  --tier-3-color: #2ecc71;
  --tier-4-color: var(--text-color);
  --item-bluegem: #06fdff;
  --item-bluegem-shine: #145657;
  --item-goldgem: #D4AF37;
  --item-goldgem-shine: #705a19;
  --item-rare: #9606ff;
  --item-rare-shine: #4d0d7a;
  --item-rare-blue-hive: #3c57ec;
  --item-rare-blue-hive-shine: #1f37bd;
  --item-rare-orange-hive: #e96514;
  --item-rare-orange-hive-shine: #a14910;
  --item-rare-star: #66B2FF;
  --item-rare-star-shine: #4b82ba;
  --item-rare-d: #7CCBFF;
  --item-rare-d-shine: #578bae;
  --item-rare-fire-and-ice-start: #ff5252;
  --item-rare-fire-and-ice-mid1: #ff9952;
  --item-rare-fire-and-ice-mid2: #ffe652;
  --item-rare-fire-and-ice-mid3: #52b8ff;
  --item-rare-fire-and-ice-end: #2e6cff;
  --item-rare-fire-and-ice-shine-start: #c64040;
  --item-rare-fire-and-ice-shine-mid1: #ba703c;
  --item-rare-fire-and-ice-shine-mid2: #b6a53b;
  --item-rare-fire-and-ice-shine-mid3: #3880b1;
  --item-rare-fire-and-ice-shine-end: #204cb5;
  --item-float: #2f61c7;
  --item-float-shine: #1b46ab;
  --item-stattrak: #ff7600;
  --item-souvenir: #fff600;
  --charm-light-green: #a3e635;
  --charm-light-green-shine: #6c921b;
  --charm-dark-green: #065f46;
  --charm-dark-green-shine: #044334;
  --charm-teal: #14b8a6;
  --charm-teal-shine: #0e8f82;
  --charm-cyan: #06b6d4;
  --charm-cyan-shine: #047b91;
  --charm-blue: #3b82f6;
  --charm-blue-shine: #2a5db5;
  --charm-light-blue: #3b82f6;
  --charm-light-blue-shine: #2a5db5;
  --charm-pink: #ec4899;
  --charm-pink-shine: #b3366f;
  --charm-mix-blue-purple: #7c3aed;
  --charm-mix-blue-purple-shine: #582aa3;
  --charm-mix-purple-blue: #8b5cf6;
  --charm-mix-purple-blue-shine: #613dba;
  --charm-purple: #9333ea;
  --charm-purple-shine: #5e2a8d;
  --charm-purple-pink: #e433ea;
  --charm-purple-pink-shine: #802a8d;
  --charm-red: #ef4444;
  --charm-red-shine: #a33030;
  --charm-orange: #f97316;
  --charm-orange-shine: #c65911;
  --charm-gold: #fde801;
  --charm-gold-shine: #b6a905;
  --charm-golden: #fdc201;
  --charm-golden-shine: #bd9307;
  --charm-bronze: #b45309;
  --charm-bronze-shine: #733505;
  --charm-fusia: #d946ef;
  --charm-fusia-shine: #9c32ab;
  --charm-yellow: #f5b30b;
  --charm-yellow-shine: #b57508;
  --charm-rainbow: #8b5cf6;
  /* approximated */
  --charm-rainbow-shine: #613dba;
  /* approximated */
  --charm-shiny: #ffd700;
  --charm-shiny-shine: #bba100;
  --charm-least-shiny: #a5a5a5;
  --charm-least-shiny-shine: #737373;
  --charm-lime-green: #84cc16;
  --charm-lime-green-shine: #5e9211;
  --charm-brown: #8b4513;
  --charm-brown-shine: #613012;
  --charm-turquoise: #40e0d0;
  --charm-turquoise-shine: #2b9f95;
  --charm-bubblegum-pink: #ff66cc;
  --charm-bubblegum-pink-shine: #b34a92;
  --charm-hot-pink: #ff69b4;
  --charm-hot-pink-shine: #b34d7d;
  --charm-violet: #670433;
  --charm-violet-shine: #40021f;
  --charm-magenta: #ff00ff;
  --charm-magenta-shine: #b300b3;
  --charm-maroon: #800000;
  --charm-maroon-shine: #580000;
  --charm-aqua: #00ffff;
  --charm-aqua-shine: #00baba;
  --charm-mustard-yellow: #ffdb58;
  --charm-mustard-yellow-shine: #b8973b;
  --charm-dark: #2f4f4f;
  --charm-dark-shine: #1f3535;
  --charm-pale: #fdf5e6;
  --charm-pale-shine: #cbbfa7;
  --charm-hot-pick: #ff1493;
  --charm-hot-pick-shine: #b30d69;
  --charm-naked: #d2b48c;
  --charm-naked-shine: #977855;
  --charm-olive: #556b2f;
  --charm-olive-shine: #3e4e22;
  --charm-deep-blue: #00008b;
  --charm-deep-blue-shine: #000066;
  --charm-green: #228b22;
  --charm-green-shine: #176617;
  --charm-tan: #d2b48c;
  --charm-tan-shine: #a58963;
  --charm-sunset-orange: #ff4500;
  --charm-sunset-orange-shine: #b33000;
  --charm-clay-green: #8f9779;
  --charm-clay-green-shine: #647054;
  --charm-dark-lavender: #734f96;
  --charm-dark-lavender-shine: #533973;
  --charm-default: #808080;
  --charm-default-shine: #5a5a5a;
  --charm-collectors-gold: #f7b500;
  --charm-collectors-gold-shine: #a57a00;
  --charm-gold-orange: #ffb000;
  --charm-gold-orange-shine: #b37500;
  --charm-collectors-red: #d61f26;
  --charm-collectors-red-shine: #8e1418;
  --charm-red-crimson: #dc143c;
  --charm-red-crimson-shine: #8e0c25;
  --charm-crimson-magenta: #e0006a;
  --charm-crimson-magenta-shine: #990049;
  --charm-blue-shine-shine: #1c3f7a;
  --charm-heaven-blue: #7dd3fc;
  --charm-heaven-blue-shine: #3a77a3;
  --charm-collectors-blue: #1e90ff;
  --charm-collectors-blue-shine: #155a99;
  --charm-copper: #b87333;
  --charm-copper-shine: #7b4d22;
  --charm-minty-green: #34e59a;
  --charm-minty-green-shine: #208a62;
  --item-charm-fade: #ff9ad8;
  --item-charm-fade-shine: #70315e;
  --item-charm-fade-start: #ffd66e;
  --item-charm-fade-mid1: #ff7da2;
  --item-charm-fade-mid2: #b25cff;
  --item-charm-fade-end: #6e47ff;
  --item-charm-fade-shine-start: #b3862a;
  --item-charm-fade-shine-mid1: #8e2f57;
  --item-charm-fade-shine-mid2: #5b2a99;
  --item-charm-fade-shine-end: #2f1f8e;
  --item-charm-glitter-start: #ff85e4;
  --item-charm-glitter-mid1: #ffd97a;
  --item-charm-glitter-mid2: #7affea;
  --item-charm-glitter-mid3: #a08aff;
  --item-charm-glitter-end: #e6f7ff;
  --item-charm-glitter-shine-start: #7a3e66;
  --item-charm-glitter-shine-mid1: #7a6430;
  --item-charm-glitter-shine-mid2: #2f7a6e;
  --item-charm-glitter-shine-mid3: #473a7a;
  --item-charm-glitter-shine-end: #395a7a;
  --item-charm-reflecting-start: #76b2ff;
  --item-charm-reflecting-mid: #6fdcff;
  --item-charm-reflecting-end: #9fb2ff;
  --item-charm-reflecting-shine-start: #274769;
  --item-charm-reflecting-shine-mid: #1f5a6b;
  --item-charm-reflecting-shine-end: #324272;
  --market-skinport: #fa490a;
  --market-skinport-hover: #d03c09;
  --market-skinport-text: #FFFFFF;
  --market-gamerpay: #019eff;
  --market-gamerpay-hover: #017fcc;
  --market-gamerpay-text: #121626;
  --market-dmarket: #44a569;
  --market-dmarket-hover: #26623d;
  --market-dmarket-text: #FFFFFF;
  --market-skinbaron: #FFFFFF;
  --market-skinbaron-hover: #FFFFFF;
  --market-skinbaron-text: #191630;
  --market-bitskins: #0e0e0e;
  --market-bitskins-hover: #151515;
  --market-bitskins-text: #FFFFFFF;
  --market-csmoney: #ff3ec8;
  --market-csmoney-hover: #f13abd;
  --market-csmoney-text: #FFFFFF;
  --scrollbar-thumb: #5E5E5E;
  --scrollbar-track: #2E2E2E;
}
.helloween-theme {
  --halloween-headline-color: #13e60e;
  --halloween-primary: #109d0d;
  --halloween-primary-darker: #158e12;
  --halloween-secondary: #ff4600;
  --halloween-secondary-darker: #dc460d;
  /*
  h1 {
    color: var(--halloween-headline-color);
  }

  .MuiButton-contained {
    background-color: var(--halloween-primary);

    &:hover {
      background-color: var(--halloween-primary-darker);
    }
  }

  .MuiButton-outlined {
    border-color: var(--halloween-secondary);
    color: var(--halloween-secondary);

    &:hover {
      border-color: var(--halloween-secondary-darker);
      color: var(--halloween-secondary-darker);
    }
  }
   */
}
.helloween-theme header .logo {
  color: var(--halloween-headline-color);
}
iframe {
  display: none;
  visibility: hidden;
  opacity: 0;
}
body {
  width: 100%;
  overflow: hidden;
  overflow-y: scroll !important;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  padding-right: 0 !important;
}
body.mobile-menu-opened {
  overflow-y: hidden !important;
  height: 100% !important;
}
body.loading-login #root {
  filter: blur(6px);
}
main {
  padding-top: 70px;
  filter: none;
  transform: none;
  transition: filter 0.25s linear, transform 0.25s linear;
}
a {
  color: var(--primary-color);
}
a.no-underline {
  text-decoration: none;
}
#root h1 {
  font-weight: 300;
  font-size: 6rem;
  line-height: 1.167;
  letter-spacing: -0.01562em;
}
.logoName {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 24px;
}
.item-main-content {
  width: 100%;
  min-height: calc(100vh - 392px);
  padding-bottom: 25px;
}
.nav-header-offset-top {
  padding-top: 0;
}
.MuiDialog-paper {
  background-color: var(--background-color) !important;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.MuiDialog-paper .alert-dialog-title {
  font-size: 24px;
  color: var(--text-color);
  text-transform: uppercase;
  text-align: center;
}
.MuiDialog-paper .alert-dialog-description {
  font-size: 16px;
  color: var(--text-color);
}
.MuiDialog-paper .dialog-button-wrapper {
  justify-content: center;
}
.MuiDialog-paper .verify-user-button {
  background-color: #1976d2;
}
.MuiDialog-paper .verify-user-button:hover {
  background-color: #1669bb;
}
.pagination {
  display: flex;
  justify-content: center;
  padding-top: 25px;
  width: 100%;
}
.pagination button {
  color: var(--text-color);
}
.pagination button svg {
  color: var(--text-color);
}
.pagination button.Mui-selected {
  background-color: rgba(255, 255, 255, 0.08);
}
.pagination .MuiPaginationItem-ellipsis {
  color: var(--text-color);
}
.scrollbar-custom {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  scrollbar-face-color: var(--scrollbar-thumb);
  scrollbar-track-color: var(--scrollbar-track);
}
.scrollbar-custom::-webkit-scrollbar {
  width: 12px;
}
.scrollbar-custom::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  box-shadow: none;
}
.scrollbar-custom::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 6px;
  border: 3px solid var(--scrollbar-track);
  box-shadow: none;
}
.MuiButton-startIcon svg {
  -webkit-user-select: none;
  user-select: none;
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.card-box {
  background-color: var(--item-background-color);
}
.card-box-glass {
  background-color: var(--half-transparent-invert) !important;
}
.card-box-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}
.item-wear-bar {
  position: relative;
  padding-bottom: 5px;
}
.item-wear-bar .item-wear-bar-inner {
  height: 4px;
  width: 100%;
  display: flex;
}
.item-wear-bar .item-wear-bar-inner > div {
  height: 100%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-bs {
  background: #e05a59;
  width: 55%;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-ww {
  background: #e9a75d;
  width: 7%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-ft {
  background: #e3e15b;
  width: 23%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-mw {
  background: #79d154;
  width: 8%;
}
.item-wear-bar .item-wear-bar-inner .item-wear-bar-fn {
  background: #5eb648;
  width: 7%;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.item-wear-bar .item-wear-bar-progress {
  position: absolute;
  bottom: 0;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent var(--text-color) transparent;
  transform: rotate(0deg);
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
}
@keyframes move-left-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

