:root {
  --color-text: #fff;
  --color-text-darker: #e5e5e5;
  --color-text-secondary: #ccc;
  --color-text-dark: #0D0D0D;
  --color-bg: #000;
  --color-brighter-bg: #0D0D0D;
  --color-primary: rgb(0 72 255);
  --color-primary-hover: #fff;
  --color-primary-text: var(--color-text-dark);
  --color-primary-text-hover: var(--color-primary-text);
  --color-secondary: #ccc;
  --color-secondary-hover: #e5e5e5;
  --color-secondary-text: var(--color-text-dark);
  --color-secondary-text-hover: var(--color-secondary-text);
  --color-tertiary: transparent;
  --color-tertiary-hover: rgb(255 255 255 / 15%);
  --color-tertiary-text: var(--color-text);
  --color-tertiary-text-hover: var(--color-tertiary-text);
  --color-removed: #C12E2E;
  --color-sale-banner-bg: var(--color-primary);
  --color-sale-banner-text: var(--color-primary-text);
  --btn-size: 46px;
  --btn-icon-size: 18px;
  --btn-icon-gap: 8px;
  --tebex-footer-height: 35px;
  --widget-padding: 16px;
  --content-padding: var(--widget-padding);
  --content-inner-width: 1280px;
  --content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
  --sidebar-width: 287px;
  --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 > 600px) {
  :root {
    --widget-padding: 20px;
  }
}
@media (width > 960px) {
  :root {
    --widget-padding: 24px;
  }
}
@media (width > 960px) {
  :root {
    --content-padding: calc(var(--widget-padding) * 2);
  }
}
@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(siteHeaderTop),
::view-transition-group(siteHeader),
::view-transition-group(siteNavigation),
::view-transition-group(siteBgImage),
::view-transition-group(siteFooter) {
  animation-duration: var(--page-transition-duration);
  animation-timing-function: ease;
  z-index: 3;
}

::view-transition-group(siteBgImage) {
  z-index: 1;
}

html,
body {
  min-height: 100vh;
}

html {
  overflow: hidden scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg);
  scrollbar-gutter: stable;
}
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: var(--color-bg);
  accent-color: var(--color-primary);
  font-family: sans-serif;
  font-size: 16px;
}
body::before {
  view-transition-name: siteBgImage;
}

::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-weight: 700;
}

.text-content {
  line-height: 1.4;
  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: 24px;
}
.text-content p:not(:last-child) {
  margin-bottom: 12px;
}
.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-color-text: var(--color-text);
  --btn-color-text-hover: var(--btn-color-text);
  --btn-color-bg: var(--color-bg);
  --btn-color-bg-hover: var(--btn-color-bg);
  display: block;
  width: fit-content;
  height: var(--btn-size);
  padding: 0 10px;
  line-height: var(--btn-size);
  color: var(--btn-color-text);
  background-color: var(--btn-color-bg);
  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 {
    padding: 0 14px;
  }
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary: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 {
  color: var(--btn-color-text-hover);
  background-color: var(--btn-color-bg-hover);
}

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

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

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

.btn-icon,
.btn-glyph,
.btn-glyph-text,
.btn-icon-text {
  --btn-icon: url("https://template-assets.tebex.io/images/plus.svg");
}

.btn-icon {
  position: relative;
  flex: none;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: 0;
  background: var(--btn-icon) center center/var(--btn-icon-size) 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(--btn-icon-gap);
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  flex: none;
  background: var(--btn-icon) center center/var(--btn-icon-size) no-repeat;
}
@media (width <= 960px) {
  :root .btn-icon-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-icon-text::before {
    margin-right: 0;
  }
}

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

.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);
}
.btn-glyph-text::before {
  margin-right: var(--btn-icon-gap);
}
@media (width <= 960px) {
  :root .btn-glyph-text {
    justify-content: center;
    font-size: 0;
    color: transparent;
  }
  :root .btn-glyph-text::before {
    margin-right: 0;
  }
}

.link-text {
  color: var(--color-text-darker);
  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 {
  --btn-size: 36px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--color-text);
  background: var(--color-bg);
  height: calc(var(--btn-size) + 2px);
  border: 1px solid var(--color-secondary);
}
.quantity-field input[type=number] {
  position: relative;
  z-index: 1;
  flex: none;
  -moz-appearance: textfield;
  appearance: textfield;
  field-sizing: content;
  min-width: min(40px, var(--btn-size));
  height: var(--btn-size);
  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 -15px;
  min-width: auto;
  padding: 0 15px;
  order: 1;
  text-align: right;
  transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket {
  margin-right: 5px;
  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 {
  --btn-icon: url("https://template-assets.tebex.io/images/plus.svg");
  --btn-icon-size: 10px;
  position: relative;
  z-index: 2;
  flex: none;
}
.quantity-field .adjust.decrease {
  --btn-icon: url("https://template-assets.tebex.io/images/minus.svg");
  margin-right: auto;
  order: -1;
}
.quantity-field .adjust.increase {
  margin-left: auto;
  order: 100;
}

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

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

.site {
  display: grid;
  grid-auto-rows: auto 1fr auto;
  grid-template-columns: 100%;
  align-items: start;
  gap: var(--widget-padding);
  min-height: calc(100vh - var(--tebex-footer-height));
  font-size: 14px;
  view-transition-name: site;
}
@media (width > 960px) {
  .site {
    gap: calc(var(--widget-padding) * 2);
  }
}
.page-index.home-categories-enabled .site {
  grid-auto-rows: auto auto 1fr auto;
}

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

.site-header {
  position: relative;
  z-index: 2;
  view-transition-name: siteHeader;
}

.site-header-inner .user-name {
  contain: paint;
}
.site-header-inner .user-name .text-inner {
  overflow: hidden;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
  display: block;
  transition: visibility 0.15s ease-in-out, opacity 0.15s ease-in-out;
}
.site-header-inner .user-name .text-hover {
  margin-top: calc(var(--btn-size) * -1);
}
.site-header-inner .user-name:not(:hover):not(:focus-within) .text-hover {
  visibility: hidden;
  opacity: 0;
}
.site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
  visibility: hidden;
  opacity: 0;
}
@media (width <= 960px) {
  .site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--widget-padding) 0;
    position: relative;
    padding: 110px 0 calc(50px - var(--widget-padding));
    flex-wrap: wrap;
  }
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    --btn-icon: url("https://template-assets.tebex.io/images/burger.svg");
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
  }
  .site-header-inner .user-actions {
    display: flex;
    gap: 12px;
  }
  .site-header-inner .open-basket {
    --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    display: none;
  }
  .site-header-inner .site-title {
    width: 100%;
    line-height: 80px;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
  }
  .site-header-inner .site-title img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }
  .site-header-inner .info {
    display: block;
    position: relative;
    flex: none;
    width: 50%;
    padding-left: 42px;
    line-height: 18px;
  }
  .site-header-inner .info.discord {
    right: 0;
    left: auto;
    padding-left: 0;
    padding-right: 42px;
    text-align: right;
  }
  .site-header-inner .info .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  .site-header-inner .info.discord .image {
    left: auto;
    right: 0;
  }
  .site-header-inner .info .title {
    display: block;
    line-height: 20px;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 600;
  }
  .site-header-inner .info .action {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.15s ease-in-out;
    cursor: pointer;
  }
  .site-header-inner .info:hover .action {
    color: var(--color-primary-hover);
  }
  .site-header-inner .info .value {
    width: fit-content;
    border: 1px solid #606060;
    padding: 0 5px;
    background: rgba(96, 96, 96, 0.5);
    color: #CCC;
    font-size: 12px;
  }
}
@media (width > 960px) {
  .site-header-inner {
    position: relative;
    height: calc(355px - var(--widget-padding) * 2);
  }
  body.is-navigation-horizontal .site-header-inner {
    height: 355px;
  }
  .site-header-inner .actions {
    position: absolute;
    top: var(--widget-padding);
    left: 0;
    display: flex;
    gap: 6px;
  }
  .site-header-inner .toggle-navigation {
    display: none;
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: absolute;
    top: var(--widget-padding);
    right: 0;
  }
  .site-header-inner .user-actions {
    display: flex;
    gap: var(--widget-padding);
  }
  .site-header-inner .open-basket {
    --btn-icon: url("https://template-assets.tebex.io/images/checkout.svg");
  }
  .site-header-inner .user-name {
    --btn-icon: url("https://template-assets.tebex.io/images/user.svg");
  }
  .site-header-inner .site-title {
    position: absolute;
    inset: calc(var(--widget-padding) + 46px) 280px 0 280px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    line-height: 72px;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
  }
  .site-header-inner .site-title img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 128px;
  }
  .site-header-inner .info {
    position: absolute;
    top: calc(var(--widget-padding) + 46px);
    left: 0;
    bottom: 0;
    margin: auto 0;
    max-width: 280px;
    width: 33.3333333333%;
    height: fit-content;
    line-height: 22px;
  }
  .site-header-inner .info.server {
    padding-left: 64px;
  }
  .site-header-inner .info.discord {
    right: 0;
    left: auto;
    padding-right: 82px;
    text-align: right;
  }
  .site-header-inner .info .image {
    position: absolute;
    top: -50px;
    left: 0;
    bottom: -50px;
    margin: auto 0;
    width: 46px;
    height: 46px;
    object-fit: contain;
  }
  .site-header-inner .info.discord .image {
    left: auto;
    right: 0;
    width: 64px;
    height: 64px;
  }
  .site-header-inner .info .title {
    display: block;
    line-height: 28px;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
  }
  .site-header-inner .info .action {
    display: block;
    color: var(--color-primary);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.15s ease-in-out;
    cursor: pointer;
  }
  .site-header-inner .info:hover .action {
    color: var(--color-primary-hover);
  }
  .site-header-inner .info .value {
    width: fit-content;
    border: 1px solid #606060;
    padding: 0 6px;
    background: rgba(96, 96, 96, 0.5);
    color: #CCC;
    font-size: 16px;
  }
}

.site-sale-banner {
  margin-top: var(--widget-padding);
  margin-bottom: var(--widget-padding);
  padding: var(--widget-padding) var(--content-padding);
  color: var(--color-sale-banner-text);
  background: var(--color-sale-banner-bg);
  font-size: 21px;
  text-align: center;
}

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

.site-home-categories {
  display: grid;
  gap: var(--widget-padding);
}
@media (width > 600px) {
  .site-home-categories {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
    gap: var(--widget-padding) 36px;
  }
}
.site-home-categories .category {
  display: flex;
  align-items: center;
  gap: var(--widget-padding);
  flex-basis: 100%;
  line-height: 26px;
  font-size: 24px;
  font-weight: 700;
}
@media (width <= 600px) {
  .site-home-categories .category {
    width: 100%;
  }
}
@media (width > 600px) {
  .site-home-categories .category {
    flex-direction: column;
    align-items: center;
    gap: var(--widget-padding);
    text-align: center;
  }
}
.site-home-categories .category .image {
  max-width: 130px;
}
@media (width > 600px) {
  .site-home-categories .category .image {
    margin: auto;
    max-width: 100%;
  }
}
.site-home-categories .category .image-default {
  position: relative;
  width: min(70px, 100%);
  aspect-ratio: 1;
}
@media (width > 960px) {
  .site-home-categories .category .image-default {
    width: min(100px, 100%);
  }
}
.site-home-categories .category .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}

.store-text {
  padding: var(--content-padding);
  line-height: 1.375;
  font-size: 16px;
  font-weight: 400;
}

