* {
  padding: 0;
  margin: 0;
  border: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-tap-highlight-color: transparent;
}

*::-webkit-scrollbar {
  display: none;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:active,
:focus {
  outline: 0;
}

a:active,
a:focus {
  outline: 0;
}

a {
  display: block;
  cursor: pointer;
  font-size: inherit;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  color: currentColor;
}

button,
input,
textarea {
  font-family: inherit;
  font-weight: inherit;
  background-color: transparent;
  color: currentColor;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}
button:disabled {
  cursor: default;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

img {
  border-style: none;
  max-width: 100%;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row {
  --x: 15px;
  --y: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--y) * -1);
  margin-right: calc(var(--x) / -2);
  margin-left: calc(var(--x) / -2);
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--x) / 2);
  padding-left: calc(var(--x) / 2);
  margin-top: var(--y);
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

body,
html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family), sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main {
  z-index: 1;
}

.mainFull .container {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100vh - 104px);
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* KIT */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.gap-2 {
  gap: 2px;
}
.gap-3 {
  gap: 3px;
}
.gap-4 {
  gap: 4px;
}
.gap-6 {
  gap: 6px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-14 {
  gap: 14px;
}
.gap-16 {
  gap: 16px;
}
.gap-18 {
  gap: 18px;
}
.gap-20 {
  gap: 20px;
}
.gap-22 {
  gap: 22px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}

.f-third {
  font-family: var(--third-family);
}

.weight-400 {
  font-weight: 400;
}
.weight-500 {
  font-weight: 500;
}
.weight-600 {
  font-weight: 600;
}
.weight-700 {
  font-weight: 700;
}
.weight-800 {
  font-weight: 800;
}

.c-red {
  color: red;
}

.p-2 {
  padding: 2px;
}
.p-4 {
  padding: 4px;
}
.p-6 {
  padding: 6px;
}
.p-8 {
  padding: 8px;
}
.p-10 {
  padding: 10px;
}
.p-12 {
  padding: 12px;
}
.p-12_16 {
  padding: 12px 16px !important;
}
.p-14 {
  padding: 14px;
}
.p-16 {
  padding: 16px;
}
.p-18 {
  padding: 18px;
}

.r-8 {
  border-radius: 8px;
}
.r-10 {
  border-radius: 10px;
}
.r-12 {
  border-radius: 12px;
}
.r-14 {
  border-radius: 14px;
}
.r-16 {
  border-radius: 16px;
}

.overflow-hidden {
  overflow: hidden;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.max__w-220 {
  max-width: 220px;
}

:root {
  --brand-950: #d9d9d9;
  --text-primary: #fff;
  --bg-primary: var(--brand-950);
  --border-primary: var(--brand-700);
  --brand-100: #eefff6;
  --brand-200: #c6ead2;
  --brand-400: #8ed6a6;
  --brand-500: #50c878;
  --brand-550: #3fa561;
  --brand-600: #31804c;
  --brand-700: #235c3b;
  --brand-800: #1b1b20;
  --brand-900: #0b0c0c;
  --brand-950: #08080a;
  --bg-secondary: var(--brand-900);
  --bg-teriary: var(--brand-800);
  --text-green: #66dc7e;
  --badge-green: rgba(102, 220, 126, 0.1);
  --badge-white: rgba(255, 255, 255, 0.1);
  --border-light: rgba(205, 201, 230, 0.1);
  --bg-brand: var(--brand-500);
  --bg-inverted: var(--brand-100);
  --bg-inverted-secondary: var(--brand-200);
  --border-brand: var(--brand-500);
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --text-inverted: var(--brand-950);
  --text-inverted-secondary: var(--brand-900);
  --text-inverted-tertiary: var(--brand-800);
  --icon-primary: #fff;
  --icon-secondary: rgba(255, 255, 255, 0.8);
  --icon-tertiary: rgba(255, 255, 255, 0.5);
  --icon-brand: var(--brand-500);
  --icon-inverted: var(--brand-950);
  --icon-inverted-secondary: var(--brand-900);
  --icon-inverted-tertiary: var(--brand-800);
  --text-brand: var(--brand-500);
  --badge-red: rgba(238, 40, 67, 0.1);
  --text-desctructive: #f8667a;
  --icon-desctructive: #f8667a;
  --bg-desctructive: #ee2843;
  --bg-desctructive-secondary: #b70723;
  --icon-green: #66dc7e;
  --border-modal: var(--brand-800);
  --button-primary: var(--brand-500);
  --button-primary-hover: var(--brand-550);
  --button-primary-pressed: var(--brand-400);
  --button-tertiary: rgba(205, 201, 230, 0.1);
  --button-tertiary-hover: rgba(205, 201, 230, 0.15);
  --button-tertiary-pressed: rgba(205, 201, 230, 0.2);
  --button-destructiive: var(--bg-desctructive);
  --button-destructiive-hover: var(--bg-desctructive-secondary);
  --button-disable: rgba(205, 201, 230, 0.1);
  --button-secondary: var(--bg-inverted);
  --button-secondary-hover: var(--bg-inverted-secondary);
  --button-secondary-pressed: var(--bg-inverted);
  --bg-white: #fff;
  --badge-brand: rgba(67, 125, 252, 0.2);
  --text-disable: rgba(255, 255, 255, 0.2);
  --icon-disable: rgba(255, 255, 255, 0.25);
  --font-family: "Inter", sans-serif;
  --second-family: "SF Pro Text", sans-serif;
  --third-family: "Unbounded", sans-serif;
}

/* END KIT */
.container {
  width: 358px;
  margin: 0 auto;
}

.h-24 {
  height: 24px;
  max-height: 24px;
}
.h-40 {
  height: 40px;
}
.h-46 {
  height: 46px;
}
.h-48 {
  height: 48px;
}

.w-100 {
  width: 100%;
}

.qrImg {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 180px;
}
.qrImg img {
  width: 100%;
  border-radius: 20px;
}

.header {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 64px;
}
.header .container {
  position: relative;
}
.header__page {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: var(--text-primary);
}
.header__page.center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

#depositAddress {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
#depositAddress:active, #depositAddress:hover {
  opacity: 0.7;
}

#depositQR {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#depositQR:hover {
  opacity: 0.7;
}
#depositQR img {
  width: 100%;
}

