@import url(https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap);
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Air.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-AirItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Black.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-BlackItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-LightItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-BoldItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-RegularItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-MediumItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-ThinItalic.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: AeonikPro;
  font-display: swap;
  src: url(../fonts/AeonikPro-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
*::after,
*::before {
  display: inline-block;
}
body,
html {
  min-height: 100%;
  min-width: 320px;
}
body {
  color: #333;
  line-height: 1;
  font-family: AeonikPro;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, rgba(203, 232, 255, 0.3), rgba(255, 214, 247, 0.3));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
}

button,
input,
textarea {
  font-family: AeonikPro;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input,
textarea {
  width: 100%;
}
label {
  display: inline-block;
}
button,
option,
select {
  cursor: pointer;
}
a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left:20px;
  padding-right:20px;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
[class*="__container"] {
  /*max-width: 76.875rem;*/
  margin: 0 auto;
  /*padding: 0 0.9375rem;*/
  padding: 0 15px;
}

/* CUSTOM GRID */
/* ---------- CORE ---------- */
:root {
  --h-gutter: 1rem;
}

.h-container {
  width: 100%;
  padding-inline: var(--h-gutter);
  margin-inline: auto;
}

/* row */
.h-row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(-.5*var(--h-gutter));
}

/* col */
[class*="h-col-"] {
  padding-inline: calc(.5*var(--h-gutter));
  box-sizing: border-box;
  flex: 0 0 100%;
  max-width: 100%;
}