.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: #242424;
}
.popup.drawer .store-form input[type=text],
.popup.drawer .store-form input[type=password],
.popup.drawer .store-form input[type=email],
.popup.drawer .store-form input[type=number],
.popup.drawer .store-form input[type=search],
.popup.drawer .store-form input[type=url],
.popup.drawer .store-form input[type=tel],
.popup.drawer .store-form input[type=date],
.popup.drawer .store-form input[type=time],
.popup.drawer .store-form input[type=datetime-local],
.popup.drawer .store-form input[type=file],
.popup.drawer .store-form input[type=month],
.popup.drawer .store-form input[type=week],
.popup.drawer .store-form select,
.popup.drawer .store-form textarea {
  user-select: auto;
}
@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;
}

@media (width <= 960px) {
  .site-content-widgets {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (width > 960px) {
  .site-content-widgets {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    align-items: start;
    gap: 48px;
  }
  body.is-sidebar-right .site-content-widgets {
    grid-template-columns: 1fr var(--sidebar-width);
  }
  .site-content-widgets .store-sidebar {
    order: -1;
  }
  body.is-sidebar-right .site-content-widgets .store-sidebar {
    order: 1;
  }
}

.category-description {
  margin-bottom: var(--widget-padding);
  padding: var(--widget-padding);
  line-height: 1.4;
  font-size: 18px;
}

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

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

.store-products-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px 36px;
}

.store-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--widget-padding);
}
.store-product .product-title {
  font-size: 20px;
  font-weight: 600;
}
.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://template-assets.tebex.io/images/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%;
}
.store-product .image-default {
  position: relative;
  width: 136px;
  aspect-ratio: 1;
}
.store-product .image-default::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100px, 100%);
  height: min(100px, 100%);
  background-color: rgb(from var(--color-text) r g b/0.8);
  mask: url("https://template-assets.tebex.io/images/package-default.svg") center center/contain no-repeat;
}
.store-product .descr {
  color: var(--color-text-secondary);
}
.store-product .actions {
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.store-product:not(.store-product-full) .actions {
  flex-wrap: wrap;
}
.store-products-images .store-product:not(.store-product-full) .actions {
  flex: 1 1 auto;
  align-content: flex-end;
}
.store-product .price {
  font-size: 14px;
}
.store-product .price .discount {
  margin-right: 1ch;
  color: var(--color-removed);
  font-weight: 400;
  text-decoration-line: line-through;
}
.store-product .price strong {
  font-size: 20px;
  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 {
  --btn-size: 44px;
}
.store-product .half {
  flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
  flex: 1 1 auto;
}
.store-product .gift {
  --btn-icon: url("https://template-assets.tebex.io/images/gift.svg");
  flex: none;
}
.store-product .remove {
  --btn-icon: url("https://template-assets.tebex.io/images/delete.svg");
  flex: none;
}

.store-products-images .store-product {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: subgrid;
}
.store-products-images .store-product .image-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-products-list .store-product {
  padding: calc(var(--widget-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(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .actions {
    gap: calc(var(--widget-padding) * 0.75);
  }
  .store-products-list .store-product .actions .wide {
    min-width: 180px;
  }
  .store-products-list .store-product .image-link {
    margin: 0;
  }
  .store-products-list .store-product .product-title {
    margin-right: auto;
  }
}

.media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (width > 360px) {
  .media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 55px;
  }
}
@media (width > 600px) {
  .media-slider {
    --thumbs-size: 70px;
  }
}
@media (width > 960px) {
  .media-slider {
    --thumbs-size: 90px;
  }
}
@media (width > 1400px) {
  .media-slider {
    --thumbs-size: 110px;
  }
}
.media-slider .slider {
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  margin-bottom: var(--slider-spacing);
  background: var(--color-bg);
}
.media-slider .slider::part(container) {
  --swiper-navigation-size: 24px;
  --swiper-theme-color: var(--color-text);
}
.media-slider .slider::part(wrapper) {
  align-items: center;
}
.media-slider .slide {
  align-content: center;
}
.media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  padding: var(--slider-spacing);
  object-fit: contain;
}
.media-slider .slide-video {
  position: relative;
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
}
.media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}
.media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
}
.media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: var(--color-bg);
  cursor: pointer;
}
.media-slider .thumb-image,
.media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}
.media-slider .thumb:not(.active) .thumb-image,
.media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}
.media-slider .thumb-image {
  object-fit: contain;
}
.media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}
.media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}
.media-slider .open-lightbox {
  position: absolute;
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  align-content: center;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(5px);
  visibility: hidden;
  line-height: 0;
  font-size: 0;
  color: transparent;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover, .media-slider .open-lightbox:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.media-slider .open-lightbox::before {
  content: "";
  display: block;
  margin: auto;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: var(--color-tertiary-text);
  mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center center/contain no-repeat;
  transition: background-color 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover::before, .media-slider .open-lightbox:focus::before {
  background-color: var(--color-tertiary-text-hover);
}
.media-slider .slider:has(.swiper-slide-active .slide-image):hover ~ .open-lightbox,
.media-slider .open-lightbox:hover {
  opacity: 1;
  visibility: visible;
}

.popup.popup-media-slider {
  --slider-spacing: 6px;
  --thumbs-size: 40px;
  --thumb-padding: 6px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: minmax(0, auto) calc(var(--thumbs-size) + var(--slider-spacing));
  overflow: hidden;
  backdrop-filter: blur(10px);
}
@media (width > 360px) {
  .popup.popup-media-slider {
    --slider-spacing: 12px;
    --thumbs-size: 70px;
  }
}
@media (width > 600px) {
  .popup.popup-media-slider {
    --thumbs-size: 70px;
  }
}
@media (width > 960px) {
  .popup.popup-media-slider {
    --thumbs-size: 90px;
  }
}
@media (width > 1400px) {
  .popup.popup-media-slider {
    --thumbs-size: 120px;
  }
}
.popup.popup-media-slider .popup-close {
  top: var(--slider-spacing);
  right: var(--slider-spacing);
  z-index: 2;
  backdrop-filter: blur(5px);
}
.popup.popup-media-slider .slider {
  width: 100%;
}
.popup.popup-media-slider .slider::part(container) {
  --swiper-navigation-size: 30px;
  --swiper-theme-color: var(--color-text);
}
@media (width > 600px) {
  .popup.popup-media-slider .slider::part(container) {
    --swiper-navigation-size: 36px;
  }
}
.popup.popup-media-slider .slider::part(wrapper) {
  align-items: center;
}
.popup.popup-media-slider .slide {
  align-content: center;
  padding: var(--slider-spacing);
}
.popup.popup-media-slider .slide-image {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.popup.popup-media-slider .slide-video {
  position: relative;
  border-radius: 5px;
  background: #000 var(--preview-image) center center/cover no-repeat;
}
.popup.popup-media-slider .slide-frame {
  display: block;
  margin: auto;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 16/9;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.popup.popup-media-slider .slide-frame:not(.iframe-loaded) {
  visibility: hidden;
  opacity: 0;
}
.popup.popup-media-slider .thumbs {
  display: flex;
  gap: var(--slider-spacing);
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0 var(--slider-spacing) var(--slider-spacing);
}
.popup.popup-media-slider .thumb {
  display: block;
  width: var(--thumbs-size);
  height: var(--thumbs-size);
  padding: var(--thumb-padding);
  background-color: rgb(from var(--color-bg) r g b/0.7);
  cursor: pointer;
}
.popup.popup-media-slider .thumb-image,
.popup.popup-media-slider .thumb-youtube {
  width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
  transition: opacity 0.3s ease-in-out;
}
.popup.popup-media-slider .thumb:not(.active) .thumb-image,
.popup.popup-media-slider .thumb:not(.active) .thumb-youtube {
  opacity: 0.5;
}
.popup.popup-media-slider .thumb-image {
  object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube {
  position: relative;
  align-content: center;
}
.popup.popup-media-slider .thumb-youtube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}

.store-product-full {
  display: grid;
  gap: var(--widget-padding);
}
.store-product-full, .store-product-full.popup-content {
  padding-bottom: 0;
}
.store-product-full .product-title {
  font-size: 30px;
}
.store-product-full .image {
  max-width: 100%;
}
.store-product-full .actions {
  position: sticky !important;
  bottom: 0;
  z-index: 2;
  align-items: center;
  order: 1;
  margin: 0 calc(var(--widget-padding) * -1);
  padding: var(--widget-padding);
  background-color: rgb(from var(--color-brighter-bg) r g b/0.65);
  backdrop-filter: blur(5px);
}
.store-product-full .actions .half,
.store-product-full .actions .wide {
  flex: 0 1 240px;
}
.store-product-full .price {
  margin-right: auto;
}

.store-product-options .product-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}
.store-product-options .actions {
  position: sticky !important;
  bottom: var(--widget-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://template-assets.tebex.io/images/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.drawer {
    user-select: none;
  }
  .site-navigation .close-navigation {
    --btn-icon: url("https://template-assets.tebex.io/images/close.svg");
    --btn-icon-size: 24px;
    position: absolute;
    top: 12px;
    right: 72px;
  }
  .site-navigation .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0 60px 0 0;
    padding: 72px var(--widget-padding) var(--widget-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;
    }
  }
  .site-navigation.drawer .menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    margin-block: auto;
    width: 4px;
    height: 100px;
    background: rgb(from var(--color-text-secondary) r g b/0.33);
    border-radius: 2px;
    pointer-events: none;
  }
  body:not(.show-navigation) .site-navigation .menu {
    translate: -100% 0;
  }
  .site-navigation.touching .menu {
    transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
  }
  body:not(.show-navigation) .site-navigation .menu {
    opacity: 0.8;
    scale: 0.95;
  }
  .site-navigation.may-close .menu {
    opacity: 0.8;
  }
  .site-navigation ul ul {
    padding-left: var(--widget-padding);
    line-height: 22px;
    font-size: 16px;
  }
  .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://template-assets.tebex.io/images/log-out.svg") center center no-repeat;
    mask-size: contain;
  }
  .site-navigation .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .site-navigation .has-children > a {
    flex: 1 1 auto;
  }
  .site-navigation .has-children .toggle {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
  }
  .site-navigation .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .site-navigation .has-children.expanded > .toggle::before {
    rotate: 180deg;
  }
  .site-navigation .has-children > ul {
    width: 100%;
  }
  .site-navigation .has-children:not(.expanded) > ul {
    display: none;
  }
  .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;
  }
  .site-navigation ul ul a {
    padding: 8px 0;
  }
}