#main.withTabs .page .wrapper {
  padding-bottom: 136px;
}
#main.withTabs .tabs {
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
#main.withTabs .notify {
  bottom: 112px;
}
#main .header::before {
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: radial-gradient(70% 28% at 50% -20%, #50c878 18.64%, rgba(8, 8, 10, 0) 100%) var(--bg-primary);
  pointer-events: none;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 358px;
  width: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
#main.withGradient .header::before {
  opacity: 1;
  visibility: visible;
}
#main .notify {
  bottom: 24px;
}

.depositText span {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-primary);
  -webkit-box-shadow: inset 0 4px 6px 0 var(--text-tertiary);
          box-shadow: inset 0 4px 6px 0 var(--text-tertiary);
  background: radial-gradient(232.79% 77% at 56.16% 36.11%, #0092ed 0%, #002641 100%), radial-gradient(86.34% 122.01% at 106.01% -71.72%, #009fed 0%, rgba(0, 159, 237, 0) 100%) var(--bg-teriary);
  border-radius: 28px;
  padding: 2px 6px;
}

.page {
  min-height: 100%;
  scrollbar-width: none;
  overflow-y: auto;
  position: relative;
  scroll-behavior: smooth;
}
.page .wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 0px;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  gap: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  padding-bottom: 24px;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.page .wrapper.active {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  height: auto;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.gradient-green {
  background: url("../img/gradientGreenBackground.png") center/cover no-repeat, radial-gradient(80.63% 152.96% at 14.94% -52.65%, rgba(80, 200, 120, 0.5019607843) 0%, rgba(8, 8, 10, 0) 100%), var(--badge-green) !important;
  border: 0 !important;
}
.gradient-blue {
  background: radial-gradient(87.17% 54.76% at 100.42% 98.99%, #87edff 0%, rgba(104, 175, 255, 0) 100%), radial-gradient(86.34% 122.01% at 106.01% -71.72%, #009fed 0%, rgba(0, 159, 237, 0) 100%), radial-gradient(232.79% 77% at 56.16% 36.11%, #009fed 0%, #002641 100%), var(--bg-teriary) !important;
  -webkit-box-shadow: inset 0 4px 6px 0 var(--text-tertiary);
          box-shadow: inset 0 4px 6px 0 var(--text-tertiary);
  border: none !important;
}
.gradient-blue .flex {
  z-index: 1;
}
.gradient-blue .tonPart {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.catPart {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.bet__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bet__wrapper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.bet__wrapper-buttons button {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-secondary);
  width: 100%;
  padding: 6px;
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.bet__wrapper-buttons button.active {
  color: var(--text-inverted);
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
          box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: var(--button-secondary);
}
.bet__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 16px 12px;
}
.bet__inner svg {
  min-width: 16px;
}
.bet__inner input {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-primary);
}
.bet__inner input::-webkit-input-placeholder {
  color: var(--text-tertiary);
}
.bet__inner input::-moz-placeholder {
  color: var(--text-tertiary);
}
.bet__inner input:-ms-input-placeholder {
  color: var(--text-tertiary);
}
.bet__inner input::-ms-input-placeholder {
  color: var(--text-tertiary);
}
.bet__inner input::placeholder {
  color: var(--text-tertiary);
}
.bet__inner span {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-tertiary);
}

.create__room-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.create__room-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.create__room-buttons button {
  font-weight: 500;
  font-size: 14px;
  line-height: 133%;
  color: var(--text-secondary);
  width: 100%;
  padding: 6px;
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  height: 36px;
}
.create__room-buttons button.active {
  color: var(--text-inverted);
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
          box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: var(--button-secondary);
}
.create__room-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.create__room-inner .block {
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.create__room-inner .block svg {
  min-width: 18px;
}
.create__room-inner .block input {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-primary);
}
.create__room-inner .block input::-webkit-input-placeholder {
  color: var(--text-tertiary);
}
.create__room-inner .block input::-moz-placeholder {
  color: var(--text-tertiary);
}
.create__room-inner .block input:-ms-input-placeholder {
  color: var(--text-tertiary);
}
.create__room-inner .block input::-ms-input-placeholder {
  color: var(--text-tertiary);
}
.create__room-inner .block input::placeholder {
  color: var(--text-tertiary);
}
.create__room-inner .block:last-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.create__room-inner .block:last-child input {
  text-align: right;
}
.create__room-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.create__room-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-tertiary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.create__room-text span:nth-child(2) {
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
}
.create__room-text span:nth-child(3) {
  -webkit-transform: translateX(22px);
      -ms-transform: translateX(22px);
          transform: translateX(22px);
}
.create__room-text span:nth-child(4) {
  -webkit-transform: translateX(18px);
      -ms-transform: translateX(18px);
          transform: translateX(18px);
}

.rangeSlider {
  position: relative;
  height: 40px;
}
.rangeSlider__track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--button-tertiary);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.rangeSlider__progress {
  position: absolute;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#a2d8ff), color-stop(48.89%, #5c92ff), to(#0c8ad9));
  background: linear-gradient(90deg, #a2d8ff 0%, #5c92ff 48.89%, #0c8ad9 100%);
}
.rangeSlider input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.rangeSlider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  background: url("../img/tonSymbol.svg") center no-repeat, #1197ea;
}
.rangeSlider input[type=range]::-moz-range-thumb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  pointer-events: all;
  cursor: pointer;
  border: none;
}

