@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@media all{
    :root{
        display:grid;
        min-height:100%;
        font-family: "Inter", serif;
		font-optical-sizing: auto;
		font-weight: <weight>;
		font-style: normal;
        font-size: 16px;
        line-height: 1.2;
    }
}

* {
    scrollbar-color: #0671d49c transparent;
    scrollbar-width: thin;
}

button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    font-family: inherit;
    margin: 0;
    outline: none;
    padding: 0;
}

.body-main {
    padding: 0;
    margin: 0;
    background-color: #0f192f;
    line-height: normal;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow: visible;
    aspect-ratio: 0;
    min-width: auto;
    height: 100%;
}

.body-main.modal-active {
	overflow: hidden;
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}


.balance-header-left.refresh {
	position: relative; /* Чтобы позиционировать ::after внутри */
	overflow: hidden; /* Обрезать анимацию по краям */
}

.balance-header-left.refresh::after {
  content: '';
  position: absolute;
  inset: 0; /* top: 0; left: 0; right: 0; bottom: 0 */
  background-color: #0f192f;
  opacity: 0;
  animation: refreshStart forwards, refreshEnd 1s 1.6s forwards;
  z-index: 10; /* перекрывает содержимое */
}

@keyframes refreshStart {
	to {
		opacity: 1;
	}
}

@keyframes refreshEnd {
	to {
		opacity: 0;
	}
}

.balance-header-left.refresh::before {
	content: '';
    position: absolute;
	opacity: 0;
    top: 15px;
    left: 20px;
    width: 8px;
	aspect-ratio: 1;
	border-radius: 50%;
    animation: s7-start 0.3s forwards, s7-end 1s 1.3s forwards, s7 1s infinite;
    z-index: 11;
    pointer-events: none;
}