@media (width > 960px) {
  .navigation-horizontal .close-navigation {
    display: none;
  }
  .navigation-horizontal .menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: calc(var(--widget-padding) / 2);
    line-height: 28px;
    background: var(--color-brighter-bg);
    font-size: 18px;
    font-weight: 700;
  }
  .navigation-horizontal .menu > li > a {
    padding: 14px calc(var(--widget-padding) / 2);
  }
  .navigation-horizontal .menu > li.has-children > a {
    padding-right: 0;
  }
  .navigation-horizontal ul ul {
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
  }
  .navigation-horizontal > ul > li > a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18ch;
  }
  .navigation-horizontal .has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navigation-horizontal .has-children .toggle {
    --btn-size: 28px;
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
    flex: none;
  }
  .navigation-horizontal .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-horizontal .has-children:hover > .toggle::before {
    rotate: 180deg;
  }
  .navigation-horizontal .has-children > ul {
    position: absolute;
    top: calc(100% - var(--widget-padding) / 2);
    left: 0;
    width: max-content;
    padding: calc(var(--widget-padding) / 2) 0;
    background: rgb(from var(--color-brighter-bg) r g b/0.7);
    backdrop-filter: blur(10px);
    transition: all 0.15s ease-in-out;
  }
  .navigation-horizontal .has-children:not(:hover) > ul {
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
  }
  .navigation-horizontal a {
    display: block;
    transition: color 0.15s ease-in-out;
  }
  .navigation-horizontal a:hover, .navigation-horizontal a.link-active {
    color: var(--color-primary);
  }
  .navigation-horizontal li li a {
    width: 100%;
    max-width: 24ch;
    padding: 4px calc(var(--widget-padding) / 2);
    transition: all 0.15s ease-in-out;
  }
  .navigation-horizontal li li a:hover, .navigation-horizontal li li a.link-active {
    color: var(--color-bg) !important;
    background-color: var(--color-primary) !important;
  }
}

@media (width > 960px) {
  .navigation-vertical.widget {
    padding: calc(var(--widget-padding) / 2);
  }
  .navigation-vertical .close-navigation {
    display: none;
  }
  .navigation-vertical .menu {
    line-height: 28px;
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 400;
  }
  .navigation-vertical ul ul {
    padding-left: 12px;
    line-height: 22px;
    font-size: 15px;
  }
  .navigation-vertical .has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .navigation-vertical .has-children > a {
    flex: 1 1 auto;
    max-width: calc(100% - 46px);
  }
  .navigation-vertical .has-children .toggle {
    --btn-icon: url("https://template-assets.tebex.io/images/chevron.svg");
    --btn-icon-size: 20px;
    flex: none;
  }
  .navigation-vertical .has-children .toggle::before {
    transition: rotate 0.15s ease-in-out;
  }
  .navigation-vertical .has-children.expanded > .toggle::before {
    rotate: 180deg;
  }
  .navigation-vertical .has-children > ul {
    width: 100%;
  }
  .navigation-vertical .has-children:not(.expanded) > ul {
    display: none;
  }
  .navigation-vertical a {
    display: block;
    padding: calc(var(--widget-padding) / 2);
    transition: color 0.15s ease-in-out;
  }
  .navigation-vertical a:hover, .navigation-vertical a.link-active {
    color: var(--color-primary);
  }
  .navigation-vertical a.link-active {
    font-weight: 600;
  }
  .navigation-vertical ul ul a {
    padding: 8px calc(var(--widget-padding) / 2);
  }
}

.widget {
  padding: var(--widget-padding);
}
.widget + .widget {
  margin-top: var(--widget-padding);
}

.widget-title {
  margin-bottom: var(--widget-padding);
  font-size: 20px;
  font-weight: 700;
}

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

.widget-gift-card {
  text-align: center;
}
.widget-gift-card .gift-card-input {
  margin-bottom: 12px;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  font-size: 14px;
}
.popup .widget-gift-card .gift-card-input {
  background: #242424;
}
.widget-gift-card .check {
  width: 100%;
}

.widget-recent .purchase {
  display: flex;
  align-items: flex-start;
  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-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 .avatar {
  margin: 0 auto 12px;
  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-inner {
  position: relative;
  padding: 20px var(--content-padding);
}
@media (width <= 960px) {
  .site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--widget-padding);
  }
}
.site-footer-inner .site-footer-nav {
  line-height: 150%;
  font-size: 14px;
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav {
    margin-bottom: 12px;
  }
}
.site-footer-inner .site-footer-nav ul {
  display: flex;
}
@media (width <= 960px) {
  .site-footer-inner .site-footer-nav ul {
    flex-direction: column;
    gap: var(--widget-padding);
    text-align: center;
  }
}
@media (width > 960px) {
  .site-footer-inner .site-footer-nav ul {
    gap: calc(var(--widget-padding) * 2);
  }
}
.site-footer-inner .site-footer-nav a {
  color: var(--color-text-darker);
  text-decoration-line: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease-in-out;
}
.site-footer-inner .site-footer-nav a:hover {
  color: var(--color-primary);
}
.site-footer-inner .copyright {
  line-height: 16px;
  color: var(--color-text-secondary);
  font-size: 12px;
}
.site-footer-inner .we-accept {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width > 960px) {
  .site-footer-inner .we-accept {
    position: absolute;
    top: 0;
    right: var(--content-padding);
    bottom: 0;
    pointer-events: none;
  }
}
.site-footer-inner .we-accept li {
  display: block;
}
.site-footer-inner .we-accept img {
  display: block;
  max-width: 57px;
  max-height: 26px;
}

.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.drawer {
  user-select: none;
}
.popup.may-close {
  user-select: none;
  background-color: rgba(0, 0, 0, 0.4);
}
.popup[hidden] {
  opacity: 0;
  display: none;
}

.popup-scroll-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: calc(var(--content-padding) / 2);
  overscroll-behavior: none;
}
@media (width > 600px) {
  .popup-scroll-cont {
    padding: var(--content-padding);
  }
}
@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(--widget-padding);
  background: var(--color-brighter-bg);
  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(--widget-padding) * 2);
  }
}
.popup.touching .popup-content {
  transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
}
.popup.may-close .popup-content, .popup.drawer[hidden] .popup-content {
  opacity: 0.8;
  scale: 0.95;
}
.popup.drawer-up[hidden] .popup-content {
  translate: 0 -100%;
}
.popup.drawer-down[hidden] .popup-content {
  translate: 0 100%;
}
.popup.drawer-right[hidden] .popup-content {
  translate: 100% 0;
}
.popup.drawer-left[hidden] .popup-content {
  translate: -100% 0;
}
.popup:not(.drawer)[hidden] .popup-content {
  translate: 0 20px;
}
.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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after, .drawer-left .popup-content::after, .drawer-right .popup-content::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(from var(--color-text-secondary) r g b/0.33);
  border-radius: 2px;
  pointer-events: none;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after {
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 4px;
  width: 100px;
}
.drawer-up .popup-content::after {
  bottom: 7px;
}
.drawer-down .popup-content::after {
  top: 7px;
}
.drawer-left .popup-content::after, .drawer-right .popup-content::after {
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 4px;
  height: 100px;
}
.drawer-left .popup-content::after {
  right: 7px;
}
.drawer-right .popup-content::after {
  left: 7px;
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  line-height: 0;
  font-size: 0;
  color: transparent;
  transition: all 0.15s ease-in-out;
}
.popup-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
}
@media (width <= 600px) {
  .popup-close {
    width: 50px;
    height: 50px;
  }
  .popup-close::before {
    mask-size: 24px;
  }
}
.popup-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.store-product-popup-content {
  max-width: 800px;
}

.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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}

.login-popup {
  z-index: 1002;
  background: rgb(16 52 80 / 0.48);
  backdrop-filter: blur(10px);
}

.login-popup-content {
  display: grid;
  justify-items: center;
  width: min(560px, calc(100vw - 32px)) !important;
  max-width: 560px !important;
  padding: clamp(58px, 6vw, 72px) clamp(30px, 5vw, 58px) clamp(44px, 5vw, 58px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.95);
  background:
    linear-gradient(180deg, #f6fcff 0%, #ffffff 28%, #ffffff 100%);
  box-shadow:
    0 34px 86px rgb(16 52 80 / 0.26),
    0 12px 32px rgb(16 52 80 / 0.12),
    inset 0 1px 0 rgb(255 255 255 / 0.86);
}
.login-popup-content::after {
  display: none;
}
.login-popup .popup-scroll-cont {
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 5vw, 52px);
}
.login-popup .popup-close {
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #14244b;
  background: transparent;
  opacity: 0.72;
  box-shadow: none;
}
.login-popup .popup-close::before {
  background-color: currentColor;
  mask-size: 27px;
}
.login-popup .popup-close:hover {
  background: rgb(20 43 82 / 0.06);
  opacity: 1;
}

