@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");
@import url("https://fonts.cdnfonts.com/css/ethnocentric");
:root {
  --color-text: #fff;
  --color-text-secondary: #ccc;
  --color-text-dark: #303030;
  --color-bg: #121212;
  --color-brighter-bg: #2b2b2b;
  --color-popup-bg: #222;
  --color-primary: hsl(0, 70%, 53%);
  --color-primary-text: var(--color-text);
  --color-secondary: #00A000;
  --color-secondary-text: var(--color-text);
  --color-tertiary: #444;
  --color-tertiary-text: var(--color-text);
  --color-quaternary: #fff;
  --color-quaternary-text: var(--color-text-dark);
  --color-good: #2ACA57;
  --color-bad: hsl(0, 70%, 53%);
  --color-removed: var(--color-bad);
  --content-padding: 12px;
  --layout-gap: var(--content-padding);
  --content-inner-width: 1336px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --btn-size: 50px;category/global
  --icon-size: 18px;
  --icon-gap: 8px;
  --tebex-footer-height: 35px;
  --tebex-legal-footer-max-width: min(
    var(--content-inner-width),
    calc(100vw - (var(--content-padding) * 2))
  );
  --tebex-legal-footer-background-color: var(--color-brighter-bg);
  --tebex-legal-footer-border-color: var(--color-brighter-bg);
  --tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 360px) {
  :root {
    --content-padding: 16px;
  }
}
@media (width > 600px) {
  :root {
    --content-padding: 24px;
  }
}
@media (max-width: 900px) {
  :root {
    --tebex-footer-height: 70px;
  }
}
@media (max-width: 600px) {
  :root {
    --tebex-footer-height: 80px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  vertical-align: baseline;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

input[type=submit],
button {
  appearance: none;
  cursor: pointer;
  text-align: left;
}

textarea {
  resize: none;
}

symbol,
use,
svg {
  overflow: visible;
}

svg,
img {
  display: block;
}

li {
  display: block;
}

button {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

:root *[hidden] {
  display: none;
}

:focus {
  outline: 0;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
}

@keyframes pageMoveOut {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
@keyframes pageMoveIn {
  0%, 50% {
    scale: 0.98;
    opacity: 0;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
::view-transition-old(siteContent) {
  animation: var(--page-transition-duration) ease both pageMoveOut;
  transform-origin: center top;
}

::view-transition-new(siteContent) {
  animation: var(--page-transition-duration) ease both pageMoveIn;
  transform-origin: center top;
}

::view-transition-group(siteContent) {
  z-index: 2;
}

::view-transition-group(siteHeader),
::view-transition-group(siteHeaderSecondary),
::view-transition-group(siteNavigation),
::view-transition-group(siteFooter) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
  z-index: 3;
}

@keyframes glintSweepLeft {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}
html,
body {
  min-height: 100vh;
}

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-tertiary) var(--color-bg);
  scrollbar-gutter: auto;
}
html.no-scroll {
  overflow: hidden;
  overscroll-behavior-y: none;
}

body {
  position: relative;
  max-width: 100%;
  width: 100%;
  line-height: normal;
  color: var(--color-text);
  background-color: var(--color-bg);
  accent-color: var(--color-primary);
  font-family: Oxanium, sans-serif;
  font-size: 16px;
  font-weight: 500;
  tab-size: 4;
}
body::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  background: linear-gradient(transparent, var(--color-bg)), url("https://cdn.warbandits.gg/store/theme/site-bg.jpg") center top/cover no-repeat;
}

::selection {
  color: var(--color-text);
  background-color: var(--color-primary);
  text-shadow: none;
}

select option {
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Ethnocentric Rg", sans-serif;
  font-weight: 400;
}

.text-content {
  line-height: normal;
  word-wrap: break-word;
  word-break: break-word;
}
.text-content h1:not(:last-child),
.text-content h2:not(:last-child),
.text-content h3:not(:last-child),
.text-content h4:not(:last-child),
.text-content h5:not(:last-child),
.text-content h6:not(:last-child) {
  margin-bottom: 16px;
}
.text-content p:not(:last-child) {
  margin-bottom: 16px;
}
.text-content h1 {
  font-size: 32px;
}
.text-content h2 {
  font-size: 26px;
}
.text-content h3 {
  font-size: 20px;
}
.text-content h4 {
  font-size: 18px;
}
.text-content img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.text-content ol, .text-content ul {
  margin-left: 1em;
}
.text-content ol:not(:last-child), .text-content ul:not(:last-child) {
  margin-bottom: 12px;
}
.text-content li {
  display: list-item;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-quarternary {
  display: block;
  width: fit-content;
  height: var(--btn-size);
  padding: 2px 10px 0;
  line-height: calc(var(--btn-size) - 2px);
  color: var(--btn-color-text);
  background-color: var(--btn-color-bg);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (width > 960px) {
  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .btn-quarternary {
    padding: 2px 14px 0;
  }
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.btn-quarternary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus,
.btn-quarternary:hover,
.btn-quarternary:focus {
  filter: brightness(1.1);
}
.btn-primary.btn-small,
.btn-secondary.btn-small,
.btn-tertiary.btn-small,
.btn-quarternary.btn-small {
  --btn-size: 30px;
}

.btn-primary {
  --btn-color-text: var(--color-primary-text);
  --btn-color-bg: var(--color-primary);
}

.btn-secondary {
  --btn-color-text: var(--color-secondary-text);
  --btn-color-bg: var(--color-secondary);
}

.btn-tertiary {
  --btn-color-text: var(--color-tertiary-text);
  --btn-color-bg: var(--color-tertiary);
  font-weight: 500;
}

.btn-quarternary {
  --btn-color-text: var(--color-quaternary-text);
  --btn-color-bg: var(--color-quaternary);
}

.btn-icon,
.btn-icon-text,
.btn-glyph,
.btn-glyph-text {
  --icon: url("https://cdn.warbandits.gg/store/theme/cart.svg");
  justify-content: center;
  text-align: center;
}

.btn-icon {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  background-image: var(--icon);
  background-position: center center;
  background-size: var(--icon-size);
  background-repeat: no-repeat;
}
:root .btn-icon {
  line-height: 0;
  font-size: 0;
  color: transparent;
}

.btn-icon-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
}
.btn-icon-text::before {
  content: "";
  display: block;
  margin-right: var(--icon-gap);
  width: var(--icon-size);
  height: var(--icon-size);
  flex: none;
  background: var(--icon) center center/contain no-repeat;
}

.btn-glyph::before,
.btn-glyph-text::before {
  content: "";
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  flex: none;
  background-color: var(--btn-color-text);
  mask: var(--icon) center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}

.btn-glyph {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
}
:root .btn-glyph {
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.btn-glyph::before {
  position: absolute;
  inset: 0;
  margin: auto;
}

.btn-glyph-text {
  display: flex;
  align-items: center;
  min-width: var(--btn-size);
  height: var(--btn-size);
}
.btn-glyph-text::before {
  margin-right: var(--icon-gap);
}

.link-text {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-position: under;
  transition: color 0.15s ease-in-out;
}
.link-text:hover {
  color: var(--color-text);
}

.quantity-field {
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-bg);
  border-radius: 4px;
  height: 36px;
}
.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  field-sizing: content;
  min-width: 40px;
  height: 100%;
  font-size: 16px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.quantity-field input[type=number]:focus, .quantity-field input[type=number]:hover {
  border-color: var(--color-secondary-hover);
}
.quantity-field input[type=number]::-webkit-inner-spin-button, .quantity-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-field.with-open-basket input[type=number] {
  margin: 0 -12px 0 -5px;
  min-width: auto;
  padding: 0 15px;
  order: 1;
  text-align: right;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket {
  margin-right: 10px;
  width: fit-content;
  height: 100%;
  order: 2;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket:focus, .quantity-field .open-basket:hover {
  color: var(--color-primary);
}
.quantity-field .open-basket:focus ~ input[type=number], .quantity-field .open-basket:hover ~ input[type=number] {
  color: var(--color-primary);
}
.quantity-field .adjust {
  position: relative;
  z-index: 2;
  flex: none;
  width: 36px;
  height: 100%;
  padding: 0;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.quantity-field .adjust.decrease {
  margin-right: auto;
  order: -1;
  border-radius: 4px 0 0 4px;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
  border-radius: 0 4px 4px 0;
}
.quantity-field .adjust::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://cdn.warbandits.gg/store/theme/plus.svg") no-repeat center center;
  mask-size: 10px;
}
.quantity-field .adjust.decrease::before {
  mask-image: url("https://cdn.warbandits.gg/store/theme/minus.svg");
}

@media (width > 960px) {
  .mobile-only {
    display: none;
  }
}

@media (width <= 960px) {
  .desktop-only {
    display: none;
  }
}

.site {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: var(--layout-gap);
  flex-direction: column;
  min-height: calc(100vh - var(--tebex-footer-height));
  min-height: calc(100svh - var(--tebex-footer-height));
  view-transition-name: site;
}

.site-header .inner,
.site-header-secondary .inner,
.site-content,
.site-footer-inner {
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
}
@media (width > 960px) {
  .site-header .inner,
  .site-header-secondary .inner,
  .site-content,
  .site-footer-inner {
    max-width: var(--content-width);
  }
}

.site-content {
  flex: 1 1 auto;
}

.site-header {
  view-transition-name: siteHeader;
}
@media (width <= 960px) {
  body.show-navigation .site-header {
    position: relative;
    z-index: 100000;
  }
}
.site-header .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--content-padding);
  position: relative;
}
@media (width <= 600px) {
  .site-header .inner {
    flex-direction: column;
  }
}
@media (width > 600px) {
  .site-header .inner {
    justify-content: space-between;
  }
}
.site-header .site-title {
  width: min(237px, 100%);
  height: fit-content;
}
.site-header .site-title img {
  max-width: 100%;
  max-height: 128px;
}
.site-header .open-basket {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-width: 237px;
  min-height: 79px;
  line-height: 22px;
  border-radius: 6px;
  box-shadow: 0 0 52px rgba(219, 52, 52, 0.1607843137);
  background-image: url("https://cdn.warbandits.gg/store/theme/view-cart-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.site-header .open-basket .view {
  display: block;
  flex: none;
  font-family: "Ethnocentric Rg", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.site-header .open-basket .total {
  display: block;
  flex: none;
  font-size: 14px;
  font-weight: 600;
}
.site-header .open-basket::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: -95px;
  width: 85px;
  height: 75px;
  rotate: -30deg;
  background-color: var(--btn-color-text);
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  mask: url("https://cdn.warbandits.gg/store/theme/cart.svg") center center/contain no-repeat;
}
.site-header .open-basket:hover::after {
  left: -5px;
  top: 10px;
  rotate: -10deg;
  scale: 1.2;
  visibility: visible;
  opacity: 0.2;
}

.site-header-secondary {
  order: -1;
  background: #1f1f1f;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.02);
  view-transition-name: siteHeaderSecondary;
}
.site-header-secondary .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site-header-secondary .btn-tertiary {
  --btn-color-bg: transparent;
}
.site-header-secondary .toggle-navigation {
  --icon: url("https://cdn.warbandits.gg/store/theme/burger.svg");
}
@media (width > 960px) {
  .site-header-secondary .toggle-navigation {
    display: none;
  }
}
.site-header-secondary .discord-link {
  --icon: url("https://cdn.warbandits.gg/store/theme/discord.svg");
}
.site-header-secondary .open-basket {
  --icon: url("https://cdn.warbandits.gg/store/theme/checkout.svg");
}
.site-header-secondary .user-name,
.site-header-secondary .log-in {
  --icon: url("https://cdn.warbandits.gg/store/theme/user.svg");
  margin-left: auto;
}
.site-header-secondary .user-name {
  contain: paint;
}
.site-header-secondary .user-name .text,
.site-header-secondary .user-name .text-hover {
  transition: opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.site-header-secondary .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  color: transparent;
  font-size: 0;
}
.site-header-secondary .user-name:hover .text, .site-header-secondary .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
  font-size: 0;
}

.site-footer {
  background: var(--color-brighter-bg);
}

.store-text {
  margin-inline: auto;
  max-width: 900px;
  padding: var(--content-padding);
  font-size: 16px;
  font-weight: 400;
}
.store-text .store-text-title {
  margin-bottom: var(--content-padding) !important;
  text-align: center;
}

.store-form {
  font-size: 18px;
}
.store-form h1,
.store-form h2,
.store-form h3,
.store-form h4,
.store-form h5,
.store-form h6,
.store-form p {
  margin-bottom: 24px;
}
.store-form .input-group,
.store-form .field,
.store-form .field-inline {
  margin-bottom: 24px;
}
.store-form .input-group > p,
.store-form .field > p,
.store-form .field-inline > p {
  margin-bottom: 12px;
}
.store-form .field-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 12px;
}
@media (width > 600px) {
  .store-form .field-inline {
    gap: 0 24px;
  }
}
.store-form input,
.store-form select,
.store-form textarea {
  display: block;
}
.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  font-size: 14px;
}
.popup .store-form input[type=text],
.popup .store-form input[type=password],
.popup .store-form input[type=email],
.popup .store-form input[type=number],
.popup .store-form input[type=search],
.popup .store-form input[type=url],
.popup .store-form input[type=tel],
.popup .store-form input[type=date],
.popup .store-form input[type=time],
.popup .store-form input[type=datetime-local],
.popup .store-form input[type=file],
.popup .store-form input[type=month],
.popup .store-form input[type=week],
.popup .store-form select,
.popup .store-form textarea {
  background: var(--color-brighter-bg);
}
@media (width > 960px) {
  .store-form input[type=text],
  .store-form input[type=password],
  .store-form input[type=email],
  .store-form input[type=number],
  .store-form input[type=search],
  .store-form input[type=url],
  .store-form input[type=tel],
  .store-form input[type=date],
  .store-form input[type=time],
  .store-form input[type=datetime-local],
  .store-form input[type=file],
  .store-form input[type=month],
  .store-form input[type=week],
  .store-form select,
  .store-form textarea {
    padding: 12px;
    font-size: 16px;
  }
}
.store-form .field-inline input,
.store-form .field-inline select,
.store-form .field-inline textarea {
  width: auto;
}
.store-form .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.store-form .actions .link-text {
  align-self: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 16px;
}

.category-description {
  margin-bottom: var(--content-padding);
  padding: var(--content-padding);
  color: var(--color-text-secondary);
  background: var(--color-bg) url("https://cdn.warbandits.gg/store/theme/banner-bg.jpg") center center/cover no-repeat;
  border-radius: 6px;
  text-align: center;
}
.category-description .category-title {
  margin-bottom: var(--content-padding);
  color: var(--color-text);
  font-size: 32px;
  font-weight: 400;
}

.no-products {
  padding: var(--content-padding);
  font-size: 18px;
  text-align: center;
}

.store-products-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--content-padding) / 2);
}