.lobby__game-block {
  padding: 16px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.lobby__game-block:hover .lobbyPart {
  right: -10px;
  bottom: -10px;
}
.lobby__game-block .lobbyPart {
  position: absolute;
  pointer-events: none;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.lobby__game-block:nth-child(1) {
  background: radial-gradient(485.71% 110.85% at 46.51% 60.71%, #0d41c4 0%, rgba(0, 9, 55, 0) 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.lobby__game-block:nth-child(2) {
  background: radial-gradient(187.68% 187.68% at 94.69% 108.44%, #ff6200 0%, #e7be4c 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.lobby__game-block:nth-child(2) .text {
  color: var(--text-inverted);
}
.lobby__game-block:nth-child(2) .buttons button {
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}
.lobby__game-block:nth-child(2) .buttons button svg {
  color: var(--icon-secondary);
}
.lobby__game-block:nth-child(3) {
  background: radial-gradient(465.35% 133.11% at 75.56% 7.79%, #009fed 0%, #002037 100%), radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.lobby__game-block .buttons button {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.lobby__game-block .buttons button:hover {
  opacity: 0.8;
}
.lobby__game-block .buttons button:first-child {
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
          box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: var(--button-secondary);
  border-radius: 28px;
  padding: 8px 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--text-inverted);
}
.lobby__game-block .buttons button:last-child {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  border-radius: 28px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  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;
}

.text {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-primary);
}
.text-green {
  color: var(--text-brand);
}
.text-gray {
  color: var(--text-tertiary);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-fz12 {
  font-size: 12px;
}
.text-fz14 {
  font-size: 14px;
}
.text-fz16 {
  font-size: 16px;
}
.text-fz18 {
  font-size: 18px;
}
.text-fz20 {
  font-size: 20px;
}
.text-fz24 {
  font-size: 24px;
}
.text-fz30 {
  font-size: 30px;
}
.text-w400 {
  font-weight: 400;
}
.text-w500 {
  font-weight: 500;
}
.text-w600 {
  font-weight: 600;
}
.text-center {
  text-align: center;
}

.tabs {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2px;
  position: fixed;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(116px);
      -ms-transform: translateX(-50%) translateY(116px);
          transform: translateX(-50%) translateY(116px);
  width: 358px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.tabsHistory .user {
  gap: 8px;
}
.tabsHistory .user__text {
  color: var(--text-secondary);
}
.tabsHistory .block {
  cursor: pointer;
}
.tabs__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding-top: 48px;
}
.tabs__empty-flex {
  max-width: 302px;
  width: 100%;
  margin: 24px auto 0 auto;
}
.tabs__empty-flex button {
  width: 100%;
  margin-top: 0 !important;
}
.tabs__empty-head {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.tabs__empty-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.tabs__empty button {
  margin-top: 12px;
}
.tabs__btn {
  cursor: pointer;
}
.tabs__btn_active {
  cursor: default;
}
.tabs__pane {
  display: none;
}
.tabs__pane_show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2px;
  width: 100%;
}
.tabs ul .glass {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  position: absolute;
  background: radial-gradient(87.24% 100% at 54.69% 100%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%), var(--button-tertiary);
  pointer-events: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.tabs ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 68px;
  height: 68px;
  cursor: pointer;
  position: relative;
}
.tabs ul li:nth-child(3) svg {
  opacity: 0;
}
.tabs ul li svg path {
  fill-opacity: 0.5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.tabs ul li span {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-tertiary);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.tabs ul li .profile__img {
  position: relative;
  overflow: hidden;
}
.tabs ul li .profile__img img {
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 26px;
  height: 26px;
}
.tabs ul li .profile__img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bg-brand);
}
.tabs ul li img:not(.profile__img img) {
  position: absolute;
  bottom: 28px;
  pointer-events: none;
}
.tabs ul li.active svg path {
  fill-opacity: 1;
}
.tabs ul li.active span {
  color: var(--text-primary);
}

.i-10 {
  width: 10px;
  height: 10px;
}
.i-12 {
  width: 12px;
  height: 12px;
}
.i-14 {
  width: 14px;
  height: 14px;
}
.i-16 {
  width: 16px;
  height: 16px;
}
.i-18 {
  width: 18px;
  height: 18px;
}
.i-20 {
  width: 20px;
  height: 20px;
}
.i-21 {
  width: 21px;
  height: 21px;
}
.i-24 {
  width: 24px;
  height: 24px;
}
.i-32 {
  width: 32px;
  height: 32px;
}
.i-37 {
  width: 37px;
  height: 37px;
}
.i-w {
  fill: #fff;
}
.i-gray {
  color: var(--icon-tertiary);
}

.notify {
  backdrop-filter: blur(50px);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: fixed;
  bottom: 112px;
  left: 50%;
  -webkit-transform: translateY(32px) translateX(-50%);
      -ms-transform: translateY(32px) translateX(-50%);
          transform: translateY(32px) translateX(-50%);
  width: 100%;
  max-width: 358px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.notify.active {
  -webkit-transform: translateY(0) translateX(-50%);
      -ms-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.notify__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
.notify__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-primary);
}
.notify button {
  margin-top: 12px;
}
.notify.red {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.5)), to(rgba(8, 8, 10, 0.5))), var(--badge-red);
  background: linear-gradient(rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.5)), var(--badge-red);
}
.notify.red .notify__name {
  color: var(--text-desctructive);
}
.notify.green {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.5)), to(rgba(8, 8, 10, 0.5))), var(--badge-green);
  background: linear-gradient(rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.5)), var(--badge-green);
}
.notify.green .notify__name {
  color: var(--text-brand);
}