body.page-eazy-login {
  background: linear-gradient(180deg, #9ee1ff 0%, #e8f8ff 48%, #ffffff 100%);
}

body.page-eazy-login .site {
  background: transparent;
}

.eazy-login-page {
  display: grid;
  place-items: center;
  min-height: min(720px, calc(100vh - 180px));
  padding: clamp(34px, 6vw, 82px) var(--content-padding);
  background:
    linear-gradient(180deg, rgb(145 216 253 / 0.9) 0%, rgb(231 249 255 / 0.96) 45%, #ffffff 100%);
}

.login-popup .eazy-login-page {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.eazy-login-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: center;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: clamp(58px, 6vw, 72px) clamp(30px, 5vw, 58px) clamp(44px, 5vw, 58px);
  border: 1px solid rgb(255 255 255 / 0.95);
  border-radius: 34px;
  color: #13234b;
  text-align: center;
  background:
    linear-gradient(180deg, rgb(246 252 255 / 0.96) 0%, #ffffff 42%, #ffffff 100%);
  box-shadow:
    0 30px 72px rgb(36 88 124 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.86);
}

.eazy-login-card::before {
  display: none;
}

.eazy-login-card::after {
  display: none;
}

.login-popup-content .eazy-login-card {
  display: contents;
}

.eazy-login-copy {
  width: 100%;
  margin-bottom: 36px;
  text-align: center;
}

.eazy-login-copy h2 {
  margin: 0 0 16px;
  color: #112450;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
}

.eazy-login-copy p {
  max-width: 390px;
  margin: 0 auto;
  color: #315075;
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 800;
  line-height: 1.42;
  text-align: center;
}

.eazy-login-form,
.eazy-login-field {
  width: 100%;
  max-width: 430px;
  margin: 0;
}

.login-popup-content .eazy-login-copy,
.login-popup-content .eazy-login-form,
.login-popup-content .eazy-login-field {
  width: 100%;
  max-width: 430px;
}

.store-form .eazy-login-form,
.store-form .eazy-login-field {
  margin: 0;
}

.eazy-login-label {
  display: block;
  margin: 0 0 14px;
  color: #3a5680;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.eazy-login-card input[type=text],
.login-popup-content input[type=text],
.login-popup-content input[name=ign] {
  width: 100%;
  min-height: 68px;
  margin: 0 !important;
  padding: 0 26px !important;
  border: 2px solid #d6efff !important;
  border-radius: 999px !important;
  color: #13234b !important;
  background: #f5fcff !important;
  box-shadow:
    inset 0 2px 0 rgb(255 255 255 / 0.86),
    0 12px 26px rgb(26 105 162 / 0.08);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  appearance: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.popup .eazy-login-card input[type=text],
.popup .login-popup-content input[type=text],
.popup .login-popup-content input[name=ign] {
  color: #13234b !important;
  background: #f5fcff !important;
}

.eazy-login-card input[type=text]::placeholder,
.login-popup-content input[type=text]::placeholder,
.login-popup-content input[name=ign]::placeholder {
  color: #718cac;
  opacity: 1;
}

.eazy-login-card input[type=text]:focus,
.login-popup-content input[type=text]:focus,
.login-popup-content input[name=ign]:focus {
  outline: none;
  border-color: #31aaff !important;
  background: #ffffff !important;
  box-shadow:
    0 0 0 5px rgb(49 170 255 / 0.16),
    0 16px 32px rgb(26 105 162 / 0.12);
}

.eazy-login-submit,
.login-popup-content .eazy-login-submit,
.login-popup-content button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  margin-top: 18px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(180deg, #45b9ff 0%, #249eea 100%) !important;
  box-shadow: 0 16px 30px rgb(29 150 232 / 0.25);
  font-size: clamp(18px, 3vw, 21px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.eazy-login-submit:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 20px 36px rgb(29 150 232 / 0.32);
}

.eazy-login-submit:active {
  transform: translateY(1px);
}

@media (width <= 520px) {
  .login-popup-content {
    width: calc(100vw - 22px) !important;
    max-width: calc(100vw - 22px) !important;
    border-radius: 26px;
  }

  .login-popup .popup-scroll-cont {
    padding: 18px 11px;
  }

  .login-popup .popup-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .eazy-login-card {
    padding: 54px 22px 34px;
    border-radius: 26px;
  }

  .login-popup-content .eazy-login-card {
    display: contents;
  }

  .eazy-login-copy {
    margin-bottom: 32px;
  }

  .eazy-login-card input[type=text],
  .login-popup-content input[type=text],
  .login-popup-content input[name=ign],
  .eazy-login-submit,
  .login-popup-content .eazy-login-submit,
  .login-popup-content button[type=submit] {
    min-height: 64px;
  }
}

.basket {
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #14244b;
  background: #ffffff;
}
.site-content .basket {
  display: none;
}
.basket .basket-empty {
  margin: auto;
  text-align: center;
  font-size: 18px;
}
.basket .basket-header {
  width: 100%;
  padding: 44px 46px 0;
  background: #ffffff;
}
@media (width > 960px) {
  .basket .basket-header {
    padding-top: 46px;
  }
}
.basket .basket-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 62px;
  padding-left: 74px;
}
.basket .basket-currency-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 999px;
  color: #6f4300;
  background: #ffe2aa;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
}
.basket .basket-currency-pill::after {
  display: none;
}
.basket .basket-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 228px;
  margin-top: 42px;
  padding: 42px 44px;
  border-radius: 18px;
  color: #674100;
  background-color: #ffc84d;
  background-image: var(--basket-hero-image), linear-gradient(135deg, #ffd66c, #ffbc3d);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 22px 46px rgb(211 137 28 / 0.2), inset 0 1px 0 rgb(255 255 255 / 0.38);
}
.basket .basket-hero::before {
  display: none;
}
.basket .basket-hero::after {
  display: none;
}
.basket .basket-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}
.basket .basket-title {
  max-width: 100%;
  color: #674100;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgb(255 255 255 / 0.22), 0 12px 22px rgb(103 65 0 / 0.13);
}
.basket .basket-hero p {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  color: #7b520d;
  font-size: 24px;
  font-weight: 900;
}
.basket .basket-hero p strong {
  font-size: inherit;
  font-weight: 900;
}
.basket .basket-change-username {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 32px;
  border-radius: 999px;
  color: #13234b;
  background: linear-gradient(180deg, #f24a55, #df3948);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgb(223 57 72 / 0.2);
}
.basket .basket-content {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.basket .basket-empty-card {
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 44px 46px;
  padding: 42px 38px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(180deg, #f04b56, #e73f4c);
  text-align: center;
  box-shadow: 0 18px 38px rgb(223 57 72 / 0.24);
}
.basket .basket-empty-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 10px;
  color: #df3948;
  background: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.basket .basket-empty-card p {
  max-width: 36ch;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}
.basket .basket-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 44px 46px;
}
.basket .basket-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 178px;
  align-items: center;
  gap: 24px;
  padding: 40px 42px;
  border-radius: 18px;
  background: #eefaff;
  box-shadow: 0 16px 34px rgb(48 113 158 / 0.08), inset 0 1px 0 rgb(255 255 255 / 0.82);
}
.basket .basket-item .info {
  display: grid;
  align-content: center;
  min-width: 0;
}
.basket .basket-item .options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  color: #1f345b;
  font-size: 14px;
  font-weight: 700;
}
.basket .basket-item .options:has(li) {
  padding: 0;
}
.basket .basket-item .options:not(:has(li)) {
  display: none;
}
.basket .basket-item .options li {
  display: block;
  padding: 0;
}
.basket .basket-item .options li::before {
  content: "•";
  display: inline-block;
  margin-right: 0.4em;
  width: auto;
  height: auto;
  vertical-align: baseline;
  background: none;
}
.basket .basket-item .title {
  color: #13234b;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.basket .basket-item .title span {
  white-space: nowrap;
}
.basket .basket-item .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
  color: #35aefd;
  font-size: 23px;
  font-weight: 900;
}
.basket .basket-item .price strong {
  font-size: inherit;
  font-weight: 900;
}
.basket .basket-price-interval {
  font-size: inherit;
  font-weight: 900;
}
.basket .basket-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.basket .basket-item .quantity-field {
  --btn-size: 70px;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 999px;
  color: #8da1bd;
  background: #e2f0f8;
  overflow: hidden;
}
.basket .basket-item .quantity-field .adjust {
  display: none;
}
.basket .basket-item .quantity-field input[type=number] {
  width: 100%;
  min-width: 0;
  color: #9aaac1;
  font-size: 24px;
  font-weight: 900;
}
.basket .basket-item .remove {
  --btn-size: 70px;
  --btn-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M16.5%204.478v.227a48.816%2048.816%200%200%201%203.878.512.75.75%200%201%201-.256%201.478l-.209-.035-1.005%2013.07a3%203%200%200%201-2.991%202.77H8.084a3%203%200%200%201-2.991-2.77L4.087%206.66l-.209.035a.75.75%200%200%201-.256-1.478A48.567%2048.567%200%200%201%207.5%204.705v-.227c0-1.564%201.213-2.9%202.816-2.951a52.662%2052.662%200%200%201%203.369%200c1.603.051%202.815%201.387%202.815%202.951Zm-6.136-1.452a51.196%2051.196%200%200%201%203.273%200C14.39%203.05%2015%203.684%2015%204.478v.113a49.488%2049.488%200%200%200-6%200v-.113c0-.794.609-1.428%201.364-1.452Zm-.355%205.945a.75.75%200%201%200-1.5.058l.347%209a.75.75%200%201%200%201.499-.058l-.346-9Zm5.48.058a.75.75%200%201%200-1.498-.058l-.347%209a.75.75%200%200%200%201.5.058l.345-9Z%22%20clip-rule%3D%22evenodd%22%20%2F%3E%3C%2Fsvg%3E");
  --btn-icon-size: 31px;
  --btn-color-text: #ffffff;
  --btn-color-text-hover: #ffffff;
  --btn-color-bg: #ef404c;
  --btn-color-bg-hover: #e63845;
  flex: none;
  border-radius: 999px;
  background: #ef404c;
  box-shadow: 0 12px 22px rgb(239 64 76 / 0.2);
}
.basket .basket-checkout {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 1.75fr);
  align-items: center;
  gap: 34px;
  padding: 36px 46px 46px;
  background: #ffffff;
}
@media (width > 960px) {
  .basket .basket-checkout {
    padding-bottom: 46px;
  }
}
.basket .basket-checkout h3 {
  display: grid;
  gap: 10px;
  margin: 0;
  color: #674100;
  font-size: 20px;
  font-weight: 900;
}
.basket .basket-checkout .total {
  color: #674100;
  font-size: 31px;
  font-weight: 900;
}
.basket .basket-checkout .total strong {
  font-size: inherit;
  font-weight: 900;
}
.basket .basket-checkout .checkout {
  --btn-size: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 92px;
  border-radius: 999px;
  color: #674100;
  background: linear-gradient(180deg, #ffd66c, #ffbd42);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 20px 38px rgb(211 137 28 / 0.28), inset 0 1px 0 rgb(255 255 255 / 0.55);
}
.basket .basket-checkout .checkout::before {
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20d%3D%22M2.25%202.25a.75.75%200%200%200%200%201.5h1.386c.17%200%20.318.114.362.278l2.558%209.592a3.752%203.752%200%200%200-2.806%203.63c0%20.414.336.75.75.75h15.75a.75.75%200%200%200%200-1.5H5.378A2.25%202.25%200%200%201%207.5%2015h11.218a.75.75%200%200%200%20.674-.421%2060.358%2060.358%200%200%200%202.96-7.228.75.75%200%200%200-.525-.965A60.864%2060.864%200%200%200%205.68%204.509l-.232-.867A1.875%201.875%200%200%200%203.636%202.25H2.25ZM3.75%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200ZM16.5%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200Z%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}
.basket .basket-checkout-empty {
  display: block;
}
.basket .basket-checkout .back-to-shopping {
  background: linear-gradient(180deg, #f04b56, #e73f4c);
  color: #ffffff;
  box-shadow: 0 18px 34px rgb(223 57 72 / 0.26);
}
.basket .basket-checkout .back-to-shopping::before {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20d%3D%22M9.195%2018.44c1.25.714%202.805-.189%202.805-1.629v-2.34l6.945%203.968c1.25.715%202.805-.188%202.805-1.628V8.69c0-1.44-1.555-2.343-2.805-1.628L12%2011.029v-2.34c0-1.44-1.555-2.343-2.805-1.628l-7.108%204.061c-1.26.72-1.26%202.536%200%203.256l7.108%204.061Z%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
  transform: none;
}

body.page-eazy-checkout {
  background: #dff6ff;
}

body.page-eazy-checkout .site {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgb(255 255 255 / 0.78), transparent 34rem),
    linear-gradient(180deg, #d9f5ff 0%, #f8fcff 48%, #e8f8ff 100%);
}

body.page-eazy-checkout .site-header {
  display: none;
}

body.page-eazy-checkout .site-content.eazy-checkout-content {
  width: 100%;
  min-height: 100vh;
  padding: clamp(32px, 5vw, 72px) clamp(18px, 4vw, 64px);
}

body.page-eazy-checkout .eazy-checkout-shell {
  display: grid;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

body.page-eazy-checkout .eazy-checkout-intro {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #13234b;
  text-align: center;
}

body.page-eazy-checkout .eazy-checkout-store-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #087fc5;
  background: rgb(255 255 255 / 0.68);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.72);
}

body.page-eazy-checkout .eazy-checkout-intro h1 {
  margin: 0;
  color: #13234b;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-eazy-checkout .eazy-checkout-intro p {
  max-width: 42rem;
  color: #365579;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

body.page-eazy-checkout .site-content .basket {
  display: flex;
}

body.page-eazy-checkout .basket {
  z-index: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgb(45 103 142 / 0.18), inset 0 1px 0 rgb(255 255 255 / 0.82);
}

body.page-eazy-checkout .basket .basket-header {
  padding: clamp(24px, 3.5vw, 42px) clamp(22px, 4vw, 48px) 0;
}

body.page-eazy-checkout .basket .basket-topbar {
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding-left: 0;
}

body.page-eazy-checkout .basket-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #264268;
  background: #eef8ff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.88);
}

body.page-eazy-checkout .basket .basket-currency-pill,
body.page-eazy-checkout .basket .basket-change-username {
  min-height: 58px;
  font-size: 17px;
}

body.page-eazy-checkout .basket .basket-hero {
  min-height: clamp(190px, 25vw, 270px);
  margin-top: 28px;
  border-radius: 26px;
}

body.page-eazy-checkout .basket .basket-title {
  font-size: clamp(38px, 5.4vw, 72px);
}

body.page-eazy-checkout .basket .basket-hero p {
  font-size: clamp(20px, 2.6vw, 30px);
}

body.page-eazy-checkout .basket .basket-content {
  overflow: visible;
}

body.page-eazy-checkout .basket .basket-items {
  padding: clamp(26px, 4vw, 48px);
}

body.page-eazy-checkout .basket .basket-item {
  min-height: clamp(170px, 16vw, 218px);
  padding: clamp(30px, 4vw, 52px);
  border-radius: 26px;
  background: #eefaff;
  box-shadow: 0 18px 46px rgb(48 113 158 / 0.1);
}

body.page-eazy-checkout .basket .basket-item .title {
  font-size: clamp(28px, 3.2vw, 44px);
}

body.page-eazy-checkout .basket .basket-item .price {
  font-size: clamp(22px, 2.4vw, 30px);
}

body.page-eazy-checkout .basket .basket-item .quantity-field,
body.page-eazy-checkout .basket .basket-item .remove {
  --btn-size: 76px;
  width: 76px;
  height: 76px;
}

body.page-eazy-checkout .basket .basket-item .quantity-field {
  pointer-events: none;
}

body.page-eazy-checkout .basket .basket-item .remove {
  --btn-icon-size: 29px;
}

body.page-eazy-checkout .basket .basket-checkout {
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  padding: 0 clamp(26px, 4vw, 48px) clamp(28px, 4vw, 52px);
}

body.page-eazy-checkout .basket .basket-checkout h3 {
  font-size: 22px;
}

body.page-eazy-checkout .basket .basket-checkout .total {
  font-size: clamp(34px, 3vw, 44px);
}

body.page-eazy-checkout .basket .basket-checkout .checkout {
  min-height: 92px;
  font-size: clamp(21px, 2vw, 27px);
}

body.page-eazy-checkout .basket-empty-card {
  margin: clamp(28px, 4vw, 48px);
}

body.page-eazy-checkout .basket-checkout-empty {
  display: flex;
  justify-content: center;
}

.basket-popup .basket-back-link {
  display: none;
}

.basket-popup .popup-scroll-cont {
  justify-content: flex-end;
  padding: 0;
}
.basket-popup .popup-close {
  top: 38px;
  left: 34px;
  right: auto;
  z-index: 1005;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: transparent;
  color: #1b2d4f;
  opacity: 1;
}
.basket-popup .popup-close::before {
  background-color: currentColor;
  mask-size: 34px;
}
.basket-popup .popup-close:hover {
  background: transparent;
  opacity: 0.62;
}

.basket-popup-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 680px;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  color: #13234b;
  background: #ffffff;
  box-shadow: -24px 0 70px rgb(20 54 85 / 0.18);
  transition: translate var(--fade-duration) ease-in-out;
}
@media (width <= 520px) {
  .basket .basket-header {
    padding-inline: 28px;
  }

  .basket .basket-topbar {
    gap: 10px;
    min-height: 54px;
    padding-left: 58px;
  }

  .basket .basket-currency-pill {
    min-width: 108px;
    min-height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }

  .basket .basket-change-username {
    min-height: 54px;
    padding: 0 22px;
    font-size: 16px;
  }

  .basket .basket-hero {
    margin-top: 28px;
    min-height: 190px;
    padding: 34px 28px;
  }

  .basket .basket-title {
    font-size: 36px;
  }

  .basket .basket-hero p {
    font-size: 20px;
  }

  .basket .basket-items {
    padding: 28px;
  }

  .basket .basket-item {
    min-height: 156px;
    padding: 30px 26px;
  }

  .basket .basket-item .title {
    font-size: 25px;
  }

  .basket .basket-item .price {
    font-size: 20px;
  }

  .basket .basket-item .quantity-field,
  .basket .basket-item .remove {
    --btn-size: 60px;
    width: 60px;
    height: 60px;
  }

  .basket .basket-checkout {
    padding-inline: 28px;
  }

  .basket .basket-checkout .checkout {
    min-height: 80px;
    font-size: 20px;
  }
}
@media (width <= 380px) {
  .basket .basket-item {
    grid-template-columns: 1fr;
  }

  .basket .basket-item-actions {
    justify-content: space-between;
  }

  .basket .basket-checkout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (width <= 760px) {
  body.page-eazy-checkout .site-content.eazy-checkout-content {
    padding: 24px 14px;
  }

  body.page-eazy-checkout .eazy-checkout-shell {
    gap: 20px;
  }

  body.page-eazy-checkout .basket {
    border-radius: 26px;
  }

  body.page-eazy-checkout .basket .basket-topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 0;
  }

  body.page-eazy-checkout .basket-back-link {
    grid-column: 1 / -1;
  }

  body.page-eazy-checkout .basket .basket-currency-pill,
  body.page-eazy-checkout .basket .basket-change-username,
  body.page-eazy-checkout .basket-back-link {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 14px;
    font-size: 14px;
  }

  body.page-eazy-checkout .basket .basket-hero {
    margin-top: 20px;
    min-height: 170px;
    padding: 28px 18px;
    border-radius: 20px;
  }

  body.page-eazy-checkout .basket .basket-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  body.page-eazy-checkout .basket .basket-item .price {
    justify-content: center;
  }

  body.page-eazy-checkout .basket .basket-item-actions {
    width: 100%;
    justify-content: center;
  }

  body.page-eazy-checkout .basket .basket-checkout {
    grid-template-columns: 1fr;
    text-align: center;
  }

}
@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-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/loading.svg") center center/contain no-repeat;
}
.basket-popup-content.updating > * {
  filter: grayscale(100%);
}

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