.store-products-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--content-padding);
}
@media (width > 960px) {
  .store-products-images {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.store-product {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: var(--content-padding);
  padding: var(--content-padding);
}
.store-product .badge {
  position: absolute;
  top: calc(var(--content-padding) / 2);
  right: calc(var(--content-padding) / 2);
  padding: 12px;
  line-height: 16px;
  border-radius: 4px;
  background-color: var(--color-tertiary);
  font-weight: 700;
}
.store-product .badge.badge-best-value {
  background-color: var(--color-secondary);
}
.store-product .badge.badge-most-popular {
  background-color: #346DDB;
}
.store-product .product-title {
  font-family: Oxanium, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.store-product .product-title a {
  color: inherit;
  transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
  color: var(--color-primary);
}
.store-product .product-title .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product .product-title .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://cdn.warbandits.gg/store/theme/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.store-product .image-link:hover ~ .product-title a {
  color: var(--color-primary);
}
.store-product .image {
  margin: 0 auto;
  max-width: 100%;
  max-height: 200px;
}
.store-product .descr {
  color: var(--color-text-secondary);
}
.store-product .open-package {
  --icon: url("https://cdn.warbandits.gg/store/theme/info.svg");
  justify-content: center;
  width: 100%;
  font-size: 16px;
}
.store-product .actions {
  display: flex;
  gap: calc(var(--content-padding) / 2);
  flex-wrap: wrap;
  position: relative;
}
.store-products-images .store-product .actions {
  flex: 1 1 auto;
  align-content: flex-end;
}
.store-product .actions.updating {
  pointer-events: none;
}
.store-product .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://cdn.warbandits.gg/store/theme/loading.svg") center center/contain no-repeat;
}
.store-product .price {
  color: var(--color-good);
  font-size: 24px;
  font-weight: 500;
}
.store-product .price .discount {
  margin-left: 0.5ch;
  color: var(--color-removed);
  font-size: 20px;
  font-weight: inherit;
  text-decoration-line: line-through;
}
.store-product .price strong {
  font-weight: inherit;
}
.store-product:not(.store-product-full) .price {
  width: 100%;
}
.store-products-images .store-product:not(.store-product-full) .price {
  margin-bottom: auto;
}
.store-product .quantity-field {
  height: 46px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .add {
  --icon: url("https://cdn.warbandits.gg/store/theme/cart.svg");
}
.store-product .gift {
  --icon: url("https://cdn.warbandits.gg/store/theme/gift.svg");
  flex: none;
}
.store-product .remove {
  --icon: url("https://cdn.warbandits.gg/store/theme/delete.svg");
  --btn-color-bg: var(--color-bad);
  flex: none;
}

.store-products-images .store-product {
  border-radius: 6px;
  background-color: var(--color-brighter-bg);
  text-align: center;
}
.store-products-images .store-product .image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}
.store-products-images .store-product .product-title {
  margin-bottom: calc((var(--content-padding) - 6px) * -1);
}

.store-products-list .store-product {
  padding: calc(var(--content-padding) * 0.75);
}
.store-products-list .store-product .image {
  width: 60px;
}
.store-products-list .store-product .actions {
  flex-wrap: nowrap;
  align-items: center;
}
.store-products-list .store-product .wide {
  flex: 0 1 auto;
}
.store-products-list .store-product .price {
  width: auto;
}
@media (width <= 600px) {
  .store-products-list .store-product .wide {
    width: 100%;
  }
}
@media (width > 600px) {
  .store-products-list .store-product {
    flex-direction: row;
    align-items: center;
    gap: 12px calc(var(--content-padding) * 0.75);
  }
  .store-products-list .store-product .actions {
    gap: calc(var(--content-padding) * 0.75);
  }
  .store-products-list .store-product .actions .wide {
    width: 170px;
  }
  .store-products-list .store-product .image-link {
    margin: 0;
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
}

.store-product-full:not(.popup-content) {
  padding: 0;
  border-radius: 12px;
}
.store-product-full:not(.popup-content) .product-header,
.store-product-full:not(.popup-content) .actions {
  margin: 0;
  border-radius: 6px;
}
.store-product-full .product-header {
  position: sticky !important;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--content-padding);
  min-height: calc(var(--content-padding) * 2 + var(--btn-size));
  margin: 0 calc(var(--content-padding) * -1);
  padding: var(--content-padding);
  background-color: var(--color-brighter-bg);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}
.store-product-full .product-header:has(.popup-close), .store-product-full .product-header:has(.popup-expand) {
  padding-right: calc(var(--btn-size) + var(--content-padding));
}
.store-product-full .product-header:has(.popup-close):has(.popup-expand) {
  padding-right: calc(var(--btn-size) * 2 + var(--content-padding));
}
.store-product-full .product-title {
  min-height: var(--btn-size);
  align-content: center;
}
.store-product-full .go-back {
  --icon: url("https://cdn.warbandits.gg/store/theme/arrow-back.svg");
  --icon-size: 24px;
  --btn-color-bg: transparent;
}
.store-product-full .go-back:hover, .store-product-full .go-back:focus {
  --btn-color-text: var(--color-primary);
}
.store-product-full .popup-controls {
  position: absolute;
  top: var(--content-padding);
  right: var(--content-padding);
  z-index: 10;
  display: flex;
}
.store-product-full .image,
.store-product-full .image-link {
  display: none;
}
.store-product-full .actions {
  align-items: center;
}
.store-product-full .actions .half,
.store-product-full .actions .wide {
  flex: 0 1 auto;
  min-width: 135px;
}
.store-product-full.popup-content .actions {
  position: sticky !important;
  bottom: 0;
  z-index: 2;
  flex-wrap: nowrap;
  padding: var(--content-padding);
  margin: 0 calc(var(--content-padding) * -1);
  background-color: var(--color-brighter-bg);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, 0.16);
}
.store-product-full:not(.popup-content) .actions {
  gap: 8px;
}
@media (width <= 600px) {
  .store-product-full:not(.popup-content) .actions {
    width: 100%;
  }
}
@media (width > 600px) {
  .store-product-full:not(.popup-content) .actions {
    margin-left: auto;
  }
}
.store-product-full .price {
  margin-right: auto;
  color: var(--color-text);
}
.store-product-full .price .discount {
  display: block;
  margin-left: 0;
}
.store-product-full:not(.popup-content) .price {
  margin-right: calc(var(--content-padding) - 8px);
  text-align: right;
}
.store-product-full .product-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.store-product-full .product-tab {
  padding: 9px 12px 7px;
  color: var(--color-text-secondary);
  border: 1px solid #414141;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
}
.store-product-full .product-tab:hover {
  filter: brightness(1.2);
}
.store-product-full .product-tab.active {
  border: 1px solid #ff002b;
  background: #60202B;
}
.store-product-full:not(.popup-content) .descr {
  margin: 0 auto;
  max-width: 900px;
}
.store-product-full .descr .description-tab:not(.active) {
  display: none;
}

