/**
 * Front CSS.
 *
 * @package fwd
 * @since fwd 1.0
 */
@font-face {
  font-family: "Quantico";
  font-style: normal;
  font-weight: 400; /* Bold weight */
  src: url("../inc//fonts/Quantico/Quantico-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Quantico";
  font-style: normal;
  font-weight: 700; /* Bold weight */
  src: url("../inc/fonts/Quantico/Quantico-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400; /* Regular weight */
  src: url("../inc/fonts/Orbitron/Orbitron-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700; /* Bold weight */
  src: url("../inc/fonts/Orbitron/Orbitron-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 900; /* Black weight */
  src: url("../inc/fonts/Orbitron/Orbitron-Black.ttf") format("truetype");
}
/* ############################### */
/* Reset CSS. */
/* ############################### */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #121115;
  color: #FFF;
}

/* ############################### */
/* Tooltips. */
/* ############################### */
.tp {
  position: fixed;
  z-index: 9999999;
  visibility: hidden;
}

.tp .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.tp span {
  position: relative;
  display: inline-block;
  font: 300 14px "Quantico";
  color: #fff;
  padding: 9px 39px 9px 12px;
  pointer-events: none;
}

#sound_on {
  width: 113px;
}

.tp .icon {
  position: absolute !important;
  padding: 0;
  display: inline-block;
  margin: 0 11px 0 -1px;
  right: 2px;
  top: 11px;
}

.tp .lines-wrapper:nth-of-type(2) {
  top: -28px;
  position: relative;
  left: 70px;
  overflow: visible;
}

/* ############################### */
/* Menu. */
/* ############################### */
.main-logo-a {
  display: inline-block;
  position: fixed;
  mix-blend-mode: difference;
  top: 14px;
  left: 25px;
  text-decoration: none;
  opacity: 0;
  z-index: 9999999999999;
}

.svg-stack {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
}

.svg-base,
.svg-overlay {
  display: inline-block;
}

.letter.f .svg-overlay path {
  fill: #FF0000 !important;
}

.letter.w {
  position: relative;
  left: -9px;
}

.letter.w .svg-overlay path {
  fill: #00ff00 !important;
}

.letter.d {
  position: relative;
  top: 7px;
  left: -19px;
}

.letter.d .svg-overlay path {
  fill: #0000ff !important;
}

.dot {
  position: relative;
  top: 1px;
  left: -27px;
}

.svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  /* The key line: white starts at the bottom and grows up */
  --mask-height: 0%;
  -webkit-mask-image: linear-gradient(to top, white var(--mask-height), transparent var(--mask-height));
  mask-image: linear-gradient(to top, white var(--mask-height), transparent var(--mask-height));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: bottom;
  mask-position: bottom;
}

#menu {
  /* max-width: 1920px; */
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 0px;
  z-index: 9999999999999 !important;
  overflow: visible;
  opacity: 0;
  mix-blend-mode: difference;
}

#menu-blur {
  position: fixed;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  z-index: 999999999999;
  pointer-events: none;
}

.menu-in {
  position: relative;
  width: 100%;
  height: 100%;
}

.menu-in ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 20px;
  right: 0;
  height: auto;
}

.menu-in ul li {
  display: inline-block;
  margin: 0 10px;
  color: #A7A7A7;
}

.menu-in ul li a {
  font: bold 12px "Quantico";
  display: inline-block;
  position: relative;
  top: -1px;
  text-transform: uppercase;
  color: #A7A7A7;
  text-decoration: none;
  transition: color 0.3s ease-out;
  pointer-events: auto;
  padding: 8px 8px 9px 7px;
}

.menu-in span {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 2px;
  top: -3px;
  background: #A19A9A;
}

.text-bottom-left {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 9999999;
}

.text-bottom-left span {
  color: #FFF;
}

.menu-in ul li .active {
  color: #FFF !important;
  pointer-events: none;
}

.menu-in ul li + li {
  margin-left: 6px;
}

.menu-item.active {
  pointer-events: none !important;
}
.menu-item.active a {
  color: #FFF !important;
  pointer-events: none !important;
}

.cart-button a {
  display: inline-flex;
  align-items: center; /* vertically center everything */
  white-space: nowrap; /* prevent wrapping */
}
.cart-button a span {
  top: 0;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
}
.cart-button a .count div {
  top: 0px;
  color: #FFF !important;
}

.audio-button {
  position: relative;
  overflow: visible;
  width: 24px;
  height: 24px;
  top: 7px;
  left: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px 0 10px !important;
}

.audio-button #wave {
  transition: stroke 0.3s ease; /* Smooth transition for stroke color */
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #ffffff;
}

.audio-button svg {
  width: 24px;
  height: 24px;
}

.audio-button line {
  stroke-width: 1;
  stroke: #ffffff;
}

@media (max-width: 800px) {
  .menu-in ul li {
    margin: 0px 0px;
  }
  .menu-in ul li:first-child {
    margin-left: 10px;
  }
  .audio-button {
    margin: 0 20px 0 0px !important;
  }
}
@media (max-width: 700px) {
  #menu-blur {
    top: 0 !important;
  }
}
/* Mobile menu button */
.mobile-menu-button {
  position: fixed;
  z-index: 99999999999;
  top: 13px;
  right: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
}

.mobile-menu-button .in {
  position: absolute;
  top: 12px;
  left: 12px;
}

.mobile-menu-button .icon-1 {
  position: absolute;
  top: 1px;
  left: 1px;
}

.mobile-menu-button .icon-2 {
  position: absolute;
  top: 1px;
  right: 1px;
}

.mobile-menu-button .icon-3 {
  position: absolute;
  bottom: 1px;
  left: 1px;
}

.mobile-menu-button .icon-4 {
  position: absolute;
  bottom: 1px;
  right: 1px;
}

/* Menu mobile */
.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 48px;
  right: 0;
  z-index: 999999;
  text-align: right;
  display: none;
}

.menu-mobile .background {
  position: absolute;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  top: -48px;
  pointer-events: none;
}

.menu-mobile ul {
  overflow: auto;
  height: calc(100% - 48px);
  margin: 20px 0 0;
}

.menu-mobile li {
  position: relative;
  list-style-type: none;
  z-index: 1;
  margin: -8px 20px -8px 0;
}

.menu-mobile li a {
  font: 900 48px "Quantico";
  text-align: right;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFF;
}

.menu-mobile li.active {
  opacity: 0.5;
}

@media (max-width: 700px) {
  .main-logo-a {
    top: 0;
    left: 12px;
    mix-blend-mode: normal;
  }
  .menu-in ul {
    top: 5px;
    right: 57px;
  }
  #menu-blur {
    background: rgba(0, 0, 0, 0.1);
  }
}
/* ############################### */
/* Menu. */
/* ############################### */
.discount {
  position: relative;
  opacity: 0.7;
}
.discount:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  transform: rotate(-45deg);
  background: rgb(255, 0, 0);
  z-index: 1;
}

@media (max-width: 1200px) {
  .footer.out {
    pointer-events: auto !important;
    z-index: 111111 !important;
  }
}/*# sourceMappingURL=front.css.map */