.toast {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 46px;
  padding: 0 58px;
  background: var(--color-brighter-bg);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 -12px 30px rgb(18 45 72 / 0.12);
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.36s ease,
    transform 0.36s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.toast p {
  margin: 0;
}
@starting-style {
  .toast {
    opacity: 0.24;
    transform: translate3d(0, 110%, 0);
  }
}
.toast[hidden] {
  display: flex;
  opacity: 0.18;
  transform: translate3d(0, 110%, 0);
}
.toast.toast-warning {
  background: #cab600;
  color: #ffffff;
}
.toast.toast-error {
  background: #C12E2E;
  color: #ffffff;
}
.toast.toast-success {
  background: #4caf50;
  color: #ffffff;
}
.toast.toast-cart-success {
  background: linear-gradient(180deg, #66c773, #58b766);
  color: #ffffff;
}
.toast.toast-cart-remove {
  background: linear-gradient(180deg, #f04d58, #e63e4b);
  color: #ffffff;
}
.toast.toast-cart-success::before,
.toast.toast-cart-remove::before {
  content: "";
  flex: none;
  width: 25px;
  height: 25px;
  background: currentColor;
}
.toast.toast-cart-success::before {
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.25%2012c0-5.385%204.365-9.75%209.75-9.75s9.75%204.365%209.75%209.75-4.365%209.75-9.75%209.75S2.25%2017.385%202.25%2012Zm13.36-1.814a.75.75%200%201%200-1.22-.872l-3.236%204.53L9.53%2012.22a.75.75%200%200%200-1.06%201.06l2.25%202.25a.75.75%200%200%200%201.14-.094l3.75-5.25Z%22%20clip-rule%3D%22evenodd%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}
.toast.toast-cart-remove::before {
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M12%202.25c-5.385%200-9.75%204.365-9.75%209.75s4.365%209.75%209.75%209.75%209.75-4.365%209.75-9.75S17.385%202.25%2012%202.25Zm-1.72%206.97a.75.75%200%201%200-1.06%201.06L10.94%2012l-1.72%201.72a.75.75%200%201%200%201.06%201.06L12%2013.06l1.72%201.72a.75.75%200%201%200%201.06-1.06L13.06%2012l1.72-1.72a.75.75%200%201%200-1.06-1.06L12%2010.94l-1.72-1.72Z%22%20clip-rule%3D%22evenodd%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}
.toast.toast-cart-success .toast-close,
.toast.toast-cart-remove .toast-close {
  display: none;
}

.toast-close {
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  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::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-text);
  mask: url("https://template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
}
.toast-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

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

.store-category-tiered-header {
  margin-bottom: var(--widget-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://template-assets.tebex.io/images/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: 1ch;
  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(--widget-padding);
}
.store-quote .wide {
  flex: 1 1 50%;
}

/* EazyCraft light rank storefront */
body.page-index,
body.page-ranks-catalog {
  --color-text: #16264c;
  --color-text-darker: #526a88;
  --color-text-secondary: #6b82a1;
  --color-bg: #e8f7ff;
  --color-brighter-bg: #ffffff;
  --color-primary: #33aaff;
  --color-primary-hover: #168be6;
  --color-primary-text: #ffffff;
  --color-secondary: #e8f4ff;
  --color-secondary-hover: #d9ecfb;
  --color-secondary-text: #1b345a;
  --color-tertiary-hover: rgb(49 170 255 / 14%);
  --color-tertiary-text: #244463;
  --eazy-ink: #13234b;
  --eazy-muted: #627b98;
  --eazy-sky: #35aefd;
  --eazy-sky-dark: #188ee0;
  --eazy-green: #27cfa2;
  --eazy-coral: #f16d5d;
  --eazy-pink: #ee46c9;
  --eazy-purple: #8458ff;
  --eazy-gold: #ffc24b;
  --eazy-check: #35b7ff;
  --eazy-card: #ffffff;
  --eazy-card-soft: #f5fbff;
  background-color: #91d8fd;
  background:
    linear-gradient(180deg, #91d8fd 0, #91d8fd 18rem, #c9f0ff 36rem, #e8f8ff 58rem, #f6fbf1 100%),
    #91d8fd;
}

body.page-index::before,
body.page-index::after,
body.page-ranks-catalog::before,
body.page-ranks-catalog::after {
  display: none;
}

body.page-index .site,
body.page-ranks-catalog .site {
  gap: 0;
}

body.page-index .site-footer,
body.page-ranks-catalog .site-footer {
  margin-top: 0;
}

.eazy-catalog-header {
  position: relative;
  z-index: 3;
  width: 100%;
  view-transition-name: siteHeader;
}

.eazy-catalog-clouds {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: clamp(210px, 24vw, 330px);
  padding: clamp(20px, 3vw, 38px) var(--content-padding) clamp(48px, 5vw, 72px);
  overflow: hidden;
  background-color: #91d8fd;
  background-image: var(--eazy-header-image);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.eazy-catalog-clouds::before,
.eazy-catalog-clouds::after {
  display: none;
}

.eazy-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(760px, 84vw);
  color: #ffffff;
  font-size: clamp(64px, 12vw, 156px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgb(19 35 75 / 0.25), 0 22px 42px rgb(0 0 0 / 0.22);
}

.eazy-hero-logo img {
  display: block;
  max-width: min(760px, 84vw);
  max-height: clamp(150px, 24vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgb(0 0 0 / 0.22));
}

.eazy-server-badge {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 2vw, 22px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(34px, 4vw, 48px);
  padding: 0 clamp(22px, 4vw, 46px);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 10px;
  color: #ffffff;
  background: rgb(0 0 0 / 0.42);
  font-size: clamp(15px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgb(0 0 0 / 0.35);
  box-shadow: 0 16px 34px rgb(0 0 0 / 0.18), inset 0 1px 0 rgb(255 255 255 / 0.14);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.eazy-catalog-actions {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  width: min(1540px, calc(100vw - 28px));
  margin: -27px auto 0;
  pointer-events: none;
}

.eazy-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 164px;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #835000;
  background: linear-gradient(180deg, #ffd66f, #ffad2e);
  box-shadow: 0 16px 28px rgb(209 128 16 / 0.24), inset 0 1px 0 rgb(255 255 255 / 0.7);
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  transition: transform 0.16s ease-in-out, box-shadow 0.16s ease-in-out, background-color 0.16s ease-in-out;
}

.eazy-cart-button:focus-visible,
.eazy-hero-logo:focus-visible {
  outline: 3px solid rgb(51 170 255 / 0.42);
  outline-offset: 3px;
}

.eazy-cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgb(209 128 16 / 0.3), inset 0 1px 0 rgb(255 255 255 / 0.78);
}

.eazy-cart-icon {
  width: 22px;
  height: 22px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20d%3D%22M2.25%202.25a.75.75%200%200%200%200%201.5h1.386c.17%200%20.318.114.362.278l2.558%209.592a3.752%203.752%200%200%200-2.806%203.63c0%20.414.336.75.75.75h15.75a.75.75%200%200%200%200-1.5H5.378A2.25%202.25%200%200%201%207.5%2015h11.218a.75.75%200%200%200%20.674-.421%2060.358%2060.358%200%200%200%202.96-7.228.75.75%200%200%200-.525-.965A60.864%2060.864%200%200%200%205.68%204.509l-.232-.867A1.875%201.875%200%200%200%203.636%202.25H2.25ZM3.75%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200ZM16.5%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200Z%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}

.eazy-cart-label {
  color: #6f4300;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eazy-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  color: #ffffff;
  background: #35aefd;
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.34);
}

.eazy-catalog-content {
  position: relative;
  z-index: 4;
  max-width: none;
  margin-top: clamp(20px, 3vw, 42px);
  padding-right: clamp(12px, 1.5vw, 24px);
  padding-left: clamp(12px, 1.5vw, 24px);
  padding-top: 0;
  padding-bottom: 34px;
}

.eazy-catalog {
  width: 100%;
}

.eazy-redirect {
  justify-self: center;
  padding-top: 34px;
}

.eazy-catalog-title {
  margin: clamp(30px, 5vw, 68px) 0 clamp(34px, 4vw, 54px);
  color: var(--eazy-ink);
  font-size: clamp(64px, 10vw, 118px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.home-rank-catalog {
  width: 100%;
  overflow-x: visible;
  overflow-y: visible;
}

.home-rank-table {
  --rank-gap: 16px;
  --rank-label-width: minmax(300px, 0.95fr);
  --rank-card-width: minmax(278px, 1fr);
  display: grid;
  gap: var(--rank-gap);
  margin: 0 auto;
  width: min(1760px, 100%);
  min-width: 0;
  padding-bottom: 12px;
  font-size: 0;
}

.home-rank-card-row,
.home-rank-comparison,
.home-rank-bottom-row {
  font-size: 16px;
}

.home-rank-card-row {
  display: grid;
  grid-template-columns: var(--rank-label-width) repeat(4, var(--rank-card-width));
  align-items: start;
  gap: var(--rank-gap);
}

.home-rank-compare-row {
  display: grid;
  grid-template-columns: var(--rank-label-width) repeat(4, var(--rank-card-width));
  gap: var(--rank-gap);
}

.home-rank-label-spacer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 506px;
  padding: 48px 40px;
  border: 1px solid rgb(255 255 255 / 0.76);
  border-radius: 30px;
  color: var(--eazy-ink);
  background: linear-gradient(180deg, rgb(214 240 255 / 0.74), rgb(236 249 255 / 0.62));
  box-shadow: 0 24px 54px rgb(47 115 163 / 0.12), inset 0 1px 0 rgb(255 255 255 / 0.92);
  text-align: center;
  backdrop-filter: blur(12px);
}

.home-rank-info-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--eazy-sky), var(--eazy-sky-dark));
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgb(51 170 255 / 0.22);
}

.home-rank-label-spacer p {
  max-width: 30ch;
  color: #26395a;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.58;
}

.home-rank-comparison {
  display: grid;
  gap: var(--rank-gap);
}

.home-rank-card {
  --rank-color: var(--eazy-sky);
  --rank-color-dark: var(--eazy-sky-dark);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 248px auto 1fr;
  overflow: hidden;
  min-height: 506px;
  border: 1px solid rgb(255 255 255 / 0.95);
  border-radius: 30px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(248 253 255 / 0.98));
  box-shadow: 0 24px 56px rgb(47 115 163 / 0.15), inset 0 1px 0 rgb(255 255 255 / 0.92);
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
  min-width: 0;
}

.home-rank-card:hover,
.home-rank-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 62px rgb(47 115 163 / 0.22), inset 0 1px 0 rgb(255 255 255 / 0.92);
}

.home-rank-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 172px;
  background:
    linear-gradient(180deg, rgb(249 253 255 / 0.92), rgb(236 247 255 / 0.4) 72%, transparent);
  opacity: 1;
  pointer-events: none;
}

.home-rank-card-pro {
  --rank-color: var(--eazy-sky);
  --rank-color-dark: var(--eazy-sky-dark);
}

.home-rank-card-elite {
  --rank-color: var(--eazy-green);
  --rank-color-dark: #159b7b;
}

.home-rank-card-legend {
  --rank-color: var(--eazy-coral);
  --rank-color-dark: #cd473d;
}

.home-rank-card-immortal {
  --rank-color: var(--eazy-pink);
  --rank-color-dark: #bd28a2;
  grid-template-rows: 268px auto 1fr;
  min-height: 538px;
  margin-top: -14px;
  border-color: rgb(255 194 75 / 0.98);
  background:
    linear-gradient(180deg, #ffb300 0 168px, #ffffff 168px 100%),
    var(--eazy-card);
  box-shadow: 0 28px 68px rgb(190 77 177 / 0.22), 0 0 0 2px rgb(255 194 75 / 0.42);
}

.home-rank-card-immortal:hover,
.home-rank-card-immortal:focus-within {
  box-shadow: 0 32px 66px rgb(190 77 177 / 0.26), 0 0 0 2px rgb(255 194 75 / 0.48);
}

.home-rank-card-immortal::before {
  height: 168px;
  background:
    radial-gradient(circle at 50% 20%, rgb(255 255 255 / 0.5), transparent 36%),
    linear-gradient(180deg, rgb(255 255 255 / 0.28), rgb(255 255 255 / 0) 72%);
  opacity: 1;
  z-index: 0;
}

.home-rank-card-immortal::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: -65%;
  z-index: 0;
  width: 42%;
  height: 168px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.42), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  animation: eazy-best-value-shine 4.6s ease-in-out infinite;
}