/* ---------- BREAKPOINTED CONTAINER ---------- */
@media (min-width:576px) {
  .h-container {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .h-container {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .h-container {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .h-container {
    max-width: 1140px;
  }
}

@media (min-width:1400px) {
  .h-container {
    max-width: 1320px;
  }
}

/* ---------- 12-COLUMN GRID ---------- */
/* base (xs) */
.h-col-1 {
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.h-col-2 {
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.h-col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.h-col-4 {
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.h-col-5 {
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.h-col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.h-col-7 {
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.h-col-8 {
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.h-col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.h-col-10 {
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.h-col-11 {
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.h-col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

/* sm ≥576px */
@media(min-width:576px) {
  .h-col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .h-col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .h-col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .h-col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .h-col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .h-col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .h-col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .h-col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .h-col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .h-col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .h-col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .h-col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* md ≥768px */
@media(min-width:768px) {
  .h-col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .h-col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .h-col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .h-col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .h-col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .h-col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .h-col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .h-col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .h-col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .h-col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .h-col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .h-col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* lg ≥992px */
@media(min-width:992px) {
  .h-col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .h-col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .h-col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .h-col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .h-col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .h-col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .h-col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .h-col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .h-col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .h-col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .h-col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .h-col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.07px;
  padding: 11px 24px;
  text-wrap: nowrap;
  cursor: pointer;
}
.btn__primary {
  color: #fff;
  border-radius: 58px;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.btn__primary .btn__primary:hover {
  background: linear-gradient(276deg, #20a6f7 -11.26%, #5f78fa 102.17%);
}
.btn__secondary {
  border-radius: 35px;
  border: 1px solid transparent;
  background: #fff;
  color: #333;
  transition: all 0.3s ease-in-out;
}
.btn__secondary:hover {
  border: 1px solid #20a6f7;
}
.itemcard__body:hover {
  border-color:#333;
}
.itemcard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid #e9f0fb;
  background: #fff;
  position: relative;
  max-width: 278px;
}
.itemcard__img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #fff;
  min-height: 200px;
  max-height: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.itemcard__head {
  display: flex;
  gap: 8px;
  align-items: center;
}
.itemcard__head a {
  width: 100%;
}
.itemcard__title {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.09px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
}
.itemcard__class {
  display: inline-flex;
  padding: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #deefe5;
  font-size: 10px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.06px;
  position: absolute;
  top: 18px;
  right: 18px;
}
.games {
  color: #219653;
  background: #deefe5;
}
a.blog:hover{
  transform: scale(1.1);
}
a.blog {
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.blog {
  color: white;
  background-color: #333333;
}
.nft {
  color: #1b45f0;
  background: #dfe5ff;
}
.itemcard__subscribers__price {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.itemcard__subscribers {
  color: rgba(51, 51, 51, 0.75);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.075px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.itemcard__btns {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: auto;
}
.btn__card {
  border-radius: 58px;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
  color: #fff;
  width: 100%;
  transition: all 0.3s ease;
}
.btn__card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.btn__card_orange {
  background: linear-gradient(90deg, #ff8000 0%, #ff5500 100%);
}
.btn__card_orange:hover {
  background: linear-gradient(90deg, #ff9933 0%, #ff6600 100%);
  text-decoration: none;
  color: white;
}
.btn__wishlist {
  position: relative;
  padding: 4px;
}
.btn__wishlist::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition: all 0.3s ease-in-out;
}
.btn__wishlist svg path {
  transition: all 0.3s ease-in-out;
}
.btn__wishlist.active svg path,
.btn__wishlist:hover svg path {
  fill: #ed2323;
}
.btn__wishlist:hover::before {
  background-color: rgba(237, 35, 35, 0.1);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.itemcard__price {
  color: #333;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.095px;
}
.itemcard__price span {
  color: #5f78fa;
  font-weight: 400;
}
h2 {
  color: #0e0637;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.32px;
}

.btn__num {
  border: 1px solid #e5e7eb;
  border-right: none;
  padding: 8px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
.btn__num:last-child {
  border-right: 1px solid #e5e7eb;
  border-radius: 0 8px 8px 0;
}
.btn__num:first-child {
  border-radius: 8px 0 0 8px;
}
.btn__num.active {
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
  color: #fff;
}
.btn__num:hover:not(.active) {
  background: #f9fbfe;
}

h3 {
  color: #0e0637;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.24px;
}
.ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.btn__small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
  position: relative;
  flex-shrink: 0;
}
.btn__small::before {
  transition: all 0.3s linear;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-image: url(../img/arrow_btn.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.btn__small:hover::before {
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
  transform: translate(-50%, -50%) rotate(360deg);
}
.btn__buy {
  padding: 11px 24px;
  border-radius: 58px;
  background: linear-gradient(0deg, #29ba67 0, #29ba67 100%), linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08px;
  transition: all 0.3s linear;
  justify-content: center;
}
.arrowed {
  padding-right: 52px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.arrowed::after,
.arrowed::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  background-image: url(../img/arrow_btn.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.arrowed::before {
  left: -24px;
}
.arrowed::after {
  right: 24px;
}
.arrowed:hover.arrowed {
  padding-left: 52px;
  padding-right: 24px;
}
.arrowed:hover.arrowed::before {
  left: 24px;
}
.arrowed:hover.arrowed::after {
  right: -24px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.header {
  z-index: 999;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  top: 0;
}
.header__body {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__menu {
  display: flex;
  align-items: center;
}
.menu__body .header__actions {
  display: none;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu__item.top__item {
  background: unset;
  color:#333;
}
.menu__item {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.07px;
  display: flex;
  padding: 11px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  background: #f9fbfe;
  transition: all 0.3s ease-in-out;
}
.menu__item:hover {
  background: #333;
  color: #fff;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
/* .header__actions .header__account__body {
  display: none;
} */
.header__actions .header__login {
  display: flex;
}
.header.logged .header__login {
  display: none;
}
.header.logged .header__account__body {
  display: flex;
}
.header__langs {
  position: relative;
  overflow: hidden;
}
.header__langs.active {
  overflow: visible;
}
.header__langs .header__langs-list {
  max-height: 0;
}
.header__langs.active .header__langs-list {
  max-height: 100px;
}
.header__langs.active .header__langs-button img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header__langs-button {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.07px;
  text-transform: uppercase;
}
.header__langs-button img {
  transition: all 0.3s ease-in-out;
}
.header__langs-list {
  transition: max-height 0.3s ease-in-out;
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  border-radius: 10px;
  background: #f9fbfe;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header__langs .header__langs-list {
  border: 1px solid #e5e7eb;
}
.header__langs.active li:first-child a {
  border-bottom: 1px solid #e5e7eb;
}
.header__langs-list li a {
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.07px;
  text-transform: uppercase;
  transition: background 0.3s linear, color 0.3s linear;
}
.header__langs-list li:hover {
  /* color: #fff; */
}
.header__langs-list li:hover a {
  /* background: #333; */
  background: #333;
  color: #fff;
}
.header__login {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__account__body {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__notifications:hover {
  transform: scale(1.2);
}
.header__notifications {
  transition: all 0.3s linear;
}
.header__notifications.active {
  position: relative;
}
.header__notifications img {
  width: 20px;
  height: 20px;
}
.header__notifications.active::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e23838;
  border-radius: 50%;
  border: 1px solid #fff;
  bottom: 0;
  right: 0;
}
.header__account__body {
  /* overflow: hidden; */
}
.header__account {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.header__account__avatar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__account__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.header__account-button {
  display: flex;
  align-items: center;
}
.header__account-button img {
  transition: all 0.3s ease-in-out;
}
.header__account-button.active img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header__account__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  border-radius: 10px;
  background: #f9fbfe;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s linear;
  max-height: 0;
}
.header__account__dropdown__list {
  display: flex;
  flex-direction: column;
}
.header__account__dropdown__item {
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}
.header__account__dropdown__link:hover {
  background: #333;
  color: #fff;
}
.header__account__dropdown__link {
  width: 100%;
  padding: 10px 16px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.07px;
  white-space: nowrap;
  transition: background 0.3s linear, color 0.3s linear;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__account__dropdown__item:last-child {
  border-bottom: none;
}
.header__account.active {
  overflow: visible;
}
.header__account.active .header__account__dropdown {
  max-height: 300px;
}
.header__account__dropdown__item.close__item .header__account__dropdown__link {
  color: #ed2323;
}
.header__account__dropdown__item.close__item .header__account__dropdown__link:hover {
  color: #fff;
}
.header__account__dropdown__item.close__item .header__account__dropdown__link svg path {
  transition: all 0.3s linear;
}
.header__account__dropdown__item.close__item .header__account__dropdown__link:hover svg path {
  fill: #fff;
}
.footer.logged .footer__hero {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.footer.logged .footer__links {
  display: none;
}
.footer.logged .footer__social {
  margin-left: auto;
}
.footer.logged .footer__copy__links {
  display: block;
}
.footer__body {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 145px;
}
.footer__hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__langs {
  padding: 7px 12px;
  border-radius: 23px;
  border: 1px solid #e9f0fb;
  background: #fff;
  width: 204px;
  position: relative;
}
.footer__langs.active {
  border-radius: 0;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
}
.footer__langs-button img {
  transition: all 0.3s ease-in-out;
}
.footer__langs.active .footer__langs-button img {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.footer__langs.active .footer__langs-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e9f0fb;
}
.footer__langs-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #0e0637;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.07px;
}
.footer__langs-list {
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  background-color: #fff;
  width: calc(100% + 2px);
  position: absolute;
  top: 100%;
  border: 1px solid #e9f0fb;
  left: -1px;
  display: none;
  color: #0e0637;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.07px;
  overflow: hidden;
}
.footer__langs-list a {
  width: 100%;
  padding: 3px 12px;
}
.footer__langs-list a:hover {
  background-color: #f9fbfe;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social__item svg rect {
  transition: all 0.3s ease-in-out;
}
.footer__social__item:hover svg rect {
  fill: #131316;
}
.footer__links {
  width: 100%;
}
.footer__menu {
  width: 100%;
}
.footer__menu__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer__menu__item {
  color: #131316;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__menu__sublist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__copy__menu__link,
.footer__menu__sublink {
  color: #717184;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__copy__menu__link:hover,
.footer__menu__sublink:hover {
  color: #131316;
}
.footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy p {
  color: #717184;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
.footer__copy__links {
  display: none;
}
.footer__copy__menu__list {
  display: flex;
  gap: 24px;
}
.footer__logo img, .header__logo img {
  max-width: 100px;
}
.btn_black {
  display: flex;
  padding: 0 12px;
  height: 36px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #717184;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.07px;
  border-radius: 58px;
  background: #f9fbfe;
  transition: all 0.3s ease-in-out;
}
.btn_black span {
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  letter-spacing: 0.06px;
  height: 20px;
  padding: 0 8px;
  border-radius: 1444px;
  border: 1px solid rgba(113, 113, 132, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_black.active,
.btn_black:hover {
  background: #333;
  color: #fff;
}
.btn_black.active span,
.btn_black:hover span {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn__filter {
  display: none;
}

.btn__green {
  border-radius: 58px;
  background: #29ba67;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn__green:after {
  border-radius: 58px;
  transition: all 0.3s linear;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 0;
  height: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
}
.btn__green img,
.btn__green span {
  z-index: 1;
  position: relative;
}
.btn__green:hover:after {
  left: 0;
}

.btn_gray {
  border-radius: 58px;
  background: #f9fbfe;
  color: #717184;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn_gray:after {
  border-radius: 58px;
  transition: all 0.3s linear;
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 0;
  height: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
}
.btn_gray svg path {
  transition: all 0.3s linear;
}
.btn_gray span,
.btn_gray svg {
  z-index: 1;
  position: relative;
}
.btn_gray:hover {
  color: #fff;
}
.btn_gray:hover:not(:last-child) svg path {
  stroke: #fff;
}
.btn_gray:hover:last-child svg path {
  fill: #fff;
}
.btn_gray:hover:after {
  left: 0;
}

.swiper {
  overflow: hidden;
}
.swiper-initialized {
  touch-action: pan-y;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}
.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-button-lock {
  display: none !important;
}
.icon-menu {
  display: none;
}
.input__field {
  outline: 0;
  height: 50px;
  padding: 0 18px;
  border-radius: 58px;
  border: 1px solid #e9f0fb;
  background: #f9fbfe;
  font-family: AeonikPro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.08px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.input__field {
  color: #333;
  font-family: AeonikPro;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.07px;
  caret-color: #333 !important;
}
.input__field::-webkit-input-placeholder {
  color: rgba(113, 113, 132, 0.5);
}
.input__field:-ms-input-placeholder {
  color: rgba(113, 113, 132, 0.5);
}
.input__field::-ms-input-placeholder {
  color: rgba(113, 113, 132, 0.5);
}
.input__field::placeholder {
  color: rgba(113, 113, 132, 0.5);
}
.input__field:valid {
  border: 1px solid #27b061;
}
.input__field:valid[type="text"] {
  position: relative;
}
.input__field:focus,
.input__field:hover {
  border: 1px solid #cbddf9;
}
.form__input__field .input__field__error {
  display: none;
}
.form__input__field:has(.input__field:valid) {
  position: relative;
}
.form__input__field:has(.input__field:valid)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/valid.svg);
}
.form__input__field:has(.input__field:not(:-ms-input-placeholder):invalid) {
  position: relative;
}
.form__input__field:has(.input__field:not(:placeholder-shown):invalid) {
  position: relative;
}
.form__input__field:has(.input__field:not(:-ms-input-placeholder):invalid) .input__field {
  color: #e23838;
  border-color: #e23838;
}
.form__input__field:has(.input__field:not(:placeholder-shown):invalid) .input__field {
  color: #e23838;
  border-color: #e23838;
}
.form__input__field:has(.input__field:not(:-ms-input-placeholder):invalid) .input__field__error {
  display: block;
  position: absolute;
  bottom: -10px;
  right: 17px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05px;
  padding: 2px 8px;
  border-radius: 58px;
  background: #e23838;
}
.form__input__field:has(.input__field:not(:placeholder-shown):invalid) .input__field__error {
  display: block;
  position: absolute;
  bottom: -10px;
  right: 17px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.05px;
  padding: 2px 8px;
  border-radius: 58px;
  background: #e23838;
}
.paid {
  background: #5f78fa;
}
.completed {
  background: #19d18c;
}
.arbitration {
  background: #f6851b;
}
.created {
  background: #272932;
}
.cancelled {
  background: #e53b35;
}
@media (max-width: 1024px) {
  .header__account__dropdown {
    max-height: none;
    position: static;
  }
  .header__account__dropdown__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(233, 240, 251, 0.5);
  }
  .header__account__dropdown__item {
    border-bottom: none;
  }
  .header__account__dropdown__link {
    padding: 2px 16px;
    font-size: 20px;
  }
  .menu__body {
    position: fixed;
    width: 100%;
    height: calc(100vh - 70px);
    left: calc(-100% - 20px);
    top: 100%;
    overflow: auto;
    padding: 15px;
    transition: left 0.3s;
  }
  .menu-open .menu__body {
    left: 0;
  }
  .menu-open .menu__body::before {
    left: 0;
  }
  .icon-menu {
    display: flex;
    height: 30px;
    width: 76px;
    text-align: right;
    padding: 12px 9px;
    justify-content: center;
    align-items: center;
    border-radius: 144px;
    background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
    gap: 8px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    position: relative;
    z-index: 5;
  }
  .icon-menu span {
    content: "";
    transition: all 0.3s ease 0s;
    position: relative;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    width: 16px;
  }
  .icon-menu span::after,
  .icon-menu span::before {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
  }
  .icon-menu span::before {
    top: -6px;
  }
  .icon-menu span::after {
    bottom: -6px;
  }
  .menu-open .icon-menu span {
    background-color: rgba(0, 0, 0, 0);
  }
  .menu-open .icon-menu span::before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu span::after {
    bottom: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .itemcard__body {
    max-width: 320px;
  }

  .header__body {
    justify-content: space-between;
  }
  .header__logo {
    width: 76px;
    height: 32px;
  }
  .header__logo img {
    width: 100%;
  }
  .menu__body {
    max-width: 390px;
    background-color: #fff;
    border-bottom-right-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .menu__body .menu__item {
    font-size: 16px;
    letter-spacing: 0.1px;
  }
  .menu__body .btn {
    font-size: 20px;
    letter-spacing: 0.1px;
    padding: 2px 24px;
  }
  .menu__body .btn__primary {
    padding-right: 46px;
  }
  .menu__body .header__actions {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0;
  }
  .menu__body .header__actions .header__login {
    align-items: flex-start;
    flex-direction: column;
  }
  .menu__body .header__actions .header__langs {
    margin-bottom: 10px;
  }
  .menu__body .header__actions .header__langs .header__langs-list {
    bottom: calc(100% + 10px);
    top: auto;
  }
  .menu__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu__item {
    padding: 2px 16px;
  }
  .header__actions {
    display: none;
  }
  .footer.logged .footer__hero {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .footer.logged .footer__social {
    margin: 0;
  }
  .footer.logged .footer__copy {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .footer.logged .footer__copy__menu__list {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  .footer__body {
    padding: 20px 0;
    gap: 20px;
  }
  .footer__inner {
    gap: 20px;
    flex-direction: column-reverse;
  }
  .footer__hero {
    gap: 20px;
  }
}
@media (max-width: 1024px) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}
@media (max-width: 768px) {
  .itemcard__body {
    max-width: 397px;
  }
  .section__lot__head__background {
    display:none;
  }
}
@media (max-width: 600px) {
  .footer.logged {
    padding-bottom: 80px;
  }
  .btn {
    font-size: 13px;
    letter-spacing: 0.065px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .itemcard__body {
    border-radius: 16px;
    max-width: 570px;
  }
  .itemcard__img {
    border-radius: 8px;
  }
  .itemcard__subscribers__price {
    margin-bottom: 12px;
    flex-direction: row;
    justify-content: space-between;
  }
  .itemcard__subscribers {
    font-size: 12px;
    letter-spacing: 0.06px;
  }
  .itemcard__btns {
    margin-top: 0;
  }
  h2 {
    font-size: 24px;
    letter-spacing: -0.24px;
  }

  .footer__langs-button {
    font-size: 12px;
    letter-spacing: 0.06px;
  }
  .footer__langs-list {
    font-size: 12px;
    letter-spacing: 0.06px;
  }
  .footer__menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer__menu__item {
    font-size: 14px;
    letter-spacing: 0.07px;
  }
  .footer__copy__menu__link,
  .footer__menu__sublink {
    font-size: 12px;
  }
  .footer__copy p {
    font-size: 12px;
  }

  .btn_black {
    font-size: 12px;
  }
  .btn__filter {
    padding: 8px 24px;
    border-radius: 58px;
    background: linear-gradient(90deg, #20a6f7 0, #5f78fa 100%);
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.06px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-bottom: 14px;
  }
  .input__field {
    font-size: 12px;
    height: 40px;
  }
}


.image-placeholder svg {
  width:50%;
  height:50%;
}
.image-placeholder.editable {
  min-width: 240px;
}
.image-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(45deg, #f8b3d0, #b2dff8, #b3f8c6, #f8e7b3, #f8b3d0);
  background-size: 400% 400%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  animation: pastel-gradient 10s ease infinite;
}
@keyframes pastel-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.invalid-feedback,
.help-block-error,
.alert-danger {
  color:#E53B35;
}
.alert-danger {
  margin-top:4px;
  margin-bottom:8px;
}
.invalid-feedback,
.help-block-error {
  font-size:12px;
  margin-top:4px;
}

.section__login__form__label {
  margin-bottom: 4px;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.profile-alerts-area {
  margin-bottom:42px;
}

.acc-layout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  /* Задаёт зазор между колонками */
}

.sidebar-col {
  width: calc(20% - 16px);
  /* Учитываем gap, чтобы ширина не ломала сетку */
}

.main-col {
  width: calc(80% - 16px);
  /* То же самое для основной колонки */
}

@media (max-width: 768px) {
  .wrapper {
    padding: 10px;
  }
  .sidebar-col,
  .main-col {
    width: 100%;
    /* На мобилке gap не влияет, так как 100% ширины */
  }

  .acc-layout-wrapper {
    gap: 8px;
    /* Если хочешь меньше зазоров на мобильных */
  }
}

.section__plaintext {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.section__plaintext h1,
.section__plaintext h2,
.section__plaintext h3,
.section__plaintext h4,
.section__plaintext h5,
.section__plaintext h6 {
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align:left;
}

.section__plaintext h1 {
  font-size: 2em;
}

.section__plaintext h2 {
  font-size: 1.5em;
}

.section__plaintext h3 {
  font-size: 1.17em;
}

.section__plaintext h4 {
  font-size: 1em;
}


.section__plaintext p {
  margin-bottom: 1em;
}

.section__plaintext ul,
.section__plaintext ol {
  margin: 1em 0;
  padding-left: 20px;
}

.section__plaintext ul li {
  list-style-type: disc;
  margin-bottom: 0.5em;
}

.section__plaintext ol li {
  list-style-type: decimal;
  margin-bottom: 0.5em;
}

.section__plaintext a {
  color: #007bff;
  text-decoration: underline;
}

.section__plaintext a:hover {
  color: #0056b3;
  text-decoration: none;
}

.section__plaintext strong,
.section__plaintext b {
  font-weight: bold;
}

.section__plaintext em,
.section__plaintext i {
  font-style: italic;
}

.section__plaintext blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
  border-left: 4px solid #ccc;
  color: #555;
  font-style: italic;
  background: #f9f9f9;
}

.section__plaintext code {
  font-family: monospace;
  background: #f4f4f4;
  padding: 2px 5px;
  border-radius: 3px;
}

.section__plaintext pre {
  background: #f4f4f4;
  padding: 10px;
  overflow: auto;
  border-radius: 5px;
}

.section__plaintext hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2em 0;
}
.subcontainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  text-align:left!important;
}

.layout-parent {
  display: flex;
}

.layout-child {
  box-sizing: border-box;
}

.w-30 {
  width: 30%;
}

.w-70 {
  width: 70%;
}

@media (max-width: 768px) {
  .w-mob-100 {
    width: 100% !important;
  }
}

.chatrooms-wrapper {
  border: 1px solid #e9f0fb;

}

.room-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-item-list {
  border-bottom: 1px solid #e9f0fb;
  cursor: pointer;
  transition: all 0.2s ease-in-out;

}
.room-item-list:last-of-type {
  border-bottom: none;
}

.room-item-list:hover {
  background: rgba(0, 0, 0, 0.05);
}

.room-item-list.active {
  background: rgba(95, 121, 250, 0.23);
  border-left: 4px solid rgba(0, 171, 193, 0.41);
  font-weight: bold;
}

.room-item-list .odate {
  font-size: 11px;
  color: #999;
  text-align: right;
}

.room-item-list .itemcard__subscribers {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1;
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.room-item-list .section__mycontent__case__inner {
  overflow: hidden;
}

.room-item-list .section__mycontent__case__image {
  margin-right: 12px;
}

.room-item-list {
  display: flex;
  flex-direction: row;
  padding: 10px 14px;
}


.section__lot__price.big-price {
  justify-content: center;
  font-size:32px;
}
.z10 {
  z-index: 10;
}

.flex-important {
    display: flex!important;
}

.none-important {
    display: none!important;
}

.bid-el-padding {
    padding: 5px 0 5px 0;
}

.custom-round-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: sub;
    position: relative;
    margin-top: 0.15em;
}

.custom-round-checkbox:checked {
    background-color: #2e90fa;
    border-color: #2e90fa;
}

.custom-round-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.bid-btn-gradient {
    background: linear-gradient(90deg, #20a6f7 0%, #5f78fa 100%);
    color: white;
    font-weight: 500;
    padding: 12px 24px;
    font-size: 16px;
}

.bid-btn-gradient:hover {
    background: linear-gradient(276deg, #20a6f7 -11.26%, #5f78fa 102.17%);
}

.bid-btn-outline {
    background-color: white;
    color: #333;
    font-weight: 500;
    border: 1px solid #ccc;
    padding: 12px 24px;
    font-size: 16px;
    margin: 10px 0 10px 0;
}

.bid-btn-outline:hover {
    border-color: #5f78fa;
    color: #fdfdfd;
}

.arrow-icon {
    font-size: 18px;
    line-height: 1;
    margin-left: 8px;
}

.social-login h4 {
  padding: 5px; 
}



.btn-xxl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.2px;
  padding: 10px 46px!important;
  text-wrap: nowrap;
  cursor: pointer;
}

.profile-pic-square {
  border-radius: 4px!important;
}
.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: #f9fbfe;
  display: block;
}

.profile-pic-sm {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  background: #f9fbfe;
  display: block;
}

.itemcard__class img {
  margin-right: 6px;
}

.modal-content {
  border-radius:38px;
}