.green__button {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-inverted);
  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;
  gap: 6px;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-brand);
  border-radius: 28px;
  padding: 12px;
}
.green__button.mini {
  padding: 6px;
}

.red__button {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-desctructive);
  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;
  gap: 6px;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: rgba(238, 40, 67, 0.2);
  border-radius: 28px;
  padding: 12px;
}

.button {
  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;
  gap: 4px;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-brand);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-inverted);
  border-radius: 28px;
  padding: 6px 10px;
}
.button__p-10 {
  padding: 10px;
}
.button-50 {
  width: 50%;
}
.button-100 {
  width: 100%;
}
.button__circle {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  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-flex-negative: 0;
      flex-shrink: 0;
}
.button__circle.big {
  width: 40px;
  height: 40px;
}
.button__green {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(#50c878), to(#3fa561)), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #50c878 0%, #3fa561 100%), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
}
.button__green.black {
  color: var(--text-inverted);
}
.button__green.text-fz16 {
  font-size: 16px;
}
.button__red {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: rgba(238, 40, 67, 0.2);
}
.button__glass {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-secondary);
  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;
  gap: 8px;
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  -webkit-box-shadow: inset 0 0.5px 0 0 var(--text-tertiary);
          box-shadow: inset 0 0.5px 0 0 var(--text-tertiary);
  border-radius: 16px;
  padding: 8px 12px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button__glass:disabled {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: var(--button-disable);
  color: var(--text-disable);
}
.button__glass.enabled {
  color: var(--text-inverted);
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-brand);
  border: 0px solid transparent;
}
.button__glass-fz16 {
  font-size: 16px;
}
.button__glass.p6-12 {
  padding: 6px 12px;
}
.button__glass.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.button__glass.active, .button__glass.tabs__btn_active {
  background: var(--button-secondary);
  color: var(--text-inverted);
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
          box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}
