body {
  padding-top: var(--header-height, 0);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--global-button-color);
}

.theHeader {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.theHeader .theHeaderPadd {
  position: relative;
  margin: 0 auto;
  padding: 0.875rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theHeader .theHLogo {
  position: absolute;
  width: 100%;
  max-width: 120px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .theHeader .theHLogo {
    max-width: 160px;
  }
}
.theHeader .theHLogo img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.theHeader .theHRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 52px;
}
.theHeader .theHRight .theHRButton {
  max-width: 106px;
}
.theHeader .theHRight .theHRButton img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.theHeader .theHRight .theHRLangButton {
  max-width: 32px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .theHeader .theHRight .theHRLangButton {
    max-width: 52px;
  }
}
.theHeader .theHRight .theHRLangButton img {
  width: 100%;
  display: block;
  object-fit: contain;
}
.theHeader .theHeaderMarque {
  padding: 0.125rem;
  overflow: hidden;
}
.theHeader .theHeaderMarque .theHeaderMarqueeTrack {
  width: 100%;
  overflow: hidden;
}
.theHeader .theHeaderMarque .theHeaderMarqueeText {
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
  animation: header-marquee var(--marquee-duration, 12s) linear infinite;
  transform: translate3d(0, 0, 0);
}
.theHeader .theHeaderMarque .theHeaderMarqueeItem {
  padding-right: 4rem;
}

@keyframes header-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-shift, 100%)), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .theHeaderMarque .theHeaderMarqueeText {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

/*# sourceMappingURL=header.css.map */