.store-product-options .product-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}
.store-product-options .actions {
  position: sticky !important;
  bottom: var(--content-padding);
  justify-content: start;
  width: fit-content;
  max-width: 100%;
}
.store-product-options .actions.updating {
  pointer-events: none;
}
.store-product-options .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.store-product-options .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://cdn.warbandits.gg/store/theme/loading.svg") center center no-repeat;
  background-size: contain;
}
.store-product-options .actions .btn-primary,
.store-product-options .actions .btn-secondary,
.store-product-options .actions .btn-tertiary {
  width: 230px;
}
.store-product-options .actions-multiple {
  width: auto;
}
.store-product-options .actions-multiple .btn-primary,
.store-product-options .actions-multiple .btn-secondary,
.store-product-options .actions-multiple .btn-tertiary {
  width: auto;
  flex: 1 1 auto;
}

.site-navigation {
  --fade-duration: 200ms;
  view-transition-name: siteNavigation;
}
@media (width <= 960px) {
  .site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    transition: display var(--fade-duration) allow-discrete, opacity var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation {
      opacity: 0;
    }
  }
  body:not(.show-navigation) .site-navigation {
    visibility: hidden;
    opacity: 0;
  }
  .site-navigation .close-navigation {
    --icon: url("https://cdn.warbandits.gg/store/theme/close.svg");
    --icon-size: 24px;
    --btn-color-bg: transparent;
    position: absolute;
    top: calc(var(--content-padding) / 2);
    right: calc(60px + var(--content-padding) / 2);
  }
  .site-navigation .close-navigation:hover {
    --btn-color-t: var(--color-primary);
  }
  body:not(.show-navigation) .site-navigation .close-navigation {
    right: 100%;
    opacity: 0;
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 60px 0 0;
    padding: 72px var(--content-padding) var(--content-padding);
    background: var(--color-bg);
    line-height: 24px;
    color: var(--color-text-secondary);
    font-size: 18px;
    overflow: hidden auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) var(--color-bg);
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
  }
  @starting-style {
    .site-navigation .menu {
      translate: -100% 0;
    }
  }
  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }
  body:not(.show-navigation) .site-navigation .menu {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation li {
    position: relative;
    width: 100%;
  }
  .site-navigation .log-out {
    margin-top: auto;
  }
  .site-navigation .log-out a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .site-navigation .log-out a::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    mask: url("https://cdn.warbandits.gg/store/theme/log-out.svg") center center no-repeat;
    mask-size: contain;
  }
  .site-navigation a {
    display: block;
    padding: 11px 0;
    transition: color 0.15s ease-in-out;
  }
  .site-navigation a:hover {
    color: var(--color-primary);
  }
  .site-navigation a.active {
    color: var(--color-primary);
    font-weight: 700;
  }
}
@media (width > 960px) {
  .site-navigation {
    flex-grow: 1;
  }
  .site-navigation .close-navigation {
    display: none;
  }
  .site-navigation .menu {
    display: flex;
    justify-content: space-evenly;
    gap: 10px 30px;
    line-height: var(--btn-size);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .site-navigation a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .site-navigation a:hover, .site-navigation a.link-active {
    color: var(--color-primary);
  }
  @supports (background-clip: text) {
    .site-navigation a {
      background: linear-gradient(120deg, #ffffff 0%, #ffffff 47%, #ffd700 50%, #ffffff 53%, #ffffff 100%);
      background-size: 200%;
      background-position: -100%;
      background-clip: text;
      color: transparent;
      animation: glintSweepLeft 4s infinite;
    }
    .site-navigation a:hover, .site-navigation a.link-active {
      background: transparent;
    }
  }
}
@media (width > 1400px) {
  .site-navigation .menu {
    column-gap: 60px;
  }
}

.store-widgets {
  display: grid;
  gap: var(--content-padding);
}
@media (width > 960px) {
  .store-widgets {
    grid-template-columns: 1fr 1fr;
  }
}

.widget {
  border-radius: 6px;
  background: var(--color-brighter-bg);
}

.widget-title {
  align-content: center;
  min-height: 72px;
  border-bottom: 1px solid #414141;
  padding: calc(var(--content-padding) / 2) var(--content-padding);
  font-size: 20px;
  font-weight: 400;
  overflow: hidden;
}

.widget-content {
  padding: var(--content-padding);
}

.widget-payment-methods .we-accept {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  min-height: 40px;
}
.widget-payment-methods .we-accept li {
  display: block;
}
.widget-payment-methods .we-accept img {
  display: block;
  max-width: 60px;
}
.widget-payment-methods p {
  color: var(--color-text-secondary);
}

.widget-featured .widget-content {
  padding: 0;
}
.widget-featured .store-product {
  text-align: center;
}

.widget-gift-card .widget-content {
  text-align: center;
}
.widget-gift-card .input-field {
  position: relative;
  margin-bottom: calc(var(--content-padding) / 2);
  font-size: 14px;
}
@media (width > 600px) {
  .widget-gift-card .input-field {
    font-size: 16px;
  }
}
.widget-gift-card .input-field input {
  width: 100%;
  padding: 0 15px;
  line-height: 48px;
  color: var(--color-text);
  border: 1px solid #414141;
  border-radius: 4px;
  font-size: inherit;
  font-weight: 700;
  transition: border-color 0.15s ease-in-out;
}
.widget-gift-card .input-field input:focus {
  border-color: var(--color-text);
}
.widget-gift-card .input-field .result-failure {
  margin-top: calc(var(--content-padding) / 2);
  color: var(--color-removed);
}
.widget-gift-card .input-field .result-success {
  position: absolute;
  top: 1px;
  right: 16px;
  line-height: 48px;
  color: var(--color-good);
  text-align: right;
}
.widget-gift-card .input-field .result-success strong {
  font-weight: 700;
}
.widget-gift-card .check {
  --btn-color-bg: var(--color-text);
  --btn-color-text: var(--color-text-dark);
  width: 100%;
}

.widget-recent .purchase {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.4;
}
.widget-recent .avatar {
  flex: none;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}
.widget-recent .username {
  font-family: Oxanium, sans-serif;
  font-weight: 700;
}
.widget-recent .empty {
  text-align: center;
}
.widget-recent time {
  opacity: 0.5;
  font-size: 0.9em;
}
.widget-recent .sep {
  margin: 0 0.3em;
}

.widget-top-donator .widget-content {
  text-align: center;
}
.widget-top-donator .avatar {
  margin: 0 auto 12px;
  max-width: 96px;
}
.widget-top-donator .username {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
}
.widget-top-donator .empty {
  text-align: center;
}

.widget-community-goal .widget-content,
.widget-goal .widget-content {
  text-align: center;
}
.widget-community-goal p:not(:last-child),
.widget-goal p:not(:last-child) {
  margin-bottom: 12px;
}
.widget-community-goal .progress,
.widget-goal .progress {
  height: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-bg);
}
@keyframes progressBarAnimation {
  to {
    background-position: 100% 0;
  }
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  height: 12px;
  background: var(--color-primary);
}
.widget-community-goal .progress-bar.striped,
.widget-goal .progress-bar.striped {
  background: var(--color-primary) linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 33%, rgb(from var(--color-primary-hover) r g b/0.35) 66%, var(--color-primary) 66%, var(--color-primary) 100%) repeat;
  background-size: 24px 100%;
}
.widget-community-goal .progress-bar.striped.animated,
.widget-goal .progress-bar.striped.animated {
  animation: progressBarAnimation 10s infinite linear;
}