.button__glass.mini {
  gap: 6px;
  padding: 4px 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.button.p10-16 {
  padding: 10px 16px;
}
.button__r-28 {
  border-radius: 28px;
}
.button__h-40 {
  height: 40px;
}
.button__w-40 {
  width: 40px;
}

.mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.mode__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  height: 194px;
  background: radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 28px;
  padding: 16px 12px 12px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.mode__block:hover {
  opacity: 0.9;
}
.mode__block > * {
  z-index: 1;
}
.mode__block img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mode__block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(232.79% 77% at 56.16% 36.11%, #50c878 0%, #011709 100%), radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mode__block.active::after {
  opacity: 1;
}
.mode__block.active:hover {
  opacity: 1;
}
.mode__block.active .moreLess {
  color: var(--text-inverted);
}
.mode__block.active .evenOdd span {
  color: var(--text-inverted);
}
.mode__block.active .evenOdd span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-inverted);
}
.mode__block .moreLess {
  width: 125px;
  height: 42px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mode__block .evenOdd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mode__block .evenOdd span {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 93%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-primary);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mode__block .evenOdd span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.mode__block button {
  width: 100%;
  max-width: 140px;
  height: 34px;
}

.withdraw__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: var(--button-tertiary);
  padding: 4px 2px 4px 14px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
}
.withdraw__input input {
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-primary);
}
.withdraw__input input::-webkit-input-placeholder {
  color: var(--text-tertiary);
}
.withdraw__input input::-moz-placeholder {
  color: var(--text-tertiary);
}
.withdraw__input input:-ms-input-placeholder {
  color: var(--text-tertiary);
}
.withdraw__input input::-ms-input-placeholder {
  color: var(--text-tertiary);
}
.withdraw__input input::placeholder {
  color: var(--text-tertiary);
}
.withdraw__input-button {
  width: 40px;
  height: 40px;
  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-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  border-radius: 50%;
}

.input {
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 14px 10px;
}
.input__second {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-secondary);
  width: 100%;
}
.input__second::-webkit-input-placeholder {
  color: var(--text-secondary);
}
.input__second::-moz-placeholder {
  color: var(--text-secondary);
}
.input__second:-ms-input-placeholder {
  color: var(--text-secondary);
}
.input__second::-ms-input-placeholder {
  color: var(--text-secondary);
}
.input__second::placeholder {
  color: var(--text-secondary);
}
.input__inner {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-secondary);
  width: 100%;
}
.input__inner::-webkit-input-placeholder {
  color: var(--text-tertiary);
}
.input__inner::-moz-placeholder {
  color: var(--text-tertiary);
}
.input__inner:-ms-input-placeholder {
  color: var(--text-tertiary);
}
.input__inner::-ms-input-placeholder {
  color: var(--text-tertiary);
}
.input__inner::placeholder {
  color: var(--text-tertiary);
}

.online {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  background: var(--badge-green);
  border-radius: 9999px;
  padding: 4px 6px;
}

.block {
  background: var(--button-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 12px;
  position: relative;
}
.block-16 {
  border-radius: 16px;
}
.block-p16 {
  padding: 16px;
}
.block__black {
  padding: 16px;
  background: var(--bg-secondary);
}

.status {
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 4px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
}
.status__processing {
  color: #ff983f;
}

.badge__gray {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background: var(--badge-white);
  border-radius: 9999px;
  padding: 2px 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-primary);
}
.badge__wallet {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border: 0.5px solid rgba(205, 201, 230, 0.1);
  border-radius: 9999px;
  padding: 2px 8px;
}
.badge__comission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  background: rgba(27, 27, 32, 0.35);
  border: 0.5px solid rgba(205, 201, 230, 0.1);
  border-radius: 9999px;
  padding: 2px 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  overflow: hidden;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.user__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
}
.user__avatar-36 {
  width: 36px;
  height: 36px;
}
.user__avatar-64 {
  width: 64px;
  height: 64px;
}
.user__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.user__col.gap-6 {
  gap: 6px;
}
.user__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-tertiary);
}
.user__text .text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.user__text.green {
  color: var(--text-brand);
}
.user__text.badge {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-green);
  background: var(--badge-green);
  border-radius: 9999px;
  padding: 4px 6px;
  padding: 0 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.user__text.badge__after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 2px 8px;
}
.user__text.badge__after::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--icon-brand);
}