.home-rank-sparkles {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 168px;
  pointer-events: none;
}

.home-rank-sparkle {
  --sparkle-size: 20px;
  --sparkle-duration: 4.8s;
  --sparkle-delay: 0s;
  --sparkle-rotate-start: -18deg;
  --sparkle-rotate-mid: 10deg;
  --sparkle-rotate-late: 32deg;
  --sparkle-rotate-end: 52deg;
  --sparkle-x-mid: 0;
  --sparkle-y-mid: -2px;
  --sparkle-x-late: 0;
  --sparkle-y-late: -5px;
  --sparkle-x: 0;
  --sparkle-y: -8px;
  position: absolute;
  color: #ffffff;
  font-size: var(--sparkle-size);
  line-height: 1;
  text-shadow: 0 3px 10px rgb(122 74 0 / 0.22);
  transform-origin: center;
  animation: eazy-star-twinkle var(--sparkle-duration) ease-in-out infinite;
  animation-delay: var(--sparkle-delay);
}

.home-rank-sparkle::before {
  content: "✦";
}

.home-rank-sparkle.sparkle-2::before,
.home-rank-sparkle.sparkle-5::before {
  content: "✧";
}

.home-rank-sparkle.sparkle-1 {
  --sparkle-size: 24px;
  --sparkle-duration: 4.9s;
  --sparkle-delay: -0.7s;
  --sparkle-rotate-start: -22deg;
  --sparkle-rotate-mid: 8deg;
  --sparkle-rotate-late: 28deg;
  --sparkle-rotate-end: 46deg;
  --sparkle-x-mid: 3px;
  --sparkle-y-mid: -4px;
  --sparkle-x-late: 0;
  --sparkle-y-late: -9px;
  --sparkle-x: -3px;
  --sparkle-y: -12px;
  top: 18px;
  left: 22px;
}

.home-rank-sparkle.sparkle-2 {
  --sparkle-size: 15px;
  --sparkle-duration: 5.7s;
  --sparkle-delay: -2.4s;
  --sparkle-rotate-start: 18deg;
  --sparkle-rotate-mid: -12deg;
  --sparkle-rotate-late: -36deg;
  --sparkle-rotate-end: -58deg;
  --sparkle-x-mid: 2px;
  --sparkle-y-mid: 1px;
  --sparkle-x-late: 7px;
  --sparkle-y-late: -3px;
  --sparkle-x: 8px;
  --sparkle-y: -6px;
  top: 44px;
  left: 40px;
}

.home-rank-sparkle.sparkle-3 {
  --sparkle-size: 11px;
  --sparkle-duration: 4.3s;
  --sparkle-delay: -1.6s;
  --sparkle-rotate-start: 4deg;
  --sparkle-rotate-mid: 22deg;
  --sparkle-rotate-late: 48deg;
  --sparkle-rotate-end: 72deg;
  --sparkle-x-mid: -4px;
  --sparkle-y-mid: 2px;
  --sparkle-x-late: -8px;
  --sparkle-y-late: 4px;
  --sparkle-x: -10px;
  --sparkle-y: 5px;
  top: 24px;
  left: 66px;
}

.home-rank-sparkle.sparkle-4 {
  --sparkle-size: 25px;
  --sparkle-duration: 5.2s;
  --sparkle-delay: -1.1s;
  --sparkle-rotate-start: 16deg;
  --sparkle-rotate-mid: -8deg;
  --sparkle-rotate-late: -30deg;
  --sparkle-rotate-end: -48deg;
  --sparkle-x-mid: -3px;
  --sparkle-y-mid: -5px;
  --sparkle-x-late: 2px;
  --sparkle-y-late: -8px;
  --sparkle-x: 5px;
  --sparkle-y: -10px;
  top: 16px;
  right: 22px;
}

.home-rank-sparkle.sparkle-5 {
  --sparkle-size: 14px;
  --sparkle-duration: 4.6s;
  --sparkle-delay: -3s;
  --sparkle-rotate-start: -12deg;
  --sparkle-rotate-mid: 16deg;
  --sparkle-rotate-late: 42deg;
  --sparkle-rotate-end: 66deg;
  --sparkle-x-mid: -2px;
  --sparkle-y-mid: 1px;
  --sparkle-x-late: -6px;
  --sparkle-y-late: -2px;
  --sparkle-x: -7px;
  --sparkle-y: -5px;
  top: 48px;
  right: 48px;
}

.home-rank-sparkle.sparkle-6 {
  --sparkle-size: 12px;
  --sparkle-duration: 6.1s;
  --sparkle-delay: -2s;
  --sparkle-rotate-start: 26deg;
  --sparkle-rotate-mid: 2deg;
  --sparkle-rotate-late: -24deg;
  --sparkle-rotate-end: -44deg;
  --sparkle-x-mid: 5px;
  --sparkle-y-mid: 3px;
  --sparkle-x-late: 10px;
  --sparkle-y-late: 4px;
  --sparkle-x: 12px;
  --sparkle-y: 6px;
  top: 28px;
  right: 70px;
}