.widget-community-goal .goal-image {
  margin: 0 auto 12px;
  max-width: 96px;
}
.widget-community-goal .descr {
  margin-bottom: 12px;
}

.widget-server-status .widget-content {
  text-align: center;
}
.widget-server-status h6 {
  margin-bottom: 12px;
}

.site-footer {
  background-color: rgb(26, 26, 26);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  gap: var(--content-padding);
  padding: calc(var(--content-padding) * 2) var(--content-padding);
}
.site-footer-inner .logo {
  max-width: 75px;
}
.site-footer-inner .logo a, .site-footer-inner .logo img {
  max-width: 100%;
  height: auto;
}
.site-footer-inner .info {
  line-height: 26px;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.site-footer-inner .info p + p {
  margin-top: 6px;
}
.site-footer-inner .info strong {
  color: var(--color-text);
}

.site-footer-credit {
  color: var(--color-text-secondary);
  background: #101010;
  font-size: 11px;
}
.site-footer-credit .site-footer-credit-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
  margin: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 45px;
}
@media (width > 960px) {
  .site-footer-credit .site-footer-credit-inner {
    align-items: center;
    flex-direction: row;
  }
}
.site-footer-credit .copyright {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
@media (width > 960px) {
  .site-footer-credit .copyright {
    align-items: center;
  }
}
.site-footer-credit .copyright .tebex-logo-link {
  flex: none;
}
.site-footer-credit .legal {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}
@media (width > 960px) {
  .site-footer-credit .legal {
    gap: 20px;
  }
}
.site-footer-credit .legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}
.site-footer-credit .legal a:hover {
  color: var(--color-primary);
}

