* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  all: unset;
  cursor: pointer;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

body {
  background-image: url("../img/onboarding_bg.png");
  background-size: cover;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1024px;
  padding: 0 48px;
  margin: 0 auto;
}

.hidden {
  visibility: hidden;
}

#copy {
  position: absolute;
  bottom: 15px;
  width: 100%;
  left: 0;
}

.loader {
  background-image: url("../img/onboarding_bg.png");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.loader__bar {
  max-width: 420px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.14);
  height: 3px;
  border-radius: 3px;
}
.loader__bar span {
  display: block;
  width: 0;
  background-color: #48C0FD;
  height: 100%;
  border-radius: 3px;
  animation-name: loader;
  animation-duration: 3s;
  animation-timing-function: ease;
}
.loader__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 440px;
  padding-bottom: 316px;
}

@keyframes opac {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.onboarding {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-image: url("../img/onboarding_bg.png");
  background-size: cover;
}
.onboarding__skip {
  position: absolute;
  top: 16px;
  right: 24px;
  border: 0;
  outline: 0;
  background: 0;
  cursor: pointer;
  z-index: 2;
}
.onboarding__skip span {
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
  color: #FFF;
}
.onboarding__pagination {
  bottom: 255px !important;
  left: 80px !important;
  width: auto !important;
}
.onboarding__pagination .swiper-pagination-bullet {
  border-radius: 13.676px;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.25);
  transition: width 0.2s linear, border-radius 0.5s linear, background-color 0.5s linear;
  transform-origin: center center;
}
.onboarding__pagination .swiper-pagination-bullet-active {
  width: 54px;
  border-radius: 5.471px;
  background-color: #FFF;
}
.onboarding__next {
  user-select: none;
  cursor: pointer;
  z-index: 1;
  display: flex;
  padding: 27px 37px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 44px;
  left: 48px;
  right: 48px;
  border-radius: 20px;
  border: 1.523px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.onboarding__next-arrows {
  display: flex;
  align-items: center;
}
.onboarding__next-arrows-v {
  visibility: hidden;
}
.onboarding__next-arrows img {
  display: block;
  animation-name: opac;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}
.onboarding__next-arrows img:nth-child(1) {
  animation-delay: 0.2s;
}
.onboarding__next-arrows img:nth-child(2) {
  animation-delay: 0.5s;
}
.onboarding__next-arrows img:nth-child(3) {
  animation-delay: 0.7s;
}
.onboarding__next span {
  color: #FFF;
  font-family: "SF Pro Display";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.onboarding__container {
  padding: 0;
  position: relative;
}
.onboarding__swiper {
  height: 100%;
  width: 100%;
}
.onboarding__slide {
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 80px 324px;
  gap: 156px;
}
.onboarding__slide img {
  align-self: center;
}
.onboarding__slide-text {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.onboarding__slide-text h3 {
  color: #FFF;
  font-family: "SF Pro Display";
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.22px;
  max-width: 545px;
}
.onboarding__slide-text p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "SF Pro Display";
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.231px;
  max-width: 809px;
}
.onboarding__slide:nth-child(1) {
  background-position: left -82px top 56px;
  background-image: url("../img/illustration1.svg");
  background-size: 566px 566px;
}
.onboarding__slide:nth-child(2) {
  background-image: url("../img/illustration2.svg");
}
.onboarding__slide:nth-child(3) {
  background-position: center 84px;
  background-image: url("../img/illustration3.svg");
}

.header {
  border-bottom: 0.734px solid rgba(245, 245, 245, 0.14);
  display: none;
}
.header__actions {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 16px;
  bottom: 2px;
  transform: translate(0, 100%);
  background: #181D22;
  border-radius: 14px;
}
.header__actions button {
  padding: 12px 14px;
  outline: 0;
  background-color: #181D22;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-width: 0;
  transition: background-color 0.1s linear;
}
.header__actions button:hover {
  background-color: rgba(94, 227, 147, 0.14);
}
.header__actions button:first-child {
  border-radius: 14px 14px 0 0;
}
.header__actions button:last-child {
  border-radius: 0 0 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.header__actions button span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header__deposit {
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header__deposit span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.895px;
}
.header__account {
  position: absolute;
  z-index: 2;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #181D22;
  flex-direction: column;
  gap: 12px;
  transform: translate(0, 100%);
  bottom: 0;
  left: 0;
  display: none;
  width: 185px;
}
.header__account h5 {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header__account-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__account-buttons a {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: background-color 0.1s linear, color 0.1s linear;
}
.header__account-buttons a.active {
  background-color: #5EE393;
  color: #101A20;
}
.header__account-buttons a:hover {
  background-color: #5EE393;
  color: #101A20;
}
.header__active {
  display: block;
}
.header__abs {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.1s linear;
}
.header__abs-hidden {
  top: -100%;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
}
.header__logo {
  height: 42px;
}
.header__logo-container {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
}
.header__logo-container span {
  font-family: "Noto Sans", serif;
  font-size: 25.764px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(174deg, #87E7FF 11.44%, #0093DD 84.86%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bets {
  flex: 1;
  overflow: hidden;
}
.bets__notify {
  width: calc(100% - 32px);
  z-index: 0;
  position: absolute;
  bottom: 9px;
  left: 16px;
  display: none;
}
.bets__notify-close {
  cursor: pointer;
}
.bets__notify-inner {
  width: 100%;
  display: inline-block;
  padding: 20px 14px 20px 34px;
  border-radius: 14px;
  background-color: #181D22;
  border: 1px solid #FF5454;
  background-image: url("../img/sub.svg");
  background-repeat: no-repeat;
  background-position: top -2px left -4px;
  -webkit-mask-image: radial-gradient(circle at top 5px left 10px, transparent 15px, black 15px);
}
.bets__notify-icon {
  position: absolute;
  left: -1px;
  top: -6px;
}
.bets__notify-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bets__notify-text p {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.bets__places {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bets__bet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 25px 18px;
  border-radius: 12.532px;
  border: 1.567px solid #48C0FD;
  transition: background 2s linear;
  flex: 1;
}
.bets__bet input {
  display: none;
}
.bets__bet:has(input:checked) {
  background: linear-gradient(184deg, #48C0FD -1.31%, #14A7EC 100.24%);
}
.bets__bet span {
  color: #FFF;
  font-family: "Noto Sans", serif;
  font-size: 25.364px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.bets__controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bets__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.bets__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 34px;
  border-radius: 12.532px;
  background: rgba(255, 255, 255, 0.1);
  flex: 1;
}
.bets__button img {
  width: 31px;
  height: 31px;
}
.bets__menu {
  user-select: none;
  padding: 20px 30px 22px 30px;
  height: 100%;
  display: flex;
  gap: 21px;
}
.bets__left {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  overflow-y: auto;
}
.bets__left-locked {
  opacity: 0.6;
  pointer-events: none;
}
.bets__left-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bets__left-row {
  display: flex;
  gap: 10px;
  width: 100%;
  flex: 1;
}
.bets__left-button {
  border-radius: 7.833px;
  border: 1.567px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(184deg, rgba(72, 192, 253, 0.14) -1.31%, rgba(20, 167, 236, 0.14) 100.24%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex: 1;
  transition: border 0.2s linear;
  position: relative;
}
.bets__left-button-select {
  position: absolute;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.bets__left-button-select-1 {
  right: -13px;
  top: 50%;
}
.bets__left-button-select-2 {
  right: -13px;
  top: calc(100% + 3px);
}
.bets__left-button-select-3 {
  bottom: -13px;
  width: 80%;
  left: 50%;
}
.bets__left-button:only-of-type {
  justify-content: center;
}
.bets__left-button:only-of-type span {
  align-items: center;
}
.bets__left-button:has(input:checked) {
  border: 1.567px solid #48C0FD;
  background: linear-gradient(184deg, rgba(72, 192, 253, 0.44) -1.31%, rgba(20, 167, 236, 0.44) 100.24%);
}
.bets__left-button:has(input:checked) .reward {
  display: block;
}
.bets__left-button input {
  display: none;
}
.bets__left-button-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bets__left-button .reward {
  background: linear-gradient(184deg, #48C0FD -1.31%, #14A7EC 100.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "SF Pro Display", serif;
  font-size: 22.546px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.201px;
  text-transform: uppercase;
  display: none;
}
.bets__left-button .index {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 21.932px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.195px;
  text-transform: uppercase;
}
.bets__left-button .coefficient {
  color: rgba(255, 255, 255, 0.6);
  font-family: "SF Pro Display", serif;
  font-size: 18.318px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.163px;
  text-transform: uppercase;
}
.bets__left-bottom {
  display: flex;
  gap: 10px;
  padding-left: 60px;
}
.bets__left-top {
  display: flex;
  gap: 20px;
  height: 100%;
  margin-bottom: 20px;
  min-height: 504px;
}
.bets__left-top-markers {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bets__left-top-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.266px;
  background: rgba(255, 255, 255, 0.08);
  flex: 1;
  padding: 12px;
}
.bets__left-top-marker span {
  width: 15px;
  height: 15px;
  display: block;
  background-color: rgba(217, 217, 217, 0.28);
  border-radius: 50%;
}
.bets__slider {
  z-index: 0;
}
.bets__slide {
  width: auto;
}
.bets__slide-hidden {
  visibility: hidden;
}
.bets__slide:first-child {
  margin-left: 30px;
}
.bets__slide:first-child .bets__chip {
  background: rgba(94, 227, 147, 0.12);
}
.bets__container {
  padding-top: 16px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.bets__chip {
  border-radius: 10.771px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 0px 14.275px 0px rgba(86, 123, 170, 0.09);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10.771px 16.156px;
}
.bets__chip span {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
}

.nav__section {
  display: none;
}
.nav__section-active {
  display: block;
}
.nav__item {
  display: block;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
.nav__container {
  max-width: 100%;
  border-top: 1.477px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%), #0E161D;
  box-shadow: 0px 0px 29.533px 0px rgba(32, 75, 122, 0.08);
  padding: 26px 0 38px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 240px;
}

.play {
  flex: 1;
  position: relative;
}
.play__timer {
  position: absolute;
  left: 36px;
  bottom: -16px;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid rgba(86, 99, 137, 0.26);
  height: 50px;
  width: 50px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(3px);
  transform: translate(-50%, 100%);
}
.play__timer-circle {
  transform-origin: center;
  transform: rotate(90deg) scale(-0.95, 0.95);
}
.play__timer svg {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.play__timer h2 {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  position: absolute;
  width: 100%;
  color: #FFF;
  font-family: "Noto Sans", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.play__chart {
  position: relative;
  height: 100%;
  width: calc(100% + 100px);
  transition: clip-path 0.1s linear;
  clip-path: polygon(0 245px, 100% 245px, 100% 100%, 0% 100%);
}
.play__chart canvas {
  transition: transform 0.1s linear;
}
.play__chart-fullscreen {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.play__chart-fullscreen canvas {
  transform: translate(0, 0) !important;
}
.play__container {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 0;
}
.play__menu {
  width: 100%;
  position: absolute;
  top: 61px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: top 0.1s linear;
}
.play__menu-expand img:last-child {
  display: none;
}
.play__menu-expand-close img:first-child {
  display: none;
}
.play__menu-expand-close img:last-child {
  display: block;
}
.play__menu-hidden {
  top: -165px;
}
.play__menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
}
.play__menu-footer-group {
  display: flex;
  align-items: center;
  gap: 26px;
}
.play__menu-price {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.107px;
  padding: 3px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}
.play__menu-id {
  color: #697484;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.12px;
}
.play__menu-button {
  cursor: pointer;
  border: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  outline: 0;
}
.play__menu-button span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.play__menu-profit {
  display: flex;
  gap: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
.play__menu-profit-amount {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.89px;
}
.play__menu-profit-label {
  color: #697484;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.89px;
}
.play__menu-profit-block {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.play__menu-header {
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.play__menu-balance {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.play__menu-balance-label {
  color: #697484;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.89px;
}
.play__menu-balance-amount {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.895px;
}
.play__menu-container {
  padding-top: 10px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.tooltip {
  position: absolute;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4.181px 25.085px -1.045px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12.7250003815px);
  padding: 6px 8px;
  transition: opacity 0.1s linear;
  transform: translate(-200%, -150%);
  width: max-content;
  display: none;
  z-index: 1;
}
.tooltip__reward span {
  color: #5EE393;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 12.543px;
  letter-spacing: 0.89px;
}
.tooltip__time span {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 10.452px;
  letter-spacing: 0.523px;
  text-transform: uppercase;
}
.tooltip__axis span {
  color: #B1B3B5;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 146%;
}
.tooltip__axis span:last-child {
  font-weight: 600;
  letter-spacing: 0.523px;
  color: #FFF;
}
.tooltip__container {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.deposit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-image: url(../img/onboarding_bg.png);
  background-size: cover;
  background-position: top right;
  display: none;
}
.deposit__qr {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.deposit__qr img {
  width: 100%;
  height: 100%;
}
.deposit__cryptos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.deposit__crypto {
  border: 0;
  outline: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  cursor: pointer;
}
.deposit__crypto-pay-warn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.deposit__crypto-pay-warn p {
  color: #FF5454;
  font-family: "SF Pro Display", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.14px;
  max-width: 208px;
}
.deposit__crypto-pay-amount {
  display: flex;
  align-items: center;
  gap: 10px;
}
.deposit__crypto-pay-amount > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.deposit__crypto-pay-amount > span span:last-child {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 123.5%;
  letter-spacing: 0.24px;
}
.deposit__crypto-pay-amount > span span:first-child {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 123.5%;
  letter-spacing: 0.16px;
}
.deposit__crypto:nth-child(3) span:first-child {
  background: rgba(255, 255, 255, 0.1);
}
.deposit__crypto:nth-child(2) span:first-child {
  background: #000;
}
.deposit__crypto:nth-child(1) span:first-child {
  background: #26A17B;
}
.deposit__crypto span:last-child {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.deposit__crypto span:first-child {
  overflow: hidden;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deposit__message-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.deposit__message-cont p {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.deposit__button {
  outline: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.5;
  pointer-events: none;
  cursor: pointer;
}
.deposit__button-wait {
  transform: translate(0, 100%);
  bottom: -34px;
}
.deposit__button-active {
  opacity: 1;
  pointer-events: all;
}
.deposit__button span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.deposit__back {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  cursor: pointer;
}
.deposit__select {
  width: 100%;
  gap: 8px;
  display: flex;
  align-items: center;
}
.deposit__select button {
  flex: 1;
  border-radius: 14px;
  border: 1px solid #48C0FD;
  padding: 20px 0;
  background-color: transparent;
  outline: 0;
}
.deposit__select button:last-child {
  background: linear-gradient(184deg, #48C0FD -1.31%, #14A7EC 100.24%);
}
.deposit__select button span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.deposit__input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  position: relative;
}
.deposit__input .deposit__crypto-pay-input-copy {
  height: 58px;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11.6px;
  border: 1.074px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.deposit__input-copy input {
  max-width: 280px;
}
.deposit__input.error input {
  border: 1px solid rgba(255, 84, 84, 0.5);
}
.deposit__input.error p {
  visibility: visible;
}
.deposit__input p {
  color: #FF5454;
  font-family: "SF Pro Display", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.12px;
  visibility: hidden;
}
.deposit__input .input {
  outline: 0;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 20px 16px;
  text-align: center;
}
.deposit__input .input-copy {
  display: flex;
  align-items: center;
  padding: 0 0 0 16px;
  justify-content: space-between;
}
.deposit__input .input-copy span {
  text-align: left;
  max-width: 82%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.deposit__input .input::placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.deposit__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deposit__header h3 {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.deposit__section {
  display: none;
  flex-direction: column;
  gap: 34px;
  align-items: center;
  flex: 1;
  position: relative;
}
.deposit__section-wait {
  flex: 0;
  padding-top: 50px;
}
.deposit__section-amount {
  padding-top: 50px;
}
.deposit__section h2 {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.deposit__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.deposit__method {
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}
.deposit__method:nth-child(1) span:first-child {
  background: #FFF;
}
.deposit__method:nth-child(2) span:first-child {
  background: rgba(255, 255, 255, 0.1);
}
.deposit__method span:last-child {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.deposit__method span:first-child {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.deposit__method span:first-child img {
  max-width: 100%;
  max-height: 100%;
}
.deposit__container {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

@keyframes fallAndDisappear {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  90% {
    transform: translateY(30px);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tap {
  flex: 1;
}
.tap__energy {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tap__energy span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.32px;
}
.tap__coin {
  position: relative;
}
.tap__coin-plus {
  position: absolute;
  opacity: 0.8;
  animation: fallAndDisappear 1s forwards;
}
.tap__coin-plus span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.tap__coin-gradient {
  width: 233.201px;
  height: 247px;
  position: absolute;
  left: 0;
  z-index: -1;
  bottom: 0;
  background: rgba(117, 251, 76, 0.55);
  opacity: 0.6;
  filter: blur(126.9918441772px);
}
.tap__coin-cont {
  user-select: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 49px;
}
.tap__coin-amount {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tap__coin-amount img {
  width: 34px;
  height: 34px;
}
.tap__coin-amount span {
  color: #FFF;
  font-family: "SF Pro Display", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.895px;
}
.tap__container {
  padding-top: 49px;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.44);
  display: none;
}
.modal__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.modal__connection {
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 24px;
  background: #181d22;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.modal__connection-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.modal__connection-message p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.16px;
}
.modal__connection-message h6 {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.modal__connection-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal__connection-header a {
  color: #FFF;
  text-align: center;
  font-family: "SF Pro Display", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
}

@media (max-width: 450px) {
  body {
    background-position: center;
  }
  .nav__item svg {
    width: 30px;
    height: 30px;
  }
  .nav__container {
    padding: 16px 0 24px 0;
    gap: 88px;
  }
  .bets__places {
    gap: 6px;
  }
  .bets__bet {
    border-radius: 8.894px;
    gap: 3px;
    padding: 13px 5px;
  }
  .bets__bet span {
    font-size: 18px;
    line-height: normal;
  }
  .bets__bet img {
    width: 20px;
    height: 20px;
  }
  .bets__button {
    padding: 9px;
    border-radius: 8.894px;
  }
  .bets__button img {
    width: 22px;
    height: 22px;
  }
  .bets__right {
    gap: 12px;
    max-width: 61px;
  }
  .bets__controls {
    gap: 8px;
  }
  .bets__left-bottom {
    gap: 4px;
    padding-left: 34px;
  }
  .bets__left-main {
    gap: 4px;
  }
  .bets__left-row {
    gap: 4px;
  }
  .bets__left-button {
    padding: 2px 6px;
    border-radius: 5px;
    position: relative;
  }
  .bets__left-button .reward {
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 14px;
  }
  .bets__left-button-group {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .bets__left-button-group .coefficient {
    font-size: 11px;
    line-height: normal;
  }
  .bets__left-button-group .index {
    font-size: 14px;
    line-height: normal;
  }
  .bets__left-top {
    gap: 8px;
    margin-bottom: 8px;
  }
  .bets__left-top-markers {
    gap: 4px;
  }
  .bets__left-top-marker {
    border-radius: 4px;
    padding: 8px;
  }
  .bets__left-top-marker span {
    width: 10px;
    height: 10px;
  }
  .bets__menu {
    padding: 10px 16px 12px 16px;
    gap: 10px;
  }
  .bets__slide:first-child {
    margin-left: 16px;
  }
  .bets__container {
    padding-bottom: 28px;
  }
  .bets__chip {
    border-radius: 8px;
    box-shadow: 0px 0px 10.602px 0px rgba(86, 123, 170, 0.09);
    gap: 10px;
    padding: 8px 12px;
  }
  .bets__chip img {
    width: 15px;
    height: 15px;
  }
  .bets__chip span {
    font-size: 12px;
    line-height: normal;
  }
  .header__menu img {
    width: 24px;
    height: 24px;
  }
  .header__dropdown {
    width: 18px;
    height: 18px;
  }
  .header__logo {
    width: 97px;
  }
  .header__logo-container span {
    font-size: 16px;
    line-height: normal;
  }
  .header__container {
    padding: 9px 16px;
  }
  .onboarding {
    background-position: center;
  }
  .onboarding__slide {
    padding: 0 24px 206px;
    gap: 58px;
  }
  .onboarding__slide:nth-child(1) {
    background-size: 254px 254px;
    background-position: left -50px top 56px;
  }
  .onboarding__slide-icon {
    width: 205px;
  }
  .onboarding__slide-text {
    gap: 13px;
  }
  .onboarding__slide-text h3 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0.13px;
  }
  .onboarding__slide-text p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.142px;
  }
  .onboarding__pagination {
    left: 24px !important;
    bottom: 168px !important;
  }
  .onboarding__pagination .swiper-pagination-bullet {
    height: 6px;
    width: 6px;
  }
  .onboarding__pagination .swiper-pagination-bullet-active {
    width: 40px;
  }
  .onboarding__next {
    padding: 18px 20px;
    left: 16px;
    right: 16px;
    bottom: 34px;
    border-radius: 14px;
  }
  .onboarding__next img {
    width: 20px;
    height: 20px;
  }
  .onboarding__next span {
    font-size: 18px;
    line-height: 130%;
  }
  .loader {
    background-position: center;
  }
  .loader__bar {
    max-width: 250px;
  }
  .loader__container {
    padding-left: 39px;
    padding-right: 39px;
    padding-bottom: 129px;
    gap: 262px;
  }
  .loader__logo {
    width: 312px;
  }
}

/*# sourceMappingURL=style.css.map */