@keyframes eazy-best-value-shine {
  0%,
  54% {
    left: -65%;
  }

  76%,
  100% {
    left: 126%;
  }
}

.home-rank-best {
  position: absolute;
  top: 22px;
  left: 34px;
  right: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #7a4a00;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.home-rank-best::before,
.home-rank-best::after {
  display: none;
}

@keyframes eazy-star-twinkle {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.58) rotate(var(--sparkle-rotate-start));
  }

  34% {
    opacity: 1;
    transform: translate3d(var(--sparkle-x-mid), var(--sparkle-y-mid), 0) scale(1.02) rotate(var(--sparkle-rotate-mid));
  }

  70% {
    opacity: 0.74;
    transform: translate3d(var(--sparkle-x-late), var(--sparkle-y-late), 0) scale(1.18) rotate(var(--sparkle-rotate-late));
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--sparkle-x), var(--sparkle-y), 0) scale(1.34) rotate(var(--sparkle-rotate-end));
  }
}

.home-rank-card.is-best-value .home-rank-image-wrap {
  padding-top: 64px;
  transform: translateY(-16px);
}

.home-rank-image-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  padding: 42px 24px 0;
}

.home-rank-image-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: -1;
  width: 140px;
  height: 30px;
  border-radius: 50%;
  background: rgb(51 92 130 / 0.12);
  transform: translateX(-50%);
  filter: blur(2px);
}

.home-rank-image {
  max-width: 212px;
  max-height: 212px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgb(40 81 118 / 0.24));
}

.home-rank-placeholder {
  position: relative;
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.42), transparent 40%),
    linear-gradient(145deg, #a5afb9, #66717d 58%, #4c5660);
  box-shadow: 0 18px 20px rgb(40 81 118 / 0.22);
  transform: rotate(45deg) skew(-8deg, -8deg) scale(0.82);
}

.home-rank-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgb(255 255 255 / 0.36), rgb(53 66 79 / 0.18));
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 0.16);
}

.home-rank-name {
  padding: 20px 20px 0;
  color: var(--eazy-ink);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.home-rank-name::after {
  content: "";
  display: block;
  margin: 13px auto 0;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--rank-color);
}

.home-rank-actions {
  display: grid !important;
  gap: 12px !important;
  align-content: end;
  padding: 18px 28px 28px;
  overflow: visible !important;
}

.home-rank-actions .price {
  width: 100%;
  color: var(--rank-color-dark);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.home-rank-actions .price strong {
  color: inherit;
  font-size: 29px;
  font-weight: 900;
}

.home-rank-actions .discount {
  color: var(--color-removed);
  font-weight: 700;
  text-decoration: line-through;
}

.home-rank-interval {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--rank-color-dark);
  background: rgb(53 174 253 / 0.11);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.home-rank-card-elite .home-rank-interval {
  color: #118668;
  background: rgb(39 207 162 / 0.13);
}

.home-rank-card-legend .home-rank-interval {
  color: #bd3f36;
  background: rgb(241 109 93 / 0.13);
}

.home-rank-card-immortal .home-rank-interval {
  color: #9d248a;
  background: rgb(238 70 201 / 0.13);
}

.home-rank-actions .btn-primary,
.home-rank-actions .btn-secondary {
  --btn-size: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgb(29 134 206 / 0.22);
}

.home-rank-actions .home-rank-buy-button[hidden],
.home-rank-actions .home-rank-remove[hidden] {
  display: none !important;
}

.home-rank-actions .home-rank-buy-button::before,
.home-rank-actions .home-rank-remove::before {
  content: "";
  flex: none;
  width: 24px;
  height: 24px;
  background: currentColor;
}

.home-rank-actions .home-rank-buy-button::before {
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20d%3D%22M2.25%202.25a.75.75%200%200%200%200%201.5h1.386c.17%200%20.318.114.362.278l2.558%209.592a3.752%203.752%200%200%200-2.806%203.63c0%20.414.336.75.75.75h15.75a.75.75%200%200%200%200-1.5H5.378A2.25%202.25%200%200%201%207.5%2015h11.218a.75.75%200%200%200%20.674-.421%2060.358%2060.358%200%200%200%202.96-7.228.75.75%200%200%200-.525-.965A60.864%2060.864%200%200%200%205.68%204.509l-.232-.867A1.875%201.875%200%200%200%203.636%202.25H2.25ZM3.75%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200ZM16.5%2020.25a1.5%201.5%200%201%201%203%200%201.5%201.5%200%200%201-3%200Z%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}

.home-rank-actions .home-rank-remove::before {
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22black%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M16.5%204.478v.227a48.816%2048.816%200%200%201%203.878.512.75.75%200%201%201-.256%201.478l-.209-.035-1.005%2013.07a3%203%200%200%201-2.991%202.77H8.084a3%203%200%200%201-2.991-2.77L4.087%206.66l-.209.035a.75.75%200%200%201-.256-1.478A48.567%2048.567%200%200%201%207.5%204.705v-.227c0-1.564%201.213-2.9%202.816-2.951a52.662%2052.662%200%200%201%203.369%200c1.603.051%202.815%201.387%202.815%202.951Zm-6.136-1.452a51.196%2051.196%200%200%201%203.273%200C14.39%203.05%2015%203.684%2015%204.478v.113a49.488%2049.488%200%200%200-6%200v-.113c0-.794.609-1.428%201.364-1.452Zm-.355%205.945a.75.75%200%201%200-1.5.058l.347%209a.75.75%200%201%200%201.499-.058l-.346-9Zm5.48.058a.75.75%200%201%200-1.498-.058l-.347%209a.75.75%200%200%200%201.5.058l.345-9Z%22%20clip-rule%3D%22evenodd%22%20%2F%3E%3C%2Fsvg%3E") center center / contain no-repeat;
}

.home-rank-actions .btn-primary {
  --btn-color-bg: var(--rank-color);
  --btn-color-bg-hover: var(--rank-color-dark);
  --btn-color-text: #ffffff;
}

.home-rank-actions .home-rank-remove {
  --btn-color-text: #ffffff;
  --btn-color-text-hover: #ffffff;
  --btn-color-bg: #ef404c;
  --btn-color-bg-hover: #dc3442;
  background: linear-gradient(180deg, #f4525d, #e73f4c);
  box-shadow: 0 16px 28px rgb(231 63 76 / 0.24), inset 0 1px 0 rgb(255 255 255 / 0.24);
}

.home-rank-actions .home-rank-remove:hover,
.home-rank-actions .home-rank-remove:focus {
  background: linear-gradient(180deg, #ef4854, #dc3442);
}

.home-rank-card-immortal .btn-primary {
  --btn-color-bg: #cf32b6;
  --btn-color-bg-hover: #bd28a2;
  background: linear-gradient(180deg, #f45fd3, #cf32b6);
  box-shadow: 0 16px 28px rgb(207 50 182 / 0.26);
}

.home-rank-card-immortal .btn-primary:hover,
.home-rank-card-immortal .btn-primary:focus {
  background: #bd28a2;
}

.home-rank-actions .quantity-field {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgb(42 105 150 / 0.12);
  border-radius: 999px;
  background: #f0f9ff;
  color: var(--eazy-ink);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.86);
}

.home-rank-actions .quantity-field .open-basket {
  color: var(--eazy-sky-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.home-rank-compare-row > div {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 104px;
  padding: 26px 28px;
  border: 0;
  border-radius: 18px;
  color: var(--eazy-ink);
  background: rgb(255 255 255 / 0.88);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 14px 30px rgb(48 113 158 / 0.1);
}

.home-rank-compare-row > div:first-child {
  place-items: center start;
  color: var(--eazy-ink);
  background: rgb(255 255 255 / 0.94);
  font-size: 20px;
  text-align: left;
}

.home-rank-compare-row > .is-immortal {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.92), rgb(255 244 252 / 0.92)),
    #ffffff;
  color: #9b268c;
  box-shadow: 0 14px 30px rgb(190 77 177 / 0.13);
}

.home-rank-compare-row:nth-child(odd) > div {
  background: rgb(255 255 255 / 0.9);
}

.home-rank-compare-row:nth-child(even) > div {
  background: rgb(239 249 255 / 0.88);
}

.home-rank-compare-row:nth-child(odd) > div:first-child {
  background: rgb(255 255 255 / 0.96);
}

.home-rank-compare-row:nth-child(even) > div:first-child {
  background: rgb(229 245 255 / 0.9);
}

.home-rank-compare-row:nth-child(odd) > .is-immortal,
.home-rank-compare-row:nth-child(even) > .is-immortal {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(255 242 252 / 0.92)),
    #ffffff;
  color: #9b268c;
}

.home-rank-bottom-row {
  display: grid;
  grid-template-columns: var(--rank-label-width) repeat(4, var(--rank-card-width));
  gap: var(--rank-gap);
  align-items: end;
  margin-top: clamp(4px, 0.8vw, 12px);
}

.home-rank-bottom-spacer {
  min-height: 1px;
}

.home-rank-bottom-card {
  --rank-color: var(--eazy-sky);
  --rank-color-dark: var(--eazy-sky-dark);
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 214px;
  padding: 34px 28px 26px;
  border: 1px solid rgb(255 255 255 / 0.9);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 16px 34px rgb(48 113 158 / 0.11), inset 0 1px 0 rgb(255 255 255 / 0.95);
}

.home-rank-bottom-card-pro {
  --rank-color: var(--eazy-sky);
  --rank-color-dark: var(--eazy-sky-dark);
}

.home-rank-bottom-card-elite {
  --rank-color: var(--eazy-green);
  --rank-color-dark: #159b7b;
}

.home-rank-bottom-card-legend {
  --rank-color: var(--eazy-coral);
  --rank-color-dark: #cd473d;
}

.home-rank-bottom-card-immortal {
  --rank-color: var(--eazy-pink);
  --rank-color-dark: #bd28a2;
  min-height: 242px;
  padding-top: 64px;
  border-color: rgb(255 194 75 / 0.92);
  box-shadow:
    0 24px 52px rgb(211 137 28 / 0.18),
    0 0 0 1px rgb(255 194 75 / 0.54);
}

.home-rank-bottom-card-immortal::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 52px;
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 50% 12%, rgb(255 255 255 / 0.5), transparent 34%),
    linear-gradient(180deg, #ffc72f, #ffad00);
  z-index: 0;
}

.home-rank-bottom-card-immortal::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -64%;
  z-index: 0;
  width: 44%;
  height: 52px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.48), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  animation: eazy-best-value-shine 4.6s ease-in-out infinite;
}

.home-rank-bottom-card > * {
  position: relative;
  z-index: 1;
}

.home-rank-bottom-card > .home-rank-sparkles {
  position: absolute;
  z-index: 4;
}