.popup {
  --fade-duration: 300ms;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) transparent;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color var(--fade-duration) ease, opacity var(--fade-duration) ease-in-out, display var(--fade-duration) allow-discrete;
}
@starting-style {
  .popup {
    opacity: 0;
  }
}
.popup[hidden] {
  opacity: 0;
  display: none;
}

.popup-scroll-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: var(--content-padding);
  overscroll-behavior: none;
}
@media (pointer: coarse) {
  .popup .popup-scroll-cont {
    align-items: flex-end;
    padding-bottom: 0;
  }
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding: var(--content-padding);
  background: var(--color-popup-bg);
  border-radius: 12px;
  transition: translate var(--fade-duration) ease, opacity var(--fade-duration) ease;
}
@starting-style {
  .popup-content {
    translate: 0 20px;
  }
}
@media (pointer: coarse) {
  .popup-content {
    padding-bottom: calc(var(--content-padding) * 2);
  }
}
.popup.popup-loading .popup-content {
  min-height: 180px;
}
.popup.popup-loading .popup-content::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://cdn.warbandits.gg/store/theme/loading.svg") center center no-repeat;
  background-size: contain;
}

.popup-close {
  position: absolute;
  top: var(--content-padding);
  right: var(--content-padding);
  z-index: 10;
  width: var(--btn-size);
  height: var(--btn-size);
  background-color: var(--color-tertiary-text);
  mask: url("https://cdn.warbandits.gg/store/theme/close.svg") center center/24px no-repeat;
  border-radius: 4px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
.popup-close:hover {
  background-color: var(--color-primary);
}

.popup-expand {
  position: absolute;
  top: var(--content-padding);
  right: calc(var(--btn-size) + var(--content-padding));
  z-index: 10;
  width: var(--btn-size);
  height: var(--btn-size);
  background-color: var(--color-tertiary-text);
  mask: url("https://cdn.warbandits.gg/store/theme/expand.svg") center center/24px no-repeat;
  border-radius: 4px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
.popup-expand:hover {
  background-color: var(--color-primary);
}

.popup-controls .popup-close,
.popup-controls .popup-expand {
  position: relative;
  inset: auto;
  z-index: auto;
}

.store-product-popup-content {
  max-width: 930px;
  padding-block: 0;
}

.product-options-popup .popup-content {
  max-width: 480px;
}

.gift-form-popup .popup-content h1, .gift-form-popup .popup-content h2, .gift-form-popup .popup-content h3, .gift-form-popup .popup-content h4, .gift-form-popup .popup-content h5, .gift-form-popup .popup-content h6 {
  margin-bottom: 12px;
}
.gift-form-popup .popup-content .btn-primary {
  width: 240px;
}
.gift-form-popup .popup-content .actions {
  position: relative;
  width: fit-content;
  max-width: 100%;
}
.gift-form-popup .popup-content .actions.updating {
  pointer-events: none;
}
.gift-form-popup .popup-content .actions.updating > * {
  opacity: 0.3;
  filter: grayscale(100%);
}
.gift-form-popup .popup-content .actions.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("https://cdn.warbandits.gg/store/theme/loading.svg") center center no-repeat;
  background-size: contain;
}

.login-popup {
  z-index: 1002;
}

.login-popup-content {
  max-width: 480px;
  padding-bottom: calc(var(--content-padding) - 12px);
}

.basket {
  position: relative;
  z-index: 1001;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 18px;
}
.basket .basket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 50px var(--content-padding) 30px;
  font-size: 22px;
  font-weight: 600;
  background: rgba(40, 40, 40, 0.5);
}
@media (width > 960px) {
  .basket .basket-header {
    padding-top: 70px;
  }
}
.basket .basket-title {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.basket .basket-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://cdn.warbandits.gg/store/theme/user.svg") center center no-repeat;
  mask-size: contain;
}
.basket .basket-second-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px var(--content-padding);
  background: var(--color-brighter-bg);
  background: rgb(from var(--color-brighter-bg) r g b/0.9);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.basket .basket-second-header .total {
  font-size: 14px;
}
.basket .basket-second-header .total strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-second-header .currency {
  display: flex;
  align-items: center;
  gap: 6px;
}
.basket .basket-second-header .currency::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("https://cdn.warbandits.gg/store/theme/dropdown-arrow.svg") center center no-repeat;
}
.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--content-padding);
}
.basket .basket-item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: var(--content-padding);
  background: var(--color-brighter-bg);
}
.basket .basket-item .info {
  margin-right: auto;
}
.basket .basket-item .options {
  list-style-position: inside;
}
.basket .basket-item .options:has(li) {
  padding: 5px 0;
}
.basket .basket-item .options li {
  display: block;
  padding: 1px 0;
}
.basket .basket-item .options li::before {
  content: "";
  display: inline-block;
  margin-right: 0.4em;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}