@keyframes s7 {
	0%  {box-shadow: 15px 0 #0671d4, -15px 0 #0002;background: #0671d4 }
    33% {box-shadow: 15px 0 #0671d4, -15px 0 #0002;background: #0002}
    66% {box-shadow: 15px 0 #0002,-15px 0 #0671d4; background: #0002}
    100%{box-shadow: 15px 0 #0002,-15px 0 #0671d4; background: #0671d4 }
}

@keyframes s7-start {
	to{
		opacity: 1;
	}
}

@keyframes s7-end {
	to{
		opacity: 0;
	}
}

.fl-row * {
	box-sizing: border-box;
}    
.fl-row {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
}    
.fl-col {
	width: 300px;
	margin: 10px;
	position: relative;
	overflow: hidden;
	border: 8px solid #BFE2FF;
}    
.fl-col:after {
	content: "";
	padding-top: 100%;
	float: left;
}
.fl-col-text {
	padding: 20px;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #337AB7;
}

.c35hj93-header {
	display:contents
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  pointer-events: none;
}

.overlay-bg {
  position: absolute;
  display:none;
  inset: 0;
  background-color: #0f192fba;
  pointer-events: all;
}

.sidebar {
  position: absolute;
  background: linear-gradient(173deg, rgba(255, 255, 255, 0.98) 2%, rgba(215, 220, 229, 0.98));
  border-radius: 10px 0 0 10px;
  width: 315px;
  right: -350px;
  display: flex;
  opacity: 0;
  top: 99px;
  padding-inline: 12px;
  overflow: auto;
  flex-direction: column;
  transition: all 0.3s ease;
  transition: opacity 0.3s, right 0.3s;
  pointer-events: all;
}

.sidebar.view {
	opacity: 1;
  right: 0;
}

@keyframes sidebar-view {
	to{
		opacity: 1;
		right: 0px;
	}
}

.sidebar.active {
	top: 63px;
}

.profile-block {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-info {
  text-align: center;
  display: grid;
  max-width: 100%;
  overflow: hidden;
  justify-content: center;
  gap: 4px;
}

.username {
  color: #0f192f;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wallet-id {
  color: #0006;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.balance-block {
  padding: 16px;
  border-radius: 10px;
  background: rgba(169, 172, 180, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.balance-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}

.balance-label {
  color: #0006;
  font-size: 12px;
  font-weight: 400;
}

.balance-value {
  color: #0f192f;
  font-size: 20px;
  font-weight: 600;
}

.balance-buttons {
  display: flex;
  gap: 8px;
}

.btn {
  border-radius: 5px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 42px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.deposit-btn {
  background: #009e4f;
}
.deposit-btn:hover {
	background: #29c376;
}

.withdraw-btn {
  background: #0671d4;
}

.withdraw-btn:hover {
  background: #0984f5;
}

.bonus-and-games {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-button-overlay {
  background: rgb(239 101 28);
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 12px 16px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.bonus-button-overlay:hover {
	background: rgb(251 120 3);
}

.bonus-icon {
  background-image: url(/img/bonus/giftbox_s.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  display: flex;
}

.bonus-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
}

.bonus-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: auto;
}

.bonus-title {
  color: white;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.bonus-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
}

.games-block {
  background: linear-gradient(70deg, #076cd2 -8%, #008dc3 96%);
  border-radius: 10px;
  padding: 8px 0;
  overflow: hidden;
  display: none;
  flex-direction: column;
  color: #fff;
}

.games-block.view {
	display: flex;
}

.games-main {
  height: 36px;
  padding: 0 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.games-icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  display: flex;
}

.games-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spacer {
  margin-left: auto;
}

.games-submenu {
  display: grid;
  margin-top: 4px;
}

.submenu-list {
  border-left: 1px solid #00b1c3;
  margin-left: 18px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.submenu-item {
  height: 36px;
  padding: 0 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
}

.submenu-icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  display: flex;
}

.submenu-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.submenu-label {
  background: rgb(15, 25, 47);
  border-radius: 50px;
  padding: 0 16px;
  height: 30px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-left: auto;
}


.footer-buttons {
  background: rgba(169, 172, 180, 0.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

button.footer-btn {
  padding: 12px 16px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
  border: none;
  background: none;
}

a.footer-btn {
  padding: 12px 16px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
}

.footer-btn:hover {
	background: rgba(169, 172, 180, 0.12);
}

.footer-icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  display: flex;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-right: auto;
  align-items: flex-start;
}

.footer-title {
  color: rgb(15, 25, 47);
  font-size: 14px;
  font-weight: 600;
}

.footer-sub {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-weight: 400;
}

.logout-button {
  background: #0f192f;
  border-radius: 10px;
  height: 38px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.logout-icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  display: flex;
}

.logout-text {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.logout-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-spacer {
  padding: 0;
}


.fl-row * {
	box-sizing: border-box;
}    
.fl-row {
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0;
}    
.fl-col {
	width: 300px;
	margin: 10px;
	position: relative;
	overflow: hidden;
	border: 8px solid #BFE2FF;
}    
.fl-col:after {
	content: "";
	padding-top: 100%;
	float: left;
}
.fl-col-text {
	padding: 20px;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #337AB7;
}

.nav-bar {
	position: relative;
	width: 100%;
}

.top-bar {
	height: 52px;
    align-items: center;
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.top-bar-left {
	flex-grow: 1;
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.top-bar-left_content {
	margin-right: 1rem;
	align-items: center;
	display: flex;
	position: relative;
}

.top-bar-left_content::after {
    content: "";
    clip-path: inset(0 0 14% 0);
    width: 43px;
    height: 45px;
    left: -9px;
    bottom: -4px;
    position: absolute;
    background: url(/img/bonus/giftbox_s.png) no-repeat;
    background-size: cover;
    pointer-events: none;
}

.top-bar-right {
	align-items: center;
	display: flex;
}

.top-bar-right_content {
	justify-content: center;
	align-items: center;
	display: flex;
}

.top-bar-right_content_text {
	text-align: end;
	margin-right: 10px;
}

.content_text_high {
	font-size: 13px;
	line-height: inherit;
	font-weight: 600;
	
	color: #ECF0F1;
}

.content_text_low {
	color: #ffffff80;
	font-size: 13px;
	line-height: inherit;
}

.top-bar_button {
	border-radius: 5px;
	border-width: 0px;
	font-weight: 600;
	color: #ECF0F1;
	border-color: transparent;
	transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	height: 24px;
	width: 24px;
	justify-content: center;
	align-items: center;
	display: flex;
	padding: 0;
	background-color: #007DBB;
}

.top-bar_button:hover {
    background-color: #3498DB;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.top-bar_button:active {
    background-color: #3498DB;
    box-shadow: inset 0 4px 10px 2px rgba(0, 0, 0, 0.3);
}

.nav-backbar {
    top: 0rem;
    z-index: 100;
    position: sticky;
    transition: all 0.3s ease;
    height: 47px;
    padding: 0 15px;
}

.nav-backbar.active {
    height: 63px;
	padding: 0;
}

.nav-backbar_block {
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(15 70 127 / 75%), rgb(15 25 47 / 75%));
    backdrop-filter: blur(50px);
    padding: 0 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 0;
    border-width: 0px;
    align-items: center;
    display: flex;
    height: 100%;
    transition: all .3s;
}

.nav-backbar_block.active {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
	box-shadow: rgb(7 108 210 / 10%) 0px 10px 20px, hsl(210.15deg 93.55% 42.55% / 10%) 0px 5px 10px;
}

.nav-backbar_logo {
	margin-right: 1rem;
	align-items: center;
	display: flex;
}

.logo_img {
	width: 68px;
	height: 24px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.logo_img_betjoy {
	width: 90px;
    padding-left: 15px;
}

.nav-backbar_content {
	justify-content: space-between;
	flex-shrink: 0;
	flex-grow: 1;
	align-items: center;
	display: flex;
}

.content_sticky_bar {
	justify-content: space-between;
	flex-shrink: 0;
	flex-grow: 1;
	align-items: center;
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
}

.content_sticky_bar-left {
	margin-right: 1rem;
}

.content_game-bar {
	min-width: min-content;
	justify-content: start;
	align-items: center;
	display: flex;
}

.content_game-bar_text {
	text-decoration-line: none;
    transition: all 0.3s ease;
	padding-left: .75rem;
	padding-right: .75rem;
	min-height: auto;
	margin-right: 1.25rem;
	padding-bottom: 0;
	padding-top: 0;
	font-size: 13px;
	color: #ECF0F1;
    font-weight: 500;
    
	align-items: center;
	display: flex;
}

.content_game-bar .link-1 {
	text-transform: uppercase;
    background: #0671d4e0;
    padding: 10px 20px;
    border-radius: 9px;
    margin-left: 1.25rem;
}

.content_game-bar_text:hover {
    transform: scale(1.1);
}


.content_game-bar .crash {
	background: url(/img/games-ico/header/crash.png) no-repeat;
    background-size: cover;
	width: 53px;
    height: 21px;
}

.content_game-bar .aof {
	background: url(/img/games-ico/header/aof.png) no-repeat;
    background-size: cover;
    width: 63px;
    height: 25px;
}

.content_game-bar .hvl {
	background: url(/img/games-ico/header/hvl.png) no-repeat;
    background-size: cover;
    width: 28px;
    height: 33px;
}

.content_game-bar .luckywheel {
	background: url(/img/games-ico/header/luckywheel.png) no-repeat;
    background-size: cover;
    width: 38px;
    height: 25px;
}

.content_game-bar .thimbles {
	background: url(/img/games-ico/header/thimbles.png) no-repeat;
    background-size: cover;
    width: 50px;
    height: 25px;
}

.content_game-bar .goldengrid {
	background: url(/img/games-ico/header/goldengrid.png) no-repeat;
    background-size: cover;
    width: 22px;
    height: 30px;
}

.content_game-bar .rocketslot {
	background: url(/img/games-ico/header/rocketslot.png) no-repeat;
    background-size: cover;
    width: 35px;
    height: 25px;
}

.content_sticky_bar-right {
	align-items: center;
	display: flex;
}

.content_button__login {
	font-size: 13px;
	margin-right: 10px;
}

.button__login {
	line-height: 1;
	font-size: 100%;
	min-height: 30px;
	translate: 0px 0px 1px;
	background-color: #0f192f;
    transition: all 0.3s ease-in-out;
	padding-bottom: 0;
	padding-top: 0;
	border-radius: 5px;
	border-width: 0px;
	font-weight: 600;
	color: #ECF0F1;
	
	justify-content: center;
	align-items: center;
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	cursor: pointer;
	box-shadow: 0px 0px 0px 0px #0671d49c;
}

.button__login:hover {
    background-color: #0671d4;
	box-shadow: 0px 0px 5px 0px #0671d49c;
}

.button__login:active {
    background-color: #0671d4ba;
	box-shadow: inset 0px 0px 10px 2px #0000008c;
}



.content_button__singup {
	margin-right: 0;
	font-size: 13px;
}

.button__singup {
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	background: #0671d4e0;
	line-height: 1;
	font-size: 100%;
	min-height: 30px;
	translate: 0px 0px 1px;
	padding-bottom: 0;
	padding-top: 0;
	border-radius: 5px;
	font-weight: 600;
	color: #ECF0F1;
	
	justify-content: center;
	align-items: center;
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid transparent;
	box-shadow: 0px 0px 0px 0px #0671d49c;
}



.button__singup::before {
	content: " ";
    position: absolute;
    inset: calc(1px* -1);
    z-index: -1;
    border: inherit;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle), #1d5b6a00 80%, #d1f2ff 88%, #d1f9ff 92%, #1d626a00 100%);
    background-origin: border-box;
    -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
    mask: linear-gradient(black, black), linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 3s linear infinite;
}

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

@keyframes spin {
  to {
    --angle: 1turn;
  }
}

.button__singup:hover {
    background: #0671d4;
	box-shadow: 0px 0px 5px 0px #0671d49c;
}

.button__singup:active {
	background: #0671d4ba;
	box-shadow: inset 0px 0px 10px 2px #0000008c;
}

.modal-content {
	z-index: 5000;
	position: fixed;
	width: 100%;
	height: 100%;
	display: none;
}

.modal-content.active {
	display: block;
}

.modal-content_background {
	border-color: #000;
	z-index: 1;
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #0f192fba;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
}

.modal-content_block {
	margin: auto;
	background-color: #fff;
	border-radius: 15px;
	z-index: 3;
	border-width: 0px;
    color: #fff;
}

.modal-login_content {
	width: 390px;
	min-width: 300px;
	flex-direction: column;
	display: flex;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-top: 20px;
}

.modal-top-bar {
	align-items: start;
	justify-content: space-between;
	display: flex;
}

.modal-top-bar_left {
	font-size: 20px;
	align-items: start;
	display: flex;
	color: #090f1e;
	font-weight: 700;
}

.modal-top-bar_whitespace {
	font-size: 20px;
	align-items: start;
	display: flex;
}

.modal-top-bar_right {
	font-size: 20px;
	display: flex;
	border-radius: 6px;
	align-items: end;
	margin-left: 9px;
	background-color: #edf0f7;
	font-size: 11px;
	border-width: 0px;
	height: 24px;
	width: 24px;
}

.modal-exit_button {
	cursor: pointer;
    border: none;
    border-radius: inherit;
    background-image: url(/img/close_24dp.svg);
    background-size: contain;
    background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.modal-top_label {
	margin-top: 10px;
	align-items: start;
	justify-content: space-between;
	display: flex;
	font-size: 12px;
	color: #070c19;
	letter-spacing: 1.29px;
	font-weight: 300;
}

.modal-authentication-form {
	flex-direction: column;
	display: flex;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	flex-shrink: 0;
	flex-grow: 1;
	height: 100%;
	color: #070c19;
}

.modal-authentication-form_content {
	width: 100%;
	height: 100%;
}

.modal-authentication-spacer {
	margin-top: 15px;
	margin-bottom: 15px;
	justify-content: space-between;
	display: flex;
	height: 1px;
	background-color: #edf0f7;
	position: relative;
	width: 100%;
}

.modal-authentication-input_content {
	margin-bottom: 21px;
}

.modal-authentication-input_block {
	margin-bottom: 10px;
	margin-top: 10px;
	border-radius: 10px;
	border-width: 0px;
	position: relative;
	width: 100%;
	border: 1px solid transparent;
	height: 45px;
	background-color: #edf0f7;
	align-items: center;
	display: flex;
	flex-shrink: 1;
	font-size: 13px;
	flex-grow: 1;
}

.modal-authentication-input {
	border: 0px none transparent;
	outline-style: none;
	min-height: 35px;
	background-color: transparent;
	align-items: start;
	line-height: 1;
	justify-content: start;
	padding-bottom: 0;
	padding-top: 0;
	border-radius: 5px;
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	position: relative;
	width: 100%;
}

.modal-button-success_content {
	margin-bottom: 15px;
	justify-content: space-between;
	display: flex;
	padding-top: 20px;
}

.modal-button-success {
	box-shadow: 0 6px 18px #1178df4d;
	line-height: 18px;
	font-size: 15px;
	cursor: pointer;
    transition: all 0.3s ease;
	background: #076cd2e0;
	border-radius: 10px;
	padding-bottom: 0;
	padding-top: 0;
	border-width: 0px;
	font-weight: 600;
	color: #fff;
	justify-content: center;
	align-items: center;
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
	min-height: 50px;
	text-shadow: 0 0 3px #000000f0;
}

.modal-button-success:hover {
    background: #076cd2;
    box-shadow: 0px 0px 5px 2px #076cd2ad;
}

.modal-button-success:active {
    background: #076cd2;
	box-shadow: inset 0px 0px 20px 0px #073767;
}

.modal-authentication-bottom_content {
	margin-top: 24px;
	justify-content: center;
	align-items: center;
	display: flex;
}

.modal-authentication-bottom_text {
	font-weight: 400;
	align-self: center;
	color: #6a7690a6;
	margin-right: 5px;
	font-size: 11px;
	align-items: center;
	display: flex;
}

.modal-authentication-bottom_a {
	color: #1064bf;
	align-self: center;
	text-decoration-line: none;
	font-weight: 600;
	display: flex;
	line-height: normal;
	font-size: 11px;
}

.modal-setting_content {
	background-color: #fff;
	width: 440px;
	z-index: 2;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	display: flex;
	max-height: 680px;
	margin: auto;
	border-radius: 15px;
	min-width: 300px;
}

.modal-setting_content-top {
	z-index: 2;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-top: 20px;
}

.modal-setting-top {
	align-items: start;
	justify-content: space-between;
	display: flex;
}

.modal-setting-top_label {
	margin-top: 15px;
	justify-content: space-between;
	display: flex;
	align-items: start;
	line-height: 1.29px;
	font-size: 12px;
	color: #070c19;
}

.modal-top-bar_id__exit {
	font-size: 20px;
	align-items: center;
	display: flex;
}

.modal-top-bar_id {
	color: #0006;
	white-space-collapse: unset;
	font-size: 11px;
	align-items: center;
	display: flex;
}

.modal-setting-form {
	margin-top: 5px;
	overflow-x: auto;
	overflow-y: auto;
	flex-direction: column;
	flex-shrink: 0;
	flex-grow: 1;
	display: flex;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 0;
	height: 100%;
}

.modal-setting-form_content {
	min-height: auto;
}

.modal-setting-input_content {
	margin-bottom: 10px;
	border-radius: 10px;
	position: relative;
	width: 100%;
	border: 1px solid transparent;
	height: 45px;
	background-color: #edf0f7;
	align-items: center;
	display: flex;
}

.modal-setting-input_text {
	margin-left: 15px;
	color: #6a7690b3;
	font-size: 11px;
}

.modal-setting-input {
	flex-basis: auto;
	flex-shrink: 1;
	flex-grow: 1;
	position: relative;
	border-style: none;
	color: #070c19cc;
	padding-right: 0;
	outline-style: none;
	min-height: 35px;
	background-color: transparent;
	z-index: 1;
	justify-content: start;
	padding-left: 10px;
	padding-bottom: 0;
	padding-top: 0;
	font-size: 13px;
	border-radius: 5px;
	border-color: transparent;
	display: flex;
	margin: 0;
	width: 100%;
	align-items: center;
}

.modal-setting-circle_content {
	width: 5px;
	right: 19px;
	top: 0;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	display: flex;
	height: 100%;
}

.modal-setting-circle {
	height: 5px;
	background-color: #888787;
	border-radius: 5px;
}

.modal-setting-circle.success {
	background-color: #10d600;
}

.modal-setting-input-password {
	margin-left: 0;
	margin-right: 0;
	justify-content: space-between;
	align-items: center;
	display: flex;
}

.modal-setting-change_content {
	order: 0;
	align-self: auto;
	justify-content: end;
	flex-grow: 0;
	flex-basis: auto;
	padding-right: 0;
	flex-shrink: 0;
	padding-left: 10px;
	align-items: center;
	display: flex;
}

.modal-setting-change_button {
	padding: 0px 25px 0px 25px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, .1);
	box-shadow: -2px 0px 5px #31bc6952;
	min-height: 40px;
	line-height: 18px;
	font-size: 15px;
	height: 45px;
	cursor: pointer;
    transition: all 0.3s ease;
	background: #089e4eb8;
	border-radius: 0px 10px 10px 0px;
	font-weight: 600;
	color: #fff;
	border-color: transparent;
	justify-content: center;
	align-items: center;
	display: flex;
}

.modal-setting-change_button:hover {
    background: #31bc69;
    box-shadow: 0px 0px 5px 0px #31bc699c;
}

.modal-setting-change_button:active {
    background: #31bc69b8;
    box-shadow: inset 0 4px 10px 2px rgba(0, 0, 0, 0.3);
}

.modal-wallet_content {
	height: 680px;
	max-height: 680px;
	margin: auto;
	border-radius: 15px;
	z-index: 3;
	display: flex;
}

.modal-wallet-left_block {
	padding-bottom: 25px;
	width: 290px;
	min-width: 200px;
	padding-right: 0;
	padding-left: 0;
	background-color: #edf0f7;
	padding-top: 20px;
	flex-direction: column;
	display: flex;
	border-radius: 15px 0px 0px 15px;
}

.wallet-left-top_text {
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	align-items: center;
	display: flex;
	line-height: 13px;
	color: #6a7690;
	font-size: 11px;
}

.wallet-left-middle_content {
	position: relative;
	padding-top: 5px;
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
}

.wallet-payments-method {
	padding: 10px;
	flex-basis: calc(50% - 5px);
	min-height: 67px;
	max-width: calc(50% - 5px);
	box-shadow: 0 6px 18px #1178df4d;
	align-items: start;
	flex-direction: column;
	background: #0671d4e3;
    transition: all 0.3s ease;
    cursor: pointer;
	justify-content: space-between;
	border-radius: 10px;
	margin-top: 0;
	display: flex;
	position: relative;
}



.wallet-payments-method_top {
	display: flex;
	max-width: 100px;
	width: 100%;
}

.wallet-payments-method_img-block {
	height: 18px;
	position: relative;
	width: 18px;
	display: flex;
	align-items: center;
    justify-content: flex-start;
	margin-left: 2px;
}

.wallet-payments-method_img {
	max-height: 100%;
	max-width: 100%;
	color: #90bbef;
	position: relative;
}

.wallet-payments-method_top-text {
	width: 18px;
	font-size: 7px;
	color: #1a88f3;
	margin-left: 2px;
	height: 18px;
	border-radius: 5px;
	font-weight: 700;
	background-color: #fff;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	display: flex;
}

.wallet-payments-method_text {
	display: flex;
	align-items: end;
	width: 100%;
	text-overflow: ellipsis;
	font-weight: 500;
	color: #ffffffb3;
	margin-top: 7px;
	font-size: 12px;
	margin-right: auto;
}

.modal-wallet-right_block {
	min-width: 428px;
	flex-direction: column;
	display: flex;
}

.wallet-finance-top_content {
	z-index: 2;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-top: 20px;
	align-items: start;
	justify-content: space-between;
	display: flex;
}

.wallet-finance-middle_content {
	flex-direction: column;
	display: flex;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 0;
	position: relative;
	height: 100%;
}

.wallet-finance-included_content {
	flex-basis: 0%;
	flex-shrink: 1;
	flex-direction: column;
	flex-grow: 1;
	display: flex;
	width: 100%;
	height: 100%;
}

.wallet-finance-included_content::before{
	content: "";
    border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid #038fde;
    display: block;
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 100px);
    animation: spinner-loader-qr 1s linear infinite;
    position: absolute;
    z-index: -1;
}

.wallet-finance-cryptocurrency_content {
	height: 100%;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 10px;
    column-gap: 10px;
    align-self: auto;
    flex-grow: 0;
    padding-top: 8px;
    padding-right: 0;
    padding-left: 0;
    flex-shrink: 1;
    align-items: start;
    padding-bottom: 10px;
    flex-direction: column;
    justify-content: start;
    align-content: baseline;
}

.wallet-cryptocurrency_block {
	margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
	box-shadow: 0 4px 10px -5px #0000001a;
	padding: 10px;
	background-color: #edf0f7;
	align-items: start;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 10px;
	display: flex;
	position: relative;
}

.wallet-cryptocurrency_block:hover {
	background: #0671d4;
    box-shadow: 0px 0px 5px 0px #0671d49c;
}

.wallet-cryptocurrency_block:hover > .wallet-cryptocurrency-text{
	color: #f7f7f7;
}

.wallet-cryptocurrency_block:active {
    background: #076cd2;
    box-shadow: inset 0px 0px 20px 0px #073767;
}

.wallet-cryptocurrency-img_block {
	flex-direction: column;
	display: flex;
	max-width: 92px;
	flex-grow: 0;
	flex-shrink: 1;
	position: relative;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: flex-start;
}

.wallet-cryptocurrency-img {
	height: 25px;
	max-height: 100%;
	max-width: 100%;
}

.wallet-cryptocurrency-text {
	align-items: end;
	display: flex;
	width: 100%;
	word-break: break-word;
	font-weight: 500;
	margin-top: 7px;
	font-size: 12px;
	color: #090f1e;
	margin-right: auto;
}

.wallet-finance-bottom_content {
	margin-top: 20px;
	padding-left: 0;
	align-items: start;
	padding-right: 20px;
	justify-content: start;
	padding-bottom: 0;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	font-size: 10px;
	color: #6a7690a6;
}

.wallet-deposit_content {
	height: 100%;
	flex-direction: column;
	background: #fff;
	flex-shrink: 0;
	flex-grow: 1;
	display: flex;
}

.wallet-deposit-address_block {
	overflow-y: hidden;
	overflow-x: hidden;
	color: #070c19;
	border-radius: 15px;
	padding: 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: flex;
}

.wallet-deposit-address {
	padding: 20px;
	margin-bottom: 10px;
	border-radius: 15px;
	width: 150px;
    height: 150px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-deposit-address::before {
	content: "";
	border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid #038fde;
    display: block;
    width: 50px;
    height: 50px;
    animation: spinner-loader-qr 1s linear infinite;
	position: absolute;
    z-index: 1;
}

#qr_for_payment {
	z-index: 2;
}

@keyframes spinner-loader-qr {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.wallet-deposit-cryptocurrency_content {
	font-size: 14px;
	line-height: 16px;
	margin-bottom: 10px;
	display: flex;
	white-space: nowrap;
}

.wallet-deposit-cryptocurrency-img_block {
	margin-right: 4px;
	height: 16px;
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wallet-deposit-cryptocurrency-img {
	height: 16px;
}

.wallet-deposit-cryptocurrency_text {
	text-transform: uppercase;
	margin-right: 4px;
	font-weight: 600;
}

.wallet-deposit-address_content {
	display: flex;
	align-items: center;
	flex-direction: column;
	align-self: center;
}

.wallet-deposit-address_top {
	font-weight: 600;
	line-height: 16px;
	font-size: 14px;
	margin-bottom: 5px;
}

.wallet-deposit-address_bottom {
	word-break: break-all;
	color: #858687;
	line-height: 15px;
	font-size: 12px;
	font-weight: 600;
}

.wallet-menu-button_block {
	row-gap: 12px;
	column-gap: 12px;
	margin-top: 15px;
	margin-bottom: 15px;
	display: flex;
	width: 100%;
}

.wallet-menu-button_back {
	color: #5c72a3;
	cursor: pointer;
	background: #edf0f7;
    	transition: all 0.3s ease;
	margin-right: 0;
	min-height: 45px;
   	min-width: 45px;
	padding-bottom: 0;
	padding-top: 0;
	border-radius: 5px;
	font-weight: 600;
	border-color: transparent;
	justify-content: center;
	align-items: center;
	display: flex;
	padding-right: 15px;
	padding-left: 15px;
	height: 100%;
}

.wallet-arrow-back {
	filter: invert(34%) sepia(91%) saturate(3952%) hue-rotate(199deg) brightness(94%) contrast(93%);
}

.wallet-menu-button_back:hover > .wallet-arrow-back {
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.wallet-menu-button_back:hover {
	background: #0671d4;
    box-shadow: 0px 0px 5px 0px #0671d49c;
}

.wallet-menu-button_back:active {
    background: #076cd2;
    box-shadow: inset 0px 0px 20px 0px #073767;
}

.wallet-menu-button_success {
	min-height: 45px;
	line-height: 18px;
	font-size: 16px;
	box-shadow: 0 6px 18px #1178df4d;
	background: #0671d4e3;
    transition: all 0.3s ease;
	padding: 10px;
	cursor: pointer;
	border-radius: 5px;
	border-width: 0px;
	font-weight: 600;
	color: #fff;
	border-color: transparent;
	justify-content: center;
	align-items: center;
	display: flex;
	width: 100%;
	min-height: 50px;
}

.wallet-menu-button_success:hover {
	background: #0671d4;
    box-shadow: 0px 0px 5px 0px #0671d49c;
}

.wallet-menu-button_success:active {
    background: #076cd2;
    box-shadow: inset 0px 0px 20px 0px #073767;
}

.wallet-notice_block {
	padding: 16px;
	border: 1px solid rgba(233, 235, 239, 1);
	margin-bottom: 24px;
	box-shadow: 0 2px 8px -2px #0e101108;
	border-radius: 15px;
	position: relative;
}

.wallet-notice-alert_content {
	margin-bottom: 8px;
	display: grid;
}

.wallet-alert_content {
	margin-bottom: 4px;
	row-gap: 4px;
	column-gap: 4px;
	color: #070c1980;
	font-size: 12px;
	align-items: center;
	display: flex;
}

.wallet-alert_img {
	height: 24px;
	width: 24px;
}

.wallet-alert_price {
	font-size: 14px;
	color: #070c19;
	font-weight: 600;
}

.wallet-alert_text {
	touch-action: pan-y;
    z-index: 1;
    margin-left: auto;
    position: relative;
    display: flex;
    transition-property: transform;
    justify-content: center;
    width: 316px;
    height: auto;
    flex-shrink: 0;
    margin-right: 8px;
    background-color: #dc44441a;
    padding: 10px;
    border-radius: 10px;
    color: red;
    line-height: 14px;
    font-size: 12px;
}

.wallet-withdrawal-address_block {
	overflow-y: hidden;
	overflow-x: hidden;
	color: #070c19;
	border-radius: 15px;
	padding: 12px 0px 0px 0px;
	flex-direction: column;
	align-items: center;
	display: grid;
}

.wallet-withdrawal-label {
	margin-bottom: 15px;
	background-color: #edf0f7;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 15px;
	position: relative;
	align-items: center;
	border-color: transparent;
	border-style: solid;
    border-width: 1px;
    display: flex;
    height: 45px;
}

.wallet-withdrawal-label_icon {
	margin-right: 12px;
    position: relative;
    align-items: center;
    justify-content: center;
	height: 17px;
}

.wallet-withdrawal-label_icon:after {
	background-color: #6a7690cc;
    bottom: 0;
    content: "";
    position: absolute;
    right: -11px;
    top: 0;
    width: 1px;
}

.wallet-withdrawal-label_input {
	border: 0px none transparent;
    outline-style: none;
    min-height: 35px;
    background-color: transparent;
    align-items: start;
    line-height: 1;
    justify-content: start;
    padding-bottom: 0;
    padding-top: 0;
    border-radius: 5px;
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    width: 100%;
}

.button__singup.high, .button__login.high {
	height: 40px;
}

.modal-detail_content {
	height: 454px;
    background-color: #fff;
    color: #090f1e;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: auto;
    min-width: 300px;
    width: 540px;
    z-index: 3;
    max-height: 100%;
}

.modal-detail_header {
	margin-bottom: 5px;
    padding: 20px 20px 10px;
	z-index: 2;
	display: flex;
    justify-content: space-between;
}

.modal-detail_container {
	display: flex;
    flex-direction: column;
    flex-grow: 1;
	overflow: hidden;
	padding: 0 0 20px;
	flex: 1 0;
}

.modal-detail_tab {
	display: flex;
    flex-shrink: 0;
    padding: 0 20px 10px;
    border-bottom: 1px solid #edf0f7;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    box-shadow: 0 15px 15px #fff;
}

.modal-detail_tab-item {
	padding: 4px 10px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.modal-detail_tab-item--active {
	background: #0671d4;
    color: #fff;
}

.modal-detail_container-content {
	display: flex;
    flex-direction: column;
    flex: 1 0;
    overflow-x: hidden;
    overflow-y: scroll;
    border-radius: 8px;
}

.modal-detail_container-content::before {
	content: "";
    border: 5px solid transparent;
    border-radius: 50%;
    border-top: 5px solid #038fde;
    display: block;
    width: 50px;
    height: 50px;
    top: 50%;
    left: calc(50% - 25px);
    animation: spinner-loader-qr 1s linear infinite;
    position: absolute;
    z-index: 0;
}

.history_content {
	display: flex;
    flex-direction: column;
    flex: 1 0;
    padding: 20px 20px 0;
    border-radius: 8px;
    color: #090f1e;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    background: #FFF;
}

.modal-detail_container-content::after {
	content: "";
    display: block;
    width: 100%;
    height: 20px;
    position: sticky;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
    flex-shrink: 0;
}

.history-detail__block {
	margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    border-width: 0px;
    position: relative;
    width: 100%;
    min-height: 50px;
	height: 50px;
    background: linear-gradient(90deg, #edf0f7, #ffc60000);
    align-items: center;
    display: flex;
    flex-shrink: 1;
    font-size: 13px;
	justify-content: space-between;
}

.history-detail__container {
	display: grid;
    align-items: center;
    padding: 0px 10px;
    justify-content: start;
}

.history-detail__container-games {
	display: flex;
}

.history-detail__container-games.right {
	padding: 0px 10px;
}

.history-detail__text {
	text-decoration: none;
    font-size: 14px;
    font-weight: 500;
	white-space: nowrap;
}

.history-detail__text.header {
	font-size: 11px;
    font-weight: 400;
}

.history-detail__text.deposit {
    color: #0dc35d;
}

.history-detail__text.withdrawal {
    color: #f10606;
}

.history-detail__text.win {
    color: #0dc35d;
}

.history-detail__text.loss {
    color: #f10606;
}

.history-detail__status {
	display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
}

.history-detail__button-status {
	display: grid;
    overflow: visible;
    justify-content: center;
    align-items: center;
	padding: 12px 16px;
}

.history-detail__button-info {
	position: absolute;
    right: 0;
    top: 15px;
}

.history-detail__status.success{
	background-color: #0dc35d;
	-webkit-mask-image: url('/img/check_circle_24dp.svg');
	mask-image: url('/img/check_circle_24dp.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.history-detail__status.cancel{
	background-color: #f10606;
	-webkit-mask-image: url('/img/cancel_24dp.svg');
	mask-image: url('/img/cancel_24dp.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.history-detail__status.waiting{
	background: linear-gradient(98deg, #ffe036, #ffc600);
	-webkit-mask-image: url('/img/autorenew_24dp.svg');
	mask-image: url('/img/autorenew_24dp.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
	animation: spinner-waiting-payment 1s linear infinite;
}

@keyframes spinner-waiting-payment {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.history-detail__info {
	display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
	background-color: #0671d4;
	-webkit-mask-image: url('/img/question_mark_24dp.svg');
	mask-image: url('/img/question_mark_24dp.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
	scale: 0.8;
}

.history-detail__info-error {
	position: absolute;
    top: -12px;
    right: -70px;
	scale: 0.1;
	opacity: 0;
    width: 150px;
    background: linear-gradient(90deg, #0671d4, #0632d4);
    color: #fff;
    display: grid;
    z-index: 5;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    border-width: 0px;
    box-shadow: 0px 0px 13px 1px #0671d473;
	transition: all 0.3s ease-in-out;
}

.history-detail__button-info:hover > .history-detail__info-error{
	top: 30px;
    right: 0;
	scale: 1;
	opacity: 1;
}

.modal-detail_message {
	border-radius: 8px;
    background: none;
    color: #090f1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.modal-detail_message-title {
	font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.modal-detail_message-text {
	max-width: 230px;
    font-size: 14px;
    line-height: 1.29;
    text-align: center;
}

.slider-win_main {
	width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid transparent;
	translate: 0px 0px 1px;
}

.slider-win_main::before {
    content: " ";
    position: absolute;
    inset: calc(1px* -1);
    z-index: 4;
    border: inherit;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle), #1d5b6a00 10%, #d1f2ff 88%, #d1f9ff 92%, #1d626a00 100%);
    background-origin: border-box;
    -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
    mask: linear-gradient(black, black), linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 5s linear infinite;
}

/* Добавляем тени слева и справа */
.slider-win_main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #0f192f 0%,
        rgba(15, 25, 47, 0) 2%,
        rgba(15, 25, 47, 0) 85%,
        #0f192f 100%
    );
    z-index: 10;
	box-shadow: inset 0px 0px 15px 2px rgb(0 151 239 / 20%);
}

.slider-win_container:hover {
	box-shadow: inset 20px 0px 10px 0px rgb(0 151 239 / 35%);
	cursor: pointer;
}

.slider-win_wrapper {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: transform 0.5s ease;
	padding-left: 5px;
}

.slider-win_container {
	margin-left: 20px;
	display: flex;
    align-items: center;
	border-radius: 10px;
    background: linear-gradient(90deg, #0f467f, #0f192f);
    height: 50px;
	transition: transform 1s linear, box-shadow 0.5s ease-in-out;
	width: 170px;
	position: absolute;
	margin: 5px 10px;
	z-index: 5;
}

.slider-win_img-container {
	width: 40px;
	flex: 0 0 auto;
    height: 100%;
    display: flex;
	align-items: center;
	padding-left: 10px;
}

.slider-win_img {
	width: 100%;
	background: #FFFF;
	border-radius: 50%;
}

.slider-win_text-container {
	padding: 0 10px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slider-win_text-money {
	color: #0dc35d;
	font-size: 14px;
	font-weight: 800;
}

.slider-win_text-id {
	color: #FFFF;
    font-size: 12px;
    font-weight: 600;
}

.top-bar-bonus_content {
    color: inherit;
    text-decoration: none;
    padding: 5px 25px 5px 35px;
    border-radius: 20px 10px 10px 6px;
    font-weight: 600;
    font-size: 12px;
    position: relative;
    width: 50px;
    height: 22px;
    display: flex;
    cursor: pointer;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    translate: 0px 0px 1px;
    transition: all 0.3s ease-in-out;
}

.top-bar-bonus_content::before {
    content: " ";
    position: absolute;
    inset: calc(1px* -1);
    z-index: 4;
    border: inherit;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle), #1d5b6a00 10%, #d1f2ff 88%, #d1f9ff 92%, #1d626a00 100%);
    background-origin: border-box;
    -webkit-mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
    mask: linear-gradient(black, black), linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 5s linear infinite;
}

.top-bar-bonus_content:hover > .top-bar-bonus_text {
    background: rgb(251 120 3);
}

.top-bar-bonus_text {
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    padding: 8px 25px 8px 35px;
    position: absolute;
    background: rgb(239 101 28);
    transition: all 0.3s ease-in-out;
}

.top-bar-bonus_block {
	background: #ffffff30;
    position: absolute;
    margin-top: 175px;
    width: 330px;
    transform: translate(-200px, -800px);
    z-index: 101;
    border-radius: 10px;
	opacity: 0;
	scale: 0;
	transition: all 0.5s ease-in-out;
	backdrop-filter: blur(20px);
}

.modal-bonus_container {
	background: #ffffff30;
    position: absolute;
    top: -30px;
    left: 387px;
    width: 330px;
    scale: 0.75;
    z-index: 5001;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(20px);
}

.top-bar-bonus_block:hover {
	opacity: 1;
	scale: 1;
	transform: translate(-100px, 0px);
}

.bonus-container {
    width: 330px;
}

.bonus-container_img {
	pointer-events: none;
    position: absolute;
    right: 260px;
    top: -30px;
	transform: rotate(355deg);
	background-size: 100%;
    background-repeat: no-repeat;
	width: 120px;
	height: 120px;
	background-image: url(/img/betjoy.png);
}

.bonus-text_container {
	padding: 10px;
    position: relative;
    display: grid;
    align-items: center;
}

.bonus-text_header {
	font-size: 14px;
    font-weight: 600;
    color: #FFF;
    line-height: 20px;
    padding: 0px 0px 0px 60px;
    white-space: nowrap;
}

.bonus-text_middle {
	background-clip: text;
    background-image: linear-gradient(94deg, #FBC709 9.99%, #FF8500 98.87%);
    color: transparent;
    font-size: 24px;
	line-height: 25px;
    padding: 5px 0px 10px 60px;
    font-weight: 800;
	animation: bonus-text 1s ease-in-out infinite alternate;
}

@keyframes bonus-text {
  0% { text-shadow: 0px 0px 5px #ff8500b8; }
  100% { text-shadow: 0px 0px 20px #ffbd00c4; }
}

.bonus-text_bottom {
	color: #FFF;
    font-size: 12px;
    padding: 0px 10px 0px 10px;
}

.bonus-button {
	line-height: 1;
    font-size: 100%;
    height: 40px;
    translate: 0px 0px 1px;
    background-color: #089e4eb8;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    border-width: 0px;
    font-weight: 600;
    color: #ECF0F1;
    
    justify-content: center;
    align-items: center;
    display: flex;
    padding-right: 15px;
    padding-left: 15px;
    cursor: pointer;
	margin: 10px;
    box-shadow: 0px 0px 0px 0px #089e4e9c;
	backdrop-filter: blur(10px);
}

.bonus-button:hover {
	background-color: #31bc69;
    box-shadow: 0px 0px 5px 0px #31bc699c;
}

.bonus-button:active {
	background-color: #31bc69b8;
    box-shadow: inset 0 4px 10px 2px rgba(0, 0, 0, 0.3);
}

.modal-logo-main {
    position: absolute;
    margin: -235px 0px 0px 0px;
    width: 430px;
    filter: drop-shadow(0px 10px 20px #ffffff7a);
    z-index: 5001;
    scale: 1;
    transition: all 0.5s ease-in-out;
    animation: logo-main-modal 2s ease-in-out infinite alternate;
	pointer-events: none;
}

@keyframes logo-main-modal {
  0% { 
	filter: drop-shadow(0px 10px 20px #ffffff7a);
	}
  100% {
	filter: drop-shadow(0px 5px 20px #fff);
	}
}

.modal-login_content::after {
	content: "";
    position: absolute;
    width: 600px;
    height: 400px;
    margin: -40px 0px 0px -100px;
    background: url(../img/modal_login.png) center / cover no-repeat;
    pointer-events: none;
}

.balance-header {
	position: relative;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 2px 2px 2px 10px;
	background-color: #0f192f;
    border-radius: 5px;
	border-width: 0px;
}

.balance-header-left {
	padding: 0px 5px 0px 0px;
	width: 55px;
	display: flex;
	flex-direction: column;
	align-items: end;
}

.balance-currency {
	margin: 0px -2px 0px -2px;
	display: flex;
	align-items: center;
	padding: 0px 2px 0px 2px;
	color: #94a6cd;
	line-height: 16px;
	font-size: 12px;
}

.balance-money {
	white-space-collapse: unset;
	text-overflow: ellipsis;
	line-height: 20px;
	letter-spacing: -.15px;
	font-size: 14px;
	overflow: hidden;
	text-align: end;
	font-weight: 600;
	color: #fff;
}

.deposit__button {
	padding: 0px 20px 0px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 20;
	overflow: hidden;
    height: 40px;
    border-radius: 5px;
	font-size: 13px;
	cursor: pointer;
    transition: all 0.3s ease-in-out;
	letter-spacing: .15px;
	background: #009e4f;
	border-width: 0px;
	color: #fff;
	font-weight: 700;
	position: relative;
}

.deposit__button:hover {
    background: #29c376;
	box-shadow: 0px 0px 5px 0px #29c37694;
}

.deposit__button:active {
	background: #02ad58bf;
	box-shadow: inset 0px 0px 10px 2px #0000008c;
}

.settings-header {
	display: flex;
	column-gap: 8px;
	position: relative;
	align-items: center;
	height: 40px;
	padding: 3px 8px 3px 8px;
}

.settings-header__button {
	cursor: pointer;
    transition: all 0.3s ease-in-out;
	height: 40px;
	width: 40px;
	border-radius: 5px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	background: #0671d4;
}

.settings-header__button:hover {
    background: #0984f5;
	box-shadow: 0px 0px 10px 0px #0671d49c;
}

.settings-header__container {
    z-index: 1002;
    min-width: 100%;
    margin-top: 230px;
    left: -7px;
    translate: -60% 0px 0px;
    position: absolute;
    transition-behavior: normal;
    box-shadow: 0 9px 15px #0000001a;
    padding: 10px;
    display: none;
    background: linear-gradient(180deg, #0f467f, #0f192f);
    border-radius: 10px;
    height: fit-content;
    gap: 3px;
    flex-direction: column;
}

.settings-header_block {
	border-left: 9px solid transparent;
	border-bottom: 7px solid #0f467f;
	border-right: 9px solid transparent;
	border-top: 9px solid transparent;
	left: calc(50% + 42px);
	top: -15px;
	position: absolute;
}

.settings-header_block::before {
	content: "";
    background: #0f467f00;
    width: 55px;
    height: 55px;
    left: -28px;
    top: -43px;
    position: absolute;
}

.settings-header__text {
    padding: 10px 50px 10px 20px;
    font-size: 12px;
    white-space-collapse: unset;
    text-transform: capitalize;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    background: #0f192f;
    border-radius: 6px;
    box-shadow: 0px 0px 0px 0px #0671d49c;
}

.settings-header__text:hover {
	background: linear-gradient(70deg, #076cd2 -8%, #008dc3 96%);
}

.settings-header__a {
	text-decoration: none;
}

@media (min-width: 501px) {
	.settings-header__button:hover ~ .settings-header__container{
		display:flex;
	}
	
	.settings-header__container:hover {
		display:flex;
	}
}

.settings-header__button:has(+ .settings-header__container:hover) {
	background: #0984f5;
    box-shadow: 0px 0px 10px 0px #0671d49c;
}

.footer_root {
        gap: 40px;
    }
.footer_root {
    grid-template-rows: min-content max-content min-content min-content;
    width: 100%;
    display: grid;
    position: relative;
	padding: 40px 0;
}
.header-row_footer {
    align-items: center;
    gap: 16px;
    display: flex;
}
.header-row_line {
    background-color: #0f467f6e;
    flex-grow: 1;
    height: 1px;
}
.footer_button-up {
    border-radius: 10px;
    background-color: unset;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    will-change: transform;
    padding: 0;
    transition: opacity .3s;
    display: inline-block;
    position: relative;
}
.button-up {
    height: 36px;
    padding: 0 10px;
    border-radius: 5px;
    background: #0671d4;
    transition: background .3s;
    position: relative;
}
.button-up:hover {
	background: #0984f5;
}
.button-up:active {
	background: #0054a1;
}
.button-up_content {
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    height: 100%;
    display: flex;
}
.icon-button-up_scrollTop {
    color: #f0f2f5;
	fill: currentColor;
    display: block;
}
@media (min-width: 1024px) {
    .footer-mainRow>:not(:first-child), .footer-mainRow .footer-supportRow {
        margin-top: 0;
    }
}
.footer-mainRow .footer-supportRow {
    margin-top: 12px;
}
.footer-mainRow>:not(:first-child) {
    margin-top: 24px;
}
.supportRow_root {
    font-size: 12px;
    gap: 12px;
    grid-template-columns: 1fr;
    display: grid;
}
@media (min-width: 1024px) {
    .supportRow_root {
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .supportRow_hasOwnerBanner {
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1440px) {
    .supportRow_hasOwnerBanner {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1440px) {
    .supportBlock_hasOwnerBanner {
        flex-direction: column;
        align-items: start;
    }
}
.supportBlock_root {
    width: auto;
    padding: 15px;
    border-radius: 15px;
    background-color: #0f467f6e;
    gap: 24px;
    flex-direction: column;
    display: flex;
    position: relative;
	grid-column-start: span 1;
}
.supportBlock_content, .supportBlock_root button {
    z-index: 1;
}

.supportBlock_content {
    gap: 4px;
    flex-direction: column;
    width: 190px;
    display: flex;
	cursor: default;
}
@media (min-width: 1024px) {
    .supportBlock_content {
        width: 150px;
    }
}
.supportBlock_title {
    color: #f0f2f5;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
    display: flex;
}
.supportBlock_badge {
	height: min-content;
	align-items: center;
    display: inline-flex;
	user-select: none;
    min-width: 0;
	padding: 2px 8px;
	background-color: #0671d4;
    color: #ffffff;
	line-height: 16px;
    flex-shrink: 0;
	font-size: 12px;
	border-radius: 5px;
}
.badge_text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.supportBlock_secondary {
    color: #9aa1b1;
    font-size: 12px;
    line-height: 16px;
}

.supportBlock_button {
    background: #0671d4;
    color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
	user-select: none;
    will-change: transform;
    padding: 0;
    transition: opacity .3s;
    display: inline-block;
    position: relative;
	font-size: 14px;
	line-height: 20px;
	width: 100%;
	height: 36px;
    padding: 0 16px;
    transition: background .3s;
    position: relative;
}
.supportBlock_button:hover {
    background: #0984f5;
}
.supportBlock_button:active {
    background: #0054a1;
}
.supportEmail_wrapper {
    gap: 12px;
    grid-template-columns: 1fr;
    display: grid;
}
.supportEmail_block {
    padding: 15px;
    border-radius: 15px;
    background: #0f467f6e;
    color: #9aa1b1;
    justify-content: center;
    gap: 2px;
    flex-direction: column;
    display: flex;
    overflow: hidden;
}
.supportEmail_block>span {
    white-space: nowrap;
	cursor: default;
}
.supportEmail_block>a {
    width: max-content;
	color: #f0f2f5;
	font-size: 14px;
	line-height: 20px;
	text-decoration: inherit;
}
.supportRow-text {
	background-color: unset;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    gap: 4px;
	font-weight: 400;
    -webkit-user-select: none;
    user-select: none;
    padding: 0;
    display: inline-flex;
}
.footer-navigationRow {
    gap: 24px;
    flex-direction: column;
    display: flex;
}
.support_img {
	position: absolute;
    top: -17px;
    right: 8px;
    width: 120px;
    height: 120px;
    display: flex;
}

.support_img img {
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
}
@media (min-width: 1024px) {
    .footer-navigationRow {
        gap: 40px;
    }
}
@media (min-width: 1440px) {
    .footer-navigationRow {
        flex-direction: row;
        gap: 0;
    }
}
.navigationRow_root {
    gap: 20px;
    flex-direction: row;
    display: flex;
	padding: 15px;
}
@media (min-width: 1024px) {
    .navigationRow_root {
        gap: 80px;
    }
}
.navigationRow_section {
    flex-direction: column;
    display: flex;
}
.navigationRow_section>div {
    flex: 1;
}
@media (min-width: 1024px) {
    .navigationRow_section>div {
        flex-grow: 0;
    }
}
.navigationRow_sectionTitle {
	color: #ffffff;
    margin: 0;
    font-size: 16px;
	font-weight: 600;
    line-height: 22px;
    text-transform: none;
    text-wrap: balance;
    white-space-collapse: preserve-breaks;
	cursor: default;
}
@media (min-width: 1024px) {
    .navigationRow_sectionTitle {
        font-size: 20px;
        line-height: 24px;
    }
}
.navigationRow_sectionItems {
    grid-template-rows: 1fr;
    transition: grid-template-rows .2s ease-out;
    display: grid;
}
@media (min-width: 1024px) {
    .navigationRow_sectionItems {
        width: max-content;
    }
}
.navigationRow_itemsContainer {
	overflow: hidden;
}
@media (min-width: 1024px) {
    .navigationRow_itemsContainer {
        gap: 40px;
        display: flex;
    }
}
.navigationRow_itemsGroup {
	margin-top: 12px;
    gap: 8px;
    flex-direction: column;
    display: flex;
}
@media (min-width: 1024px) {
    .navigationRow_itemsGroup {
        margin-top: 16px;
    }
}
.supportRow-text_secondary {
	color: #9aa1b1;
}
.navigationRow_itemsGroup>* {
    padding-block: 2px;
}
@media (min-width: 1024px) {
    .navigationRow_itemsGroup>* {
        padding: 0;
    }
}
.footer-bottomRow {
    gap: 20px;
    flex-direction: column;
    display: flex;
}
@media (min-width: 1024px) {
	.footer-bottomRow {
		padding-top: 24px;
		border-top: 1px solid #0f467f6e;
		gap: 24px;
	}
}
.bottomRow_CryptoAndLicensesBlock {
	justify-content: space-between;
    gap: 20px;
    flex-direction: column;
    display: flex;
}
@media (min-width: 1024px) {
    .bottomRow_CryptoAndLicensesBlock {
        gap: 32px;
        flex-direction: row;
    }
}
.bottomRow_licenses {
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    display: flex;
}
@media (min-width: 1024px) {
    .bottomRow_licenses {
        width: auto;
        height: 36px;
        justify-content: flex-end;
    }
}
.bottomRow_licenses-img {
    align-items: center;
    height: 20px;
    display: flex;
}
@media (min-width: 1024px) {
    .bottomRow_licenses-img {
        height: 24px;
    }
}
.bottomRow_crypto-img {
    align-items: center;
    height: 20px;
    display: flex;
	opacity: 0.3;
	transition: 0.3s;
}
.bottomRow_crypto-img:hover {
	opacity: 1;
}
@media (min-width: 1024px) {
    .bottomRow_crypto-img {
        height: 24px;
    }
}
.bottomRow_crypto {
	gap: 12px;
    flex-wrap: wrap;
    display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (min-width: 1024px) {
    .bottomRow_crypto {
        width: auto;
        height: 36px;
    }
}
.bottomRow_copyright {
    color: #0077f1;
    gap: 8px;
    display: flex;
	cursor: default;
}
.bottomRow_copyright-year {
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    flex-grow: 1;
    align-items: center;
    display: flex;
	color: #9aa1b1;
}
.bottomRow_copyright-age {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: none;
    text-wrap: balance;
    white-space-collapse: preserve-breaks;
}
@media (min-width: 1024px) {
	.bottomRow_copyright-age {
		font-size: 24px;
		line-height: 28px;
	}
}