@font-face {
  font-family: 'ZalandoSans';
  font-display: swap;
  src: url('../fonts/ZalandoSans-VariableFont_wdth,wght.woff2') format('woff2-variations');
  font-weight: 200 900;
}
:root {
  --container-width: 100rem;
  --container-padding: 2.5rem;
  --app-min-width: 24.375rem;
  --header-height: 5rem;
  --content-gap: 1.5rem;
}
@media (width < 1024px) {
  :root {
    --container-padding: 2.5rem;
    --header-height: 4.5rem;
  }
}
@media (width < 768px) {
  :root {
    --container-padding: 1.5rem;
  }
}
.scrollbar ::-webkit-scrollbar {
  width: 0.75rem;
  height: 0.75rem;
}
.scrollbar ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  border: solid 0.188rem transparent;
  background-clip: padding-box;
}
.scrollbar ::-webkit-scrollbar-track {
  background: transparent;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (width >= 1024px) {
  * ::-webkit-scrollbar {
    width: 0.75rem;
    height: 0.75rem;
  }
  * ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    border: solid 0.188rem transparent;
    background-clip: padding-box;
  }
  * ::-webkit-scrollbar-track {
    background: transparent;
  }
}
*:after,
*:before {
  box-sizing: inherit;
}
html {
  overflow: hidden scroll;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
}
@media (width < 1680px) and (width >= 1024px) {
  html {
    font-size: 0.96vw;
  }
}
html:only-child {
  display: flex !important;
}
body {
  font-family: 'ZalandoSans', sans-serif;
  font-size: 0.938rem;
  line-height: 1.46;
  font-weight: 500;
  font-stretch: expanded;
  color: #fff;
  min-width: var(--app-min-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
  padding-top: var(--header-height);
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: calc(var(--container-width) + 2 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 100%;
}
@media (width < 1440px) {
  .container {
    --container-width: 100%;
  }
}
.h1,
.h2,
.h3 {
  font-weight: 700;
  text-transform: uppercase;
}
.h1 {
  font-size: 2.25rem;
  line-height: 1.1;
}
.h2 {
  font-size: 1.875rem;
  line-height: 1.1;
}
.h3 {
  font-size: 1.875rem;
  line-height: 1.2;
}
@media (width < 1200px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (width < 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (width < 768px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width >= 768px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (width >= 1024px) {
  .visible-tablet {
    display: none !important;
  }
}
@media (width >= 1200px) {
  .visible-desktop {
    display: none !important;
  }
}
.cover-img {
  display: flex;
  overflow: hidden;
  will-change: transform;
}
.cover-img picture,
.cover-img img,
.cover-img video,
.cover-img canvas {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.contain-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contain-img img,
.contain-img video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
picture img {
  display: block;
}
ul,
ol {
  list-style: none;
}
b,
strong {
  font-weight: 700;
}
button {
  all: unset;
  box-sizing: border-box;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
  appearance: button;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
svg {
  all: unset;
  flex: none;
}
use {
  fill: currentColor;
}
.swiper-slide {
  height: auto;
}
a {
  text-decoration: none;
  color: #05fbff;
}
.icon {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
}
.btn {
  --height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: var(--height);
  cursor: pointer;
  padding: 0 1.125rem;
  max-width: 100%;
  border-radius: 0.875rem;
  color: #000;
  flex: none;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #05fbff;
  transition: color 0.4s, border-color 0.4s, background-color 0.4s;
  font-stretch: expanded;
}
.btn:hover {
  background-color: #00696b;
  color: #05fbff;
}
.btn:hover > i {
  background-color: #05fbff;
  color: #00696b;
}
.btn > i {
  margin-right: -0.75rem;
  width: calc(var(--height) - 0.625rem);
  aspect-ratio: 1;
  display: grid;
  flex: none;
  place-items: center;
  background: #00696b;
  color: #05fbff;
  border-radius: 0.625rem;
  transition: background-color 0.4s, color 0.4s;
}
.btn:has(> i) > span {
  margin: 0 auto;
}
.btn path[fill] {
  fill: currentColor;
}
.btn path[stroke] {
  stroke: currentColor;
}
.btn-black-text:not(:hover) {
  color: #000;
}
.btn-black-text:not(:hover) > i {
  background-color: #000;
}
.btn-alt {
  background-color: #000;
  color: #05fbff;
}
.btn-alt:hover {
  background-color: #00696b;
  color: #fff;
}
.btn-alt:hover > i {
  background: #05fbff;
  color: #000;
}
.btn-alt > i {
  background: #05fbff;
  color: #000;
}
.btn-large {
  --height: 3.375rem;
  font-size: 0.938rem;
}
.btn-border {
  background-color: transparent;
  border: solid 0.188rem #05fbff;
  color: #05fbff;
}
.btn-border:hover {
  background-color: #05fbff;
  color: #000;
}
.btn-border-gray {
  background-color: #353739;
  border: solid 1px #474747;
  color: #adadad;
}
.btn-border-gray:hover {
  border-color: #05fbff;
}
.btn-gray {
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  color: #05fbff;
}
.btn-gray:hover {
  background-color: #05fbff;
  color: #000;
}
.btn-gray:hover > i {
  color: #000;
}
.btn-gray > i {
  background: none;
  border: solid 0.125rem;
  color: #05fbff;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 666666;
}
.modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal.open,
.modal.close {
  transition: opacity 0.4s, visibility 0.4s;
}
.modal.open .modal-body,
.modal.close .modal-body {
  transition: transform 0.4s;
}
.modal.active .modal-body {
  transform: scale(1);
}
.modal-wrapp {
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.9);
  padding: var(--container-padding);
  overflow: hidden;
  overflow-y: scroll;
  outline: none;
}
.modal-body {
  flex: none;
  min-height: 0;
  width: 30.625rem;
  max-width: 100%;
  margin: 0;
  padding: 1.5rem;
  transition: transform 0.4s;
  transform: scale(0.9);
  margin: auto;
  display: flex;
  flex-direction: column;
  border-radius: 0.875rem;
  will-change: transform;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  position: relative;
  padding: 1.5rem 1.5rem 2rem;
}
@media (width < 1024px) {
  .modal-body {
    padding: 1.5rem var(--container-padding);
  }
}
.modal-body:has(.modal-content) {
  padding: 0.313rem;
}
.modal-content {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  border-radius: 0.75rem;
  padding: 1.5rem 1.5rem 2rem;
}
@media (width < 1024px) {
  .modal-content {
    padding: 1.5rem var(--container-padding);
  }
}
.modal-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
  flex: none;
  margin-bottom: 0.75rem;
}
.modal-head:last-child {
  margin-bottom: 0;
}
.modal-close-btn {
  display: flex;
  transition: color 0.4s;
  position: relative;
  margin-left: auto;
}
.modal-close-btn:before {
  content: '';
  position: absolute;
  inset: -0.5rem;
}
.modal-close-btn:hover {
  color: #05fbff;
}
.modal-close-btn svg {
  --size: 1rem;
}
.swiper-horizontal {
  margin: unset;
  top: unset;
}
.input-block {
  position: relative;
  display: flex;
}
.input-block-search .input {
  padding-left: 3.75rem;
}
.input-block-search > i {
  display: flex;
  pointer-events: none;
  position: absolute;
  left: 1rem;
  padding-right: 0.875rem;
  height: 1.625rem;
  align-items: center;
  border-right: solid 1px rgba(255, 255, 255, 0.1);
  top: calc(50% - 0.875rem);
  color: #adadad;
  z-index: 1;
}
.input-block-search > i svg {
  --size: 1.25rem;
}
.input {
  --color: #fff;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  width: 100%;
  height: 3.375rem;
  padding: 0 1.25rem;
  appearance: none;
  box-shadow: none;
  caret-color: var(--color);
  transition: border-color 0.4s, background-color 0.4s;
  color: var(--color);
  outline: none;
  line-height: 1;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: 0.938rem;
  border-radius: 0.875rem;
  font-family: 'ZalandoSans', sans-serif;
  font-stretch: expanded;
  backdrop-filter: blur(1.25rem);
  border: solid 1px transparent;
}
.input:focus {
  border-color: #05fbff;
  background-color: rgba(22, 24, 28, 0.7);
}
.input::-webkit-input-placeholder {
  color: #adadad;
}
.input:-moz-placeholder {
  color: #adadad;
}
.input::-moz-placeholder {
  color: #adadad;
}
.input:-ms-input-placeholder {
  color: #adadad;
}
.input:-webkit-autofill {
  -webkit-text-fill-color: var(--color);
  background-color: transparent;
  -webkit-transition: background-color 5000000s 0s, border-color 0.4s;
  transition: background-color 5000000s 0s, border-color 0.4s;
}
.input:-webkit-autofill::first-line {
  font-family: 'ZalandoSans', sans-serif;
}
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}
.input::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}
.input[type='number'] {
  -moz-appearance: textfield;
}
.textarea {
  resize: none;
  height: 7.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.tab-block:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  will-change: transform;
}
.tab-block.active {
  transition: opacity 0.4s, visibility 0.4s;
}
.select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.select.active {
  z-index: 66;
}
.select.active .select-toggle {
  background-color: rgba(22, 24, 28, 0.7);
}
.select.active .select-toggle.input {
  border-color: #05fbff;
}
.select.active .select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s, visibility 0.4s;
}
.select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: unset;
  padding: 0 1.25rem;
  height: 3.375rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  transition: background-color 0.4s, border-color 0.4s;
}
.select-toggle.input:focus {
  border-color: transparent;
}
.select-toggle > i {
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  margin-right: -0.938rem;
  flex: none;
}
.select-toggle > i svg {
  --size: 1rem;
}
.select-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.select-title:empty[data-placeholder]:before {
  content: attr(data-placeholder);
  color: #adadad;
}
.select-options {
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  display: none;
  font-size: 0.813rem;
  font-weight: 700;
  backdrop-filter: blur(1.25rem);
}
.select-options-list {
  overflow: hidden auto;
  max-height: 17.5rem;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  gap: 0.25rem;
}
.select-option {
  width: 100%;
  padding: 0.25rem 1.5rem;
  align-items: center;
  min-height: 2.75rem;
  transition: color 0.4s;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  gap: 0.5rem;
}
.select-option > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-option .icon {
  --size: 0.75rem;
  opacity: 0;
  transition: opacity 0.4s;
  color: #05fbff;
  margin-left: auto;
}
.select-option:hover {
  color: #05fbff;
}
.select-option.active .icon {
  opacity: 1;
}
.tippy-box[data-theme='unset'] {
  all: unset;
}
.tippy-box[data-theme='unset'] .tippy-content {
  padding: 0;
}
.tippy-tooltip {
  display: none;
}
.tippy-box .select-options {
  display: block;
}
.tippy-box .tippy-tooltip {
  display: flex;
}
.slider-arrows {
  display: flex;
  gap: 1rem;
}
.slider-arrows:has(.swiper-button-lock) {
  display: none;
}
.slider-arrow {
  --width: 4.625rem;
  width: var(--width);
  aspect-ratio: 1;
  background-color: #000;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.4s;
  position: absolute;
  z-index: 6;
  top: calc(50% - 0.5 * var(--width));
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 50%;
}
.slider-arrow:hover:not(.swiper-button-disabled) {
  color: #05fbff;
}
.slider-arrow-prev {
  right: calc(100% - 1.25rem);
  justify-content: flex-end;
}
.slider-arrow-next {
  left: calc(100% - 1.25rem);
}
.marquee {
  overflow: hidden;
  display: flex;
  --gap: 1rem;
  max-width: 120rem;
  margin: 0 auto;
}
.marquee-rtl {
  justify-content: flex-end;
}
.marquee-rtl .marquee-track {
  animation-name: marquee-rtl;
  padding-right: 0;
  padding-left: var(--gap);
}
.marquee-track {
  animation: marquee var(--speed, 16s) linear infinite;
  display: flex;
  gap: var(--gap);
  flex: none;
  padding-right: var(--gap);
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  gap: var(--gap);
  flex: none;
}
.marquee-slide {
  flex: none;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-rtl {
  to {
    transform: translateX(50%);
  }
}
.checkbox {
  --icon: 1.875rem;
  --radius: 0.5rem;
  display: inline-flex;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-size: 0.875rem;
  line-height: 1.2;
}
.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
}
.checkbox > i {
  flex: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  color: #05fbff;
}
.checkbox > i svg {
  --size: 0.75rem;
  transition: opacity 0.4s;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s, transform 0.4s;
}
.checkbox > span {
  align-self: center;
}
.checkbox:has(input:checked) > i svg {
  opacity: 1;
  transform: scale(1);
}
.checkbox a {
  font-weight: 700;
  transition: color 0.4s;
}
.checkbox a:hover {
  color: #00696b;
}
.radio {
  --icon: 1.875rem;
  display: inline-flex;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-size: 0.875rem;
  line-height: 1.2;
}
.radio input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: 50%;
  width: var(--icon);
  height: var(--icon);
}
.radio > i {
  flex: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  border-radius: 50%;
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
}
.radio > i:before {
  content: '';
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background-color: #05fbff;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s, transform 0.4s;
}
.radio > span {
  align-self: center;
}
.radio:has(input:checked) > i:before {
  opacity: 1;
  transform: scale(1);
}
.range-slider-wrapp {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.range-slider {
  flex: auto;
  min-width: 0;
  height: 0.5rem;
  margin-bottom: 1rem;
  background-color: #05fbff;
  border-radius: 0.375rem;
}
.range-slider .range-slider__thumb {
  width: 1.375rem;
  height: 1.5rem;
  background: url(../img/range.svg);
  background-size: 100% 100%;
  border-radius: 0;
  margin-top: 0.625rem;
  filter: drop-shadow(0px 0px 0.625rem rgba(0, 0, 0, 0.25));
}
.range-slider .range-slider__range {
  background-color: #4a4b4d;
}
.range-slider-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.range-slider-inputs .input {
  height: 2.75rem;
  padding: 0 0.875rem;
  font-size: 0.813rem;
}
.glightbox-mobile .goverlay,
.goverlay {
  background: rgba(0, 0, 0, 0.9);
  height: auto;
  width: auto;
  inset: 0;
}
.glightbox-container {
  height: auto;
  bottom: 0;
}
.gslide-description[style='max-width: 1680;'] {
  max-width: 105rem !important;
}
.gslide-title:last-child {
  margin: 0;
}
.glightbox-clean .gslide-title {
  font-family: 'ZalandoSans', sans-serif;
}
.glightbox-clean .gslide-media {
  box-shadow: none;
}
.content-text {
  display: flow-root;
}
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  margin: calc(1.5 * var(--content-gap)) 0 var(--content-gap);
}
.content-text h1:first-child,
.content-text h2:first-child,
.content-text h3:first-child,
.content-text h4:first-child,
.content-text h5:first-child,
.content-text h6:first-child {
  margin-top: 0;
}
.content-text h1:last-child,
.content-text h2:last-child,
.content-text h3:last-child,
.content-text h4:last-child,
.content-text h5:last-child,
.content-text h6:last-child {
  margin-bottom: 0;
}
.content-text b,
.content-text strong {
  font-weight: 500;
}
.content-text p {
  margin-bottom: var(--content-gap);
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text a:not(.btn):not(.content-custom-link) {
  transition: color 0.4s;
}
.content-text a:not(.btn):not(.content-custom-link):hover {
  color: #00696b;
}
.content-text ol {
  list-style: none;
  counter-reset: counter;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ol:last-child {
  margin-bottom: 0;
}
.content-text ol li {
  margin-bottom: calc(var(--content-gap) / 2);
  padding-left: 1.75rem;
  position: relative;
}
@media (width < 768px) {
  .content-text ol li {
    padding-left: 1.5rem;
  }
}
.content-text ol li:last-child {
  margin-bottom: 0;
}
.content-text ol li:before {
  content: counter(counter) '.';
  position: absolute;
  flex: none;
  left: 0;
  top: 0;
  counter-increment: counter;
  font-weight: 500;
  width: 1.75rem;
  text-align: center;
}
@media (width < 768px) {
  .content-text ol li:before {
    width: 1.5rem;
  }
}
.content-text ul {
  list-style: none;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ul:last-child {
  margin-bottom: 0;
}
.content-text ul li {
  display: flex;
  margin-bottom: calc(var(--content-gap) / 2);
  padding-left: 1.75rem;
  position: relative;
}
@media (width < 768px) {
  .content-text ul li {
    padding-left: 1.5rem;
  }
}
.content-text ul li:last-child {
  margin-bottom: 0;
}
.content-text ul li:before {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
  left: 0.625rem;
  top: calc(0.5lh - 0.125rem);
}
@media (width < 768px) {
  .content-text ul li:before {
    left: 0.5rem;
  }
}
.content-text figure {
  margin: calc(1.5 * var(--content-gap)) 0;
}
.content-text figure:first-child {
  margin-top: 0;
}
.content-text figure:last-child {
  margin-bottom: 0;
}
.content-text img {
  display: block;
  border-radius: 1rem;
  min-height: 15rem;
  object-fit: cover;
}
.content-text blockquote {
  margin: calc(1.5 * var(--content-gap)) 0;
  padding: 1rem 1.5rem;
  background-color: rgba(22, 24, 28, 0.7);
  border-left: solid 0.25rem #05fbff;
}
@media (width < 1024px) {
  .content-text blockquote {
    padding: 0.75rem 1rem;
  }
}
.content-text blockquote:first-child {
  margin-top: 0;
}
.content-text blockquote:last-child {
  margin-bottom: 0;
}
.header {
  position: fixed;
  z-index: 666;
  inset: 0 0 auto;
  transition: background-color 0.4s, transform 0.4s;
}
@media (width >= 1024px) {
  .header:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }
}
.header > .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  height: var(--header-height);
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .header > .container {
    gap: 1.5rem;
  }
}
@media (width >= 1024px) {
  .header.hide:not(:hover) {
    transform: translateY(-100%);
  }
}
@media (width < 1024px) {
  .header.fixed {
    background-color: #000;
  }
}
@media (width >= 1024px) {
  .header.fixed:before {
    opacity: 1;
  }
}
@media (width < 1024px) {
  .header.nav-is-open {
    background-color: #000;
  }
}
@media (width < 1024px) {
  .header .logo {
    margin-right: auto;
  }
}
.logo {
  display: flex;
  width: 7.188rem;
}
.header-back-btn {
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  color: inherit;
  transition: color 0.4s;
  margin-left: auto;
}
.header-back-btn:hover {
  color: #05fbff;
}
@media (width < 1024px) {
  .header-nav {
    top: calc(var(--header-height) - 1px);
  }
  .header-nav .modal-wrapp {
    padding: 0;
    background: #000;
  }
  .header-nav .modal-body {
    width: 100%;
    margin-left: 0;
    min-height: 100%;
    transform: translateX(100%);
    border-radius: 0;
    gap: 1.5rem;
    align-items: center;
    padding: 2.5rem 0;
    background: none;
    border: 0;
  }
  .header-nav .container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: auto;
  }
  .header-nav.active .modal-body {
    transform: translateX(0);
  }
}
@media (width >= 1024px) {
  .header-nav {
    all: unset;
    display: contents;
  }
  .header-nav:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav .modal-wrapp {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body > .container {
    display: contents;
  }
}
@media (width >= 1024px) {
  html:has(.header-nav.active) {
    overflow: hidden scroll !important;
  }
}
.header-nav-toggle {
  order: 1;
  display: flex;
  color: #fff;
  margin: -0.5rem;
  padding: 0.5rem;
  position: relative;
}
@media (width >= 1024px) {
  .header-nav-toggle {
    display: none;
  }
}
.header-nav-toggle svg {
  transition: opacity 0.4s, transform 0.4s;
}
.header-nav-toggle svg:last-child {
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.header-menu {
  display: flex;
  gap: 2rem;
  margin-right: auto;
  align-items: center;
}
@media (width < 1024px) {
  .header-menu {
    margin: -1rem 0 0;
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}
.header-menu > li > a {
  display: flex;
  padding: 0.5rem;
  margin: -0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  transition: color 0.4s;
}
.header-menu > li > a:hover {
  color: #05fbff;
}
.header-btns {
  display: flex;
  align-items: center;
}
@media (width < 1024px) {
  .header-btns {
    margin-top: auto;
    flex-direction: column;
  }
}
.header-btns-group {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
@media (width < 1024px) {
  .header-btns-group {
    flex-wrap: wrap;
  }
}
.header-btns-group:not(:last-child) {
  margin-right: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media (width < 1024px) {
  .header-btns-group:not(:last-child) {
    margin: 0 0 1.25rem;
    padding: 0 0 1.25rem;
    border-bottom: solid 1px #333333;
  }
}
@media (width >= 1024px) {
  .header-btns-group:not(:last-child):after {
    content: '';
    position: absolute;
    height: 2.125rem;
    right: 0;
    top: calc(50% - 1.063rem);
    border-right: solid 1px #333333;
  }
}
.header-btns-login {
  gap: 1.125rem;
}
.header-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  color: inherit;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.813rem;
  text-transform: uppercase;
  background: none;
  position: relative;
}
.header-btn:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  opacity: 0;
  transition: opacity 0.4s;
}
.header-btn:hover:before {
  opacity: 1;
}
.header-btn svg {
  --size: 2rem;
}
.header-btn > * {
  position: relative;
  z-index: 1;
}
.header-cart-btn:has(.header-cart-btn-count:empty) {
  pointer-events: none;
}
.header-cart-btn-count {
  color: #05fbff;
}
.header-cart-btn-count:empty:before {
  content: '0';
  color: #fff;
}
.header-currency .select-toggle {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  color: inherit;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.813rem;
  text-transform: uppercase;
  background: none;
  position: relative;
  height: auto;
}
.header-currency .select-toggle:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  opacity: 0;
  transition: opacity 0.4s;
}
.header-currency .select-toggle:hover:before {
  opacity: 1;
}
.header-currency .select-toggle svg {
  --size: 2rem;
}
.header-currency .select-toggle > * {
  position: relative;
  z-index: 1;
}
.header-currency.active .select-toggle {
  background: none;
}
.header-currency.active .select-toggle:before {
  opacity: 1;
}
.header-enter-btn {
  color: #05fbff;
}
.header-enter-btn svg {
  --size: 1.25rem;
}
.header-btns-cabinet {
  gap: 1.125rem;
}
.home-hero {
  --padding: 4.125rem;
  position: relative;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height) + var(--padding)) 0 var(--padding);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(41.875rem, 100vh);
}
.home-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .home-hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-hero-img {
  position: absolute;
  inset: 0;
}
@media (width < 1024px) {
  .home-hero-img {
    opacity: 0.8;
  }
}
.home-hero-title {
  display: flex;
  flex-direction: column;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.home-hero-title-desc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 3.125rem;
  font-weight: 700;
}
@media (width < 768px) {
  .home-hero-title-desc {
    font-size: 2.25rem;
    display: contents;
  }
}
@media (width < 480px) {
  .home-hero-title-desc {
    font-size: 1.875rem;
  }
}
.home-hero-title-desc img {
  max-width: 4.5rem;
  flex: none;
}
@media (width < 768px) {
  .home-hero-title-desc img {
    order: -1;
  }
}
.home-hero-chicken {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: calc(-2.375rem - var(--padding));
}
@media (width < 768px) {
  .home-hero-chicken {
    margin: 0;
    max-width: 100%;
    gap: 0.25rem;
  }
}
.home-hero-chicken-content {
  position: relative;
  padding: 1.25rem 2.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 29.313rem;
  min-height: 7.563rem;
  margin-top: 5rem;
  min-width: 0;
}
@media (width < 768px) {
  .home-hero-chicken-content {
    margin: 0;
    padding-left: 1.25rem;
  }
}
.home-hero-chicken-content svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-hero-chicken-text {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}
@media (width < 768px) {
  .home-hero-chicken-text {
    font-size: 0.75rem;
  }
}
.home-hero-chicken-img {
  display: flex;
  flex: none;
  width: 14.688rem;
}
@media (width < 768px) {
  .home-hero-chicken-img {
    width: 4.5rem;
  }
}
.section {
  --padding: 3.125rem;
  padding: var(--padding) 0;
}
@media (width < 1024px) {
  .section {
    --padding: 2rem;
  }
}
.section + .section {
  margin-top: calc(-1 * var(--padding));
}
.slider-wrapp {
  position: relative;
}
@media (width < 1024px) {
  .explore-slider {
    overflow: visible;
  }
}
.explore-slide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 20rem;
  color: inherit;
  border: solid 1px #23272f;
  overflow: hidden;
  will-change: transform;
  background-color: #16181c;
  background-clip: padding-box;
  position: relative;
  padding: 1.5rem;
  border-radius: 0.625rem;
  transition: color 0.4s, border-color 0.4s, background-color 0.4s;
}
@media (width < 768px) {
  .explore-slide {
    padding: 1.5rem 1rem;
  }
}
@media (width < 1024px) {
  .explore-slide {
    width: 32.875rem;
  }
}
@media (width < 768px) {
  .explore-slide {
    width: 100%;
  }
}
@media (width < 480px) {
  .explore-slide {
    min-height: 17.5rem;
  }
}
.explore-slide:before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/explore-bg.svg) right center / 27.813rem 31.875rem no-repeat;
  transition: opacity 0.4s;
}
.explore-slide:hover {
  border-color: rgba(22, 24, 28, 0);
  background-color: #05fbff;
  color: #000;
}
.explore-slide:hover:before {
  opacity: 0;
}
.explore-slide:hover .explore-slide-symbol {
  opacity: 1;
}
.explore-slide:hover .explore-slide-btn {
  background-color: #000;
  color: #05fbff;
}
.explore-slide:hover .explore-slide-btn > i {
  background-color: #05fbff;
  color: #000;
}
.explore-slide:hover .explore-slide-logo:not(.no-filter) {
  filter: brightness(1) invert(0);
}
.explore-slide-symbol {
  --width: 23.75rem;
  width: var(--width);
  position: absolute;
  right: 0;
  top: calc(50% - 0.5 * var(--width));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: 0.1;
  transition: opacity 0.4s;
}
@media (width < 768px) {
  .explore-slide-symbol {
    width: 21.25rem;
  }
}
.explore-slide-symbol img {
  width: 17.5rem;
}
.explore-slide-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.explore-slide-img img {
  object-position: right center;
}
.explore-slide-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.explore-slide-foot {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.explore-slide-btn {
  pointer-events: none;
}
.explore-slide-logo {
  height: 1.5rem;
}
.explore-slide-logo:not(.no-filter) {
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.feed .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (width < 1024px) {
  .feed .container {
    gap: 1.25rem;
    flex-direction: column;
    align-items: unset;
  }
}
.section-head {
  display: flex;
  flex-direction: column;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (width >= 1024px) {
  .feed-head {
    flex: none;
    width: 11.875rem;
  }
}
.feed-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff383c;
}
.feed-label:after {
  content: '';
  flex: none;
  width: 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
.feed-slider {
  margin: 0;
  flex: auto;
  min-width: 0;
}
@media (width < 1024px) {
  .feed-slider {
    overflow: visible;
  }
}
.feed-slide {
  min-height: 8.125rem;
  overflow: hidden;
  will-change: transform;
  border-radius: 0.75rem;
  border: solid 1px transparent;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s;
  color: inherit;
}
@media (width < 1024px) {
  .feed-slide {
    width: 11.938rem;
  }
}
.feed-slide:before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2.5rem);
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0.2;
}
.feed-slide:hover {
  border-color: #23272f;
}
.feed-slide:hover .feed-slide-body {
  opacity: 1;
}
.feed-slide-img {
  position: absolute;
  inset: 0;
  background: url(../img/feed-bg.svg) center bottom / 30.875rem 16.813rem no-repeat;
}
.feed-slide-body {
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 2;
}
.feed-slide-title {
  font-size: 0.813rem;
  font-weight: 700;
}
.feed-slide-prices {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.feed-slide-cost {
  font-size: 0.875rem;
  color: #adadad;
}
.feed-slide-price {
  font-size: 0.688rem;
  color: #656565;
}
.products .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.products-slider-wrapp .slider-arrow {
  top: calc(5.625rem - 0.5 * var(--width));
}
@media (width < 1024px) {
  .products-slider {
    overflow: visible;
  }
}
@media (width < 1024px) {
  .products-slider .products-slide {
    width: 16.25rem;
  }
}
.products-slide {
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  backdrop-filter: blur(1.25rem);
  overflow: hidden;
  will-change: transform;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: solid 1px transparent;
  transition: border-color 0.4s;
}
.products-slide:hover {
  border-color: #05fbff;
}
.products-slide:has(.products-slide-link:hover) .products-slide-eye {
  color: #05fbff;
}
.products-slide-img {
  margin: 0.313rem 0.313rem 0;
  aspect-ratio: 248/170;
  border-radius: 0.75rem;
  background: url(../img/products-slide-bg.svg) center bottom / 32.25rem 15.063rem no-repeat;
}
.products-slide-img:before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2.5rem);
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0.2;
}
.products-slide-tag {
  position: absolute;
  left: 0.875rem;
  top: 0.875rem;
  max-width: calc(100% - 3.25rem);
  font-size: 0.625rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem 0.188rem;
  border-radius: 0.375rem;
  background-color: #05fbff;
  z-index: 1;
}
.products-slide-eye {
  position: absolute;
  right: 0.875rem;
  top: 0.875rem;
  z-index: 2;
  color: #adadad;
  transition: color 0.4s;
}
.products-slide-body {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: auto;
  gap: 1.25rem;
}
.products-slide-title {
  font-size: 0.813rem;
  text-transform: uppercase;
  font-weight: 700;
}
.products-slide-prices {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.products-slide-cost {
  font-size: 0.875rem;
  color: #adadad;
}
.products-slide-price {
  font-size: 0.688rem;
  color: #656565;
}
.products-slide-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.products-slide-cart-btn {
  display: flex;
  color: #adadad;
  transition: color 0.4s;
  position: relative;
  z-index: 9;
}
.products-slide-cart-btn:hover {
  color: #fff;
}
.products-slide-cart-btn.active {
  color: #05fbff;
}
.products-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.skins-cta {
  min-height: 32.5rem;
}
@media (width < 768px) {
  .skins-cta {
    min-height: 25rem;
  }
}
@media (width < 480px) {
  .skins-cta {
    min-height: 20rem;
  }
}
.skins-cta {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.skins-cta-media {
  position: absolute;
  left: 50%;
  top: -10rem;
  transform: translateX(-50%);
  width: 80rem;
  display: flex;
}
@media (width < 1024px) {
  .skins-cta-media {
    width: 60rem;
    top: -7.5rem;
  }
}
@media (width < 768px) {
  .skins-cta-media {
    width: 45rem;
    top: -5.625rem;
    transform: translateX(-47%);
  }
}
@media (width < 480px) {
  .skins-cta-media {
    width: 37.5rem;
  }
}
.skins-cta-ducks {
  display: flex;
  padding-bottom: 2.875rem;
  width: 30.688rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.skins-cta-ducks > img {
  width: 100%;
}
.skins-cta-ducks:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64.875rem;
  height: 30.188rem;
  background: url(../img/skins-cta-bg.svg) center / 100%;
  transform: translateX(-50%);
}
.skins-cta-ducks-content {
  position: absolute;
  padding: 1.25rem 2.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  inset: 26% 20.57% auto 21.79%;
  min-height: 4.5rem;
  padding: 0.75rem 2.5rem;
}
@media (width < 480px) {
  .skins-cta-ducks-content {
    top: 16%;
  }
}
.skins-cta-ducks-content svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.skins-cta-ducks-text {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}
.skins-cta-ducks-text a {
  transition: color 0.4s;
}
.skins-cta-ducks-text a:hover {
  color: #00696b;
}
@media (width >= 768px) {
  .skins-cta-ducks-text a {
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .skins-cta-ducks-text {
    font-size: 0.75rem;
  }
}
.game {
  position: relative;
  padding: 2.5rem 0;
}
.game .container {
  display: flex;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .game .container {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.game-bg {
  position: absolute;
  inset: 0;
}
.game-bg img {
  object-position: left center;
}
.game-bg:after {
  content: '';
  position: absolute;
  inset: 0;
}
.game-head {
  flex: none;
  width: 16.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width < 1024px) {
  .game-head {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
}
.game-logo {
  display: flex;
  width: fit-content;
}
.game-logo img {
  height: 2.75rem;
  object-fit: contain;
}
.game-products-slider-wrapp {
  flex: auto;
  min-width: 0;
}
@media (width >= 1024px) {
  .game-products-slider-wrapp .slider-arrows {
    display: none;
  }
}
.game-products-slider {
  margin: 0;
  overflow: visible;
}
@media (width >= 1024px) {
  .game-products-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.625rem;
  }
}
@media (width < 1024px) {
  .game-products-slider .products-slide {
    width: 16.25rem;
  }
}
.advantages-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media (width < 1024px) {
  .advantages-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .advantages-list {
    grid-template-columns: 1fr;
  }
}
.advantages-item {
  border-radius: 0.625rem;
  overflow: hidden;
  will-change: transform;
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 33.125rem;
  border: solid 1px #23272f;
  background-color: #16181c;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 24.5rem 33.125rem;
}
@media (width < 480px) {
  .advantages-item {
    min-height: 28.75rem;
  }
}
.advantages-item:before,
.advantages-item:after {
  content: '';
  position: absolute;
  aspect-ratio: 1;
}
.advantages-item:before {
  width: 33.125rem;
  top: -4.375rem;
  right: -13rem;
  background: -webkit-image-set(url(../img/advantage-symbol.webp) 1x, url(../img/advantage-symbol@2x.webp) 2x);
  background: image-set(url(../img/advantage-symbol.webp) 1x, url(../img/advantage-symbol@2x.webp) 2x);
  background-size: 100% 100%;
}
.advantages-item:after {
  width: 4.25rem;
  right: 0;
  top: 0;
  z-index: 4;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background-color: var(--bg, #05fbff);
}
.advantages-item-cs {
  background-image: url(../img/advantage-bg-1.svg);
  --bg: #ffaa01;
}
.advantages-item-dota2 {
  background-image: url(../img/advantage-bg-2.svg);
  --bg: #d43b3b;
}
.advantages-item-tf2 {
  background-image: url(../img/advantage-bg-3.svg);
  --bg: #b1842e;
}
.advantages-item-rust {
  background-image: url(../img/advantage-bg-4.svg);
  --bg: #c53720;
}
.advantages-item-img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: 24.5rem;
}
.advantages-item-img img {
  object-position: right bottom;
  object-fit: contain;
}
.advantages-item-title {
  position: relative;
  z-index: 3;
  padding-right: 4.25rem;
  display: flex;
  flex-direction: column;
}
.advantages-item-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.advantages-item-logo {
  display: flex;
}
.advantages-item-logo img {
  height: 2.125rem;
  object-fit: contain;
}
.reviews-head {
  position: relative;
  overflow: hidden;
}
.reviews-head .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
@media (width < 1024px) {
  .reviews-head .container {
    justify-content: center;
  }
}
.reviews-media {
  display: flex;
  max-width: 50rem;
  flex: auto;
  min-width: 0;
}
@media (width < 1024px) {
  .reviews-media {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (width < 480px) {
  .reviews-media {
    width: 37.5rem;
  }
}
.reviews-bird {
  display: flex;
  align-items: flex-start;
  padding-bottom: 2.25rem;
  width: 38.625rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.reviews-bird > img {
  width: 14.125rem;
  min-width: 0;
}
.reviews-bird:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62.5rem;
  height: 27rem;
  background: url(../img/reviews-bird-bg.svg) center / 100%;
  transform: translateX(-50%);
}
.reviews-bird-content {
  width: 24.5rem;
  min-height: 6.25rem;
  padding: 1rem 3.375rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 100%;
  margin-top: 3.875rem;
}
@media (width < 768px) {
  .reviews-bird-content {
    padding: 1rem 2rem 1rem 1.5rem;
  }
}
@media (width < 480px) {
  .reviews-bird-content {
    margin-top: 1.5rem;
  }
}
.reviews-bird-content > svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.reviews-bird-text {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}
.reviews-bird-text a {
  transition: color 0.4s;
}
.reviews-bird-text a:hover {
  color: #00696b;
}
@media (width >= 768px) {
  .reviews-bird-text a {
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .reviews-bird-text {
    font-size: 0.75rem;
  }
}
.reviews-bird-text-stars {
  display: inline-flex;
  gap: 0.188rem;
}
.reviews-bird-text-stars svg {
  --size: 0.75rem;
}
.reviews-sliders {
  --mask-size: 61.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black var(--mask-size), black calc(100% - var(--mask-size)), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black var(--mask-size), black calc(100% - var(--mask-size)), transparent 100%);
}
@media (width < 1024px) {
  .reviews-sliders {
    --mask-size: 40%;
  }
}
.reviews-slider {
  --gap: 0.625rem;
}
.reviews-slide {
  width: 24.5rem;
  background: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  display: flex;
  flex-direction: column;
  padding: 0.313rem 0.313rem 0.938rem;
  gap: 1.25rem;
  border-radius: 0.875rem;
}
@media (width < 1024px) {
  .reviews-slide {
    width: 18.75rem;
  }
}
.reviews-slide-body {
  padding: 1.25rem 1.5rem 2rem 1.125rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0.75rem;
  flex: auto;
}
@media (width < 1024px) {
  .reviews-slide-body {
    padding: 1rem;
  }
}
.reviews-slide-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #05fbff;
  line-height: 1.14;
}
@media (width < 1024px) {
  .reviews-slide-title {
    font-size: 1.25rem;
  }
}
@media (width < 1024px) {
  .reviews-slide-desc {
    font-size: 0.875rem;
  }
}
.reviews-slide-foot {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
  padding: 0 0.938rem;
}
.reviews-slide-user {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.reviews-slide-user-name {
  color: #adadad;
}
.reviews-slide-user-desc {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #656565;
}
.reviews-slide-stars {
  flex: none;
  color: #05fbff;
  display: flex;
  gap: 0.125rem;
}
.reviews-slide-stars svg {
  --size: 1rem;
}
.news .container {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .news .container {
    grid-template-columns: 1fr 1fr;
  }
}
.news-body {
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 0.625rem;
  background-color: rgba(22, 24, 28, 0.7);
  border: solid 1px #23272f;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.news-body-list {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 768px) {
  .news-body-list {
    grid-template-columns: 1fr 1fr;
  }
}
.news-body-list .news-item {
  padding: 0;
  border-radius: 0;
  background: none;
}
.news-body-list .news-item-body {
  padding: 0.625rem 0 0;
}
.news-body-list .news-item-img {
  border-radius: 0.75rem;
}
.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: inherit;
  padding: 0.313rem;
  border-radius: 0.625rem;
  background-color: rgba(22, 24, 28, 0.7);
}
.news-item:hover .news-item-img img {
  transform: scale(1.06);
}
.news-item:hover .news-item-title {
  color: #05fbff;
}
.news-item-img {
  aspect-ratio: 517/290;
  border-radius: 0.5rem;
}
.news-item-img img {
  transition: transform 0.4s;
}
.news-item-body {
  padding: 0.625rem 0.625rem 2rem;
  max-width: 29.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news-item-head {
  display: flex;
  flex-direction: column;
}
.news-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.4s;
}
.news-item-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c7cbcf;
}
.news-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.news-item-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-item-read-more {
  font-size: 1rem;
  color: #05fbff;
  font-weight: 700;
}
.calculator {
  display: flex;
  padding: 1.5rem;
  background-color: rgba(22, 24, 28, 0.7);
  border: solid 1px #23272f;
  overflow: hidden;
  will-change: transform;
  min-height: 25rem;
}
.calculator-body {
  flex: none;
  width: 13.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.calculator-title {
  margin-bottom: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.calculator-title svg {
  --size: 3.125rem;
}
.calculator-title-text {
  font-weight: 700;
  line-height: 1.1;
  font-size: 1.125rem;
  text-transform: uppercase;
}
.calculator-title-text span {
  font-size: 1.625rem;
}
.calculator-desc {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.78;
}
.calculator-img {
  position: relative;
  flex: auto;
}
.calculator-img img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42.5rem;
  max-width: none;
}
@media (width < 480px) {
  .calculator-img img {
    left: -11.25rem;
  }
}
.steps .container {
  display: flex;
  gap: 0.75rem;
}
@media (width < 1024px) {
  .steps .container {
    gap: 1.25rem;
    flex-direction: column;
    align-items: unset;
  }
}
.steps-head {
  width: 24.25rem;
  flex: none;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .steps-head {
    width: auto;
    flex-direction: row;
    justify-content: space-between;
    min-height: 15rem;
  }
}
.steps-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .steps-title {
    margin-top: auto;
  }
}
.steps-title .section-label {
  color: #05fbff;
}
.steps-media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.steps-media img {
  width: 50rem;
  max-width: none;
  position: absolute;
  right: -7.5rem;
  top: -1.25rem;
}
@media (width < 1024px) {
  .steps-media img {
    right: -15rem;
    top: -5rem;
  }
}
.steps-body {
  position: relative;
  z-index: 1;
  flex: auto;
  min-width: 0;
  display: grid;
  gap: 0.625rem;
  counter-reset: counter;
}
@media (width >= 768px) {
  .steps-body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.steps-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-radius: 0.875rem;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  padding: 0.313rem;
}
@media (width < 1024px) {
  .steps-item {
    gap: 0.625rem;
  }
}
.steps-item:after {
  content: counter(counter, decimal-leading-zero);
  counter-increment: counter;
  padding: 0 1.25rem 0.938rem;
  text-align: right;
  font-size: 1.875rem;
  color: #23272f;
}
@media (width < 1024px) {
  .steps-item:after {
    font-size: 1.5rem;
    padding: 0 0.625rem 0.313rem;
  }
}
.steps-item-body {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0.875rem;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  border-radius: 0.75rem;
  flex: auto;
}
@media (width < 1024px) {
  .steps-item-body {
    padding: 1rem;
  }
}
.steps-item-head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .steps-item-head {
    gap: 0.75rem;
  }
}
.steps-item-icon {
  flex: none;
  width: 3.75rem;
}
@media (width < 1024px) {
  .steps-item-icon {
    width: 2.5rem;
  }
}
.steps-item-title {
  align-self: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (width < 1024px) {
  .steps-item-title {
    font-size: 1rem;
  }
}
.steps-item-desc {
  font-size: 1.063rem;
}
@media (width < 1024px) {
  .steps-item-desc {
    font-size: 0.875rem;
  }
}
.footer {
  margin-top: auto;
  min-height: 35rem;
  position: relative;
  padding: 4rem 0 4.5rem;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .footer {
    padding: 2.5rem 0;
    min-height: unset;
  }
}
.footer .container {
  position: relative;
  z-index: 1;
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (width < 1024px) {
  .footer .container {
    gap: 2.5rem;
  }
}
.footer-img {
  position: absolute;
  inset: 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (width < 1024px) {
  .footer-main {
    flex-direction: column;
  }
}
.footer-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 26rem;
  align-items: flex-start;
}
@media (width < 1024px) {
  .footer-body {
    gap: 2rem;
    max-width: unset;
  }
}
.footer-info {
  color: #adadad;
  font-weight: 600;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: min(49.75rem, 100%);
  min-width: 0;
  gap: 2rem 1.25rem;
}
@media (width < 1024px) and (width >= 768px) {
  .footer-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (width < 768px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-nav-item {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (width < 1024px) {
  .footer-nav-item {
    gap: 1.75rem;
  }
}
@media (width < 768px) {
  .footer-nav-item:nth-child(2) {
    order: 1;
    grid-column: span 2;
  }
}
.footer-nav-item-title {
  font-size: 0.875rem;
  color: #05fbff;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  font-size: 0.813rem;
}
@media (width < 1024px) {
  .footer-menu {
    gap: 1.5rem;
  }
}
.footer-menu li {
  display: flex;
}
.footer-menu a {
  margin: -0.5rem;
  padding: 0.5rem;
  color: inherit;
  transition: color 0.4s;
}
.footer-menu a:hover {
  color: #05fbff;
}
.footer-foot {
  display: flex;
  margin-top: auto;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1024px) {
  .footer-foot {
    flex-direction: column;
    align-items: unset;
  }
}
.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
}
@media (width >= 1024px) {
  .footer-copyright {
    max-width: 44.5rem;
  }
}
.footer-copyright-title {
  font-weight: 600;
}
.footer-copyright-desc {
  color: #adadad;
}
.footer-payment {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .footer-payment {
    gap: 2rem;
  }
}
.footer-payment img {
  height: 2.5rem;
  object-fit: contain;
}
.login {
  background: -webkit-image-set(url(../img/login-symbol.webp) 1x, url(../img/login-symbol@2x.webp) 2x) center center / 90rem 90rem no-repeat;
  background: image-set(url(../img/login-symbol.webp) 1x, url(../img/login-symbol@2x.webp) 2x) center center / 90rem 90rem no-repeat;
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height)) 0 4rem;
}
@media (width < 1024px) {
  .login {
    background-size: contain;
  }
}
@media (width < 768px) {
  .login {
    background-size: cover;
  }
}
.login-form {
  width: min(31.25rem, 100%);
  margin: auto;
  border-radius: 0.875rem;
  padding: 0.313rem;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
}
.login-form-body {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 2.25rem 2.375rem;
  border-radius: 0.75rem;
}
@media (width < 1024px) {
  .login-form-body {
    padding: 1rem;
  }
}
.login-form-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.login-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-form-btns {
  display: flex;
  align-items: center;
}
@media (width < 768px) {
  .login-form-btns {
    flex-direction: column;
    align-items: unset;
    gap: 1rem;
  }
}
.login-form-submit {
  min-width: 11.75rem;
}
@media (width < 768px) {
  .login-form-submit {
    width: 100%;
  }
}
.login-form-submit:not(:hover) > i {
  background-color: #000;
}
.login-form-forgot {
  font-size: 0.813rem;
  font-weight: 700;
}
@media (width >= 768px) {
  .login-form-forgot {
    flex: auto;
    padding-left: 1.875rem;
    margin-left: 1.875rem;
    border-left: solid 1px #333333;
    display: flex;
    justify-content: flex-end;
  }
}
.login-form-forgot a {
  transition: color 0.4s;
}
.login-form-forgot a:hover {
  color: #00696b;
}
.login-steam-btn {
  margin-top: 0.375rem;
}
.login-steam-btn svg {
  --size: 1.75rem;
}
.login-form-nav {
  padding: 1.5rem 2.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #adadad;
}
.login-form-nav a {
  transition: color 0.4s;
}
.login-form-nav a:hover {
  color: #00696b;
}
.cookies {
  position: fixed;
  inset: auto 0 0;
  z-index: 66;
  pointer-events: none;
  padding: 0 var(--container-padding) var(--container-padding);
}
@media (width < 1024px) {
  .cookies {
    padding: 0;
  }
}
.cookies.hide .cookies-main {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
}
.cookies-main {
  width: min(75rem, 100%);
  border-radius: 0.875rem;
  background-color: #05fbff;
  color: #000;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
  margin: 0 auto;
}
@media (width < 1024px) {
  .cookies-main {
    border-radius: 0.75rem 0.75rem 0 0;
    padding: 0.75rem;
    gap: 0.75rem;
  }
}
@media (width < 768px) {
  .cookies-main {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.cookies-body a {
  color: inherit;
  font-weight: 700;
  transition: color 0.4s;
}
.cookies-body a:hover {
  color: #00696b;
}
.cookies-btn {
  min-width: 16.5rem;
}
.market-hero {
  position: relative;
  padding: 1.5rem 0 2rem;
}
@media (width >= 1024px) {
  .market-hero {
    padding: 2.5rem 0;
    min-height: 14.75rem;
  }
}
.market-hero .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.market-hero-img {
  position: absolute;
  inset: 0;
}
.market-hero-img img {
  opacity: 0.6;
  object-position: left center;
}
.market-hero-img:after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0));
}
.market-nav {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}
@media (width < 1024px) {
  .market-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.market-nav-games {
  display: flex;
  padding: 0.313rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.875rem;
  backdrop-filter: blur(1.25rem);
  flex: none;
  flex-wrap: wrap;
  justify-content: center;
}
@media (width >= 1024px) {
  .market-nav-games {
    max-width: 50%;
  }
}
@media (width < 768px) {
  .market-nav-games {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}
.market-nav-games li.active a {
  background-color: var(--color);
  color: #fff;
}
.market-nav-games li.active a path:not([fill]) {
  fill: var(--color);
}
@media (width >= 768px) {
  .market-nav-games li:not(:last-child) {
    padding-right: 1px;
    position: relative;
  }
  .market-nav-games li:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 0.875rem);
    height: 1.75rem;
    border-right: solid 1px rgba(255, 255, 255, 0.1);
    transition: opacity 0.4s;
  }
  .market-nav-games li:not(:last-child).active:after {
    opacity: 0;
  }
  .market-nav-games li:not(:last-child) + .active:after {
    opacity: 0;
  }
}
.market-nav-games a {
  color: #adadad;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0.625rem;
  justify-content: center;
  transition: color 0.4s, background-color 0.4s;
}
.market-nav-games a:hover {
  color: #fff;
}
.market-nav-games a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.market-nav-games a path[fill] {
  fill: currentColor;
}
.market-nav-games a path:not([fill]) {
  transition: fill 0.4s;
}
.market-nav-categories {
  display: flex;
  flex: auto;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem 0.5rem;
}
@media (width < 768px) {
  .market-nav-categories {
    gap: 0.25rem;
  }
}
.market-nav-categories a {
  display: flex;
  padding: 0.5rem 1rem;
  min-height: 2.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  align-items: center;
  border-radius: 1.125rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  backdrop-filter: blur(1.25rem);
  transition: background-color 0.4s, color 0.4s;
}
@media (width < 768px) {
  .market-nav-categories a {
    padding: 0.375rem 0.625rem;
    min-height: 2rem;
  }
}
.market-nav-categories a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.market-nav-categories .active a {
  color: #000;
  background-color: #fff;
}
.market-hero-body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .market-hero-body {
    flex-direction: column;
    align-items: unset;
  }
}
.market-hero-filter {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (width < 1024px) {
  .market-hero-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .market-hero-filter {
    grid-template-columns: 1fr;
  }
}
@media (width >= 1024px) {
  .market-hero-filter .input {
    width: 16.5rem;
  }
}
.market {
  --padding: 2.5rem;
}
@media (width < 1024px) {
  .market {
    --padding: 2rem;
  }
}
.market .container {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media (width < 1024px) {
  .market .container {
    flex-direction: column;
    align-items: unset;
  }
}
@media (width >= 480px) {
  .market-filter-open {
    align-self: flex-start;
    min-width: 11.25rem;
  }
}
.market-filter .modal-body {
  gap: 0.625rem;
  display: flex;
  flex-direction: column;
  flex: none;
}
@media (width >= 1024px) {
  .market-filter {
    all: unset;
    display: contents;
  }
  .market-filter:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .market-filter .modal-wrapp {
    all: unset;
    display: contents;
  }
  .market-filter .modal-body {
    all: unset;
    gap: 0.625rem;
    display: flex;
    flex-direction: column;
    width: 16.125rem;
    flex: none;
  }
}
@media (width >= 1024px) {
  html:has(.market-filter.active) {
    overflow: hidden scroll !important;
  }
}
.market-filter-item {
  border-radius: 0.875rem;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
}
.market-filter-item.active .market-filter-item-toggle svg {
  transform: rotate(-180deg);
}
.market-filter-item.active .market-filter-item-main {
  grid-template-rows: 1fr;
}
.market-filter-item-toggle {
  padding: 1rem 1.25rem;
  display: flex;
  width: 100%;
  border-radius: inherit;
  align-items: center;
  justify-content: space-between;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.4s;
  gap: 0.75rem;
}
.market-filter-item-toggle:hover {
  color: #05fbff;
}
.market-filter-item-toggle svg {
  --size: 1rem;
  transition: transform 0.4s;
}
.market-filter-item-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.market-filter-item-body {
  overflow: hidden;
}
.market-filter-item-content {
  padding: 0.625rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(2.5rem);
  background-color: rgba(255, 255, 255, 0.05);
  margin: 0 0.313rem 0.313rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.market-filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.market-filter-exterior-range {
  flex-direction: column-reverse;
}
.market-filter-exterior-range .input {
  background: none;
  height: fit-content;
  backdrop-filter: unset;
  border-radius: 0;
  color: #adadad;
  border: 0;
}
.market-filter-exterior-range .input-block:last-child .input {
  text-align: right;
}
.market-filter-exterior-range .range-slider {
  height: 0.875rem;
}
.market-filter-exterior-range .range-slider__range {
  opacity: 0;
}
.market-list {
  flex: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  min-width: 0;
}
@media (width < 1024px) {
  .market-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 768px) {
  .market-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .market-list {
    grid-template-columns: 1fr;
  }
}
.market-filter-btns {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  justify-content: space-between;
}
.market-filter-reset {
  display: flex;
  align-items: center;
  height: 2.75rem;
  gap: 0.25rem;
  font-size: 0.813rem;
  color: #c53720;
  transition: color 0.4s;
  font-weight: 700;
}
.market-filter-reset svg {
  --size: 1rem;
}
.market-filter-reset:hover {
  color: #ff383c;
}
.market-filter-submit {
  flex: auto;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media (width < 1024px) {
  .pagination {
    justify-content: space-between;
  }
}
.pagination-btn {
  --size: 3.375rem;
  height: var(--size);
  padding: 0 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: var(--size);
  backdrop-filter: blur(1.25rem);
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #05fbff;
}
.pagination-btn.active {
  color: #fff;
  pointer-events: none;
}
.pagination-btn.disabled {
  color: #23272f;
  pointer-events: none;
}
a.pagination-btn {
  transition: background-color 0.4s;
}
a.pagination-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (width >= 768px) {
  .pagination-btn-prev,
  .pagination-btn-next {
    min-width: 11.25rem;
  }
}
@media (width < 768px) {
  .pagination-btn-prev span,
  .pagination-btn-next span {
    display: none;
  }
}
@media (width >= 768px) {
  .pagination-btn-prev svg,
  .pagination-btn-next svg {
    display: none;
  }
}
.pagination-links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width < 480px) {
  .pagination-links {
    font-size: 0.75rem;
  }
}
@media (width < 1024px) {
  .pagination-links:before {
    content: attr(data-title);
    padding: 0 0.625rem;
  }
}
@media (width < 1024px) {
  .pagination-links .pagination-btn {
    display: none;
  }
}
.cta {
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.cta + .footer {
  margin-top: 0;
}
.cta .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  min-height: 18.125rem;
}
@media (width < 1024px) {
  .cta .container {
    justify-content: center;
  }
}
.section:has(+ .cta) {
  padding-bottom: 0;
}
.cta-media {
  display: flex;
  flex: auto;
  min-width: 0;
  height: 18.125rem;
  align-items: center;
}
.cta-media img {
  width: 50rem;
  max-width: none;
}
@media (width < 480px) {
  .cta-media img {
    width: 37.5rem;
  }
}
@media (width < 1024px) {
  .cta-media {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
  }
}
.cta-bird {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  width: 35.25rem;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
@media (width >= 1024px) {
  .cta-bird {
    margin-left: 10.625rem;
  }
}
.cta-bird > img {
  width: 9.5rem;
  min-width: 0;
}
.cta-bird:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62.5rem;
  height: 26.188rem;
  background: url(../img/cta-bird-bg.svg) center / 100%;
  transform: translateX(-50%);
}
.cta-bird-content {
  width: 24.5rem;
  min-height: 6.25rem;
  padding: 1rem 2.5rem 1rem 3.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 100%;
}
@media (width < 768px) {
  .cta-bird-content {
    padding: 1rem 1.5rem 1rem 2rem;
  }
}
.cta-bird-content > svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cta-bird-text {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}
.cta-bird-text a {
  transition: color 0.4s;
}
.cta-bird-text a:hover {
  color: #00696b;
}
@media (width >= 768px) {
  .cta-bird-text a {
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .cta-bird-text {
    font-size: 0.75rem;
  }
}
.modal-cart {
  top: var(--header-height);
}
.modal-cart .modal-wrapp {
  padding: 0 0 var(--container-padding);
}
.modal-cart .modal-body {
  display: contents;
}
.modal-cart .container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: auto;
  pointer-events: none;
}
.modal-cart.active .modal-cart-body {
  pointer-events: auto;
}
.modal-cart-body {
  width: min(28.125rem, 100%);
  backdrop-filter: blur(1.25rem);
  padding: 1.25rem;
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: auto;
}
.modal-cart-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.modal-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.modal-cart-item {
  backdrop-filter: blur(1.25rem);
  padding: 0.313rem;
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (width < 480px) {
  .modal-cart-item {
    flex-direction: column;
    align-items: unset;
  }
}
.modal-cart-item .products-slide-img {
  flex: none;
  width: 10.313rem;
  aspect-ratio: 165/110;
  margin: 0;
}
.modal-cart-item .products-slide-tag {
  top: 0.625rem;
  left: 0.625rem;
  max-width: calc(100% - 1.25rem);
}
.modal-cart-item-body {
  flex: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.625rem 0;
}
@media (width < 480px) {
  .modal-cart-item-body {
    padding-top: 0;
  }
}
.modal-cart-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.modal-cart-item-content .products-slide-title {
  font-size: 0.688rem;
}
.modal-cart-item-remove {
  height: 2.5rem;
  border-left: solid 1px #333333;
  display: flex;
  align-items: center;
  padding: 0 0.625rem 0 1rem;
}
.modal-cart-item-remove-btn {
  display: flex;
  transition: color 0.4s;
}
.modal-cart-item-remove-btn:hover {
  color: #c53720;
}
.modal-cart-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (width < 480px) {
  .modal-cart-foot {
    flex-direction: column;
    align-items: unset;
    padding-top: 0.375rem;
  }
}
.modal-cart-total {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
}
.page-main {
  padding-top: 2rem;
}
@media (width < 1024px) {
  .page-main {
    padding-top: 1.5rem;
  }
}
.page-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.page-head:last-child {
  margin-bottom: 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #656565;
}
.breadcrumbs li:not(:last-child) {
  padding-right: 1.125rem;
  margin-right: 1.125rem;
  position: relative;
}
.breadcrumbs li:not(:last-child) .icon {
  position: absolute;
  --size: 0.75rem;
  left: calc(100% - 0.5 * var(--size));
  top: calc(0.5lh - 0.5 * var(--size));
  color: #05fbff;
}
.breadcrumbs a {
  color: #fff;
  transition: color 0.4s;
}
.breadcrumbs a:hover {
  color: #05fbff;
}
.page-date {
  color: #c7cbcf;
  font-size: 0.75rem;
  font-weight: 700;
}
.product {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .product {
    grid-template-columns: 1fr 1fr;
  }
}
.product-cards {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.product-card {
  background-color: #16181c;
  border: solid 1px #23272f;
  overflow: hidden;
  will-change: transform;
  border-radius: 0.625rem;
  padding: 1.5rem;
}
@media (width < 768px) {
  .product-card {
    padding: 1.5rem 1rem;
  }
}
.product-main {
  min-height: 28.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
}
@media (width < 768px) {
  .product-main {
    min-height: unset;
  }
}
.product-img {
  color: #adadad;
  transition: color 0.4s;
}
@media (width >= 768px) {
  .product-img {
    position: absolute;
    inset: 0;
  }
}
@media (width < 768px) {
  .product-img {
    aspect-ratio: 1;
    margin: -1.5rem -1rem 0;
    align-self: stretch;
  }
}
.product-img:hover {
  color: #05fbff;
}
.product-img .icon {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 1;
}
.product-info {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  position: relative;
  z-index: 1;
  min-width: 15.5rem;
}
.product-info-table {
  font-size: 0.75rem;
  font-weight: 600;
}
.product-info-table td {
  padding: 0 1.875rem 0.25rem 0;
}
.product-info-table td:first-child {
  text-transform: uppercase;
  color: #adadad;
}
.product-info-table td:last-child {
  padding-right: 0;
}
.product-info-table tr:last-child td {
  padding-bottom: 0;
}
.product-state {
  display: flex;
  flex-direction: column;
}
.product-state.green .product-state-title {
  color: #15a875;
}
.product-state.green .product-state-scale {
  left: 0.8%;
  width: 25.6%;
  background: #03211bcc;
}
.product-state.green .product-state-scale:before {
  background: linear-gradient(to bottom, #15a975 0%, #03211b 100%);
}
.product-state.blue .product-state-title {
  color: #456dfc;
}
.product-state.blue .product-state-scale {
  left: 26.4%;
  width: 14.8%;
  background: #0d1236cc;
}
.product-state.blue .product-state-scale:before {
  background: linear-gradient(to bottom, #456dfc 0%, #0e1332 100%);
}
.product-state.light-blue .product-state-title {
  color: #82bfff;
}
.product-state.light-blue .product-state-scale {
  left: 41.2%;
  width: 11.6%;
  background: #141f2bcc;
}
.product-state.light-blue .product-state-scale:before {
  background: linear-gradient(to bottom, #82bfff 0%, #151e29 100%);
}
.product-state.orange .product-state-title {
  color: #924a21;
}
.product-state.orange .product-state-scale {
  left: 52.8%;
  width: 16.9%;
  background: #1c1612cc;
}
.product-state.orange .product-state-scale:before {
  background: linear-gradient(to bottom, #924a21 0%, #1a1614 100%);
}
.product-state.red .product-state-title {
  color: #f13e3e;
}
.product-state.red .product-state-scale {
  left: 69.8%;
  width: 7.7%;
  background: #2a1515cc;
}
.product-state.red .product-state-scale:before {
  background: linear-gradient(to bottom, #f13e3e 0%, #251617 100%);
}
.product-state-head {
  position: relative;
  z-index: 1;
  gap: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 700;
}
.product-state-title {
  font-size: 1.063rem;
  text-transform: uppercase;
}
.product-state-number {
  font-size: 0.875rem;
}
.product-state-chart {
  position: relative;
  margin: -1.5rem -1.5rem -2rem -0.25rem;
  display: flex;
}
@media (width < 768px) {
  .product-state-chart {
    margin: 0 -1rem -1.5rem -1rem;
  }
}
.product-state-chart img {
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.product-state-scale {
  position: absolute;
  bottom: 0;
  height: 74.7%;
  background-color: #fff;
}
.product-state-scale:before {
  content: '';
  position: absolute;
  width: 0.375rem;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  left: calc(var(--percent) * 1%);
}
.product-basket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .product-basket {
    padding: 1rem 1.5rem;
  }
}
@media (width < 768px) {
  .product-basket {
    flex-direction: column;
    align-items: unset;
  }
}
.product-basket-prices {
  display: flex;
  align-items: center;
}
.product-basket-prices > *:not(:last-child) {
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
.product-basket-prices > *:not(:last-child):after {
  content: '';
  position: absolute;
  left: 100%;
  border-right: solid 1px #333333;
  top: calc(50% - 1.063rem);
  height: 2.125rem;
}
.product-basket-cost {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-basket-credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  color: #656565;
}
.product-basket-credits img {
  flex: none;
  width: 1.25rem;
}
.product-basket-btns {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.product-basket-favorite {
  color: #05fbff;
  margin: -0.5rem;
  padding: 0.5rem;
  display: flex;
  flex: none;
}
.product-basket-favorite path {
  transition: fill 0.4s;
}
.product-basket-favorite.active path {
  fill: currentColor;
}
@media (width < 480px) {
  .product-basket-btn {
    flex: auto;
  }
}
.product-history {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-history-chart {
  position: relative;
}
.product-history-chart:before {
  content: '';
  aspect-ratio: 752/436;
  display: block;
}
.product-history-chart canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-variation-settings: 'wght' 600, 'wdth' 120;
}
.product-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .product-history-head {
    flex-direction: column;
    gap: 1.5rem;
    align-items: unset;
  }
}
.product-history-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.product-history-filter {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .product-history-filter:not(:first-child) {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
  }
  .product-history-filter:not(:first-child):after {
    content: '';
    position: absolute;
    right: 100%;
    border-right: solid 1px #333333;
    top: calc(50% - 1.063rem);
    height: 2.125rem;
  }
}
.product-history-filter .tab-btn {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #05fbff;
  transition: color 0.4s;
}
.product-history-filter .tab-btn:hover {
  color: #00696b;
}
.product-history-filter .tab-btn.active {
  color: #fff;
}
.similar .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .similar-slider-wrapp .slider-arrows {
    display: none;
  }
}
.similar-slider {
  margin: 0;
  overflow: visible;
}
@media (width >= 1024px) {
  .similar-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.625rem;
  }
}
@media (width < 1024px) {
  .similar-slider .products-slide {
    width: 16.25rem;
  }
}
.checkout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.checkout {
  margin-top: 2rem;
}
.checkout-items {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .checkout-items {
    grid-template-columns: 1fr 1fr;
  }
}
.checkout-item {
  backdrop-filter: blur(1.25rem);
  padding: 0.313rem;
  background-color: rgba(22, 24, 28, 0.7);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (width < 768px) {
  .checkout-item {
    flex-direction: column;
    align-items: unset;
  }
}
.checkout-item .products-slide-img {
  flex: none;
  width: 15.5rem;
  aspect-ratio: 248/170;
  margin: 0;
}
.checkout-item .products-slide-tag {
  max-width: calc(100% - 1.75rem);
}
.checkout-item-body {
  flex: auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 0.938rem 0;
}
@media (width < 768px) {
  .checkout-item-body {
    padding-top: 0;
    flex-direction: column;
    align-items: unset;
  }
}
.checkout-item-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: auto;
  min-width: 0;
}
.checkout-item-btns {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.checkout-item-count {
  display: flex;
  align-items: center;
  min-width: 7.75rem;
  flex: none;
}
.checkout-item-count-btn {
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  position: relative;
  transition: background-color 0.4s;
}
.checkout-item-count-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.checkout-item-count-btn:before,
.checkout-item-count-btn:after {
  content: '';
  position: absolute;
  left: calc(50% - 0.438rem);
  top: calc(50% - 1px);
  width: 0.875rem;
  height: 0.125rem;
  background-color: #05fbff;
}
.checkout-item-count-btn.plus:after {
  transform: rotate(90deg);
}
.checkout-item-count-number {
  flex: auto;
  min-width: 0;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 0.813rem;
  font-weight: 700;
}
.checkout-item-remove {
  height: 2.5rem;
  border-left: solid 1px #333333;
  display: flex;
  align-items: center;
  padding: 0 1.25rem 0;
}
.checkout-item-remove-btn {
  display: flex;
  transition: color 0.4s;
  color: #c53720;
}
.checkout-item-remove-btn:hover {
  color: #ff383c;
}
.checkout-form {
  padding: 1.875rem 0 5rem;
  background: linear-gradient(to bottom, #0f0f0f, #000);
}
.checkout-form .container {
  display: flex;
  align-items: flex-end;
  gap: 2rem 4rem;
  flex-wrap: wrap;
}
@media (width < 768px) {
  .checkout-form .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.checkout-form-total {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.checkout-form-total-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width >= 480px) {
  .checkout-form-prices .product-basket-cost {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.875rem;
    line-height: 1.1;
  }
}
@media (width < 480px) {
  .checkout-form-submit {
    width: 100%;
  }
}
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.625rem;
}
@media (width < 1024px) {
  .news-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
.news-article {
  max-width: 66.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin: 0 auto;
}
.news-article-img {
  display: flex;
}
.news-article-img img {
  width: 100%;
  border-radius: 0.625rem;
}
.news-article-content {
  width: min(58.125rem, 100%);
  margin: 0 auto;
}
@media (width >= 1024px) {
  .news-article-content {
    font-size: 1.125rem;
    line-height: 2;
  }
  .news-article-content h1,
  .news-article-content h2,
  .news-article-content h3,
  .news-article-content h4,
  .news-article-content h5,
  .news-article-content h6 {
    line-height: 1.4;
  }
}
.share {
  margin-top: 4.5rem;
  padding: 2.25rem 0;
  border-top: solid 1px #23272f;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1024px) {
  .share {
    margin-top: 3rem;
    padding: 1.5rem 0;
  }
}
.share-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.share-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.share-btn {
  display: flex;
  border-radius: 50%;
  transition: opacity 0.4s;
  overflow: hidden;
  will-change: transform;
}
.share-btn:hover {
  opacity: 0.7;
}
.share-btn img {
  width: 2.25rem;
  aspect-ratio: 1;
  object-fit: contain;
}
.news-other .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) and (width >= 768px) {
  .news-other-list .news-item:nth-child(3) {
    display: none;
  }
}
.faq-grid {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.accordion-item {
  --p: 1.5rem;
  border-radius: 0.875rem;
  background-color: rgba(22, 24, 28, 0.7);
  backdrop-filter: blur(1.25rem);
  display: flex;
  flex-direction: column;
}
.accordion-item.active .accordion-item-main {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-item-toggle {
  color: #adadad;
}
.accordion-item.active .accordion-item-toggle > i:after {
  transform: rotate(0);
}
.accordion-item-toggle {
  padding: var(--p);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.4s;
}
.accordion-item-toggle:hover {
  color: #adadad;
}
.accordion-item-toggle > i {
  width: 2.75rem;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  position: relative;
  transition: background-color 0.4s;
}
.accordion-item-toggle > i:before,
.accordion-item-toggle > i:after {
  content: '';
  position: absolute;
  left: calc(50% - 0.438rem);
  top: calc(50% - 1px);
  width: 0.875rem;
  height: 0.125rem;
  background-color: #05fbff;
}
.accordion-item-toggle > i:after {
  transition: transform 0.4s;
  transform: rotate(90deg);
}
.accordion-item-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.accordion-body {
  overflow: hidden;
}
.accordion-item-content {
  padding: 0 var(--p) var(--p);
  max-width: calc(41rem + 2 * var(--p));
}
.contacts {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .contacts {
    flex-direction: column;
  }
}
.contacts-body {
  max-width: 33.125rem;
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
}
.contacts-info b {
  font-size: 1.125rem;
}
.contacts-info a {
  transition: color 0.4s;
}
.contacts-info a:hover {
  color: #00696b;
}
.feedback {
  width: 30.625rem;
  flex: none;
  background-color: rgba(22, 24, 28, 0.7);
  padding: 0.313rem;
  border-radius: 0.875rem;
  backdrop-filter: blur(1.25rem);
}
@media (width < 1024px) {
  .feedback {
    max-width: 100%;
    margin: 0 auto;
  }
}
.feedback-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2.5rem);
  padding: 1.5rem 2.25rem 2.25rem;
}
@media (width < 1024px) {
  .feedback-body {
    padding: 1.5rem;
  }
}
.feedback-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.feedback-submit {
  align-self: flex-start;
  min-width: 10.75rem;
}
.feedback-submit:not(:hover) > i {
  background-color: #000;
}
.page-404 {
  background: -webkit-image-set(url(../img/login-symbol.webp) 1x, url(../img/login-symbol@2x.webp) 2x) center center / 90rem 90rem no-repeat;
  background: image-set(url(../img/login-symbol.webp) 1x, url(../img/login-symbol@2x.webp) 2x) center center / 90rem 90rem no-repeat;
  min-height: 51.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(var(--header-height)) 0 4rem;
}
@media (width < 1024px) {
  .page-404 {
    background-size: contain;
    min-height: 45.25rem;
  }
}
@media (width < 768px) {
  .page-404 {
    background-size: cover;
  }
}
.page-404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.page-404-code {
  font-size: 5.625rem;
  line-height: 1.2;
  font-weight: 700;
}
.page-404-title {
  text-transform: none;
}
.page-404-btn {
  margin-top: 1.5rem;
  min-width: 11rem;
}
.my-orders {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
.my-orders .checkout {
  margin-top: 0;
}
.order .checkout-form .container {
  justify-content: space-between;
}
.order-date {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
}
.order-date span {
  color: #adadad;
}
.order-cost {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width >= 1024px) {
  .favorites-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.balance-level {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (width >= 1024px) {
  .balance-level {
    background-color: rgba(22, 24, 28, 0.7);
    backdrop-filter: blur(1.25rem);
    padding: 0.313rem 0.313rem 1.5rem;
    border-radius: 0.875rem;
  }
}
.balance-level-stages {
  margin: 0;
  overflow: visible;
}
@media (width >= 1024px) {
  .balance-level-stages .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.625rem;
  }
}
.balance-level-stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1rem 1.5rem;
  align-items: center;
  text-align: center;
  border-radius: 0.75rem;
  backdrop-filter: blur(2.5rem);
  background: rgba(255, 255, 255, 0.05) url(../img/balance-level-bg.svg) center bottom / 23.625rem 12.5rem no-repeat;
  overflow: hidden;
  will-change: transform;
}
@media (width < 1024px) {
  .balance-level-stage {
    width: 13.625rem;
    backdrop-filter: unset;
  }
}
.balance-level-stage:not(.active):after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(22, 24, 28, 0.83);
  z-index: 2;
}
@media (width >= 1024px) {
  .balance-level-stage:not(.active):after {
    backdrop-filter: blur(2.5rem);
  }
}
.balance-level-stage-img {
  width: min(11.25rem, 100%);
  display: flex;
}
.balance-level-stage-img img {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
}
.balance-level-stage-title {
  font-size: 0.813rem;
  font-weight: 700;
}
.balance-level-progress {
  height: 0.625rem;
  background-color: #16181c;
  border-radius: 0.625rem;
  position: relative;
}
@media (width >= 1024px) {
  .balance-level-progress {
    margin: 0 0.313rem;
  }
}
.balance-level-progress:before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--percent) * 1%);
  background-color: #05fbff;
  border-radius: inherit;
}
.balance-level-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (width >= 1024px) {
  .balance-level-title {
    padding: 0 1.25rem;
  }
}
.balance {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media (width < 1024px) {
  .balance {
    flex-direction: column;
    align-items: unset;
  }
}
.balance-body {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05) url(../img/balance-bg.svg) center bottom / 29.125rem 14.313rem no-repeat;
  border-radius: 0.75rem;
  backdrop-filter: blur(2.5rem);
}
@media (width >= 1024px) {
  .balance-body {
    width: 24.375rem;
  }
}
.balance-title {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
}
.balance-credits {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.balance-credits > img {
  flex: none;
  width: 5rem;
}
.balance-credits-body {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.balance-credits-sum {
  font-size: 1.75rem;
}
.balance-credits-cost {
  font-size: 1.125rem;
  color: #adadad;
}
.balance-top-up-btn {
  margin: 1.625rem auto 0 0;
  min-width: 8.75rem;
}
.balance-top-up-btn:not(:hover) {
  color: #000;
}
.balance-history {
  flex: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  backdrop-filter: blur(2.5rem);
  align-self: stretch;
}
.balance-history-table {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width < 768px) {
  .balance-history-table {
    display: block;
  }
}
@media (width < 768px) {
  .balance-history-table thead {
    display: none;
  }
}
.balance-history-table thead td {
  padding-top: 0;
  padding-bottom: 0.625rem;
  border-bottom-width: 0.375rem;
  color: #adadad;
}
@media (width >= 768px) {
  .balance-history-table td {
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-bottom: solid 1px #23272f;
  }
  .balance-history-table td:last-child {
    padding-right: 0;
    text-align: right;
  }
}
@media (width < 768px) {
  .balance-history-table td {
    display: grid;
    grid-column: span 2;
    grid-template-columns: subgrid;
    gap: 0.75rem;
  }
  .balance-history-table td:before {
    content: attr(data-title);
    color: #adadad;
  }
}
@media (width < 768px) {
  .balance-history-table tbody {
    display: flex;
    flex-direction: column;
  }
}
@media (width < 768px) {
  .balance-history-table tbody tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .balance-history-table tbody tr:not(:last-child) {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: solid 1px #23272f;
  }
}
.balance-history-table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}
.balance-history-table-cost {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  font-weight: 600;
}
.balance-history-table-credits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #adadad;
}
.balance-history-table-credits b {
  color: #fff;
}
.balance-history-table-credits > img {
  flex: none;
  width: 1.125rem;
}
.modal-top-up-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-top-up-desc {
  font-weight: 700;
  text-transform: uppercase;
  color: #adadad;
}
.modal-top-up-form {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.modal-top-up-form .select-options {
  backdrop-filter: unset;
  background-color: #16181c;
}
@media (width >= 480px) {
  .modal-top-up-form-submit {
    min-width: 11.875rem;
    align-self: start;
  }
}
.settings-forms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.settings-form {
  border-radius: 0.875rem;
  padding: 0.313rem;
  backdrop-filter: blur(1.25rem);
  background-color: rgba(22, 24, 28, 0.7);
}
.settings-form-body {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(2.5rem);
}
@media (width < 1024px) {
  .settings-form-body {
    padding: 1.5rem;
  }
}
.settings-form-title {
  margin-bottom: 0.5rem;
}
.settings-form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem 0.625rem;
}
@media (width < 1024px) {
  .settings-form-inputs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .settings-form-inputs {
    grid-template-columns: 1fr;
  }
}
.settings-form-input-wrapp {
  gap: 0.5rem;
  display: flex;
}
.settings-form-input-wrapp:has(.input:focus) {
  border-color: #05fbff;
  background-color: rgba(22, 24, 28, 0.7);
}
.settings-form-input-title {
  align-self: center;
  flex: none;
  color: #adadad;
}
.settings-form-input {
  width: 0;
  flex: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 0;
  background: none;
  border: 0;
  backdrop-filter: unset;
  height: auto;
}
.settings-form-input:focus {
  background: none;
}
.settings-form-input::-webkit-input-placeholder {
  color: #fff;
}
.settings-form-input:-moz-placeholder {
  color: #fff;
}
.settings-form-input::-moz-placeholder {
  color: #fff;
}
.settings-form-input:-ms-input-placeholder {
  color: #fff;
}
.settings-form-submit {
  align-self: flex-start;
  min-width: 13.5rem;
}