.basket .basket-item .title {
  font-size: 20px;
  font-weight: 600;
}
.basket .basket-item .price {
  color: var(--color-primary);
  font-size: 14px;
}
.basket .basket-item .price strong {
  font-size: 18px;
  font-weight: inherit;
}
.basket .basket-item .quantity-field {
  height: 40px;
}
.basket .basket-item .remove {
  --icon: url("https://cdn.warbandits.gg/store/theme/delete.svg");
  --btn-size: 40px;
  --btn-color-bg: var(--color-bad);
}
.basket .basket-checkout {
  margin-top: auto;
  padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 100px;
  }
}
.basket .basket-checkout h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--content-padding);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.basket .basket-checkout .total {
  font-size: 16px;
  font-weight: 400;
}
.basket .basket-checkout .total strong {
  font-size: 24px;
  font-weight: inherit;
}
.basket .basket-checkout .checkout {
  width: 100%;
}

.basket-popup .popup-scroll-cont {
  justify-content: flex-end;
  padding: 0;
}

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background: var(--color-bg);
  transition: translate var(--fade-duration) ease-in-out;
}
@starting-style {
  .basket-popup-content {
    translate: 100% 0;
  }
}
:root .basket-popup[hidden] .basket-popup-content {
  translate: 100% 0;
}
.basket-popup-content.updating {
  pointer-events: none;
}
.basket-popup-content.updating::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  width: 38px;
  height: 38px;
  background: url("https://cdn.warbandits.gg/store/theme/loading.svg") center center no-repeat;
  background-size: contain;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