.home-rank-bottom-best {
  position: absolute;
  top: 12px;
  left: 30px;
  right: 30px;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  color: #765000;
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.home-rank-bottom-best::before,
.home-rank-bottom-best::after {
  display: none;
}

.home-rank-bottom-sparkles {
  height: 52px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-1 {
  --sparkle-size: 19px;
  top: 7px;
  left: 16px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-2 {
  --sparkle-size: 12px;
  top: 27px;
  left: 34px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-3 {
  --sparkle-size: 9px;
  top: 12px;
  left: 56px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-4 {
  --sparkle-size: 20px;
  top: 7px;
  right: 16px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-5 {
  --sparkle-size: 11px;
  top: 28px;
  right: 38px;
}

.home-rank-bottom-sparkles .home-rank-sparkle.sparkle-6 {
  --sparkle-size: 9px;
  top: 13px;
  right: 60px;
}

.home-rank-bottom-actions {
  display: grid !important;
  align-content: end;
  height: 100%;
  gap: 14px !important;
  padding: 0;
}

.home-rank-bottom-actions .price {
  justify-content: center;
}

.home-rank-bottom-actions .price strong {
  font-size: 31px;
}

.home-rank-bottom-actions .home-rank-interval {
  font-size: 13px;
}

.home-rank-bottom-actions .btn-primary,
.home-rank-bottom-actions .btn-secondary {
  --btn-size: 70px;
  font-size: 18px;
}

.home-rank-bottom-actions .home-rank-buy-button::before,
.home-rank-bottom-actions .home-rank-remove::before {
  width: 27px;
  height: 27px;
}

body.page-ranks-catalog .eazy-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(42px, 6vw, 90px);
  padding: clamp(126px, 12vw, 186px) var(--content-padding) 0;
  color: #173254;
  background-color: #b7e8ff;
  background-image:
    linear-gradient(180deg, rgb(189 234 255 / 0.72), rgb(174 224 247 / 0.58)),
    var(--eazy-footer-image),
    linear-gradient(180deg, #bdeaff, #aee0f7);
  background-position: center top, center top, center;
  background-size: cover, cover, auto;
  background-repeat: no-repeat;
  clip-path: ellipse(145% 100% at 50% 100%);
}

body.page-ranks-catalog .eazy-footer::before {
  display: none;
}

.eazy-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.eazy-footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(440px, 78vw);
  min-height: 116px;
  margin: 0 auto clamp(38px, 5vw, 70px);
  color: var(--eazy-ink);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  filter: drop-shadow(0 16px 28px rgb(31 77 112 / 0.16));
}

.eazy-footer-logo img {
  display: block;
  max-width: 100%;
  max-height: 156px;
  object-fit: contain;
}

.eazy-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  padding-bottom: clamp(90px, 13vw, 170px);
}

.eazy-footer-panel {
  display: grid;
  gap: 16px;
}

.eazy-footer-panel h3 {
  color: var(--eazy-ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.eazy-footer-panel p {
  max-width: 60ch;
  color: #31506f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.eazy-footer-panel .eazy-footer-email {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.eazy-footer-email a {
  color: #31506f;
  text-decoration: none;
}

.eazy-footer-email a:hover,
.eazy-footer-email a:focus {
  color: var(--eazy-sky-dark);
}

.eazy-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eazy-footer-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #31506f;
  background: rgb(255 255 255 / 0.62);
  font-size: 14px;
  font-weight: 900;
}

.eazy-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eazy-footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  background: rgb(73 112 143 / 0.82);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgb(31 77 112 / 0.12), inset 0 1px 0 rgb(255 255 255 / 0.18);
  transition: transform 0.16s ease-in-out, background 0.16s ease-in-out;
}

.eazy-footer-socials a:hover,
.eazy-footer-socials a:focus {
  background: var(--eazy-sky);
  transform: translateY(-2px);
}

.eazy-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 18px 0;
  border-top: 1px solid rgb(255 255 255 / 0.52);
  color: #496883;
}

.eazy-footer-bottom .we-accept {
  position: static;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.eazy-footer-bottom .we-accept li {
  display: block;
}

.eazy-footer-bottom .we-accept img {
  display: block;
  max-width: 54px;
  max-height: 24px;
}

.eazy-footer-bottom .copyright {
  max-width: 62ch;
  color: #496883;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.rank-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  font-family: "Minecraftia", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-synthesis-weight: auto;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  paint-order: stroke fill;
  -webkit-text-stroke: 1.35px rgb(19 35 75 / 0.2);
  text-shadow:
    0 2px 0 rgb(19 35 75 / 0.18),
    0 0 12px rgb(255 255 255 / 0.65);
}

.rank-prefix span {
  display: inline-block;
}

.rank-prefix-pro {
  filter: drop-shadow(0 4px 8px rgb(26 147 237 / 0.26));
}

.rank-prefix-elite {
  filter: drop-shadow(0 4px 8px rgb(39 207 162 / 0.22));
}

.rank-prefix-legend {
  filter: drop-shadow(0 4px 8px rgb(255 94 31 / 0.24));
}

.rank-prefix-immortal {
  font-size: 25px;
  filter: drop-shadow(0 4px 9px rgb(238 70 201 / 0.26));
}

.compare-check {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(180deg, #52c2ff, var(--eazy-check));
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 16px rgb(53 183 255 / 0.24);
}

.compare-missing {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #a9bbcf;
}

.compare-missing svg {
  display: block;
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.home-rank-compare-value::before,
.home-rank-mobile-perks {
  display: none;
}

@media (width <= 1700px) {
  .home-rank-table {
    --rank-gap: 14px;
    width: min(1360px, 100%);
    min-width: 0;
  }

  .home-rank-card-row,
  .home-rank-compare-row,
  .home-rank-bottom-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-rank-bottom-spacer {
    display: none;
  }

  .home-rank-label-spacer {
    grid-column: 1 / -1;
    min-height: auto;
    padding: clamp(34px, 4vw, 52px);
  }

  .home-rank-label-spacer p {
    max-width: 78ch;
  }

  .home-rank-compare-label {
    display: none !important;
  }

  .home-rank-compare-row > .home-rank-compare-value {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    padding: 24px 20px;
  }

  .home-rank-compare-value::before {
    content: attr(data-label);
    display: block;
    color: #526a88;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: none;
  }

  .home-rank-bottom-card {
    min-height: 206px;
    padding: 30px 24px 24px;
  }

  .home-rank-bottom-card-immortal {
    min-height: 236px;
    padding-top: 62px;
  }
}

@media (width <= 1180px) {
  .home-rank-table {
    --rank-gap: 14px;
    width: min(560px, 100%);
  }

  .home-rank-card-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .home-rank-comparison {
    display: none;
  }

  .home-rank-bottom-row {
    display: none;
  }

  .home-rank-label-spacer {
    grid-column: auto;
    margin-bottom: 22px;
    padding: 38px 32px;
    border-radius: 24px;
  }

  .home-rank-card {
    min-height: 470px;
    border-radius: 24px;
  }

  .home-rank-card-immortal {
    min-height: 500px;
    margin-top: 12px;
  }

  .home-rank-mobile-perks {
    display: block;
    margin: 0 0 24px;
    border: 1px solid rgb(255 255 255 / 0.96);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgb(48 113 158 / 0.11), inset 0 1px 0 rgb(255 255 255 / 0.95);
    overflow: hidden;
  }

  .home-rank-mobile-perks summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 78px;
    padding: 0 22px;
    color: #415986;
    background: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
  }

  .home-rank-mobile-perks summary::-webkit-details-marker {
    display: none;
  }

  .mobile-perks-label-hide,
  .home-rank-mobile-perks[open] .mobile-perks-label-view {
    display: none;
  }

  .home-rank-mobile-perks[open] .mobile-perks-label-hide {
    display: inline;
  }

  .home-rank-mobile-perks summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease-in-out;
  }

  .home-rank-mobile-perks[open] summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .home-rank-mobile-perk-list {
    display: grid;
    gap: 0;
    padding: 20px 18px 30px;
    border-top: 1px solid rgb(49 170 255 / 0.1);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.98), rgb(255 255 255 / 0.92));
  }

  .home-rank-mobile-perk-list > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 96px;
    padding: 18px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--eazy-ink);
    box-shadow: none;
    text-align: center;
  }

  .home-rank-mobile-perk-list > div > span:first-child {
    color: #4f6692;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }

  .home-rank-mobile-perk-list strong {
    color: var(--eazy-ink);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
  }

  .home-rank-mobile-perk-list .rank-prefix,
  .home-rank-mobile-perk-list .rank-prefix-immortal {
    font-size: 28px;
  }

  .home-rank-mobile-perk-list .compare-check {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 23px;
  }

  body.page-ranks-catalog .eazy-footer {
    padding-top: clamp(108px, 16vw, 150px);
  }

  .eazy-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding-bottom: clamp(100px, 20vw, 160px);
  }

  .eazy-footer-panel {
    justify-items: center;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .eazy-footer-panel p {
    margin-inline: auto;
  }

  .eazy-footer-links,
  .eazy-footer-socials {
    justify-content: center;
  }

  .eazy-footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .eazy-footer-bottom .we-accept {
    justify-content: center;
  }

  .eazy-footer-bottom .copyright {
    text-align: center;
  }
}

@media (width <= 960px) {
  .eazy-catalog-clouds {
    min-height: 230px;
    padding: 24px var(--content-padding) 58px;
  }

  .eazy-hero-logo img {
    max-width: min(540px, 78vw);
    max-height: 220px;
  }

  .eazy-catalog-actions {
    width: min(100%, calc(100vw - 24px));
  }

  .eazy-catalog-content {
    margin-top: 28px;
  }

  .home-rank-label-spacer {
    padding: 38px 30px;
  }

  .eazy-footer-logo {
    margin-bottom: 34px;
  }
}

@media (width <= 760px) {
  .home-rank-table {
    --rank-gap: 14px;
    width: min(520px, 100%);
    min-width: 0;
  }

  .home-rank-label-spacer {
    padding: 34px 26px;
  }

  .home-rank-card {
    min-height: 450px;
  }

  .home-rank-card-immortal {
    min-height: 480px;
  }
}

@media (width <= 640px) {
  .eazy-catalog-clouds {
    min-height: 188px;
    padding: 18px 14px 48px;
  }

  .eazy-hero-logo img {
    max-width: min(390px, 82vw);
    max-height: 170px;
  }

  .eazy-server-badge {
    bottom: 10px;
    min-height: 32px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 14px;
  }

  .eazy-catalog-actions {
    justify-content: center;
    margin-top: -25px;
  }

  .eazy-cart-button {
    min-width: 152px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .eazy-cart-label {
    font-size: 13px;
  }

  .eazy-catalog-content {
    margin-top: 24px;
  }

  .eazy-catalog-title {
    margin-top: 26px;
    margin-bottom: 30px;
    font-size: clamp(56px, 18vw, 82px);
  }

  .home-rank-info-kicker {
    min-height: 38px;
    padding: 0 18px;
    font-size: 14px;
  }

  .home-rank-label-spacer p {
    font-size: 17px;
  }

  .home-rank-image {
    max-width: 176px;
    max-height: 176px;
  }

  .home-rank-compare-row > div {
    min-height: 92px;
    padding: 20px;
    font-size: 18px;
  }

  .home-rank-compare-row > div:first-child {
    font-size: 18px;
  }

  .rank-prefix,
  .rank-prefix-immortal {
    font-size: 22px;
  }

  body.page-ranks-catalog .eazy-footer {
    margin-top: 46px;
    padding-top: 88px;
    background-size: cover, cover, auto;
    clip-path: ellipse(175% 100% at 50% 100%);
  }

  .eazy-footer-logo {
    width: min(340px, 78vw);
    min-height: 86px;
  }

  .eazy-footer-logo img {
    max-height: 112px;
  }

  .eazy-footer-panel {
    gap: 14px;
  }

  .eazy-footer-panel p {
    font-size: 15px;
    line-height: 1.55;
  }

  .eazy-footer-links span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .eazy-footer-socials a {
    width: 48px;
    height: 48px;
  }

  .eazy-footer-bottom {
    padding-bottom: 22px;
  }
}