.game {
  gap: 8px;
}
.game .user__avatar {
  width: 36px;
  height: 36px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0;
}
.game .user__avatar-42 {
  width: 42px;
  height: 42px;
}
.game .user__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.game .user__name span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.game .user__name span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--icon-tertiary);
}
.game .user__text {
  color: var(--text-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.game .user__text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.game .user__text span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--icon-tertiary);
}

.balance {
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--text-primary);
}
.balance__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: var(--bg-teriary);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 2px;
  position: relative;
  height: 32px;
  z-index: 2;
}
.balance__block .plus {
  cursor: pointer;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(#50c878), to(#3fa561)), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #50c878 0%, #3fa561 100%), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  border: 0.5px solid var(--border-light);
  border-radius: 28px;
  width: 28px;
  height: 28px;
  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;
}
.balance__icon {
  cursor: pointer;
}
.balance__switch {
  background: var(--bg-teriary);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  left: -1px;
  top: -2px;
}
.balance__switch.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.balance__switch img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.balance__switch img:hover {
  opacity: 0.9;
}
.balance__switch.stars img:nth-child(1) {
  -webkit-transform: translateY(34px);
      -ms-transform: translateY(34px);
          transform: translateY(34px);
}
.balance__switch.stars img:nth-child(2) {
  -webkit-transform: translateY(-34px);
      -ms-transform: translateY(-34px);
          transform: translateY(-34px);
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logo img {
  display: none;
}
.logo img:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.walletTabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}

.tabs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fixed__wrapper {
  border-radius: 28px 28px 0 0;
  padding: 0 16px 0;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--bg-teriary);
  position: fixed;
  bottom: -200%;
  left: 50%;
  width: 100%;
  max-width: 390px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2;
  pointer-events: none;
  visibility: hidden;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 90vh;
}
.fixed__wrapper.active {
  bottom: 0;
  pointer-events: all;
  visibility: visible;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.fixed__wrapper-bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 48px;
}
.fixed__wrapper-bottom::-webkit-scrollbar {
  display: none;
}
.fixed__window {
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
.fixed__window.active {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.fixed__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
.fixed__inner-top {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.fixed__inner-line {
  padding: 16px 0 16px 0;
  position: relative;
}
.fixed__inner-line::after {
  position: absolute;
  left: 50%;
  height: 4px;
  background: rgba(255, 255, 255, 0.24);
  width: 40px;
  border-radius: 9999px;
  content: "";
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.fixed__inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fixed__inner-header span {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--text-primary);
}

.divider {
  width: 1px;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  background: var(--border-light);
}

.withdrawRow {
  --x: 6px;
  --y: 6px;
}
.withdrawRow button {
  width: 100%;
}

.depositRow {
  --x: 8px;
  --y: 8px;
}
.depositRow button {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  border-radius: 28px;
  padding: 12px;
  width: 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;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-secondary);
}
.depositRow .col-6:nth-child(1) svg {
  background: -webkit-gradient(linear, left top, left bottom, from(#5dbdef), to(#0396fc));
  background: linear-gradient(180deg, #5dbdef 0%, #0396fc 100%);
  border-radius: 50%;
}
.depositRow .col-6:nth-child(2) svg {
  background: -webkit-gradient(linear, left top, left bottom, from(#61c2ec), to(#2d8ed3));
  background: linear-gradient(180deg, #61c2ec 0%, #2d8ed3 100%);
  border-radius: 50%;
}
.depositRow .col-12 button {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: #0c8ad9;
  color: var(--text-primary);
}

.loader {
  background-color: #000;
  z-index: 5;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.loader.loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.loader > .flex {
  gap: 32px;
}
.loader img {
  width: 100%;
}
.loader span {
  font-family: var(--third-family);
  font-size: 16px;
}

.walletModalRow {
  --x: 8px;
  --y: 8px;
}
.walletModalRow .block {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  cursor: pointer;
}
.walletModalRow .block .flex,
.walletModalRow .block .badge__comission {
  z-index: 1;
}
.walletModalRow .walletModalPart {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.duelModalRow {
  --x: 6px;
  --y: 6px;
}
.duelModalRow .game {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 16px;
  gap: 6px;
  padding: 12px;
  cursor: pointer;
}
.duelModalRow span {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-primary);
}
.duelModalRow .col-4:nth-child(1) .game {
  background: radial-gradient(50.39% 50.39% at 61.66% 42.35%, #737473 0%, #4a4a4a 56%, #212121 100%), radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.duelModalRow .col-4:nth-child(1) .game img {
  width: 68px;
}
.duelModalRow .col-4:nth-child(2) .game {
  background: radial-gradient(224.16% 73.07% at 56.16% 36.11%, #00aeaf 0%, #00191a 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.duelModalRow .col-4:nth-child(2) .game img {
  width: 59px;
}
.duelModalRow .col-4:nth-child(3) .game {
  background: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#868686)), radial-gradient(101.43% 50.47% at 24.66% -11%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
  background: linear-gradient(180deg, #e9e9e9 0%, #868686 100%), radial-gradient(101.43% 50.47% at 24.66% -11%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.duelModalRow .col-4:nth-child(3) .game span {
  color: var(--text-inverted);
}
.duelModalRow .col-4:nth-child(3) .game img {
  width: 48px;
}

.games__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.games__wrapper .game {
  width: 73px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 16px;
  gap: 6px;
  padding: 12px;
  cursor: pointer;
  min-width: 73px;
}
.games__wrapper .game__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.games__wrapper .game span {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-primary);
}
.games__wrapper .game:nth-child(1) {
  background: radial-gradient(50.39% 50.39% at 61.66% 42.35%, #737473 0%, #4a4a4a 56%, rgba(33, 33, 33, 0.2117647059) 100%), radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.games__wrapper .game:nth-child(1) img {
  width: 68px;
}
.games__wrapper .game:nth-child(2) {
  background: radial-gradient(224.16% 73.07% at 56.16% 36.11%, #0cdadb 0%, #00191a 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.games__wrapper .game:nth-child(2) img {
  width: 59px;
}
.games__wrapper .game:nth-child(3) {
  background: -webkit-gradient(linear, left top, left bottom, from(#e9e9e9), to(#868686)), radial-gradient(101.43% 50.47% at 24.66% -11%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
  background: linear-gradient(180deg, #e9e9e9 0%, #868686 100%), radial-gradient(101.43% 50.47% at 24.66% -11%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--bg-secondary);
}
.games__wrapper .game:nth-child(3) span {
  color: var(--text-inverted);
}
.games__wrapper .game:nth-child(3) img {
  width: 48px;
}
.games__wrapper .game:nth-child(4) {
  width: 100%;
  background: radial-gradient(101.43% 50.47% at 24.66% -11%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%), var(--button-tertiary);
}
.games__wrapper .game:nth-child(4) span {
  color: var(--text-secondary);
}
.games__wrapper .game.rocket {
  background: radial-gradient(485.71% 110.85% at 46.51% 60.71%, #0d41c4 0%, rgba(0, 9, 55, 0) 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.games__wrapper .game.basket {
  background: radial-gradient(187.68% 187.68% at 94.69% 108.44%, #ff6200 0%, #e7be4c 100%), radial-gradient(138.69% 138.69% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.games__wrapper .game.basket span {
  color: var(--text-inverted);
}
.games__wrapper .game.medic {
  background: radial-gradient(465.35% 133.11% at 75.56% 7.79%, #009fed 0%, #002037 100%), radial-gradient(121.86% 92.39% at 1.56% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%) var(--bg-secondary);
}
.games__wrapper .game.medic span {
  color: var(--text-primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--button-tertiary);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 999px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  background: var(--icon-primary);
  border-radius: 9999px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.switch input:checked + .slider {
  background: var(--button-primary);
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slide {
  padding: 16px;
  border-radius: 28px;
  background: var(--bg-secondary);
  min-height: 200px;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.slide .flex {
  z-index: 1;
}
.slide__part {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.slide__1 {
  background: url(../img/banners/slide_1-background.png) center/cover no-repeat;
}
.slide__timer {
  border: 0.5px solid var(--border-light);
  border-radius: 9999px;
  padding: 4px 7px;
  background: -webkit-gradient(linear, left top, right top, from(#66dc7e), to(#aeffbf));
  background: linear-gradient(90deg, #66dc7e 0%, #aeffbf 100%);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-inverted);
  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;
  gap: 2px;
  height: 28px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 110px;
}
.slide button {
  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;
  gap: 6px;
  height: 28px;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-secondary);
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  padding: 4px 12px;
  border-radius: 28px;
  height: 28px;
}
.slide__badge {
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
  color: #000;
  -webkit-box-shadow: inset 0 1px 1px 0 var(--text-tertiary);
          box-shadow: inset 0 1px 1px 0 var(--text-tertiary);
  background: -webkit-gradient(linear, left bottom, left top, from(#de7600), color-stop(50.65%, #edbb48), to(#f7d474));
  background: linear-gradient(360deg, #de7600 0%, #edbb48 50.65%, #f7d474 100%);
  border-radius: 33px;
  padding: 2px 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.swiperDeposit .slide,
.swiperWithdraw .slide {
  min-height: 160px;
}

.swiperGame {
  overflow: visible !important;
}
.swiperGame .swiper__game {
  width: 100px;
  margin: 0 auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.2;
}
.swiperGame .swiper-wrapper {
  min-height: 240px;
}
.swiperGame .swiper-slide {
  width: 200px;
}
.swiperGame .swiper-slide .swiperText {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.swiperGame .swiper-slide.swiper-slide-active .swiper__game {
  width: 142px;
  margin: 0 auto;
  opacity: 1;
}
.swiperGame .swiper-slide.swiper-slide-active .swiperText {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.swiperGame .swiper-slide-next .swiper__game {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
.swiperGame .swiper-slide-prev .swiper__game {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}
.swiperGame__buttons .swiper-button-next,
.swiperGame__buttons .swiper-button-prev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary);
  background: var(--button-tertiary);
  -webkit-transform: translateY(60px);
      -ms-transform: translateY(60px);
          transform: translateY(60px);
}
.swiperGame__buttons .swiper-button-next .i-16,
.swiperGame__buttons .swiper-button-prev .i-16 {
  width: 16px !important;
  height: 16px !important;
}
.swiperGame__buttons .swiper-button-next .swiper-navigation-icon,
.swiperGame__buttons .swiper-button-prev .swiper-navigation-icon {
  display: none;
}

.volume__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.volume__range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-brand)), to(var(--bg-brand))) no-repeat, var(--bg-primary);
  background: linear-gradient(var(--bg-brand), var(--bg-brand)) no-repeat, var(--bg-primary);
  background-size: 50% 100%, 100% 100%;
}
.volume__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.volume__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.chat {
  height: 100%;
  max-height: calc(100vh - 170px);
  overflow: hidden;
  overflow-y: auto;
}
.chat__input {
  width: 100%;
}
.chat__input button {
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(#50c878), to(#3fa561)), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #50c878 0%, #3fa561 100%), radial-gradient(102.23% 50% at 50% 50%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  border: 0.5px solid var(--border-light);
  border-radius: 28px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  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;
}
.chat__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--text-tertiary);
}
.chat__text span {
  color: var(--text-primary);
}
.chat__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
}
.chat__message-user {
  width: 26px;
  height: 26px;
  min-width: 26px;
}
.chat__message-user img {
  width: 100%;
  -webkit-box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 0 0 var(--text-tertiary), inset 0 -2px 2px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 50%;
}
.chat__message-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-tertiary);
  gap: 16px;
}
.chat__message-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  max-width: 280px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.chat__message-col .message {
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-primary);
  background: var(--bg-teriary);
  border: 1px solid var(--border-light);
  border-radius: 2px 16px 16px 16px;
  padding: 8px 12px;
}
.chat__message-col .message__img {
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 0;
  background: transparent !important;
  max-width: 180px;
  width: 100%;
}
.chat__message-col .message__img img {
  width: 100%;
}
.chat__message-col .typing {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--text-secondary);
}
.chat__message-col .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--text-tertiary);
}
.chat__message-col .date svg {
  width: 16px;
  height: 16px;
  fill-opacity: 0.5;
  color: var(--text-tertiary);
}
.chat__message.my {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.chat__message.my .chat__message-col {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.chat__message.my .message {
  color: var(--text-inverted);
  background: var(--bg-brand);
  border-radius: 16px 16px 2px 16px;
}
.chat__message.checked .date svg {
  fill-opacity: 1;
  color: #50C878;
}

.swiper {
  width: 100%;
  border-radius: 16px;
}
.swiper-pagination {
  left: 16px !important;
  bottom: 16px !important;
  top: initial !important;
  right: initial !important;
  text-align: left !important;
}
.swiper-pagination-bullet {
  width: 4px !important;
  height: 4px !important;
  background: var(--text-disable) !important;
  border-radius: 50% !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 1 !important;
  margin: 0 2px !important;
}
.swiper-pagination-bullet-active {
  width: 20px !important;
  background: var(--icon-primary) !important;
  border-radius: 99px !important;
}
.swiperMain-pagination {
  width: auto !important;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
.swiperSecond-pagination {
  width: auto !important;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}

@media (max-width: 390px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 389px) {
  body {
    zoom: 0.94;
  }
}
@media (max-width: 374px) {
  body {
    zoom: 0.84;
  }
}