.toaster {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  position: fixed;
  bottom: var(--content-padding);
  left: 0;
  right: 0;
  z-index: 10000;
  margin: 0 auto;
  padding: 0 var(--content-padding);
  width: 100%;
  height: 100%;
  max-width: 520px;
  pointer-events: none;
}
.toaster:empty {
  display: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 50px;
  padding: 0 8px 0 24px;
  background: var(--color-brighter-bg);
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@starting-style {
  .toast {
    opacity: 0;
    height: 0;
  }
}
.toast[hidden] {
  display: block;
  opacity: 0;
  height: 0;
}
.toast.toast-warning {
  background: #cab600;
}
.toast.toast-error {
  background: #C12E2E;
}
.toast.toast-success {
  background: #4caf50;
}

.toast-close {
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  background: url("https://cdn.warbandits.gg/store/theme/close.svg") center center/20px no-repeat;
  opacity: 0.5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.toast-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.store-category-tiered {
  --gap: calc(var(--content-padding) * .75);
  padding: var(--content-padding);
}

.store-category-tiered-header {
  margin-bottom: var(--content-padding);
  font-size: 18px;
}
.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6,
.store-category-tiered-header p {
  margin-bottom: 24px;
}

.store-products-tiered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: var(--gap);
}

.store-product-tiered {
  --border-color: rgb(from var(--color-text) r g b / .1);
  --primary-color: rgb(from var(--color-primary) r g b / .25);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: var(--gap);
  padding: var(--gap);
}
.store-product-tiered.store-product-cta {
  background-image: linear-gradient(to bottom, transparent 67%, var(--primary-color));
}
.store-product-tiered .image {
  margin: auto;
  max-width: 100%;
  object-fit: contain;
}
.store-product-tiered .product-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.store-product-tiered .countdown {
  display: block;
  margin-top: 4px;
  color: var(--color-removed);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
}
.store-product-tiered .countdown::before {
  content: "";
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.25em;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask: url("https://cdn.warbandits.gg/store/theme/countdown.svg") center center/contain no-repeat;
}
.store-product-tiered .descr {
  padding-block: var(--gap);
  border-block: 1px solid var(--border-color);
  color: var(--color-text-secondary);
}
.store-product-tiered .price {
  font-size: 14px;
  text-align: center;
}
.store-product-tiered .price .discount {
  margin-right: 0.5ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product-tiered .price strong {
  font-size: 20px;
  font-weight: inherit;
}
.store-product-tiered .actions {
  gap: var(--gap);
}
.store-product-tiered .actions .wide {
  width: 100%;
}

.store-quote {
  padding: var(--content-padding);
}
.store-quote .wide {
  flex: 1 1 50%;
}

.store-home {
  display: grid;
  gap: var(--content-padding);
}
.store-home .section-title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.store-home .section-title strong {
  color: var(--color-primary);
  font-weight: inherit;
}
.store-home .sale-banner {
  position: relative;
  padding: var(--content-padding);
  padding-left: calc(var(--content-padding) * 2 + 50px);
  border-radius: 6px;
  background: #2B2B2B linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(0, 0, 0, 0.2));
}
.store-home .sale-banner::after {
  content: "";
  display: block;
  position: absolute;
  top: var(--content-padding);
  left: var(--content-padding);
  width: 50px;
  height: 50px;
  background-color: var(--color-text);
  background-color: currentColor;
  mask: url("https://cdn.warbandits.gg/store/theme/campaign.svg") center center/contain no-repeat;
}
.store-home .sale-banner h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
}
.store-home .home-categories {
  display: grid;
  gap: var(--content-padding);
  margin-bottom: var(--content-padding);
}
@media (width > 600px) {
  .store-home .home-categories {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
}
.store-home .category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--content-padding);
  border: 1px solid transparent;
  border-radius: 6px;
  background: radial-gradient(108.44% 118.88% at 45.29% -3.29%, #333 0, #262626 100%);
  text-align: center;
}
.store-home .category:first-child {
  border-color: rgba(52, 219, 109, 0.3);
  background: linear-gradient(to right, rgba(52, 219, 109, 0.168627451), transparent 70%), radial-gradient(108.44% 118.88% at 45.29% -3.29%, #333 0, #262626 100%);
}
.store-home .category strong {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 30px;
  font-family: "Ethnocentric Rg", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@supports (background-clip: text) {
  .store-home .category strong {
    background: linear-gradient(120deg, #ffffff 0%, #ffffff 47%, #ffd700 50%, #ffffff 53%, #ffffff 100%);
    background-size: 200%;
    background-position: -100%;
    background-clip: text;
    color: transparent;
    animation: glintSweepLeft 4s infinite;
  }
}
.store-home .category strong::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://cdn.warbandits.gg/store/theme/star.svg") center center/contain no-repeat;
}
.store-home .category small {
  display: block;
  line-height: 20px;
  color: hsl(0, 0%, 35%);
  font-size: 16px;
  margin-top: 13px;
}
.store-home .store-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  min-height: 120px;
  padding: var(--content-padding);
  color: var(--color-text-secondary);
  background: var(--color-bg) url("https://cdn.warbandits.gg/store/theme/banner-bg.jpg") center center/cover no-repeat;
  border-radius: 6px;
  text-align: center;
}
.store-home .store-description p:not(:last-child) {
  margin-bottom: 1em;
}

.text-panels {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
@media (width > 600px) {
  .text-panels {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.text-panels .text-panel {
  margin-bottom: 0;
}

.text-panel {
  margin-bottom: 16px;
  padding: 0 12px 12px;
  background: var(--color-brighter-bg);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}
.text-panel .title {
  position: relative;
  min-height: 48px;
  padding: 8px 12px;
  align-content: center;
  margin: 0 -12px 12px;
  border-bottom: 1px solid #414141;
  font-size: inherit;
  font-weight: 700;
  font-family: Oxanium, sans-serif;
}
.text-panel .title[class*=icon-] {
  padding-left: 48px;
}
.text-panel .title[class*=icon-].worange::before {
  background: #695021;
}
.text-panel .title[class*=icon-].wgold::before {
  background: #605c20;
}
.text-panel .title[class*=icon-].wpurple::before {
  background: #5e2060;
}
.text-panel .title[class*=icon-].wred::before {
  background: #591a24;
}
.text-panel .title[class*=icon-].wblue::before {
  background: #204d60;
}
.text-panel .title[class*=icon-].wgreen::before {
  background: #206025;
}
.text-panel .title[class*=icon-].wgray::before {
  background: #444444;
}
.text-panel .title[class*=icon-]::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #591a24;
}
.text-panel .title[class*=icon-].worange::after {
  background-color: #ffa200;
}
.text-panel .title[class*=icon-].wgold::after {
  background-color: #ffd800;
}
.text-panel .title[class*=icon-].wpurple::after {
  background-color: #f200ff;
}
.text-panel .title[class*=icon-].wred::after {
  background-color: #ff002a;
}
.text-panel .title[class*=icon-].wblue::after {
  background-color: #00c9ff;
}
.text-panel .title[class*=icon-].wgreen::after {
  background-color: #1eff00;
}
.text-panel .title[class*=icon-].wgray::after {
  background-color: #8c8c8c;
}
.text-panel .title[class*=icon-]::after {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  background-color: #ff002a;
  mask: url("https://cdn.warbandits.gg/store/theme/build.svg") center center/contain no-repeat;
}
.text-panel .title.icon-build::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/build.svg");
}
.text-panel .title.icon-business-center::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/business_center.svg");
}
.text-panel .title.icon-calendar-today::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/calendar_today.svg");
}
.text-panel .title.icon-construction::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/construction.svg");
}
.text-panel .title.icon-deployed-code::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/deployed_code.svg");
}
.text-panel .title.icon-door-front::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/door_front.svg");
}
.text-panel .title.icon-fast-forward::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/fast_forward.svg");
}
.text-panel .title.icon-format-paint::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/format_paint.svg");
}
.text-panel .title.icon-map::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/map.svg");
}
.text-panel .title.icon-mode-heat::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/mode_heat.svg");
}
.text-panel .title.icon-money-bag::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/money_bag.svg");
}
.text-panel .title.icon-palette::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/palette.svg");
}
.text-panel .title.icon-schedule::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/schedule.svg");
}
.text-panel .title.icon-sell::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/sell.svg");
}
.text-panel .title.icon-trending-up::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/trending_up.svg");
}
.text-panel .title.icon-star2::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/star2.svg");
}
.text-panel .title.icon-pulse::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/pulse.svg");
}
.text-panel .title.icon-gem::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/gem.svg");
}
.text-panel .title.icon-clockarrow::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/clockarrow.svg");
}
.text-panel .title.icon-house::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/house.svg");
}
.text-panel .title.icon-hammer::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/hammer.svg");
}
.text-panel .title.icon-heartpulse::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/heartpulse.svg");
}
.text-panel .title.icon-homemarker::after {
  mask-image: url("https://cdn.warbandits.gg/store/theme/homemarker.svg");
}

