@charset "UTF-8";
/*E ▼ ▼ ▼ ▼        SPEC                  */
/*E   TEST             */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
[data-fullscreen] {
  min-height: 100vh;
  min-height: 100svh;
  min-height: calc(var(--vh, 1vh) * 100);
}
@media (max-width: 35rem) {
  [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }
}

.chat-info-block {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 16px;
    background-color: var(--block-3);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-info-block__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-info-block__icon {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.chat-info-block__text {
    font-weight: 500;
    color: #fff;
}

.page {
    display: flex;
    min-height: 100vh;
}

.pb-product__box-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.pb-product__box-buy > * {
  flex: 0 0 auto;
  min-width: 0;
}

.e-cost-choose {
  display: flex;
  align-items: center;
  gap: 2.5em;
}
.e-cost-choose__ttl {
  font-weight: 500;
  color: #3d3d48;
}

.menu-cost-choose {
  display: grid;
  justify-content: start;
  gap: 0.75em;
  grid-template-columns: 2.88em 6.88em 2.88em;
}
:where(.menu-cost-choose) li {
  display: grid;
}
.menu-cost-choose__output {
  border-radius: 0.63rem;
  background-color: #16161B;
  font-size: 0.88rem;
  font-weight: 500;
  color: #737392;
  text-align: center;
  padding: 0.82em 0.63em;
}
.btn-m-choose {
  border-radius: 0.63rem;
  background-color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out 0s;
}
@media (hover) and (min-width: 34.38em) {
  .btn-m-choose:hover, .btn-m-choose:focus-visible {
    background-color: var(--main-dark);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 84.38em) {
  .pb-product__box-buy {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5em;
  }
  .e-cost-choose {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75em;
  }
}

/* Фиксируем позицию body, которую меняет панель гугла*/

.page_fix {
    top: 0 !important;
    position: static !important;
}

/* Прячем панель гугла */

.skiptranslate {
    display: none !important;
}

/* language */

.language {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.language__img {
    margin: 2px;
    cursor: pointer;
    opacity: .5;
}

.language__img:hover,
.language__img_active {
    opacity: 1;
}

/* content */

.content {
    text-align: center;
    margin: auto;
}

.avatar-upload {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

.avatar-input {
    display: none;
}

.avatar-info {
    font-size: 12px;
    color: #666;
}

.support-badge {
  display: block;
  font-size: 0.8em;
  color: #a7b5c3;
  margin-top: 5px;
}
.order-details div {
  margin: 3px 0;
}

/*  new  */
.pp-check-pay {
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  transition: 0.3s ease-out 0s;
  overflow: hidden;
  overflow: clip;
}
.pp-check-pay::after {
  content: "Выбрано";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  font-size: 0.57em;
  padding: 0.32em 1.5em 0.32em 1.25em;
  border-radius: 0 4.6em 0 0;
  background-color: var(--main, #5e5be6);
  opacity: 0;
  transition: inherit;
}
.pp-check-pay:has(input:checked) {
  background: rgba(94, 91, 230, 0.1);
  border-color: var(--main, #5e5be6);
}
.pp-check-pay:has(input:checked)::after {
  opacity: 1;
}
@media (hover) and (min-width: 34.38em) {
  .pp-check-pay:hover, .pp-check-pay:focus-visible {
    border-color: var(--main, #5e5be6);
  }
}

._ibg {
  position: relative;
  z-index: 2;
}
._ibg ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

._ibg-c {
  position: relative;
  z-index: 2;
}
._ibg-c ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

._ibg-f {
  position: relative;
  z-index: 2;
}
._ibg-f ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap'); */
:root {
  --block-3: #1a1a20;
  --main: #5e5be6;
  --input: #3d3d48;
  --block-2: #16161b;
  --block-1: #131317;
  --text-color-dark: #737392;
  --main-dark: #403e8d;
  --text-color-default: #fff;
  --telegram: #08c;
  --red-transparent: rgba(255, 81, 81, 0.1);
  --red: #ff5151;
  --block-4: #202027;
  --vk: #07f;
  --yellow: #ffd028;
  --white: #fff;
  --green-transparent: rgba(36, 166, 15, 0.1);
  --green: #24A60F;
  --orange-transparent: rgba(255, 155, 63, 0.1);
  --orange: #ff9b3f;
  --aquamarine: #41c9e7;
}

/* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
/*E ▼ ▼ ▼ ▼        SPEC                  */
/*E   TEST             */
[data-fullscreen] {
  min-height: 100vh;
  min-height: 100svh;
  min-height: calc(var(--vh, 1vh) * 100);
}

@media (max-width: 48rem) {
  [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }
}
._ibg {
  position: relative;
  z-index: 2;
}

._ibg ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

._ibg-c {
  position: relative;
  z-index: 2;
}

._ibg-c ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

._ibg-f {
  position: relative;
  z-index: 2;
}

._ibg-f ._ibg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

*, *::before, *::after {
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  border: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  scroll-behavior: smooth;
}

input, button, textarea {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
}

button {
  display: inline-block;
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

li, ul {
  list-style: none;
}

a, a:visited, a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

html, body {
  height: 100%;
}

.wrapper {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
}

.wrapper > * {
  min-width: 0;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

img {
  vertical-align: top;
  max-width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: initial;
}

form, input {
  width: 100%;
}

html {
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Flex", Helvetica, Arial, sans-serif;
  color: #fff;
  text-rendering: optimizeSpeed;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  scrollbar-width: thin; /* "auto" или "thin"  */
  scrollbar-color: var(--white) rgba(227, 240, 255, 0); /* плашка скролла и дорожка */
}

@media (min-width: 47.5em) {
  *::-webkit-scrollbar {
    width: 0.63rem; /* ширина scrollbar */
    height: 0.63rem;
  }
}
*::-webkit-scrollbar-track {
  background: rgba(227, 240, 255, 0); /* цвет дорожки */
}

*::-webkit-scrollbar-thumb {
  background-color: var(--white); /* цвет плашки */
  border-radius: 5.63rem; /* закругления плашки */
  border: 0.07rem solid rgba(227, 240, 255, 0); /* padding вокруг плашки */
}

table {
  border-collapse: collapse;
  width: 100%;
}

a, label {
  -webkit-tap-highlight-color: transparent;
}

input[type=text], input[type=submit], textarea {
  -webkit-appearance: none;
}

address {
  font-style: normal;
}

._container {
  margin: 0 auto;
  padding: 0 1.25rem;
  max-width: 93.13rem;
}

@media (max-width: 22.44em) {
  ._container {
    padding: 0 0.94rem;
  }
}
.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  background-color: inherit;
  border-radius: 0.25em;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.88em;
  padding: 0 0.94em;
  gap: 0.63em;
}

.select__value > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.63em;
  flex: 0 0 0.63em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__input {
  width: 6.25% rem;
  height: 6.25% rem;
  background-color: transparent;
}

.select__options {
  color: #000;
  position: absolute;
  top: 90%;
  left: 0;
  min-width: 100%;
  background-color: #fff;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.select__option {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0.32em 0.94em;
}

.select__option._select-selected {
  background-color: #eee;
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

.select__body {
  display: block;
  width: 100%;
  height: 100%;
}

.select__content {
  background-color: inherit;
}

.select__title {
  width: 100%;
  height: 100%;
}

.select__value {
  padding: 0 0 0 0;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow-x: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: initial;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper, .swiper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input, textarea, button, select, a {
  -webkit-tap-highlight-color: transparent;
}

svg:not([class]) {
  display: block;
  -webkit-transition: inherit;
  transition: inherit;
  width: 100%;
  height: 100%;
  fill: currentcolor;
}

svg path {
  fill: inherit;
  stroke: inherit;
}

@-moz-document url-prefix() {
  path {
    fill: inherit;
    stroke: inherit;
  }
}
.p__box-scroll {
  overflow-x: auto;
  scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.p__box-scroll > * {
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}

.txt-hide {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.p-img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: var(--br-2);
  transition: .3s;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-img-c {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

._c-ibg {
  position: relative;
  isolation: isolate;
}

._c-ibg > ._ibg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.p-vid {
  position: relative;
  z-index: 2;
  padding: 0 0 0 0;
}

.p-vid__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
}

.p-vid-c > .p-vid__media {
  -o-object-fit: contain;
  object-fit: contain;
}

._svg svg, .svg svg {
  width: 100%;
  height: 100%;
}

._hide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  pointer-events: none;
  opacity: 0;
}

._hide2 {
  position: absolute;
  top: -200vw;
  left: -200vw;
  z-index: -10;
  opacity: 0;
}

._txt-hide {
  overflow: clip;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

._txt-hide--2 {
  -webkit-line-clamp: 2;
}

.swiper-slide, .swiper, .swiper-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.swiper, .swiper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.375;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  font-family: "Roboto Flex", Helvetica, Arial, sans-serif;
  background-color: #0e0e10;
}

.wrapper {
  z-index: 2;
  min-height: 100svh;
}

.swiper-pagination {
  padding-top: 1.25em;
}

.swiper-pagination > * {
  font-size: 1.13em;
  margin-left: 0.5em !important;
}

.swiper-pagination-bullet {
  width: 0.75em;
  height: 0.75em;
  background-color: #fff;
  opacity: 1;
}

@media (any-hover: hover) {
  .swiper-pagination-bullet:hover, .swiper-pagination-bullet:focus {
    scale: 1.3;
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #eee;
}

.drop-win {
  position: relative;
  z-index: 5;
  cursor: pointer;
}

.drop-win:hover .drop-win__chl, .drop-win:focus .drop-win__chl {
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}

.drop-win__chl {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -98%);
  -ms-transform: translate(-50%, -98%);
  transform: translate(-50%, -98%);
}

.s-error {
  padding: 1.25rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  justify-items: center;
}

.s-error__img {
  max-width: 38.32rem;
  width: 62.96875vw;
}

.s-error__img:not(:last-child) {
  margin-bottom: 2.5rem;
}

.s-error__ttl {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 50em) {
  .s-error__ttl {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 25rem;
  }
}
@media (max-width: 31.25em) {
  .s-error__ttl {
    font-size: 1.25rem;
    max-width: 20.94rem;
  }
}
.btn, .btn-i, .btn-i-ar, .btn-tag, .btn-c {
  padding: 0.75em 0.82em;
  font-weight: 600;
  color: var(--text-color-dark);
  border-radius: 0.63rem;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn:hover, .btn:focus, .btn-i:hover, .btn-i:focus, .btn-i-ar:hover, .btn-i-ar:focus, .btn-tag:hover, .btn-tag:focus, .btn-c:hover, .btn-c:focus {
    color: var(--white);
    background-color: var(--main);
  }
}
.btn-lang {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.63em;
  grid-auto-flow: column;
}

.btn-lang__ico {
  width: 1em;
  height: 1.38em;
}

.btn-lang._js-active {
  background-color: var(--main);
  color: var(--white);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-lang._js-active:hover, .btn-lang._js-active:focus {
    background-color: var(--main-dark);
  }
}
.btn-in {
  min-width: 6.88em;
  background-color: var(--main);
  color: var(--white);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-in:hover, .btn-in:focus {
    background-color: var(--main-dark);
  }
}
.btn--actv, .btn-c--actv {
  background-color: var(--main);
  color: var(--white);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn--actv:hover, .btn--actv:focus, .btn-c--actv:hover, .btn-c--actv:focus {
    background-color: var(--main-dark);
  }
}
.btn-i, .btn-i-ar {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
}

.btn-i__ico, .btn-i-ar__ico {
  width: 1.13em;
  height: 1.13em;
}

.btn-i__b-ico, .btn-i-ar__b-ico {
  display: block;
  width: 1.25em;
  height: 1.25em;
}

.btn-i-ar {
  gap: 0.5em;
}

.btn-i-ar__ico {
  width: 0.75em;
}

.btn-tag {
  padding: 0.75em 1.25em;
}

.btn-c {
  text-align: center;
}

@media (max-width: 68.75em) {
  .btn-burg {
    width: 1.88em;
    height: 1.88em;
    border-radius: 0.13em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  .btn-burg__ico {
    display: block;
    width: 100%;
    height: 0.22em;
    background-color: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .btn-burg::before, .btn-burg::after {
    content: "";
    display: inline-block;
    height: 0.22em;
    width: 100%;
    border-radius: 3;
    background-color: #fff;
    -webkit-transition: 0.4s ease-out 0s;
    transition: 0.4s ease-out 0s;
  }
  .btn-burg::after {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .btn-burg::before {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    position: relative;
    isolation: isolate;
  }
}
._js-burger-open .btn-burg {
  scale: 1.2;
}

._js-burger-open .btn-burg .btn-burg__ico {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

._js-burger-open .btn-burg::before {
  -webkit-transform: rotate(-45deg) translate(-0.37em, -0.12em);
  -ms-transform: rotate(-45deg) translate(-0.37em, -0.12em);
  transform: rotate(-45deg) translate(-0.37em, -0.12em);
}

._js-burger-open .btn-burg::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}

.page__header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  width: 100dvw;
}

.header__burger-f, .btn-burger {
  display: none;
}

.header__b-burg {
  display: none;
}

@media (max-width: 68.75em) {
  ._js-burger-open {
    overflow: hidden;
  }
  .header__b-burg {
    translate: -1.25em 0;
  }
  .header__burger-f {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 120;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    background-color: var(--block-2);
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    translate: 120% 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  ._js-burger-open .header__burger-f {
    translate: 0 0;
  }
}
.header {
  background-color: var(--block-1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  padding: 1.5em 0.75em 1.5em 0;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.header__box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  grid-auto-flow: column;
}

.header__l {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  grid-auto-flow: column;
}

.menu-header {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.94rem;
  grid-auto-flow: column;
}

.menu-header__elm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-header__elm > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.nav__list {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
}

.nav__link {
  display: block;
  padding: 0.75em 1.5em;
  color: var(--text-color-dark);
  margin: -0.75em 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-weight: 500;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .nav__link:hover, .nav__link:focus {
    color: var(--white);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__list > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.nav__link--ico {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.38em;
  grid-auto-flow: column;
}

.logo {
  display: block;
  width: 6.25em;
  height: 2em;
  font-size: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .logo:hover, .logo:focus {
    scale: 0.95;
  }
}
.header__mbl {
  display: none;
}

.search__close {
  display: none;
}

.header__btn-i._js-active .btn-i__push {
  opacity: 1;
}

.header__in-log {
  display: none;
}

.header._js-login .header__no-log {
  display: none;
}

.header._js-login .header__in-log {
  display: block;
}

.btn-bell {
  width: 2.88em;
  height: 2.88em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-bell__ico {
  width: 1.25em;
  height: 1.25em;
  position: relative;
  display: block;
  color: var(--text-color-dark);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-bell:hover, .btn-bell:focus {
    background-color: var(--block-2);
  }
  .btn-bell:hover .btn-bell__ico, .btn-bell:focus .btn-bell__ico {
    color: var(--white);
  }
}
.btn-bell__notice-i {
  width: 0.63em;
  border-radius: 50%;
  height: 0.63em;
  background-color: var(--block-2);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  translate: 20% -20%;
}

.btn-bell__notice-i::after {
  content: "";
  display: inline-block;
  width: 0.38em;
  border-radius: 50%;
  height: 0.38em;
  background-color: var(--main);
}

.btn-cash {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  grid-auto-flow: column;
  height: 2.88em;
  border-radius: 0.63em;
  background-color: var(--block-2);
  font-weight: 600;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-cash:hover, .btn-cash:focus {
    background-color: var(--main-dark);
  }
  .btn-cash:hover .b-money__ico, .btn-cash:focus .b-money__ico {
    color: var(--white);
  }
  .btn-cash:hover .add-btn-cash, .btn-cash:focus .add-btn-cash {
    background-color: var(--main);
  }
}
.b-money {
  padding: 0.63em 0.75em;
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
}

.b-money__r {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25em;
  grid-auto-flow: column;
}

.b-money__ico {
  color: var(--text-color-dark);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.b-money__ico, .add-btn-cash__ico {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.add-btn-cash {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.88em;
  border-radius: inherit;
  background-color: var(--block-3);
  height: 100%;
}

.btn-profile {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
  height: 2.88em;
}

.btn-profile__arr {
  width: 0.88em;
  height: 0.88em;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.drop-win._js-active .btn-profile__arr {
  rotate: 180deg;
}

.header__table-on, .header__mbl-box-login, .header__mbl-btn-cash {
  display: none;
}

.header__burger {
  display: none;
}

@media (max-width: 87.5em) {
  .header {
    font-size: 0.88em;
    padding: 1.25em 0.75rem 1.25em 0;
  }
}
@media (max-width: 75em) {
  .header__l {
    gap: 0.75em;
  }
  .nav__link {
    padding: 0.75em 0.88em;
  }
}
@media (max-width: 68.75em) {
  .btn-burg {
    position: relative;
    isolation: isolate;
  }
  .header__tablet {
    display: block;
  }
  .header__pc {
    display: none;
  }
  .header__burger {
    position: absolute;
    top: 50%;
    left: r;
    right: 2.5em;
    z-index: 200;
    translate: 0 -50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header {
    padding: 1.25em 5rem 1.25em 0;
  }
  .nav {
    font-size: 1.63rem;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.75em;
  }
  .nav__link {
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0.75em;
    margin: -0.75em;
  }
  .header__burger-f {
    padding: 7.75em 2.5em 2.5em;
  }
}
@media (max-width: 45.63em) {
  .header__table-of, .header._js-login .header__table-of {
    display: none;
  }
  .header {
    padding: 1.25em 4.38rem 1.25em 0;
  }
  .header._js-login .header__mbl-btn-cash {
    display: block;
  }
  .header__mbl-btn-cash {
    font-size: 0.57em;
  }
}
@media (max-width: 37.5em) {
  .header__mbl-of {
    display: none;
  }
  .header__mbl-box-login {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 0.75rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    font-size: 0.63em;
  }
  .btn--addle {
    background-color: var(--block-4);
    padding: 0.75em 1.25em;
  }
  .header__burger-f {
    width: 25rem;
  }
  .header._js-login .header__mbl-box-login {
    display: none;
  }
}
@media (max-width: 31.25em) {
  .menu-header {
    font-size: 0.75em;
  }
  .header__logo {
    font-size: 0.75em;
  }
  .header__burger-f {
    width: 100%;
  }
}
@media (max-width: 24.38em) {
  .menu-header {
    gap: 0.5rem;
  }
}
@media (max-width: 23.75em) {
  .header {
    padding: 1em 2.13rem 1em 0;
  }
  .header__burger {
    right: 0.94rem;
  }
  .header__mbl-box-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.drop-win {
  position: relative;
  z-index: 5;
}

.drop-win__wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  translate: 0 100%;
  padding: 1.20em 0 0 0;
  pointer-events: none;
}

.drop-win__list-wrap {
  overflow: hidden;
}

.drop-win__list {
  border-radius: 0.63rem;
  background-color: var(--block-3);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.69em;
  z-index: 20;
  max-width: 12.5rem;
  overflow: hidden;
  translate: 0 -100%;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  opacity: 0;
  pointer-events: none;
}

.drop-win__link {
  font-weight: 500;
  color: var(--text-color-dark);
  padding: 0.75em 1.25em;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .drop-win__link:hover, .drop-win__link:focus {
    color: var(--white);
  }
}
.btn-i-ar__ico {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.drop-win._js-active .btn-i-ar__ico {
  display: block;
  rotate: 180deg;
}

.drop-win._js-active .drop-win__list {
  translate: 0 0;
  opacity: 1;
  pointer-events: auto;
}

.ava {
  display: block;
  width: 2.88em;
  border-radius: 50%;
  height: 2.88em;
  overflow: hidden;
  overflow: clip;
}

.drop-win__wrap--profile {
  left: initial;
  right: 0;
}

.drop-win__list--profile {
  padding: 1.5em;
  background-color: var(--block-3);
  gap: 0.75em;
  max-width: initial;
}

.btn-i--profile {
  padding: 0.75em 1.25em;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-i--profile > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.btn-i__name {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 9.38rem;
}

.lang-list {
  border-radius: 0.63rem;
  background-color: var(--block-3);
  padding: 0.94em 1.19em;
}

.rating {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.5em;
  grid-auto-flow: column;
  color: #616161;
}

.rating__star {
  display: block;
  height: 1em;
  width: 1em;
  height: 1em;
}

.rating--1 > *:nth-child(1) {
  color: var(--yellow);
}

.rating--2 > *:nth-child(-n+2) {
  color: var(--yellow);
}

.rating--3 > *:nth-child(-n+3) {
  color: var(--yellow);
}

.rating--4 > *:nth-child(-n+4) {
  color: var(--yellow);
}

.rating--5 {
  color: var(--yellow);
}

.input {
  padding: 1.07em 1.57em;
  border-radius: 0.63em;
  background-color: var(--block-2);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.input::-webkit-input-placeholder {
  color: #2d2d32;
  -webkit-transition: inherit;
  transition: inherit;
}

.input::-moz-placeholder {
  color: #2d2d32;
  -moz-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .input:hover::-webkit-input-placeholder, .input:focus::-webkit-input-placeholder {
    color: rgba(217, 217, 219, 0.4);
  }
  .input:hover::-moz-placeholder, .input:focus::-moz-placeholder {
    color: rgba(217, 217, 219, 0.4);
  }
}
.swiper-pagination {
  font-size: 1.13rem;
  position: initial;
  gap: 0.63rem;
  height: initial;
  padding: 0.63rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-pagination > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.swiper-pagination-bullet {
  width: 0.63em;
  height: 0.63em;
  background-color: var(--block-3);
  margin: 0 !important;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .swiper-pagination-bullet:hover, .swiper-pagination-bullet:focus {
    background-color: var(--main);
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main);
}

.drop-win__wrap--center {
  left: 50%;
  translate: -50% 100%;
}

.box-push-c {
  max-width: initial;
  border-radius: 0.63em;
  background-color: var(--block-3);
  padding: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
}

.btn-reset-push {
  width: 100%;
  color: var(--red);
  text-align: center;
  background-color: var(--red-transparent);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-reset-push:hover, .btn-reset-push:focus {
    background-color: var(--red);
  }
}
.list-push-c {
  width: 19.57em;
  max-height: 25rem;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 0.63em 0 0;
  margin: 0 -0.62em 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.push-c__box {
  padding: 0.75em;
  border-radius: 0.63rem;
  background-color: var(--block-4);
  overflow: hidden;
  overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
  position: relative;
  isolation: isolate;
}

.push-c__c-mess {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.push-c__top {
  font-size: 0.88rem;
  color: #737373;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
}

.push-c__ttl {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.push-c__decor, .push-c__r-decor {
  width: 5.13em;
  border-radius: 50%;
  height: 5.13em;
  background-color: var(--green);
  -webkit-filter: blur(40px);
  filter: blur(40px);
  position: absolute;
  z-index: -1;
}

.push-c__decor {
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.push-c__r-decor {
  right: 0;
  bottom: 0;
  -webkit-transform: translate3d(50%, 50%, 0);
  transform: translate3d(50%, 50%, 0);
  opacity: 0.5;
}

.push-c__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.07em;
  color: var(--green);
}

.push-c__m-ico {
  width: 1.25rem;
  height: 1.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.push-c__mess {
  font-size: 0.94em;
}

.push-c__mess--gray {
  color: var(--input);
}

.push-c__mess--sub-gray {
  color: #a7a7a7;
}

.push-c__decor--red, .push-c__r-decor--red {
  background-color: var(--red);
}

.push-c__header.push-c__header--red {
  color: var(--red);
}

.push-c__box--green {
  background-color: var(--green);
}

.push-c__header--wite {
  color: var(--white);
}

.push-c__box--red {
  background-color: var(--red);
}

.p__global-push {
  position: fixed;
  top: 6.88em;
  left: 0;
  z-index: 40;
  pointer-events: none;
  width: 100%;
}

.global-push__box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.global-push__wrap-card {
  width: 19.57em;
}

.main__pp-to-center {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7.5em 0 7.5em;
}

@media (max-width: 187.5em) and (min-width: 125em) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 87.5em) {
  .p__global-push {
    top: 5.32em;
  }
}
@media (max-width: 37.5em) {
  .main__pp-to-center {
    padding: 7.5em 0 5.63em;
  }
}
@media (max-width: 31.25em) {
  .list-push-c {
    font-size: 1em;
  }
  .main__popup {
    min-height: initial !important;
    font-size: 0.88rem;
  }
}
@media (max-width: 25em) {
  .list-push-c {
    font-size: 0.88em;
  }
}
@media (max-width: 23.75em) {
  .drop-win__wrap--center {
    translate: -62% 100%;
  }
  .global-push__box {
    font-size: 0.88em;
  }
}
.p__ttl {
  font-size: 2em;
  font-weight: 700;
}

.p__ttl:not(:last-child) {
  margin-bottom: 1em;
}

.n-list {
  margin-top: 6.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-bottom: 3.75rem;
}

.n-list a, .n-list p {
  font-size: 1.5rem;
}

.n-list a {
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .n-list a:hover, .n-list a:focus {
    color: #9ae4f1;
  }
}
.main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.main__container {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main__decor-l {
  position: absolute;
  left: -25em;
  bottom: 0;
  z-index: -2;
  -webkit-transform: translate3d(-50%, 50%, 0);
  transform: translate3d(-50%, 50%, 0);
}

@media (min-width: 50em) {
  .main__blur-l, .main__blur-r {
    width: 44.88em;
    height: 44.88em;
    border-radius: 50%;
    background-color: var(--main);
    -webkit-filter: blur(37.5em);
    filter: blur(37.5em);
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
  }
}
.main__blur-r {
  display: none;
}

@media (min-width: 125em) {
  .main__blur-r {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -5;
    -webkit-filter: blur(12.5em);
    filter: blur(12.5em);
    opacity: 0.4;
    -webkit-transform: translate3d(40%, 0, 0);
    transform: translate3d(40%, 0, 0);
  }
}
.main__box {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main__cut {
  overflow: hidden;
  overflow: clip;
  padding-top: 6rem;
}

.main__img-l-dec {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  width: 18.75em;
  height: 18.75em;
}

.main__l {
  padding: 9.38rem 0 5.63rem 0;
  min-height: 41.88rem;
}

.main__ttl {
  max-width: 46.25rem;
  line-height: 1.2307692308;
  font-size: 4.07rem;
  font-weight: 700;
}

.main__ttl:not(:last-child) {
  margin-bottom: 2.38rem;
}

.main__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(7%, white), color-stop(98%, white), to(transparent));
  -webkit-mask: linear-gradient(90deg, transparent, white 7%, white 98%, transparent);
  mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(7%, white), color-stop(98%, white), to(transparent));
  mask: linear-gradient(90deg, transparent, white 7%, white 98%, transparent);
  width: 87.5em;
  max-height: 100%;
  translate: 30% 0;
}

.main__desc {
  max-width: 38.44rem;
  line-height: 1.8421052632;
  font-size: 1.19rem;
  font-weight: 300;
}

.main__card-box {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem;
  grid: none/repeat(3, 1fr);
  translate: 0 -50%;
}

.card-main {
  padding: 1.69em 1.97em;
  border-radius: 0.63rem;
  background-color: var(--block-1);
  overflow: hidden;
  overflow: clip;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.88em;
  grid: none/auto 1fr;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.card-main__img {
  width: 4.38em;
  height: 4.38em;
}

.card-main::after, .card-main::before {
  content: "";
  display: inline-block;
  width: 5.13em;
  border-radius: 50%;
  height: 5.13em;
  background-color: var(--main);
  -webkit-filter: blur(3.57em);
  filter: blur(3.57em);
  position: absolute;
  z-index: -5;
}

.card-main::before {
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-30%, -30%, 0);
  transform: translate3d(-30%, -30%, 0);
}

.card-main::after {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translate3d(60%, 10%, 0);
  transform: translate3d(60%, 10%, 0);
}

.card-main__ttl {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-main__txt {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 87.5em) {
  .card-main {
    font-size: 0.88em;
    padding: 1em 1.88em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .main__cut {
    padding-top: 2.5rem;
  }
}
@media (max-width: 81.25em) {
  .main__img {
    translate: 40% 0;
  }
}
@media (max-width: 71.88em) {
  .main__card-box {
    gap: 1rem;
  }
}
@media (max-width: 68.75em) {
  .main__cut {
    padding-top: 0;
  }
  .main__l {
    padding: 9.38rem 0 5.63rem 0;
    min-height: 41.88rem;
  }
  .main__ttl {
    max-width: 46.25rem;
    font-size: clamp(2.63rem, 5.4545454545vw + 0.07rem, 3.75rem);
  }
  .main__img {
    width: 56.25em;
    translate: 30% 0;
  }
  .main__desc {
    max-width: 31.25rem;
  }
}
@media (max-width: 71.88em) and (min-width: 59.38em) {
  .card-main {
    font-size: 1.2173913043vw;
  }
}
@media (max-width: 59.38em) {
  .card-main {
    padding: 1em 1em;
  }
  .main__card-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    translate: 0 -80%;
  }
  .main__card-box > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 44%;
  }
}
@media (max-width: 51.25em) {
  .main__l {
    padding: 6.25rem 0 0 0;
    min-height: initial;
    max-width: initial;
  }
  .main__img {
    position: static;
    translate: 0 0;
    width: 100%;
    margin-top: -1.25em;
  }
  .main__card-box {
    translate: 0 0;
    margin-top: -11.25em;
  }
  .main__decor-l {
    top: 0;
    left: initial;
    right: 0;
    bottom: initial;
    display: block;
  }
  .main__blur-l {
    width: 26.13em;
    height: 26.13em;
    border-radius: 50%;
    background-color: var(--main);
    -webkit-filter: blur(6.25em);
    filter: blur(6.25em);
    -webkit-transform: translate3d(90%, -90%, 0);
    transform: translate3d(90%, -90%, 0);
    opacity: 0.5;
  }
  .main__img-l-dec {
    display: none;
  }
}
@media (max-width: 47.5em) {
  .card-main {
    max-width: 48%;
  }
}
@media (max-width: 43.75em) {
  .card-main {
    max-width: initial;
  }
  .main__card-box {
    margin-top: -24.2857142857vw;
  }
  .main__ttl:not(:last-child) {
    margin-bottom: 1.13rem;
  }
}
@media (max-width: 31.25em) {
  .main__img {
    margin: 0;
  }
  .main__ttl {
    font-size: 1.88rem;
  }
  .main__desc {
    font-size: 1rem;
  }
  .card-main__ttl {
    font-size: 1.13rem;
  }
}
.main__ttl--long {
  max-width: initial;
  text-wrap: initial;
}

.top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.88rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-list > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 calc(33.33% - 1.88rem);
  flex: 1 0 calc(33.33% - 1.88rem);
}

.main__top-list {
  width: 100%;
  margin-top: -4.81rem;
  padding-bottom: 3.13rem;
}

.card-top {
  border-radius: 0.63rem;
  background-color: var(--block-1);
  overflow: hidden;
  overflow: clip;
  padding: 1.57em 2.19em;
  display: block;
}

.card-top__num {
  position: absolute;
  top: 0;
  left: 0.13em;
  z-index: 2;
  line-height: 0.88;
  font-size: 15.63em;
  font-weight: 800;
  mix-blend-mode: color-dodge;
  opacity: 0.15;
}

.card-top__name {
  font-size: 3.13em;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card-top__name:not(:last-child) {
  margin-bottom: 0.63rem;
}

.card-top__desc {
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
}

.card-top-sm__name {
  font-size: 2.19em;
  max-width: 5.72em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.card-top-sm__desc {
  color: var(--input);
}

.card-top-sm__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.19em;
}

.card-top-sm__info:not(:last-child) {
  margin-bottom: 1em;
}

.card-top-sm__info > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-top-sm__btn {
  min-width: 14.38rem;
  text-align: center;
}

.main__desc:not(:last-child) {
  margin-bottom: 4.07rem;
}

.main__btn {
  font-size: 1.38em;
  min-width: 17.46em;
  border-radius: 0.55em;
}

@media (max-width: 81.25em) {
  .top-list {
    font-size: 0.88rem;
  }
}
@media (max-width: 68.75em) {
  .card-top__desc {
    font-size: 0.88rem;
  }
  .card-top-sm__desc {
    font-size: 0.88rem;
  }
  .card-top-sm__btn {
    font-size: 0.88rem;
  }
  .top-list {
    font-size: clamp(0.5em, 1.0909090909vw + 0.07em, 0.75em);
  }
}
@media (max-width: 68.75em) {
  .card-top-sm__btn {
    min-width: initial;
    padding: 0.75em 1.25em;
  }
}
@media (max-width: 59.38em) {
  .card-top-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .card-top-sm__name {
    max-width: initial;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .card-top-sm__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 53.13em) {
  .top-list {
    gap: 0.75rem;
  }
  .top-list > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(33.33% - 0.75rem);
    flex: 1 0 calc(33.33% - 0.75rem);
  }
}
@media (max-width: 43.75em) {
  .top-list {
    font-size: 0.63rem;
  }
  .top-list > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 0.75rem);
    flex: 1 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 37.5em) {
  .top-list {
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 31.25em) {
  .card-top-sm__mbl-of {
    display: none;
  }
  .card-top-sm__btn {
    text-transform: uppercase;
    padding: 0.75em;
  }
  .card-top {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .card-top-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 0.75rem);
    flex: 1 0 calc(50% - 0.75rem);
  }
  .main__btn {
    min-width: initial;
    width: 100%;
    font-size: 1.13em;
  }
  .main__desc:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 25em) {
  .top-list {
    font-size: 0.5rem;
  }
  .card-top-sm {
    padding: 1em;
  }
}
.market {
  padding: 2.13em 0 9.38em;
}

.market__box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: min(2rem, 1.7777777778vw);
  -ms-grid-columns: 21.88rem 1fr;
  grid-template-columns: 21.88rem 1fr;
}

.market__grid-products {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 1.25em;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.market__grid-products:not(:last-child) {
  margin-bottom: 2rem;
}

.product-card, .my-prod-card {
  border-radius: 1rem;
  background-color: var(--block-1);
  padding: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.product-card__img, .my-prod-card__img {
  aspect-ratio: 1;
  border-radius: 0.75em;
  overflow: hidden;
  overflow: clip;
  padding: 0.75em;
}

.product-card__info-seller, .my-prod-card__info-seller {
  border-radius: 0.63rem;
  background-color: var(--block-2);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  grid-auto-flow: column;
}

.product-card__info-seller:not(:last-child), .my-prod-card__info-seller:not(:last-child) {
  margin-bottom: 0.75rem;
}

.product-card__ttl, .my-prod-card__ttl {
  line-height: 1.2;
  font-size: 1.25em;
  font-weight: 500;
  text-wrap: initial;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 0 auto;
}

.product-card__ttl{
  text-wrap: initial;
  white-space: initial; 
}
.product-card, .my-prod-card {
  min-width: 0;
}

.product-card__bg, .my-prod-card__bg {
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  display: block;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .product-card:hover .product-card__bg, .product-card:hover .my-prod-card__bg, .product-card:focus .product-card__bg, .product-card:focus .my-prod-card__bg, .my-prod-card:hover .product-card__bg, .my-prod-card:hover .my-prod-card__bg, .my-prod-card:focus .product-card__bg, .my-prod-card:focus .my-prod-card__bg {
    scale: 1.1;
  }
}
.product-card__discount-img, .my-prod-card__discount-img {
  border-radius: 0.63rem;
  background-color: var(--red);
  padding: 0.75em 0.63em;
  display: inline-block;
}

.product-card__ad-img, .my-prod-ad-img {
  border-radius: 0.63rem;
  background-color: #5E5BE6;
  padding: 0.75em 0.63em;
  display: inline-block;
}


.seller-pcr, .rating-pcr {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
  padding: 0.75em 1.25em;
}

.seller-pcr__ico, .rating-pcr__ico {
  width: 1.38rem;
  height: 1.38rem;
}

.seller-pcr__ttl, .rating-pcr__ttl {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
}

.rating-pcr {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: var(--text-color-dark);
  border-radius: inherit;
  background-color: var(--block-3);
}

.rating-pcr.rating-pcr--high {
  color: var(--yellow);
}

.rating-pcr.rating-pcr--midle {
  color: var(--white);
}

.btn-pcr {
  color: var(--white);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  grid-auto-flow: column;
}

.btn-pcr__dis {
  font-size: 0.88em;
  font-weight: 500;
  text-decoration: line-through;
  color: var(--text-color-dark);
}

.btn-pcr--action {
  color: var(--red);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-pcr--action:hover, .btn-pcr--action:focus {
    color: var(--red);
  }
}
.pagination-mr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  gap: 0.75em;
}

.pagination-mr > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination-mr__link {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-width: 2.5em;
  min-height: 2.5em;
  padding: 0.57em;
  border-radius: 0.63rem;
  background-color: var(--block-1);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-weight: 500;
  color: var(--text-color-dark);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .pagination-mr__link:hover, .pagination-mr__link:focus {
    background-color: var(--main);
    color: var(--white);
  }
}
.pagination-mr__ico-ln {
  display: block;
  width: 0.94em;
  height: 0.88em;
  padding: 0 0 0 0;
}

.pagination-mr__link._js-active {
  background-color: var(--main);
  color: var(--white);
}

.market__sub-filters:not(:last-child) {
  margin-bottom: 2rem;
}

.market__aside {
  position: sticky;
  top: 6.5rem;
}

.filters-mrk {
  padding: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1rem;
  background-color: var(--block-1);
  font-weight: 500;
  color: var(--text-color-dark);
}

.filters-mrk__f-btn {
  padding: 1em;
}

.filters-mrk__f-btn:not(:last-child) {
  margin-bottom: 1.5rem;
}

.filters-mrk__btn-name {
  font-size: 1.25em;
}

.filters-mrk__sub-ttl {
  font-weight: 500;
  color: var(--input);
}

.filters-mrk__sub-ttl:not(:last-child) {
  margin-bottom: 0.75rem;
}

.filters-mrk__search:not(:last-child) {
  margin-bottom: 1.25rem;
}

.search {
  border-radius: 0.63rem;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  margin-bottom: 0.75rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .search:hover .search__l, .search:focus .search__l {
    background-color: var(--main);
    color: var(--white);
  }
  .search:hover .search__inp::-webkit-input-placeholder, .search:focus .search__inp::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .search:hover .search__inp::-moz-placeholder, .search:focus .search__inp::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
}
.search__l {
  width: 2.88em;
  height: 2.88em;
  background-color: var(--block-3);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.search__ico {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.search__inp {
  background-color: inherit;
  padding: 0.63em 1.25em;
  font-weight: 500;
  color: var(--white);
  outline: none;
}

.search__inp::-webkit-input-placeholder {
  color: var(--input);
}

.search__inp::-moz-placeholder {
  color: var(--input);
}

.box-fm-price {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.fm-price {
  padding: 0.75em 1.25em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  padding: 0 0 0 0;
  border-radius: 0.63rem;
  background-color: var(--block-2);
  padding: 0.75em 1.25em;
  color: var(--input);
}

.fm-price__inp {
  background-color: inherit;
  padding: 0.38em;
  outline: none;
  color: var(--white);
}

.fm-price__inp::-webkit-input-placeholder {
  color: var(--input);
}

.fm-price__inp::-moz-placeholder {
  color: var(--input);
}

.fm-price__decor {
  font-weight: 600;
  color: var(--text-color-dark);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .fm-price:hover, .fm-price:focus {
    color: rgba(255, 255, 255, 0.5);
  }
  .fm-price:hover .fm-price__inp::-webkit-input-placeholder, .fm-price:focus .fm-price__inp::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .fm-price:hover .fm-price__inp::-moz-placeholder, .fm-price:focus .fm-price__inp::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
}
.filters-mrk__box-sct:not(:last-child) {
  margin-bottom: 0.75rem;
}

.filters-mrk__box-check {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.filters-mrk__box-check:not(:last-child) {
  margin-bottom: 1.25rem;
}

.check {
  position: relative;
  isolation: isolate;
}

.lbl-check {
  color: var(--text-color-dark);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.lbl-check::before {
  content: "";
  display: block;
  width: 3.75em;
  height: 2em;
  border-radius: 1.25em;
  background-color: var(--block-2);
}

.lbl-check::after {
  content: "";
  display: block;
  width: 1.5em;
  border-radius: 50%;
  height: 1.5em;
  background-color: var(--block-3);
  position: absolute;
  top: 50%;
  left: 0.25em;
  z-index: 5;
  translate: 0 -50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .lbl-check:hover, .lbl-check:focus {
    color: var(--white);
  }
}
.check__inp:checked + .lbl-check::after {
  background-color: var(--main);
  left: 1.88em;
}

.game-list-fm {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em 1.25em;
  -ms-grid-columns: (auto)[4];
  grid-template-columns: repeat(5, auto);
}

.card-game-list-fm {
  display: block;
  color: var(--text-color-dark);
  border-radius: 0.63em;
  overflow: hidden;
  overflow: clip;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.card-game-list-fm__img, .card-game-list-fm__more-i {
  width: 2.75em;
  height: 2.5em;
  border-radius: 0.5em;
  overflow: hidden;
  overflow: clip;
}

.card-game-list-fm__img:not(:last-child), .card-game-list-fm__more-i:not(:last-child) {
  margin-bottom: 0.25rem;
}

.card-game-list-fm__name {
  font-size: 0.69rem;
  text-align: center;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 2.75rem;
}

.card-game-list-fm__more-i {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-game-list-fm__ico {
  width: 1.13em;
  height: 0.38em;
}

.chat-tic__subject {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .card-game-list-fm:hover, .card-game-list-fm:focus {
    color: var(--white);
  }
}
.card-game-list-fm._js-checked {
  background: #2f2f2f;
  color: #fff;
}

.filters-mrk__game-list:not(:last-child) {
  margin-bottom: 1.25rem;
}

.filters-mrk__box-end {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}

.sub-filters-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sub-filters-m > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.sub-filters-m__ttl {
  font-weight: 500;
  color: var(--input);
}

.sub-filters-m__btn {
  padding: 0.75em 1.25em;
  color: var(--white);
}

.filters-mrk__game-list {
  display: none;
}

.filters-mrk__game-list._js-open {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 56.25em) {
  .market__close-aside {
    display: none;
  }
  .btn-on-aside {
    display: none;
  }
}
@media (max-width: 62.5em) {
  .market__grid-products {
    font-size: 0.75rem;
  }
}
@media (max-width: 59.38em) {
  .p__market {
    margin-top: -10.62rem;
  }
}
@media (max-width: 56.25em) {
  .market__aside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    width: 25rem;
    translate: -110% 0;
    -webkit-transition: 0.3s ease-out 0s;
    transition: 0.3s ease-out 0s;
    opacity: 0;
    height: 100vh;
    height: 100svh;
    overflow: auto;
  }
  .market__close-aside {
    display: inline-block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    width: 1.75em;
    height: 1.75em;
  }
  .market__box {
    display: block;
  }
  ._js-aside-open {
    overflow: hidden;
  }
  ._js-aside-open .market__aside {
    translate: 0 0;
    opacity: 1;
  }
  .filters-mrk {
    padding: 4.38em 1.25em 3.75em;
  }
}
@media (max-width: 51.25em) {
  .product-card__info-seller {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
    background-color: initial;
    gap: 0;
  }
  .product-card__rating {
    display: -ms-inline-grid;
    display: inline-grid;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}
@media (max-width: 51.25em) {
  .p__market {
    margin-top: 0;
    padding-top: 3.75rem;
  }
}
@media (max-width: 37.5em) {
  .pagination-mr {
    font-size: 0.88rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 31.25em) {
  .market__grid-products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 0.63rem;
  }
  .product-card {
    padding: 0.38rem;
  }
  .sub-filters-m__ttl {
    width: 100%;
  }
  .pagination-mr {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
  }
  .pagination-mr > *:nth-child(8), .pagination-mr > *:nth-child(7) {
    display: none;
  }
  .market {
    padding-bottom: 5rem;
  }
  .market__aside {
    width: 100%;
  }
}
@media (max-width: 25em) {
  .pagination-mr > *:nth-child(6) {
    display: none;
  }
}
@media (max-width: 23.75em) {
  .box-fm-price {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 21.25em) {
  .pagination-mr {
    font-size: 0.82rem;
  }
}
.p__profile {
  padding-top: 9.38em;
}

.profile__box {
  -ms-grid-columns: 27.32rem 1fr;
  grid-template-columns: 27.32rem 1fr;
  gap: 1.25rem;
}

.demo-profile {
  background: -webkit-gradient(linear, left top, right top, from(#817eff), to(#5e5be6));
  background: linear-gradient(90deg, #817eff 0%, #5e5be6 100%);
  padding: 1.25em 2.19em;
  border-radius: 1rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.19em;
  grid-auto-flow: column;
}

.demo-profile__info {
  font-size: 1.13em;
}

.demo-profile__desc {
  font-weight: 300;
}

.demo-profile__name {
  font-weight: 600;
}

.demo-profile__ava {
  width: 4.07em;
  height: 4.07em;
}

.profile__m-box-btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile__m-box-btn, .tag-box-p {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 100%;
  padding: 1.25em 2.82em;
  border-radius: 1rem;
  background-color: var(--block-1);
  overflow: hidden;
  overflow: clip;
}

.card-m-profile {
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25em;
  border-radius: 1rem;
  overflow: hidden;
  overflow: clip;
  min-height: 30.32em;
  padding: 1.88em 2.19em 2.19em;
}

.card-m-profile__box-social {
  min-width: 73.2265446224%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.card-m-profile__social {
  font-size: 1.38em;
  gap: 0.84em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.card-m-profile__info {
  border-radius: 1em;
  padding: 1.25em;
}

.card-m-profile__box-social, .info-card-pr {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backdrop-filter: blur(1.88rem);
  backdrop-filter: blur(1.88rem);
  border-radius: 1em;
  background-color: rgba(14, 14, 16, 0.5);
  padding: 1.25em;
}

.rating {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.5em;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  width: 7em;
  color: #616161;
}

.rating--1 > *:nth-child(1) {
  color: var(--yellow);
}

.rating--2 > *:nth-child(-n+2) {
  color: var(--yellow);
}

.rating--3 > *:nth-child(-n+3) {
  color: var(--yellow);
}

.rating--4 > *:nth-child(-n+4) {
  color: var(--yellow);
}

.rating--5 {
  color: var(--yellow);
}

.info-card-pr__ico {
  width: 1em;
  height: 1em;
}

.info-card-pr__ico._js-of {
  color: var(--red);
}

.info-card-pr {
  width: 15.75em;
  border-radius: 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.info-card-pr__li {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
}

.info-card-pr__ttl {
  width: 5.38em;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #616161;
}

.disc-c-push {
  display: -ms-inline-grid;
  display: inline-grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.59em;
  grid-auto-flow: column;
  font-weight: 600;
  padding: 0.75em 1.17em;
  font-size: 0.75rem;
}

.disc-c-push__ico {
  width: 1.34em;
  height: 1.34em;
}

@media (max-width: 90em) {
  .profile__box {
    -ms-grid-columns: 21.88em 1fr;
    grid-template-columns: 21.88em 1fr;
    font-size: 0.88rem;
  }
}
@media (max-width: 75em) {
  .profile__box {
    font-size: 1rem;
  }
}
@media (max-width: 59.38em) {
  .p__profile {
    padding-top: 6.25rem;
  }
  .profile__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: end;
  }
  .profile__s-demo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 28.13em;
    width: 100%;
  }
  .profile__s-box-btn {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    max-width: 28.13em;
    width: 100%;
    padding: 0 0 0 0;
    -ms-grid-column-align: initial;
    justify-self: initial;
  }
  .profile__s-aside {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 28.13em;
    width: 100%;
  }
  .profile__box-products {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    font-size: 1.13rem;
    width: 100%;
  }
}
@media (max-width: 59.38em) and (min-width: 43.13em) {
  .profile__grid-products {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 56.25em) {
  .profile__box {
    display: -ms-grid;
    display: grid;
  }
}
@media (max-width: 45.63em) {
  .disc-c-push__txt {
    display: none;
  }
  .profile__box {
    justify-items: center;
  }
}
@media (max-width: 31.25em) {
  .demo-profile {
    padding: 0.63em 0.75em;
    gap: 0.75em;
  }
  .profile__s-aside {
    padding: 1.25rem 0.63em;
  }
}
.pass-lvl-c {
  padding: 1.32em 1.75em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-backdrop-filter: blur(1.88rem);
  backdrop-filter: blur(1.88rem);
  border-radius: 1em;
  background-color: rgba(14, 14, 16, 0.5);
  width: 100%;
}

.pass-lvl-c__top {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.75em;
  grid-auto-flow: column;
  font-size: 0.82rem;
  font-weight: 600;
}

.pass-lvl-c__top:not(:last-child) {
  margin-bottom: 0.32rem;
}

.pass-lvl-c__ttl--not {
  color: var(--text-color-dark);
}

.pass-lvl-c__road {
  border-radius: 31.25em;
  background-color: var(--main);
  padding: 0 0.25em 0 1.38em;
}

.pass-lvl-c__box-road-m {
  height: 1.38em;
  position: relative;
}

.pass-lvl-c__mark {
  width: 1.13em;
  border-radius: 50%;
  height: 1.13em;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 5;
  translate: -100% -50%;
}

.tag-box-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  overflow-x: auto;
  scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
}

.tag-box-p > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.profile__tag {
  padding: 0.75em 1.25em;
}

.box-profile-prod {
  padding: 2.19em 2.82em;
  border-radius: 1rem;
  background-color: var(--block-1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.82em;
}

.box-profile-prod__btn {
  font-size: 1.13em;
}

.my-prod-card {
  border-radius: 1rem;
  background-color: var(--block-2);
  padding: 1.5em;
  gap: 0.75em;
}

.my-prod-card__price {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.38em;
  grid-auto-flow: column;
  border-radius: 0.63rem;
  background-color: var(--block-3);
  padding: 0.75em;
}

.my-prod-card__dis {
  font-size: 0.88em;
  text-decoration: line-through;
  color: var(--text-color-dark);
}

.menu-my-pcd {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.btn-menu-my-pcd {
  padding: 0.75em;
  color: #24a60f;
  width: 100%;
  border-radius: 0.63rem;
  background-color: rgba(36, 166, 15, 0.1);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.btn-menu-my-pcd > span:not([class]) {
  width: 1.25rem;
  height: 1.25rem;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-menu-my-pcd:hover, .btn-menu-my-pcd:focus {
    background-color: #24a60f;
    color: var(--white);
  }
}
.btn-menu-my-pcd--orange {
  color: #FF9B3F;
  background-color: rgba(255, 155, 63, 0.1);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-menu-my-pcd--orange:hover, .btn-menu-my-pcd--orange:focus {
    background-color: #ff9b3f;
  }
}
.btn-menu-my-pcd--red {
  color: #FF5151;
  background-color: var(--red-transparent);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-menu-my-pcd--red:hover, .btn-menu-my-pcd--red:focus {
    background-color: var(--red);
  }
}
.my-prod-card__go-btn {
  background-color: rgba(94, 91, 230, 0.1);
  color: var(--main);
}

.profile__grid-my-products {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2.19em;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.profile__grid-my-products:not(:last-child) {
  margin-bottom: 2.88rem;
}

@media (max-width: 81.25em) {
  .profile__grid-my-products {
    gap: 1rem;
  }
  .my-prod-card__ttl {
    font-size: 1.13em;
  }
}
@media (max-width: 75em) {
  .my-prod-card {
    padding: 0.75em;
  }
}
@media (max-width: 68.75em) {
  .profile__grid-my-products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .profile__grid-my-products:not(:last-child) {
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 59.38em) {
  .profile__grid-my-products {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .tag-box-p {
    width: 100%;
    padding: 0.75em 1em;
    max-width: initial;
  }
  .box-profile-prod--my {
    padding: 0 0 0 0;
  }
}
@media (max-width: 46.88em) {
  .my-prod-card {
    font-size: 0.88rem;
    width: 100%;
  }
}
@media (max-width: 37.5em) {
  .profile__grid-my-products {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 24.38em) {
  .my-prod-card {
    padding: 0 0 0 0;
    background-color: initial;
  }
}
@media (max-width: 21.88em) {
  .my-prod-card {
    font-size: 0.75rem;
  }
}
.profile__a-card-m:not(:last-child) {
  margin-bottom: 1.38rem;
}

.aside-box-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.88em 0.75em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aside-box-tag > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-my-b-prod {
  font-size: 0.75rem;
  padding: 1.5em;
  background-color: var(--block-2);
}

.profile__box-subt {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 1.25em 0.75em;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  font-size: 0.88em;
}

.wrap-card-subt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrap-card-subt > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.wrap-card-subt .sect-subt {
  background-color: var(--block-2);
  padding-bottom: 1.38em;
}

@media (max-width: 93.75em) and (min-width: 84.38em) {
  .profile__box-subt {
    font-size: 0.82em;
  }
}
@media (max-width: 80.63em) {
  .profile__box-subt {
    font-size: 0.75em;
  }
}
@media (max-width: 75em) {
  .profile__box-subt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile__box-subt > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0.75em);
    flex: 0 0 calc(50% - 0.75em);
  }
}
@media (max-width: 62.5em) and (min-width: 59.38em) {
  .profile__box-subt {
    font-size: 0.69em;
  }
}
@media (max-width: 75em) and (min-width: 59.38em) {
  .box-profile-prod--my {
    padding: 1.38em 1em;
  }
  .profile__grid-my-products--type-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 40em) {
  .profile__box-subt {
    font-size: 1em;
  }
  .profile__box-subt .check-lsd__val br {
    display: none;
  }
  .profile__box-subt > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (max-width: 37.5em) {
  .card-my-b-prod {
    padding: 0.63em;
  }
  .profile__a-card-m {
    padding: 0.63em;
  }
}
@media (max-width: 31.25em) {
  .profile__box-subt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0.82em;
    width: 100%;
  }
}
@media (max-width: 24.38em) {
  .profile__grid-my-products--type-2 {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .card-my-b-prod {
    padding: 1em;
    font-size: 1rem;
  }
}
.profile__box-awards {
  overflow-x: auto;
  scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.profile__box-awards > * {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.awards {
  border-radius: 1rem;
  background-color: var(--block-1);
  padding: 2.19em 2.82em;
}

.awards__ttl {
  font-size: 1.13rem;
  color: var(--input);
}

.awards__ttl:not(:last-child) {
  margin-bottom: 1.25rem;
}

.progress-awards {
  --step-ok-down: 1.25em;
  --step-desc-down: -5.25em;
  --step-aw-padding: 3.38em;
  --size-mark: 1.13em;
  --down-mark: -1.75em;
  width: 56.13em;
  padding: 0 0 var(--step-aw-padding) 0;
}

.progress-awards__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1em;
}

.progress-awards__top:not(:last-child) {
  margin-bottom: 1.57em;
}

.progress-awards > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.awards-star-list, .awards-token-list {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  grid-auto-flow: column;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
}

.awards__progress:not(:last-child) {
  margin-bottom: 2.82em;
}

.awards-star-list {
  gap: 2.07em;
}

.awards-token-list {
  gap: 2.94em;
}

.star-cla, .token-cla {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75em;
  border-radius: 0.75em;
  background-color: var(--block-3);
  color: var(--text-color-dark);
  position: relative;
}

.star-cla__img, .star-cla__name, .star-cla__status, .token-cla__img, .token-cla__name, .token-cla__status {
  opacity: 0.3;
}

.star-cla::after, .token-cla::after {
  content: "";
  display: inline-block;
  width: var(--size-mark);
  border-radius: 50%;
  height: var(--size-mark);
  background-color: var(--white);
  position: absolute;
  left: 50%;
  bottom: var(--down-mark);
  translate: -50% 100%;
}

.star-cla {
  width: 6.25em;
  min-height: 7.5em;
}

.token-cla {
  width: 12.25em;
  min-height: 12.07em;
  position: relative;
  text-align: center;
}

.token-cla__img {
  width: 5.13em;
  height: 6.44em;
}

.token-cla__img:not(:last-child) {
  margin-bottom: 1em;
}

.token-cla__name {
  padding: 0 0.63rem;
  font-size: 0.63rem;
  font-weight: 500;
}

.token-cla__status {
  position: absolute;
  left: 0;
  bottom: var(--step-desc-down);
  z-index: 2;
  width: 100%;
  translate: 0 100%;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 0.63rem;
}

.progress-awards__road {
  padding: 0 0 0 0;
}

.star-cla._js-active .star-cla__img {
  opacity: 1;
}

.token-cla._js-active .token-cla__img, .token-cla._js-active .token-cla__name, .token-cla._js-active .token-cla__status {
  opacity: 1;
}

.road-awards {
  height: 1.5em;
  border-radius: 6.25em;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
}

.road-awards__progress {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--main);
}

.aw-task-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
}

.aw-task {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-columns: 1fr 14.69em;
  grid-template-columns: 1fr 14.69em;
  border-radius: 0.75em;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  font-weight: 600;
  color: #2d2d32;
}

.aw-task__name, .aw-task__status {
  padding: 1.13em 1.25em;
}

.aw-task__status {
  border-radius: inherit;
  background-color: var(--block-3);
  text-align: center;
}

.aw-task._js-active {
  color: var(--text-color-dark);
}

@media (max-width: 93.75em) {
  .profile__box-awards {
    font-size: 1.045751634vw;
  }
}
@media (max-width: 90em) {
  .profile__box-awards {
    font-size: 1.1597222222vw;
  }
}
@media (max-width: 83.75em) {
  .profile__box-awards {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 77.5em) {
  .profile__box-awards {
    font-size: 0.88rem;
  }
}
@media (max-width: 59.38em) {
  .profile__box-awards {
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-grid-column-align: center;
    justify-self: center;
    width: 100%;
  }
}
@media (max-width: 43.75em) {
  .progress-awards {
    font-size: 0.75em;
    --step-desc-down: -2.75em;
  }
  .awards {
    padding: 0.94rem;
  }
  .aw-task-list {
    font-size: 0.88rem;
    text-align: center;
  }
  .aw-task {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .profile__box-awards > * {
    width: initial;
  }
  .awards__progress {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
    padding-bottom: 1.38rem;
  }
}
.p__tickets {
  padding: 9.63em 0 3.75em;
}

.tickets__c-box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2em;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  height: 48.25em;
}

.tickets__aside {
  width: 25em;
}

.aside-tickets, .chat-tic {
  border-radius: 1em;
  background-color: var(--block-1);
  font-weight: 500;
}

.aside-tickets {
  padding: 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  overflow-y: auto;
  scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
}

.aside-tickets__ttl:not(:last-child) {
  margin-bottom: 0.75em;
}

.list-aside {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}

.aside-tickets__section {
  color: var(--input);
}

.close-chat-tic {
  background-color: var(--red-transparent);
  color: var(--red);
  padding: 0.75em 1.25em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .close-chat-tic:hover, .close-chat-tic:focus {
    background-color: var(--red);
  }
}
.aside-tickets__section._js-active .aside-tickets__ttl, .aside-tickets__section._js-active .elm-list-aside__theme {
  color: var(--white);
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aside-tickets__section._js-active .elm-list-aside__mess {
  color: var(--text-color-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elm-list-aside {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  -ms-grid-columns: 1fr 5em;
  grid-template-columns: 1fr 5em;
  border-radius: 0.63em;
  background-color: var(--block-2);
  padding: 0.75em 1.25em;
}

.elm-list-aside__time {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

.elm-list-aside__status {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
  color: var(--main);
}

.elm-list-aside__theme {
  font-weight: 600;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.elm-list-aside__time {
  font-size: 0.88em;
}

.status-tic-num {
  height: 1.58em;
  border-radius: 3.58em;
  background-color: var(--main);
  padding: 0.15em 0.86em;
  font-size: 0.88em;
  color: var(--white);
  display: block;
}

.status-tic-wait {
  display: block;
  width: 0.5rem;
  border-radius: 50%;
  height: 0.5rem;
  background-color: currentcolor;
}

.status-tic-ico {
  display: block;
  width: 1.07em;
  height: 0.5em;
}

.elm-list-aside {
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .elm-list-aside:hover, .elm-list-aside:focus {
    color: var(--white);
  }
}
.elm-list-aside * {
  -webkit-transition: inherit;
  transition: inherit;
}

.aside-tickets__section._js-active .elm-list-aside._js-active {
  background-color: var(--main);
  color: var(--white);
}

.aside-tickets__section._js-active .elm-list-aside._js-active .elm-list-aside__mess {
  color: var(--white);
}

.aside-tickets__section._js-active .elm-list-aside._js-active .status-tic-num {
  background-color: #fff;
  color: var(--main);
}

.aside-tickets__section._js-active .elm-list-aside._js-active .elm-list-aside__status {
  color: var(--white);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .aside-tickets__section._js-active .elm-list-aside:hover, .aside-tickets__section._js-active .elm-list-aside:focus {
    background-color: var(--main);
  }
  .aside-tickets__section._js-active .elm-list-aside:hover .elm-list-aside__mess, .aside-tickets__section._js-active .elm-list-aside:focus .elm-list-aside__mess {
    color: var(--white);
  }
  .aside-tickets__section._js-active .elm-list-aside:hover .status-tic-num, .aside-tickets__section._js-active .elm-list-aside:focus .status-tic-num {
    background-color: #fff;
    color: var(--main);
  }
  .aside-tickets__section._js-active .elm-list-aside:hover .elm-list-aside__status, .aside-tickets__section._js-active .elm-list-aside:focus .elm-list-aside__status {
    color: var(--white);
  }
}
@media (any-hover: hover) and (min-width: 34.38em) {
  .elm-list-aside:hover, .elm-list-aside:focus {
    background-color: var(--main);
  }
  .elm-list-aside:hover .elm-list-aside__mess, .elm-list-aside:focus .elm-list-aside__mess {
    color: var(--white);
  }
  .elm-list-aside:hover .status-tic-num, .elm-list-aside:focus .status-tic-num {
    background-color: #fff;
    color: var(--main);
  }
  .elm-list-aside:hover .elm-list-aside__status, .elm-list-aside:focus .elm-list-aside__status {
    color: var(--white);
  }
}
.chat-tic {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--block-1);
  overflow: hidden;
  overflow: clip;
}

.chat-tic__header, .chat-tic__footer, .chat-tic__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 1.25em;
}

.chat-tic__header, .chat-tic__footer {
  background-color: var(--block-2);
}

.chat-tic__header {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  grid-auto-flow: column;
}

.chat-tic__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  overflow-y: auto;
  scrollbar-color: rgba(231, 231, 231, 0.6705882353) transparent;
  scrollbar-color: var(--main) transparent;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  height: 37.5em;
}

.chat-tic__footer {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.day-chat-tic {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}

.day-chat-tic__ttl {
  font-weight: 600;
  color: var(--input);
  text-align: center;
}

.day-chat-tic__ttl:not(:last-child) {
  margin-bottom: 0.75rem;
}

.day-chat-tic__box-my-mess, .day-chat-tic__box-o-mess {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.5em;
  grid-auto-flow: column;
  max-width: 40em;
}

.day-chat-tic__box-o-mess {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.day-chat-tic__time-mess {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  font-size: 0.88rem;
  color: var(--input);
}

.day-chat-tic__my-mess, .day-chat-tic__o-mess {
  border-radius: 0.63em;
  background-color: var(--block-3);
  padding: 0.75em 1.25em;
  max-width: 300px;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.day-chat-tic__o-mess {
  background-color: var(--main);
}

.form-chat-tic {
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.form-chat-tic * {
  -webkit-transition: inherit;
  transition: inherit;
}

.form-chat-tic__input {
  background-color: var(--block-3);
  font-weight: 600;
  padding: 0.75em 1.25em;
}

.form-chat-tic__input::-webkit-input-placeholder {
  color: var(--input);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.form-chat-tic__input::-moz-placeholder {
  color: var(--input);
  -moz-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.submit-tic-mess {
  width: 2.88em;
  border-radius: 0.63em;
  background-color: var(--block-3);
  min-height: 2.88em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--input);
}

.submit-tic-mess__ico {
  display: block;
  width: 1.25em;
  height: 1.25em;
  border-radius: 0.63em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .form-chat-tic:hover .submit-tic-mess, .form-chat-tic:focus .submit-tic-mess {
    background-color: var(--main);
    color: var(--white);
  }
  .form-chat-tic:hover .form-chat-tic__input::-webkit-input-placeholder, .form-chat-tic:focus .form-chat-tic__input::-webkit-input-placeholder {
    color: #a1a1a1;
  }
  .form-chat-tic:hover .form-chat-tic__input::-moz-placeholder, .form-chat-tic:focus .form-chat-tic__input::-moz-placeholder {
    color: #a1a1a1;
  }
}
.chat-tic__user {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
}

.chat-tic__ava {
  width: 2.5em;
  height: 2.5em;
}

.chat-tic__name-user {
  font-size: 1.25em;
  font-weight: 600;
}

.chat-tic__empty {
  padding: 1.88em;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  color: var(--text-color-dark);
  text-align: center;
}

.chat-tic__mess-empty {
  font-size: 1.5em;
  font-weight: 600;
}

.chat-tic__ico-empty {
  width: 3.75em;
  height: 3.75em;
}

@media (max-width: 75em) {
  .tickets__aside {
    width: 21.88em;
    font-size: 0.88rem;
  }
  .tickets__c-box {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 0.75em;
  }
}
@media (max-width: 59.38em) {
  .tickets__c-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.38em;
    height: initial;
  }
  .p__tickets {
    padding: 5.63em 0 2.5em;
  }
  .aside-tickets {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: initial;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .aside-tickets > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .aside-tickets__bnt {
    width: 100%;
  }
  .chat-tic {
    font-size: 0.88rem;
  }
  .aside-tickets__section, .list-aside {
    width: 100%;
    overflow: initial;
  }
}
@media (max-width: 59.38em) and (min-width: 38.75em) {
  .list-aside {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.5em 0.75em;
  }
  .list-aside > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0.75em);
    flex: 0 0 calc(50% - 0.75em);
  }
}
@media (max-width: 38.75em) {
  .aside-tickets {
    padding: 0;
    background-color: initial;
  }
  .chat-tic__header, .chat-tic__footer, .chat-tic__body {
    padding: 0.75em;
  }
}
@media (max-width: 28.75em) {
  .chat-tic__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .close-chat-tic {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .chat-tic__mess-empty {
    font-size: 1.25rem;
  }
}
.m-settings {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.19em;
  width: 100%;
  border-radius: 1em;
  background-color: var(--block-1);
  padding: 2.19em 2.82em;
}

.m-settings__bb-box {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 1.57em;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.m-settings__section {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.88em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .m-settings__section:hover .m-settings__s-ttl, .m-settings__section:focus .m-settings__s-ttl {
    color: var(--white);
  }
}
.m-settings__s-ttl {
  color: var(--input);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.m-settings__s-ttl:not(:last-child) {
  margin-bottom: 0.19rem;
}

.m-settings__inp {
  padding: 1.07em 1.57em;
  border-radius: 0.63em;
  background-color: var(--block-2);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.m-settings__inp::-webkit-input-placeholder {
  color: #2d2d32;
  -webkit-transition: inherit;
  transition: inherit;
}

.m-settings__inp::-moz-placeholder {
  color: #2d2d32;
  -moz-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .m-settings__inp:hover::-webkit-input-placeholder, .m-settings__inp:focus::-webkit-input-placeholder {
    color: rgba(217, 217, 219, 0.4);
  }
  .m-settings__inp:hover::-moz-placeholder, .m-settings__inp:focus::-moz-placeholder {
    color: rgba(217, 217, 219, 0.4);
  }
}
.label-wrap-sett, .label-bb-sett {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.label-wrap-sett {
  border-radius: 0.63em;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  color: var(--text-color-dark);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .label-wrap-sett:hover, .label-wrap-sett:focus {
    color: var(--white);
  }
  .label-wrap-sett:hover .label-wrap-sett__desc, .label-wrap-sett:focus .label-wrap-sett__desc {
    background-color: var(--main);
  }
}
.label-bb-sett {
  gap: 0.75em;
  color: var(--text-color-dark);
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.label-bb-sett__desc {
  width: 3.82em;
  border-radius: 0.75em;
  background-color: var(--block-3);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: inherit;
  transition: inherit;
}

.label-bb-sett__ico {
  width: 1.57em;
  height: 1.57em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .label-bb-sett:hover, .label-bb-sett:focus {
    color: var(--white);
  }
  .label-bb-sett:hover .label-bb-sett__desc, .label-bb-sett:focus .label-bb-sett__desc {
    background-color: var(--main);
  }
}
.label-wrap-sett__desc {
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.72em;
  background-color: var(--block-3);
  min-width: 17.15em;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.86em;
}

@media (max-width: 62.5em) {
  .m-settings {
    padding: 1.25em 0.75em;
    gap: 1.88em;
  }
  .label-wrap-sett__desc {
    min-width: 12.15em;
  }
}
@media (max-width: 37.5em) {
  .m-settings {
    width: 100%;
    padding: 1.88em 0;
    background-color: initial;
  }
  .m-settings__bb-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .input, .m-settings__inp {
    padding: 0.75em;
  }
  .label-bb-sett__desc {
    font-size: 0.82em;
  }
}
@media (max-width: 26.88em) {
  .label-wrap-sett {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.profile__box-withdrawal {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  font-size: 1rem;
}

.m-settings__box-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m-settings__box-pay > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-check-pay {
  width: 13.13em;
  border-radius: 0.75em;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  padding: 1.25em 0.88em;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  font-weight: 500;
  color: var(--input);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.card-check-pay > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-check-pay__ico {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 4.38em;
  opacity: 0.5;
}

.card-check-pay__ico--short {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 4.38rem;
  height: 2.5rem;
}

.card-check-pay > * {
  -webkit-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .card-check-pay:hover, .card-check-pay:focus {
    background-color: var(--block-3);
    color: var(--text-color-dark);
  }
  .card-check-pay:hover .card-check-pay__ico, .card-check-pay:focus .card-check-pay__ico {
    opacity: 1;
  }
}
.card-check-pay._js-checked {
  background-color: var(--block-3);
  color: var(--text-color-dark);
}

.card-check-pay._js-checked .card-check-pay__ico {
  opacity: 1;
}

.w-history {
  border-radius: 1em;
  background-color: var(--block-1);
  font-weight: 500;
  padding: 2.19em 2.82em;
}

.w-history__ttl {
  font-size: 1.13rem;
  color: var(--input);
}

.w-history__ttl:not(:last-child) {
  margin-bottom: 0.95em;
}

.list-w-history {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.88em;
}

.list-w-history__elm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.63rem;
  background-color: var(--block-2);
}

.list-w-history__elm > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.list-w-history__cost {
  padding: 0.75em 1.25em;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.list-w-history__time {
  padding: 0.75em 1.25em;
}

.status-lw-history {
  width: 2.88em;
  background-color: var(--green-transparent);
  overflow: hidden;
  overflow: clip;
  border-radius: inherit;
  color: var(--green);
  min-height: 2.88em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.status-lw-history__ico {
  width: 1.25em;
  height: 1.25em;
}

.list-w-history__time {
  color: var(--text-color-dark);
}

.status-lw-history--error {
  background-color: var(--red-transparent);
  color: var(--red);
}

.status-lw-history--await {
  background-color: var(--orange-transparent);
  color: var(--orange);
}

.status-lw-history--freeze {
  background-color: #181c25;
  color: var(--text-color-dark);
}

@media (max-width: 62.5em) {
  .w-history {
    padding: 1.25em 0.75em;
  }
}
@media (max-width: 23.75em) {
  .m-settings__box-pay {
    gap: 0.75em;
  }
  .list-w-history__elm {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-w-history__time {
    width: 100%;
    text-align: center;
  }
  .list-w-history__cost {
    text-align: center;
    padding-right: 3.63em;
  }
}
.rules {
  padding: 3.75em 0;
}

.p__rules {
  padding-top: 9.38em;
}

.rules__box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
}

.section-rules {
  padding: 1.5em;
  border-radius: 1em;
  background-color: var(--block-1);
  font-weight: 500;
}

.section-rules__ttl {
  font-size: 1.5em;
  font-weight: 600;
}

.section-rules__ttl:not(:last-child) {
  margin-bottom: 0.5em;
}

.section-rules > p:not([class]) {
  font-size: 1.13em;
}

.section-rules > p:not([class]):not(:last-child) {
  margin-bottom: 1em;
}

.section-rules__sht-p {
  font-size: 1.13em;
}

.section-rules > ul:not([class]):not(:last-child) {
  margin-bottom: 1em;
}

.section-rules > li:not([class]) {
  font-size: 1.13rem;
}

.rul-t-link {
  font-weight: 700;
  color: var(--main);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .rul-t-link:hover, .rul-t-link:focus {
    color: #82c6f3;
  }
}
.rul-bloked {
  text-decoration: line-through;
}

.vip-rul {
  color: var(--main);
}

.rul-gold {
  color: var(--yellow);
}

.rul-lux {
  color: var(--aquamarine);
}

.rul-admin {
  color: var(--red);
}

.ol-rules {
  counter-reset: ol-num;
  padding: 0 0 0 1.75em;
  margin-bottom: 1em;
}

.ol-rules > li:not([class]) {
  position: relative;
  z-index: 2;
}

.ol-rules > li:not([class])::before {
  counter-increment: ol-num;
  content: counter(ol-num) ".";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  translate: -120% 0;
}

@media (max-width: 75em) {
  .p__rules {
    padding-top: 7.5em;
  }
}
@media (max-width: 75em) {
  .section-rules {
    font-size: 0.88rem;
  }
}
@media (max-width: 31.25em) {
  .section-rules {
    padding: 0;
    background-color: initial;
  }
}
.p__subscription {
  padding-top: 6.88em;
}

.subscription__s-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5em 1.25em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.subscription__s-box > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 29.13em;
  flex: 0 0 29.13em;
}

.sect-subt {
  border-radius: 1em;
  background-color: var(--block-1);
  overflow: hidden;
  overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  flex-direction: column;
  display: flex;
  gap: 24;
}

.sect-subt__banner {
  aspect-ratio: 466/220;
  border-radius: 1em;
  overflow: hidden;
  overflow: clip;
}

.sect-subt__privilege {
  padding: 0 1.5em;
}

.sect-subt__sub-ttl {
  font-weight: 600;
  color: var(--input);
}

.sect-subt__sub-ttl:not(:last-child) {
  margin-bottom: 0.75em;
}

.list-privilege {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.list-privilege__elm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.63em;
  background-color: var(--block-3);
  overflow: hidden;
  overflow: clip;
}

.list-privilege__elm > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.list-privilege__box-i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.88em;
  height: 2.88em;
  background-color: var(--block-4);
  border-radius: inherit;
}

.list-privilege__ico {
  width: 1.25rem;
  height: 1.25rem;
}

.list-privilege__txt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0.63em 0.75em;
}

.list-privilege__elm--not {
  color: var(--input);
  background-color: var(--block-2);
}

.form-subsct {
  padding: 0 1.5em 1.5em;
  display: -ms-grid;
  display: grid;
  gap: inherit;
}

.list-s-duration {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.check-lsd {
  font-weight: 600;
  color: var(--text-color-dark);
  text-align: center;
  border-radius: 0.63rem;
  background-color: var(--block-2);
  padding: 0.75em;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .check-lsd:hover, .check-lsd:focus {
    color: var(--white);
    background-color: var(--block-3);
  }
}
._js-checked.check-lsd {
  color: var(--white);
  background-color: var(--block-3);
}

@media (max-width: 93.75em) {
  .subscription__s-box {
    font-size: 1.0666666667vw;
  }
}
@media (max-width: 78.13em) {
  .subscription__s-box {
    font-size: 0.88em;
  }
}
@media (max-width: 31.25em) {
  .subscription__s-box > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 25em) {
  .subscription {
    background-color: initial;
  }
  .sect-subt__privilege {
    padding: 0 0 0 0;
  }
  .form-subsct {
    padding: 0 0 0 0;
  }
}
@media (max-width: 23.75em) {
  .list-s-duration {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.p__m-product {
  padding: 9.38em 0 1.88em;
}

.pb-product__top {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4.38em;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

.pb-product__top:not(:last-child) {
  margin-bottom: 4.69rem;
}

.pb-product__banner {
  border-radius: 0.63em;
  background-color: var(--block-1);
  padding: 1.07em 1.44em;
  max-height: 500px;
}

.pb-product__img-banner {
  border-radius: inherit;
}

.pb-product__c-box {
  padding: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2em;
  border-radius: 1em;
  background-color: var(--block-1);
}

.pb-product__c-box > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.pb-product__slider {
  aspect-ratio: 1;
  border-radius: 1em;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

.pb-product__col-slider {
  width: 31.25em;
  position: relative;
}

.swiper__btn-l, .swiper__btn-r {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.swiper__btn-r {
  left: initial;
  right: 0;
}

.btn-slide {
  width: 3.75em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(22, 22, 27, 0.7);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-slide, .btn-b-slide {
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.btn-slide__ico, .btn-b-slide__ico {
  width: 1.25em;
  height: 2.19em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-slide:hover, .btn-slide:focus, .btn-b-slide:hover, .btn-b-slide:focus {
    color: var(--main);
  }
}
.pb-product__info-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.pb-product__ttl {
  font-size: 1.5em;
  font-weight: 600;
}

.pb-product__ttl:not(:last-child) {
  margin-bottom: 1em;
}

.pb-product__txt-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-line;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

.admin-content-section {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.admin-content-section h3 {
  color: #ff5722;
  margin-bottom: 15px;
}

.content-box {
  max-height: 300px;
  overflow-y: auto;
}

.content-box pre {
  white-space: pre-wrap;
  font-family: monospace;
  margin: 0;
}

.pb-product__col-buy {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  width: 18.75em;
}

.card-pb-product {
  padding: 1.25em;
  border-radius: 1em;
  background-color: var(--block-2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.card-pb-product__info-l {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75em;
}

.card-pb-product__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card-pb-product__row > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-pb-product__s-ttl {
  color: var(--input);
}

.card-pb-product__b-link {
  background-color: var(--block-3);
}

.card-pb-product--price {
  gap: 1.25em;
}

.card-pb-product__price {
  padding: 0.75em 1.25em;
  border-radius: 0.63rem;
  background-color: var(--block-3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
}

.card-pb-product__price > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.card-pb-product__new-price {
  font-size: 1.25em;
  font-weight: 600;
}

.card-pb-product__old-price {
  font-size: 0.88em;
  color: var(--text-color-dark);
}

.p__line {
  width: 80%;
  height: 0.25em;
  background-color: var(--white);
}

.pb-product__s-pagination:not(:last-child) {
  margin-bottom: 1.43em;
}

.menu-pb-product {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.pb-product__menu:not(:last-child) {
  margin-bottom: 1.25rem;
}

.btn-mpb-prod {
  width: 100%;
  padding: 0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0.63em;
  background-color: var(--green-transparent);
  color: var(--green);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.btn-mpb-prod__ico {
  width: 1.25em;
  height: 1.25em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .btn-mpb-prod:hover, .btn-mpb-prod:focus {
    background-color: var(--green);
    color: var(--white);
  }
}
.btn-mpb-prod--warn {
  background-color: var(--red-transparent);
  color: var(--red);
}

.btn-mpb-prod--warn:hover, .btn-mpb-prod--warn:focus {
  background-color: var(--red);
}

.btn-mpb-prod--edit {
  background-color: var(--orange-transparent);
  color: var(--orange);
}

.btn-mpb-prod--edit:hover, .btn-mpb-prod--edit:focus {
  background-color: var(--orange);
}

.pb-product__bg-card {
  padding: 1.5em;
  border-radius: 1em;
  background-color: var(--block-1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pb-product__flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}

.pb-product__big-col-slider {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25em;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.pb-product__info-btn-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
}

.pb-product__btn-buy {
  padding: 0.75em 2em;
}

.pb-product__info-section, .pb-product__big-info-box {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: 1.25em;
}

@media (max-width: 84.38em) {
  .pb-product__c-box {
    gap: 1em;
  }
  .pb-product__col-slider {
    width: 22.5em;
  }
  .pb-product__col-buy {
    width: 17.5em;
  }
  .pb-product__top {
    gap: 1em;
  }
  .pb-product__top:not(:last-child) {
    margin-bottom: 1.38rem;
  }
  .p__m-product {
    padding: 6.25em 0 1.88em;
  }
}
@media (max-width: 71.88em) and (min-width: 43.75em) {
  .pb-product__c-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .pb-product__col-buy {
    width: max(18.75em, 46%);
    width: 100%;
  }
  .pb-product__info-box {
    width: calc(40% - 1.25em);
  }
  .card-pb-product--grid {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 62.5em) {
  .pb-product__banner {
    padding: 0.75em;
  }
}
@media (max-width: 56.25em) {
  .pb-product__flex-box {
    gap: 1.38em;
    font-size: 0.88em;
  }
  .pb-product__bg-card {
    padding: 0 0 0 0;
    background-color: initial;
  }
  .pb-product__big-col-slider {
    width: 18.75em;
  }
}
@media (max-width: 54.38em) {
  .pb-product__col-slider {
    font-size: 0.75rem;
  }
}
@media (max-width: 43.75em) {
  .pb-product__c-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pb-product__col-buy {
    width: 100%;
  }
  .pb-product__col-slider {
    width: 100%;
  }
  .pb-product__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pb-product__flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pb-product__big-col-slider {
    width: 100%;
  }
  .pb-product__flex-box {
    font-size: 1em;
  }
}
@media (max-width: 31.25em) {
  .pb-product__c-box {
    padding: 0 0 0 0;
    background-color: initial;
  }
}
.p__g-similar {
  padding: 1.88em 0 3.32em;
}

.g-similar {
  padding: 1.88em 0 3.32em;
}

.g-similar__box {
  border-radius: 1em;
  background-color: var(--block-1);
  padding: 1.5em;
}

.g-similar__slide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g-similar__slide > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.g-similar__ttl {
  font-size: 1.5rem;
  font-weight: 600;
}

.g-similar__ttl:not(:last-child) {
  margin-bottom: 0.84em;
}

.g-similar__box-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.88em;
  position: relative;
}

.g-similar__slider {
  max-width: 77.75em;
}

.btn-b-slide {
  padding: 0 0.75em;
}

.swiper__btn-l--p-top, .swiper__btn-r--p-top {
  top: 7.5em;
}

@media (max-width: 88.75em) {
  .btn-b-slide {
    padding: 0;
  }
}
@media (max-width: 81.25em) {
  .g-similar__box {
    padding: 1em;
  }
}
@media (max-width: 56.25em) {
  .g-similar__box {
    font-size: 0.88em;
    padding: 1em;
  }
}
@media (max-width: 50em) {
  .g-similar {
    padding: 1.25em 0 2.69em;
  }
  .g-similar__box {
    background-color: initial;
    padding: 0;
  }
}
@media (max-width: 43.75em) {
  .btn-b-slide {
    display: none;
  }
  .g-similar__box-slider {
    padding: 0 0 0 0;
  }
}
@media (max-width: 24.38em) {
  .g-similar__box {
    font-size: 0.75em;
  }
}
.pb-product--f-page {
  padding-bottom: 3.75em;
}

.b-desc-prod {
  padding: 1.5em;
  border-radius: 1em;
  background-color: var(--block-1);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}

.b-desc-prod__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2em;
}

.b-desc-prod__img {
  border-radius: 1em;
  min-width: 12.5em;
  max-width: 18.75em;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  aspect-ratio: 1;
}

.separator-desc-prod {
  width: 100%;
  height: 0.25em;
  background-color: var(--block-2);
}

.list-info-b-prod {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-info-b-prod > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 18%;
  flex: 1 1 18%;
  min-width: 15em;
}

.card-l-info-b-prod {
  padding: 0.75em 1.25em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 90px;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5em;
  border-radius: 0.63em;
  background-color: var(--block-2);
}

.card-l-info-b-prod__ttl {
  color: var(--text-color-dark);
}

.rating-form {
  padding: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25em;
  border-radius: 1em;
  background-color: var(--block-2);
}

.rating-form__ttl {
  color: var(--text-color-dark);
}

.rating-form__ttl:not(:last-child) {
  margin-bottom: 0.5em;
}

.f-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
}

.f-rating > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.f-rating__star {
  color: var(--input);
  cursor: pointer;
  display: block;
  width: 1.5em;
  height: 1.5em;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .f-rating__star:hover, .f-rating__star:hover ~ .f-rating__star {
    color: var(--yellow);
  }
}
.rating-form__submit {
  padding: 0.75em 1.25em;
  background-color: var(--block-3);
}

.f-rating__inp:checked + .f-rating__star, .f-rating__inp:checked + .f-rating__star ~ .f-rating__star {
  color: var(--yellow);
}

@media (max-width: 50em) {
  .b-desc-prod {
    padding: 1em;
    gap: 1.25em;
  }
  .b-desc-prod__info {
    gap: 1.25em;
  }
}
@media (max-width: 37.5em) {
  .b-desc-prod__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .b-desc-prod {
    padding: 0;
    background-color: initial;
  }
  .b-desc-prod__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2em;
  }
  .b-desc-prod__img {
    min-width: 12.5em;
    max-width: 25em;
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}
@media (max-width: 31.25em) {
  .rating-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .rating-form__submit {
    width: 100%;
  }
  .f-rating {
    font-size: 7.2vw;
  }
}
.lock body {
  overflow: hidden;
}

.wrapper::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 190;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
}

.popup-show .wrapper::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1.88rem 0.63rem;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 200;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.popup__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  border-radius: 1.25rem;
  background-color: #eee;
  padding: 1.25rem;
  position: relative;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  width: 1.57em;
  height: 1.57em;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
  translate: -50% 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  outline: none;
  background-color: transparent;
}

@media (any-hover: hover) {
  .popup__close:hover {
    scale: 1.2;
  }
}
.wrapper::after {
  background-color: rgba(13, 13, 15, 0.7);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.popup__wrapper--up {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding: 7.5em 0 0;
}

.popup__wrapper--b-up {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding: 2.5em 0 0;
}

.pp-win {
  border-radius: 1.25em;
  background-color: var(--block-1);
  width: 100%;
  max-width: 51.32em;
  padding: 2.19em 2.63em;
  font-weight: 500;
}

.pp-win__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pp-win__head:not(:last-child) {
  margin-bottom: 2.5em;
}

.pp-win__head > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.pp-win__ttl {
  font-size: 1.88em;
  font-weight: 600;
}

.close-popup {
  width: 3.07em;
  height: 3.07em;
  border-radius: 0.75em;
  background-color: var(--red-transparent);
  color: var(--red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: none;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.close-popup__ico {
  width: 1.32rem;
  height: 1.32rem;
}

@media (hover) and (min-width: 34.38em) {
  .close-popup:hover {
    background-color: var(--red);
    color: #fff;
  }
}
.close-popup:focus-visible {
  background-color: var(--red);
  color: #fff;
}

.form-pp__ttl {
  font-size: 1.25em;
  color: var(--input);
}

.form-pp__ttl:not(:last-child) {
  margin-bottom: 0.6em;
}

.form-pp__input {
  border-radius: 0.63rem;
  background-color: var(--block-2);
  font-size: 1.25em;
  padding: 1.07em 1.38em;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.form-pp__input:not(:last-child) {
  margin-bottom: 1.07rem;
}

.form-pp__input::-webkit-input-placeholder {
  color: var(--input);
}

.form-pp__input::-moz-placeholder {
  color: var(--input);
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .form-pp__input:hover::-webkit-input-placeholder, .form-pp__input:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.3960784314);
  }
  .form-pp__input:hover::-moz-placeholder, .form-pp__input:focus::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3960784314);
  }
}
.form-pp__box-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-pp__box-ttl > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.form-pp__link {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--main);
}

.form-pp__box-btn {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.94em;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.form-pp__a-check:not(:last-child) {
  margin-bottom: 1.88em;
}

.check-form {
  position: relative;
  color: var(--text-color-dark);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .check-form:hover, .check-form:focus {
    color: var(--white);
  }
}
.check-form__lbl {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7em;
  grid-auto-flow: column;
  font-size: 1.25rem;
  cursor: pointer;
}

.check-form__decor {
  width: 2em;
  height: 2em;
  border-radius: 0.5em;
  background-color: var(--block-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.check-form__ico-dec {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0;
}

.check-form__inp:checked + .check-form__lbl .check-form__ico-dec {
  opacity: 1;
}

.form-pp__box-inp:not(:last-child) {
  margin-bottom: 1.88em;
}

.form-pp__submit {
  width: 100%;
}

.pp-win--sm {
  max-width: 41.07em;
}

.form-pp__box-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1rem;
}

.form-pp__box-pay:not(:last-child) {
  margin-bottom: 1.25rem;
}

.form-pp__box-pay > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10.13em;
  flex: 0 0 10.13em;
}

.pp-check-pay {
  aspect-ratio: 162/80;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0.63rem;
  background-color: var(--block-2);
  padding: 0.75em;
  cursor: pointer;
}

.pp-check-pay__ico {
  width: 6.25em;
  height: 2.5em;
  opacity: 0.4;
}

.pp-check-pay._js-checked .pp-check-pay__ico {
  opacity: 1;
}

.check-form {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  grid-auto-flow: column;
}

.form-pp__link {
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .form-pp__link:hover, .form-pp__link:focus {
    color: #89c9ee;
  }
}
.form-pp__link--sub {
  font-size: 1em;
}

.form-pp__ab-check {
  padding: 0.63em 0 0;
}

.form-pp__ab-check:not(:last-child) {
  margin-bottom: 1.88em;
}

@media (max-width: 40.63em) {
  .popup__wrapper--up {
    padding: 3.75em 0 0;
  }
  .pp-win {
    font-size: 0.88rem;
  }
}
@media (max-width: 34.38em) {
  .pp-win {
    padding: 1.38em 0.94em;
  }
}
@media (max-width: 31.25em) {
  .form-pp__box-btn {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .popup {
    padding: 0 0 0 0;
  }
  .popup__wrapper--up {
    padding: 0;
  }
  .pp-win {
    border-radius: 0;
    min-height: 100vh;
    min-height: 100dvh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .pp-win__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5em;
  }
  .pp-win__head:not(:last-child) {
    margin-bottom: 1rem;
  }
  .pp-win__close {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .pp-win__ttl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: center;
  }
  .form-pp__box-pay {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 0.69em;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.25rem;
  }
}
@media (max-width: 23.75em) {
  .form-pp__box-pay {
    font-size: 1.13rem;
  }
}
.form-pp__grid-bb {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 1.25em;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.form-pp__grid-bb:not(:last-child) {
  margin-bottom: 2em;
}

.form-pp__clm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-pp__a-text {
  resize: none;
  min-height: 8.38em;
}

.form-pp__game-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-pp__game-list:not(:last-child) {
  margin-bottom: 1.38em;
}

.form-pp__game-list > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.form-subsct__bottom {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75em;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
}

.form-subsct__cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  padding: 1em 1.5em;
  font-weight: 600;
}

.form-subsct__cost > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.form-subsct__old-cost {
  color: var(--text-color-dark);
  text-decoration: line-through;
}

.form-subsct__new-cost {
  font-size: 1.25em;
}

.form-subsct__submit {
  font-size: 1.25em;
  padding: 0.8em;
}

.form-pp__select {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-pp__select:not(:last-child) {
  margin-bottom: 1.25em;
}

.bnt-select-js {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-flow: column;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  border-radius: 0.63em;
  background-color: var(--block-2);
  padding: 0.75em 1.25em;
  font-weight: 500;
  color: var(--text-color-dark);
  text-align: left;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.bnt-select-js__arr {
  width: 0.88rem;
  height: 0.63rem;
  -webkit-transition: inherit;
  transition: inherit;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .bnt-select-js:hover, .bnt-select-js:focus {
    color: #fff;
  }
}
.select-js-fpp__body {
  position: relative;
}

.select-js-fpp__box-list {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  translate: 0 100%;
  pointer-events: none;
}

.select-js-fpp__wrap-list {
  width: 100%;
  overflow: hidden;
  overflow: clip;
  display: -ms-grid;
  display: grid;
}

.select-js-fpp__list {
  width: 100%;
  translate: 0 -110%;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  opacity: 0;
  pointer-events: auto;
}

.list-sfpp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 0.63em;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  color: var(--text-color-dark);
  text-align: left;
}

.list-sfpp__option {
  padding: 0.63em 1.25em;
  background-color: var(--block-3);
  width: 100%;
  text-align: left;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .list-sfpp__option:hover, .list-sfpp__option:focus {
    background-color: var(--block-4);
    color: #fff;
  }
}
.select-js-fpp._js-open .select-js-fpp__list {
  translate: 0 0;
  opacity: 1;
}

.select-js-fpp._js-open .bnt-select-js__arr {
  rotate: 180deg;
}

.box-check-form-pp {
  display: -ms-grid;
  display: grid;
  gap: 0.75em;
}

.lbl-file {
  position: relative;
  color: var(--text-color-dark);
  text-align: left;
  padding: 0.75em 1.25em;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 0.75em;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  border-radius: 0.63em;
  background-color: var(--block-2);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
  cursor: pointer;
}

.lbl-file__ico {
  width: 1.25em;
  height: 1.25em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .lbl-file:hover, .lbl-file:focus {
    color: #fff;
  }
}
.lbl-file__name {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.form-pp__upload:not(:last-child) {
  margin-bottom: 1.25rem;
}

.form-pp__input--m {
  font-size: 1em;
}

.form-pp__input--m:not(:last-child) {
  margin-bottom: 1.38em;
}

.main__pp-to-center {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 7.5em 0 7.5em;
}

.upload {
  position: relative;
  border-radius: 0.63em;
  overflow: hidden;
  overflow: clip;
}

.upload__del {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.del-upload {
  width: 5rem;
  height: 100%;
  border-radius: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  background-color: var(--red-transparent);
  color: var(--red);
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.del-upload__ico {
  width: 1.5em;
  height: 1.5em;
  font-weight: #fff;
  font-family: 👺;
}

@media (hover) and (min-width: 34.38em) {
  .del-upload:hover {
    background-color: var(--red);
    color: #fff;
  }
}
.del-upload:focus-visible {
  background-color: var(--red);
  color: #fff;
}

.upload._js-show-del .upload__del {
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 52.5em) {
  .popup__wrapper--b-up {
    padding-top: 1.25em;
  }
  .form-pp__grid-bb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 37.5em) {
  .main__pp-to-center {
    padding: 7.5em 0 5.63em;
  }
}
@media (max-width: 31.25em) {
  .popup__wrapper--b-up {
    padding-top: 0;
  }
  .form-subsct__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form-subsct__bottom > * {
    width: 100%;
  }
  .form-subsct__cost {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .main__popup {
    min-height: initial;
    font-size: 0.75em;
  }
}
.my-buy {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2.19em;
  grid-auto-flow: column;
  max-width: 51.32em;
  padding: 2.19em 2.82em;
}

.my-buy__l {
  width: 15em;
  padding: 0 0 0 0;
  gap: 0.94em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .my-buy__l:hover .product-card__bg, .my-buy__l:focus .product-card__bg {
    scale: 1;
  }
}
.my-buy__box-ttl {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1.25em;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
}

.my-buy__box-ttl:not(:last-child) {
  margin-bottom: 1.57em;
}

.my-buy__ttl {
  font-size: 1.75em;
  font-weight: 600;
}

.my-buy__id-order {
  font-size: 1.25em;
  font-weight: 500;
  color: var(--input);
}

.my-buy__id-order:not(:last-child) {
  margin-bottom: 0.6em;
}

.my-buy__box-copy {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  border-radius: 0.63rem;
  background-color: var(--block-2);
  overflow: hidden;
  overflow: clip;
  padding: 0 0 0 0;
  color: var(--text-color-dark);
}

.my-buy__box-copy:not(:last-child) {
  margin-bottom: 1.69em;
}

.my-buy__name-order {
  font-size: 1.25em;
  padding: 0.85em 1.25em;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.my-buy__f-rating-box {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.94em;
}

.my-buy__f-rating-box:not(:last-child) {
  margin-bottom: 2.44em;
}

.my-buy__ttl-rating {
  font-size: 1.25rem;
  color: var(--input);
}

.my-buy__rating {
  font-size: 0.88rem;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .my-buy___price:hover, .my-buy___price:focus {
    background-color: var(--block-3);
  }
}
.form-my-buy__submit {
  width: 100%;
  display: block;
  font-size: 1.25em;
}

.copy-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.75em;
  background-color: var(--block-3);
  border-radius: inherit;
  -webkit-transition: 0.2s ease-out 0s;
  transition: 0.2s ease-out 0s;
}

.copy-btn__ico {
  width: 1.63em;
  height: 1.63em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .copy-btn:hover, .copy-btn:focus {
    color: var(--white);
  }
}
.copy-btn._js-coped {
  background-color: var(--main);
  color: var(--white);
}

@media (max-width: 51.25em) {
  .my-buy__info-seller {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 46.88em) {
  .my-buy {
    font-size: 0.88em;
    gap: 1.25em;
    padding: 1.25em;
  }
  .my-buy__r {
    font-size: 0.88em;
  }
}
@media (max-width: 37.5em) {
  .my-buy {
    padding: 1.88em 1.25em 2.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.88em;
    font-size: 1rem;
  }
  .my-buy__l {
    width: 100%;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.supports-ios {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  -webkit-transform: translate3d(0, -120%, 0);
  transform: translate3d(0, -120%, 0);
  -webkit-transition: 0.5s ease-out 0.2s;
  transition: 0.5s ease-out 0.2s;
}

.supports-ios__c-box {
  border-radius: 0 0 1.25em 1.25em;
  background-color: #cecece;
  padding: 1.25em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.supports-ios__c-box > *:not(:last-child) {
  margin-bottom: 0.69rem;
}

.supports-ios__c-box > h2:not([class]) {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  text-align: center;
}

.supports-ios__c-box > h3:not([class]) {
  text-align: center;
}

.supports-ios__c-box > h4:not([class]) {
  text-align: center;
  font-weight: 600;
}

.supports-ios__c-box > h4:not([class]):not(:last-child) {
  margin-bottom: 0.32rem;
}

.supports-ios__sub-list {
  padding: 0 0 0 1.38em;
}

.supports-ios__btn {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 1em;
}

@media (max-width: 31.25em) {
  .supports-ios {
    font-size: 0.88rem;
  }
}
.supports-ios._js-open {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}

@supports (accent-color: red) {
  .supports-ios {
    display: none;
  }
}
.footer {
  padding: 2.75em 0;
  background-color: var(--block-1);
  color: var(--white);
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.88em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__logo {
  width: 8.88rem;
  height: 2.75rem;
}

.footer__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.25em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social {
  display: -ms-grid;
  display: grid;
  gap: 0.75em;
  grid-auto-flow: column;
}

.social__link {
  width: 2.5em;
  height: 2.5em;
}

.link-soc {
  border-radius: 0.63rem;
  background-color: var(--block-2);
  color: var(--text-color-dark);
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-out 0s;
  transition: 0.3s ease-out 0s;
}

.link-soc__ico {
  display: block;
  width: 1.25em;
  height: 0.88em;
}

@media (any-hover: hover) and (min-width: 34.38em) {
  .link-soc:hover, .link-soc:focus {
    background-color: var(--vk);
    color: var(--white);
  }
}
@media (any-hover: hover) and (min-width: 34.38em) {
  .link-soc--youtube:hover, .link-soc--youtube:focus {
    background-color: #FF0000;
  }
}
@media (any-hover: hover) and (min-width: 34.38em) {
  .link-soc--tg:hover, .link-soc--tg:focus {
    background-color: var(--telegram);
  }
}
.footer__box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5em;
}

.footer__col-ttl {
  font-size: 1.25em;
  font-weight: 700;
  text-align: left;
  padding: 0 0 0.5rem 0;
  width: 100%;
}

.footer__col-ttl:not(:last-child) {
  margin-bottom: 1.5rem;
}

.col-ftr__ttl {
  font-weight: 500;
  color: var(--input);
}

.col-ftr__ttl:not(:last-child) {
  margin-bottom: 1.13rem;
}

.list-ftr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.25em;
}

.list-ftr__link {
  font-weight: 500;
  color: var(--text-color-dark);
  display: inline-block;
  padding: 0.32em 0.63rem;
  margin: -0.31em -0.62rem;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media (any-hover: hover) and (min-width: 65.63em) {
  .list-ftr__link:hover, .list-ftr__link:focus {
    color: var(--white);
  }
}
@media (max-width: 58.75em) {
  .footer__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer {
    padding: 2.5em 0;
  }
}
@media (max-width: 37.5em) {
  .footer__list-box {
    gap: 1.88rem 2.5rem;
  }
  .col-ftr__ttl:not(:last-child) {
    margin-bottom: 0.63rem;
  }
  .list-ftr {
    gap: 0.75rem;
  }
}
@media (min-width: 47.5em) {
  html, body {
    scrollbar-gutter: stable both-edges;
    scrollbar-gutter: stable;
  }
}
body {
  will-change: scroll-position;
}

@media (prefers-reduced-motion) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    -webkit-animation: none !important;
    animation: none !important;
  }
}
.my-buy__name-order {
  white-space: initial;
  word-break: break-all;
  -ms-hyphens: auto;
      hyphens: auto;
}
@supports (hyphens: auto) {
  .my-buy__name-order {
    word-break: initial;
  }
}

.my-buy__copy-btn {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  position: sticky;
  top: 0;
  padding: 1.07em 0.63em;
}

.my-buy__box-txt-order {
  max-height: 14.38rem;
  overflow: hidden;
  overflow-y: auto;
}

.my-buy__box-copy {
  gap: 0.75em;
}

.form-pp__textarea {
  resize: none;
  width: 100%;
  font-size: 1.25em;
  color: #fff;
  min-height: 10em;
  border-radius: 0.5em;
  background-color: #16161b;
  padding: 1em;
  outline: none;
}
.form-pp__textarea:not(:last-child) {
  margin-bottom: 2.25rem;
}
.form-pp__textarea::-webkit-input-placeholder {
  color: #3d3d48;
}
.form-pp__textarea::-moz-placeholder {
  color: #3d3d48;
}

.history-pg {
  padding: 1.5em;
  border-radius: 1em;
  background-color: #131317;
}
.history-pg__ttl {
  font-size: 1.5em;
  font-weight: 600;
}
.history-pg__ttl:not(:last-child) {
  margin-bottom: 1em;
}

.list-history-pg {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  max-height: 43.75rem;
  padding: 0 0.75rem 0 0;
  margin: 0 -0.75rem 0 0;
  overflow: hidden;
  overflow-y: auto;
}
.list-history-pg__itm {
  padding: 1.34em 1.95em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.13em;
  border-radius: 0.56em;
  background-color: #202027;
}
.list-history-pg__itm > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.list-history-pg__r {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.75rem;
  grid-auto-flow: column;
  color: #525261;
  text-align: center;
}
.list-history-pg__cost {
  min-width: 22ch;
}
.list-history-pg__time {
  width: 18ch;
  text-align: right;
}

@media (max-width: 50em) {
  .history-pg {
    font-size: 0.88rem;
  }
}
@media (max-width: 43.75em) {
  .history-pg {
    font-size: 0.88rem;
  }
  .list-history-pg__name {
    width: 100%;
  }
  .history-pg {
    background-color: transparent;
    padding: 0 0 0 0;
  }
  .list-history-pg__r {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .list-history-pg__cost {
    text-align: left;
    width: initial;
    min-width: initial;
  }
}
@media (max-width: 23.75em) {
  .history-pg {
    font-size: 1rem;
  }
  .list-history-pg__r {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-auto-flow: row;
  }
  .list-history-pg__itm {
    text-align: center;
  }
  .list-history-pg__cost, .list-history-pg__time {
    text-align: center;
    width: 100%;
  }
}

.notice-box {
  padding: 15px;
  background: #1a1a20;
  border-radius: 8px;
  margin-top: 20px;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #fff;
}

.notice-item:last-child {
  margin-bottom: 0;
}

.notice-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.link {
  color: #fff;
  text-decoration: underline;
}

.link:hover {
  color: #403e8d;
}

.download-box {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  gap: 10px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-download:hover {
  background: #45a049;
}

.download-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  color: #666;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 4px;
}

.download-error {
  color: #f44336;
  padding: 10px;
  background: #ffebee;
  border-radius: 4px;
}

.form-pp__req {
  color: #ff4444;
  margin-left: 3px;
}

/* Общие стили для всех полей ввода */
.form-pp__input {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--block-2);
  border: 1px solid var(--block-4);
  border-radius: 8px;
  color: var(--text-color-default);
  font-family: "Roboto Flex", Helvetica, Arial, sans-serif;
  transition: all 0.3s ease;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.form-pp__input:focus {
  outline: none;
  border-color: var(--main);
  box-shadow: 
    0 0 0 3px var(--main-dark),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-pp__input:hover {
  background-color: var(--block-3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Специфичные стили для текстовых полей */
.form-pp__input[type="text"],
.form-pp__input[type="password"] {
  padding: 12px 15px;
}

/* Стили для textarea */
.form-pp__input[name="message"] {
  resize: none;
  min-height: 120px;
  line-height: 1.5;
  padding: 12px 15px;
}

/* Стили для селектов (дополнение к существующим) */
.form-pp__input[name="priority"] {
  padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg...");
}

/* Стили для контейнеров полей */
.form-pp__box-inp {
  margin-bottom: 20px;
}

.form-pp__box-inp:last-child {
  margin-bottom: 0;
}

/* Стили для заголовков */
.form-pp__ttl {
  color: var(--text-color-default);
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.form-pp__req {
  color: var(--red);
  margin-left: 4px;
  font-size: 16px;
}

/* Стили для кнопки отправки */
.form-pp__submit {
  background: var(--main);
  color: var(--text-color-default);
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.form-pp__submit:hover {
  background: var(--main-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .form-pp__input {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .form-pp__submit {
    padding: 12px 20px;
  }
}

.chat-empty-state {
  text-align: center;
  padding: 40px 20px;
  opacity: 0.6;
}

.chat-closed-notice {
  background: var(--red);
  padding: 15px;
  text-align: center;
  margin: 20px;
  border-radius: 8px;
}