.faq-cont {
  border-radius: 6px;
  background: var(--color-brighter-bg);
}
.store-products-list + .faq-cont, .store-products-images + .faq-cont, .store-product-full + .faq-cont {
  margin-top: var(--content-padding);
}
.faq-cont > h3 {
  align-content: center;
  min-height: 72px;
  overflow: hidden;
  border-bottom: 1px solid #414141;
  padding: calc(var(--content-padding) / 2) var(--content-padding);
  font-size: 20px;
  font-weight: 400;
}
.faq-cont dl {
  padding: var(--content-padding);
}
.faq-cont dt {
  position: relative;
  padding: 16px 36px 16px 16px;
  background: #242424;
  border-bottom: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease allow-discrete;
}
.faq-cont dt.active {
  border-bottom-color: #414141;
  border-radius: 4px 4px 0 0;
}
.faq-cont dt ~ dt {
  margin-top: 12px;
}
.faq-cont dt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-color: var(--color-text);
  mask: url("https://cdn.warbandits.gg/store/theme/chevron.svg") center center/contain no-repeat;
  transition: rotate 0.15s ease;
}
.faq-cont dt.active::after {
  rotate: 180deg;
}
.faq-cont dd {
  height: auto;
  padding: 16px;
  border-radius: 0 0 4px 4px;
  background: #242424;
  transition: all 0.2s ease allow-discrete;
}
.faq-cont dd:not(.active) {
  height: 0;
  padding-block: 0;
  visibility: hidden;
  opacity: 0;
}