/* Default */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Fonts */
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Regular.woff2') format('woff2'),
       url('/fonts/Nunito-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Medium.woff2') format('woff2'),
       url('/fonts/Nunito-Medium.woff') format('woff');
  font-weight: 500;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-SemiBold.woff2') format('woff2'),
       url('/fonts/Nunito-SemiBold.woff') format('woff');
  font-weight: 600;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Bold.woff2') format('woff2'),
       url('/fonts/Nunito-Bold.woff') format('woff');
  font-weight: 700;
}

@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url('/fonts/BebasNeueCyrillic.woff2') format('woff2'),
       url('/fonts/BebasNeueCyrillic.woff') format('woff');
  font-weight: 400;
}
*{
	text-decoration: none;
	/* font-family: 'Nunito'; */
}
/* Body */
body {
	background-color: #131319;
	overflow-x: hidden;
	
}
/* Header */
header {
	margin-bottom: 20px;
	background-color: #15151D;
}
/* Header mobile */
.header-mobile {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 15px 15px 10px 15px;
}

.mobile-container {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2000;
}

.navigation-mobile a img {
	width: 140px;
	/* height: 35px; */
	margin-right: 20px;
}

.mobile-games {
	position: relative;
	border-radius: 10px;
}

.games-button {
	min-width: 136px;
	background: url(/assets/image/icons/standoff2.png) no-repeat 12px center;
	background-color: #FFFFFF0D;
	background-size: 23px;
	border-radius: 10px;
	padding: 12px 14px 12px 48px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.3s ease;
	position: relative;
	margin-left: 10px;
	margin-right: 20px;
}

.games-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.games-button:hover {
	cursor: pointer;
}

.games-button.active {
	background-color: #FF4C00;
	border-radius: 5px 5px 0px 0px;
}

.games-arrow {
	transition: transform 0.3s ease;
}

.games-container {
	width: 100%;
	position: absolute;
	z-index: 10;
	background-color: #15151D;
	border-radius: 0px 0px 5px 5px;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transform: translateY(0px);
	transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.games-container.games-show {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0px);
}

.games-container a {
	padding: 9px 0px 9px 9px;
	text-decoration: none;
	display: block;
	background-color: #15151D;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	transition: .3s ease;
}

.games-container a:hover {
	background-color: #FF4C00;
}

.burger {
	position: relative;
	width: 31px;
	height: 20px;
	border: none;
	cursor: pointer;
	z-index: 1000;
	background-color: transparent;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.burger-line1 {
	width: 31px;
	height: 4px;
	background-color: #fff;
	border-radius: 1px;
	margin-bottom: 4px;
}

.burger-line2 {
	width: 31px;
	height: 4px;
	background-color: #fff;
	border-radius: 1px;
	margin-bottom: 4px;
	transition: width 0.4s ease;
}

.burger-line3 {
	width: 31px;
	height: 4px;
	background-color: #fff;
	border-radius: 1px;
	transition: width 0.4s ease;
}

.burger.active .burger-line2 {
	width: 25.13px;
}

.burger.active .burger-line3 {
	width: 18.27px;
}

.burger-links {
	padding: 50px 0px 0px 0px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
}

.burger-links a {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 24px;
	color: #6F6F82;
	text-decoration: none;
}
.burger-links a.name {
	display:flex;
	align-items: center;
}
.burger-links a.name img {
	width: 30px;
	border-radius: 50%;
	margin-right: 11px;
}

.burger-links .link-bottom {
	margin-bottom: 80px;
}

.overlay {
	position: absolute; 
	top: 0px;
	padding: 65px 0px 0px 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #15151D;
	z-index: 99;
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	display: none;
	overflow-y: hidden;
}

.overlay.overlay-show {
	display: block;
	transform: translateY(0);
	overflow-y: hidden;
}

.overlay .no-scroll {
	overflow: hidden;
}
/* Header drop */
.header-drop {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: hidden;
	white-space: nowrap;
	gap: 5px;
	padding: 15px 0px 0px 0px;
}

.drop {
	position: relative;
	overflow: hidden;
	max-width: 170px;
	min-width: 170px;
	height: 110px;
	border-radius: 10px;
}

.drop::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.drop-container {
	/* width: 100%; */
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.3s ease;
}
.best-drop .drop-container {
	width: 100%;
}


.drop:hover .drop-container {
	transform: translateY(-50%);
}

.drop .current img {
	position: absolute;
	top: 5px;
	/*left: 20px;*/
	right: 0;
	width: 150px;

}

.drop .new img {
	position: absolute;
	top:	110px;
	left: 50px;
}

.drop .subtitle {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	margin: 0px 0px 0px 15px;
}

.drop .line {
	position: relative;
	z-index: 2;
	width: 94px;
	height: 5px;
	margin: 0 auto;
	border-radius: 0px 0px 4.5px 4.5px;
}

.drop .title {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 12px;
	margin: 69px 0px 0px 15px;
}

/* Drop purple */
.drop-purple {
	background: linear-gradient(180deg, rgba(112, 0, 255, 0.22) 0%, rgba(112, 0, 255, 0) 115.71%);
}

.drop-purple .line {
	background: #7000FF;
	box-shadow: 0px 4px 14.9px 0px #7000FFA1;
}

.drop-purple .title {
	color: #785AA4;
}
/* Drop yellow */
.drop-yellow {
	background: linear-gradient(180deg, rgba(255, 229, 0, 0.22) 0%, rgba(255, 229, 0, 0) 115.71%);
}

.drop-yellow .line {
	background: #FFE500;
	box-shadow: 0px 4px 14.9px 0px #FFE500A1;
}

.drop-yellow .title {
	color: #A49D5A;
}
/* Drop green */
.drop-green {
	background: linear-gradient(180deg, rgba(5, 255, 0, 0.22) 0%, rgba(5, 255, 0, 0) 115.71%);
}

.drop-green .line {
	background: #05FF00;
	box-shadow: 0px 4px 14.9px 0px #05FF00A1;
}

.drop-green .title {
	color: #72A45A;
}
/* Drop red */
.drop-red {
	background: linear-gradient(180deg, rgba(255, 0, 46, 0.22) 0%, rgba(255, 0, 46, 0) 115.71%);
}

.drop-red .line {
	background: #FF002E;
	box-shadow: 0px 4px 14.9px 0px #FF002EA1;
}

.drop-red .title {
	color: #A45A5A;
}

/* Header navigation */
.header-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px 20px 30px;
	margin-top: 10px;
}

.navigation-left {
	display: flex;
	align-items: center;
}

.navigation-right {
	display: flex;
	align-items: center;
}
 
.logo {
	margin-right: 30px;
}

.logo img {
	width: 160px;
}

.games {
	display: flex;
	align-items: center;
	gap: 10px;
}

.games a {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	background-color: #FFFFFF0D;
	padding: 10px 16px 10px 16px;
	border-radius: 10px;
	transition: .3s ease;
	position: relative;
}

.games a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}


.games a:hover {
	background-color: #FF4C00;
}

nav {
	display: flex;
	align-items: center;
	gap: 15px;
}

nav a {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	text-decoration: none;
	transition: .3s ease;
}

nav a:hover {
	color: #fff;
}

.replenish {
	display: block;
	background-color: #FF4C01;
	border: none;
	padding: 10px 10px 6px 10px;
	border-radius: 10px;
	margin: 0px 30px;
	position: relative;
	transition: .3s ease;
}

.replenish svg {
	transition: .3s ease;
}

.replenish:hover {
	background-color: #FF611D;
	cursor: pointer;
	animation-timing-function: ease-out;
	animation-duration: 300ms;

}

.profile {
	display: flex;
	align-items: center;
}

.profile .container {
	display: flex;
	flex-direction: column;
	align-items: start;
	margin: 0px 0px 0px 10px;
}

.avatar {
	background-image: url(/assets/image/avatar.png);
	background-position: center;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border-radius: 50%;
	display: inline-block;
	transition: .3s ease;
}

.avatar:hover {
	background-image: url(/assets/image/avatarHover.png)!important;
}

.name {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}

.balance {
	display: flex;
	align-items: center;
}

.balance span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #585858;
}

.money {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 12px;
	color: #fff;
	margin: 0px 2px 0px 5px;
}
@media (max-width:1152px) {
	.money {
		font-size: 22px;
	}
	.balance span {
		font-size: 22px;
	}
}
.balance .block {
	display: flex;
	align-items: center;
}

.logout {
	width: 12px;
	height: 12px;
	background-image: url(/assets/image/logout.png);
	background-color: transparent;
	border: none;
	margin-top: -10px;
	margin: -16px 0px 0px 4px;
	transition: .3s ease;
}

.logout:hover {
	background-image: url(/assets/image/logoutHover.png);
	cursor: pointer;
}
/* Login */
.login {
   display: flex;
   align-items: center;
   color: #fff;
   font-family: 'Nunito';
   background: #FF4C00;
   border-radius: 8px;
   color: #fff;
   font-size: 16px;
   font-weight: 700;
   padding: 10px 22px;
   /* text-transform: uppercase; */
   transition: background .3s ease;
}

.login-block {
	width: 40px;
	height: 40px;
	background-image: url(/assets/image/login.svg);
	background-repeat: no-repeat;
	margin-right: 10px;
	transition: .3s ease;
}

.profile:hover .login-block {
	background-image: url(/assets/image/loginHover.svg);
	cursor: pointer;
}

.login button {
	background-color: transparent;
	border: none;
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.login button:hover {
	cursor: pointer;
}
/* Main */
.main-page-index {
	position: relative;
	z-index: 2;
	padding: 0px 30px 0px 30px;
	margin-bottom: 30px;
}

.poster {
	background-image: url(/assets/image/main.png);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 20px;
	height: 500px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 360px 0px 0px 0px;
	margin: 0px 15px 40px 15px;
}

.poster h1 {
	-webkit-text-stroke: 1px #000;
	text-shadow: black 1px 0 10px;
}

.poster p {
	-webkit-text-stroke: 0.1px #000;
	text-shadow: black 1px 0 10px;
}

h1 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 48px;
	line-height: 32px;
	color: #fff;
}

.poster p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	margin: 10px 0px 20px 0px;
}

.show {
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	padding: 10px 50px 10px 50px;
	background-color: #FF4C00;
	border: none;
	border-radius: 10px;
	transition: .3s ease;
}

.show:hover {
	box-shadow: 0px 10px 141.7px 0px #FF4C0087;
	background-color: #FF611D;
	cursor: pointer;
}
/* Section */
.section-page-index {
	padding: 0px 30px 0px 30px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.cases {
	width: 100%;
	max-width: 1440px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 0px;
	margin: 40px auto 80px auto;
}

/* Case */
.case {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
}

.case:hover {
	cursor: pointer;
}

.case:hover img {
	width: 310px;
	height: 310px;
	margin: -15px 0px 0px -5px;
}

.case:hover .case-animation {
	/*filter: blur(70px);
	background-color: #FDFF17;*/
}

.case img {
	width: 300px;
	height: 300px;
	position: absolute;
	z-index: 2;
	transition: .3s ease;
}

.case-container {
	width: 300px;
	height: 300px;
}

.case-animation {
	width: 100px;
	height: 100px;
	background-color: #fff;
	border-radius: 50%;
	position: relative;
	left: 35%;
	top: 30%;
	z-index: 1;
	transition: .3s ease;
}

h4 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	text-align: center;
	margin: 10px 0px 10px 0px;
}

.buy {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 36px;
	background-color: #FF4C00;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	position: relative;
	overflow: hidden;
	clip-path: polygon(8% 0%, 100% 0%, 100% 75%, 92% 100%, 0% 100%, 0% 25%);
}

.buy:hover {
	cursor: pointer;
}

.text {
	display: flex;
	align-items: center;
	transition: transform 0.3s ease-in-out;
	position: absolute;
}

.text-new {
	transform: translateY(100%);
}

.buy:hover .text {
	transform: translateY(-110%);
}

.buy:hover .text-new {
	transform: translateY(0%);
}

.text svg {
	margin-left: 5px;
	margin-top: -2px;
}

.discount {
	display: flex;
	align-items: center;
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #515162;
	text-decoration: line-through;
	text-decoration-color: #515162;
	margin-top: 10px;
}

.news {
	width: 100%;
	max-width: 1340px;
	height: 156px;
	background-image: url(/assets/image/news.png);
	background-repeat: no-repeat;
	padding: 0px 60px 0px 260px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
	border-radius: 10px;
}

.section-page-index h3 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	color: #fff;
	text-align: left;
}

.news p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #BEBEBE;
}

.news button {
	padding: 0px 40px 0px 40px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	background-color: #FFFFFF0D;
	border: none;
	height: 50px;
	border-radius: 10px;
	transition: .3s ease;
	position: relative;
}

.news button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.news button:hover {
	background-color: #FF4C01;
	cursor: pointer;
}

.news-mobile {
	display: none;
	width: 100%;
}

.news-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 156px;
	background-image: url(/assets/image/news.png);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 10px;
}


.news-mobile button {
	padding: 0px 40px 0px 40px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	background-color: #FFFFFF0D;
	border: none;
	height: 50px;
	border-radius: 10px;
	transition: .3s ease;
	position: relative;
}

.news-mobile button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.news-mobile button:hover {
	background-color: #FF4C01;
	cursor: pointer;
}

.news-mobile p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #BEBEBE;
	text-align: center;
}

.all-case {
	width: 100%;
	max-width: 1340px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 22.5px;
	margin-bottom: 130px;
}
/* Footer */
footer {
	display: flex;
	justify-content: center;
}

.footer-content {
	padding: 70px 30px 70px 30px;
	position: relative;
	width: 100%;
	max-width: 1920px;
}

.footer-decoration {
	z-index: 10;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 500px;
}

.footer-up {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1060px;
	gap: 50px;
	z-index: 20;
}

.footer-up-container {
	display: flex;
	align-items: center;
	gap: 120px;
}

.footer-up img {
	width: 117px;
}

.footer-text span {
	font-family: 'Nunito';
	font-weight: 800;
	font-size: 16px;
	color: #fff;
}

.footer-text p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #515162;
}

.footer-socials {
	display: flex;
	align-items: center;
}

.footer-socials p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 18px;
	color: #515162;
	margin-right: 25px;
}

.footer-socials-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-socials-container a svg path {
	transition: .2s ease-in-out;
}

.footer-socials-container a:hover svg path {
	fill: #fff;
}

.footer-mid {
	width: 100%;
	max-width: 1860px;
	display: flex;
	padding: 36px 0px 36px 55px;
	background: linear-gradient(90deg, #181820 0%, #131319 98.41%);
	border-radius: 25px;
	margin: 80px 0px 70px;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 10;
}

.footer-mid-container {
	display: flex;
	gap: 30px;
}

.footer-block-information span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 35px;
	line-height: 40px;
	color: #fff;
}

.footer-block-information p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 18px;
	color: #515162;
}

.footer-block {
	display: flex;
	align-items: center;
	gap: 25px;
}

.footer-down {
	position: relative;
	display: flex;
	gap: 100px;
	z-index: 20;
}

.footer-сooperation {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-сoop {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background-color: #FFFFFF0D;
	border-radius: 10px;

	border: none;
	width: 260px;

	font-family: 'Nunito';
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	gap: 15px;
	transition: .2s ease;
}

.footer-сoop:hover{
	background-color: #FF4C00;
	cursor: pointer;
}

.footer-gmail {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	background-color: transparent;
	border-radius: 10px;
  border: 1px dotted #FFFFFF1A;
	width: 316px;

	font-family: 'Nunito';
	font-weight: 600;
	font-size: 18px;
	color: #515162;
	gap: 15px;
	transition: .2s ease-in-out;
}

.footer-gmail svg path {
	transition: .2s ease-in-out;
}

.footer-gmail p {
	transition: .2s ease-in-out;
}

.footer-gmail:hover {
	background-color: #FF4C00;
	cursor: pointer;
}

.footer-gmail:hover p {
	color: #fff;
}

.footer-gmail:hover svg path {
	fill: #fff;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #515162;
	transition: .2s ease-in-out;
	max-width: 400px;
}

.footer-links a:hover {
	color: #fff;
}

/* Footer end */

/* Main Page User */
.main-page-user {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin: 40px 0px 80px 0px;
	padding: 0px 30px 0px 30px;
}

.main-page-user .main-navigation {
	display: flex;
	align-items: center;
	position: relative;
	margin: 30px 0px 60px 0px;
}

.back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #FFFFFF0D;
	border-radius: 10px;
	position: relative;
	transition: .3s ease;
	margin-right: 30px;
}

.back::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.back:hover {
	background-color: #FF4C01;
}

.main-page-user .main-container {
	display: flex;
	width: 100%;
	max-width: 1340px;
}

.account {
	display: flex;
	align-items: center;
	width: 340px;
	height: 139px;
	background-color: #1F1F25;
	border-radius: 10px;
	margin-bottom: 20px;
	padding: 0px 0px 0px 30px;
}

.account img {
	width: 60px;
	height: 60px;
	margin-right: 20px;
	border-radius: 50%;
}

.account-id {
	display: flex;
	align-items: center;
}

.account-id p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #6F6F82;
	margin-right: 5px;
}

.account-id span {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #6F6F82;
	margin-right: 10px;
}

.copy {
	border: none;
	background-color: transparent;
	background-image: url(/assets/image/copy.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 16px;
	height: 18px;
	transition: .3s ease;
}

.copy:hover {
	background-image: url(/assets/image/copyHover.png);
	cursor: pointer;
}

.main-page-user h3 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 5px;
}

.personal-button {
	width: 340px;
	height: 50px;
	background-color: #1F1F25;
	padding: 0px 30px 0px 30px;
	text-align: left;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
	color: #6F6F82;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	stroke: #6F6F82;
	margin-bottom: 10px;
	text-decoration: none;
}

.personal-button:hover {
	cursor: pointer;
 }

.personal-button.active {
	background-color: #FF4C01;
	color: #fff;
	stroke: #fff;
}

.personal-button.active svg {
  transform: rotate(44deg);
	transition: transform 0.3s ease;
}


.personal-button svg {
	transition: transform 0.3s ease;
}

.personal-setting {
	display: flex;
}

.personal-container {
	margin: 0px 20px 0px 0px;
}

.personal-block {
	width: 100%;
	overflow: hidden;
}

.persinal-case-container {
	display: flex;
	justify-content: center;
}

.personal-content {
	position: relative;
	z-index: 10;
	display: none;
	background-color: #1F1F25;
	/* height: 510px; */
	border-radius: 10px;
	padding: 30px 20px;
	overflow: hidden;
	width: 100%;
	max-width: 980px;
}

h5 {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #6F6F82;
	text-align: center;
	margin: 40px 0px 60px 0px;
}

.personal-mobile-content {
	display: none;
	width: 100%;
	background-color: #1F1F25;
	border-radius: 10px;
	position: relative; 
	margin-bottom: 10px;
	padding: 30px 0px 30px 0px;
}

.personal-mobile-button {
	width: 100%;
	height: 50px;
	background-color: #1F1F25;
	padding: 0px 35px 0px 28px;
	text-align: left;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	color: #6F6F82;
	border: none;
	border-radius: 10px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	stroke: #6F6F82;
}

.personal-mobile-button:hover {
	cursor: pointer;
}

.personal-mobile-button.active {
	background-color: #FF4C01;
	color: #fff;
	stroke: #fff;
}

.personal-mobile-button.active svg {
  transform: rotate(44deg);
	transition: transform 0.3s ease;
}

.personal-mobile-button svg {
	transition: transform 0.3s ease;
}

.mobile-case {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.mobile {
	display: none;
	width: 100%;
}
/* Main Page Case */
.main-page-case {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin: 40px 0px 80px 0px;
	padding: 0px 30px 0px 30px;
}

.main-page-case .main-navigation {
	width: 100%;
	max-width: 1340px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin: 30px 0px 60px 0px;
}

.main-page-case .navigation-container {
	display: flex;
	align-items: center;
}

h2 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 36px;
	line-height: 32px;
	color: #fff;
	text-align: center;
}

.main-page-case h3 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 5px;
}

.promocode {
	height: 40px;
	padding: 0px 16px 0px 16px;
	display: flex;
	align-items: center;
	background-color: #FFFFFF0D;
	border: none;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 7000;
	font-size: 16px;
	color: #fff;
	transition: .3s ease;
	position: relative;
}

.promocode::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.promocode:hover {
	background-color: #FF4C00;
	cursor: pointer;
}

.promocode svg {
	margin-right: 10px;
}

.main-open {
	background-color: #15151D;
	width: 100%;
	max-width: 1340px;
	padding: 45px;
	padding-bottom: 2px;
	border-radius: 10px;
}

.open {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.quantity {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	width: 56px;
	height: 30px;
	background-color: #1F1F2B;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	margin-bottom: -18px;
	position: relative;
	z-index: 2;
}

.open img {
	width: 330px;
	position: relative;
	z-index: 1;
	margin-bottom: 27px;
}

.open-container {
	display: flex;
	align-items: center;
	margin: 20px 0px 0px 0px;
}
.open-container a {
	color:#FF4C00;
}

.open svg:first-child {
	margin-right: 10px;
	width: 30px;
	height: 30px;
}

.open-block {
	display: flex;
	align-items: center;
}

.open .open-block p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	margin: 0px 10px 1.5px 0px;
}

.open span {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}

.open p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
}

.alternate-container {
	background-color: #15151D;
	width: 100%;
	max-width: 1340px;
	border-radius: 10px;
	overflow: hidden;
}

.alternate-block {
	width: 100%;
	max-width: 1000px;
	display: flex;
	align-items: center;
}

.item-open {
	min-width: 220px;
}

.buy-x {
	display: flex;
	align-items: center;
}

.buy-x p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
}

.buy-x-container {
	display: flex;
	text-align: center;
	margin-left: 10px;
	border-radius: 10px;
	gap: 5px;
}

.main-page-case .main-block {
	width: 100%;
	max-width: 1340px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}

.buy-x-container button {
	width: 40px;
	height: 40px;
	border: none;
	position: relative;
	background-color: #FFFFFF0D;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
	color: #fff;
	border-radius: 10px;
	transition: .4s ease;
}

.buy-x-container button:hover, .buy-x-container button.active {
	background-color: #FF4C00;
	cursor: pointer;
}
.buy-x-container button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.balance-up {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 9px 50px;
	background-color: #FF4C00;
	border: none;
	border-radius: 3px;
	clip-path: polygon(3% 0%, 100% 0%, 100% 80%, 97% 100%, 0% 100%, 0% 20%);
	position: relative;
	transition: .4s ease;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.balance-up:hover {
	background-color: #FF611D;
	cursor: pointer;
}

.balance-up p {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.balance-up svg {
	margin-left: 3px;
	margin-top: -2px;
}

.open-fast {
	height: 40px;
	padding: 0px 30px 0px 30px;
	background-color: #1F1F2B;
	border: none;
	border-radius: 3px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #545461;
	clip-path: polygon(3% 0%, 100% 0%, 100% 80%, 97% 100%, 0% 100%, 0% 20%);
	transition: .4s ease;
}

.open-fast:hover {
	cursor: pointer;
	background-color: #FF4C00;
	color: #fff;
}

/* Section Page User */
.section-page-case {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding: 0px 30px 0px 30px;
}

.items{
	width: 100%;
	max-width: 1340px;
	margin: 18px 0px 10px 0px;
}

.items-container {
	width: 100%;
	max-width: 1340px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 10px;
	margin-bottom: 15px;
	padding: 10px;
}

.item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 220px;
	height: 150px;
	border-radius: 10px;
	padding: 0px 15px 15px 15px;
	transition: all .3s ease;
	position: relative;
}

.item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.item img {
	position: absolute;
	width: 176px;
	top: 40%;
	margin: 0 auto;
}

.personal-content .item img {
	position: absolute;
	width: 116px;
	top: 30%;
	margin: 0 auto;
}

.item-gun {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	margin-top: 90px;
}

.item-line {
	width: 110px;
	height: 5px;
	margin: 0px auto;
	border-radius: 0px 0px 4.5px 4.5px;
	position: relative;
	top: -3px;
}

.item-information {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 12px;
	color: #fff;
}

.gun-money {
	display: flex;
	align-items: center;
	font-size: 11px;
}
.gun-money svg {
	margin-left:4px;
	margin-top:-1px;
}
/* Red */
.item-red {
	background: linear-gradient(180deg, rgba(255, 0, 46, 0.22) 0%, rgba(255, 0, 46, 0) 115.71%);
	transition: .3s ease;
}

.item-red .item-line {
	background-color: #FF002E;
	box-shadow: 0px 4px 14.9px 0px #FF002EA1;
	transition: .3s ease;
}

.item-red .item-gun {
	color: #A45A5A;
	transition: .3s ease;
}

.item-red:hover {
	background: linear-gradient(180deg, #FF002E 0%, #FF002E 115.71%);
}

.item-red:hover .item-line{
	background-color: #fff;
	box-shadow: 0px 4px 14.9px 0px #FF002EA1;
}

.item-red:hover .item-gun {
	color: #fff;
}
/* Yellow */
.item-yellow {
	background: linear-gradient(180deg, rgba(255, 229, 0, 0.22) 0%, rgba(255, 229, 0, 0) 115.71%);
	transition: .3s ease;
}

.item-yellow .item-line {
	background-color: #FFE500;
	box-shadow: 0px 4px 14.9px 0px #FFE500A1;
	transition: .3s ease;
}

.item-yellow .item-gun {
	color: #A49D5A;
	transition: .3s ease;
}

.item-yellow:hover {
	background: linear-gradient(180deg, #FFE500 0%, #FFE500 115.71%);
}

.item-yellow:hover .item-line{
	background-color: #fff;
	box-shadow: 0px 4px 14.9px 0px #FFE500A1;
}

.item-yellow:hover .item-gun {
	color: #fff;
}

/* Purple */
.item-purple {
	background: linear-gradient(180deg, rgba(112, 0, 255, 0.22) 0%, rgba(112, 0, 255, 0) 115.71%);
	transition: .3s ease;
}

.item-purple .item-line {
	background: #7000FF;
	box-shadow: 0px 4px 14.9px 0px #7000FFA1;
	transition: .3s ease;
}

.item-purple .item-gun {
	color: #785AA4;
	transition: .3s ease;
}

.item-purple:hover {
	background: linear-gradient(180deg, #7000FF 0%, #7000FF 115.71%);
}

.item-purple:hover .item-line{
	background-color: #fff;
	box-shadow: 0px 4px 14.9px 0px #7000FFA1;
}

.item-purple:hover .item-gun {
	color: #fff;
}
/* Green */
.item-green {
	background: linear-gradient(180deg, rgba(5, 255, 0, 0.22) 0%, rgba(5, 255, 0, 0) 115.71%);
	transition: .3s ease;
}

.item-green .item-line {
	background: #05FF00;
	box-shadow: 0px 4px 14.9px 0px #05FF00A1;
	transition: .3s ease;
}

.item-green .item-gun {
	color: #72A45A;
	transition: .3s ease;
}

.item-green:hover {
	background: linear-gradient(180deg, #05FF00 0%, #05FF00 115.71%);
}

.item-green:hover .item-line{
	background-color: #fff;
	box-shadow: 0px 4px 14.9px 0px #05FF00A1;
}

.item-green:hover .item-gun {
	color: #fff;
}

.recomand {
	margin-bottom: 100px;
}
/* Main Page Balance */
.main-page-balance {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin: 40px 0px 80px 0px;
	padding: 0px 30px 0px 30px;
}

.main-page-balance .main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-page-balance .navigation-container {
	display: flex;
	align-items: center;
}

.main-page-balance .main-block p {
	font-family: 'Nunito';
	font-size: 16px;
	color: #6F6F82;
	text-align: center;
	margin: 25px 0px 100px;
	width: 400px;
}

.main-page-balance .main-container {
	width: 100%;
	max-width: 1340px;
	border-radius: 10px;
	background-color: #1F1F25;
	padding: 20px 0px 0px 0px;
}

.main-page-balance .main-navigation {
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: center;
}

.main-replenish {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	height: 50px;
	width: 300px;
	padding: 15px 20px;
	background-color: #FFFFFF0D;
	border-radius: 10px 0px 0px 10px;
	border: none;
	transition: .4s ease;
}

.main-replenish p {
  font-family: ''Nunito'';
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0;
  transition: .4s ease;
}

.main-replenish svg {
  margin-right: 10px;
  opacity: 0;
  transform: translateX(-40px);
  transition: .4s ease;
}

.main-replenish:hover, .main-replenish.active {
  background-color: #FF4C00;
  cursor: pointer;
}

.main-replenish:hover svg, .main-replenish.active svg {
  opacity: 1;
  transform: translateX(0);
}

.main-replenish:hover p, .main-replenish.active p {
	left: 13px;
}

.main-withdraw {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 50px;
  width: 300px;
  padding: 15px 20px;
  background-color: #FFFFFF0D;
  border-radius: 0px 10px 10px 0px;
  border: none;
  transition: .4s ease;
}


.main-withdraw p {
  font-family: 'Nunito';
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0;
  transition: .4s ease;
}


.main-withdraw svg {
  margin-right: 10px;
  opacity: 0;
  transform: translateX(-40px);
  transition: .4s ease;
}


.main-withdraw:hover, .main-withdraw.active {
  background-color: #FF4C00;
  cursor: pointer;
}


.main-withdraw:hover svg, .main-withdraw.active svg {
  opacity: 1;
  transform: translateX(0);
}

.main-withdraw:hover p, .main-withdraw.active p{
	left: 13px;
}

.main-page-balance .main-information {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	gap: 20px;
	padding: 20px;
}

.main-left {
	width: 100%;
	max-width: 640px;
	background-color: #FFFFFF0D;
	border-radius: 10px;
	position: relative;
	padding: 10px;
}

h6 {
	font-family: 'Nunito';
	font-weight: 700;
	color: #fff;
	font-size: 14px;
	position: relative;
}

.main-right {
	width: 100%;
	max-width: 640px;
	background-color: #FFFFFF0D;
	border-radius: 10px;
	position: relative;
	padding: 10px 10px 0px 10px;
}

.main-page-balance h4 {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 22px;
	line-height: 20px;
	color: #fff;
	text-align: left;
}

.option-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.option-information p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	text-align: left;
}

.option-navigation {
	display: flex;
	align-items: center;
	background-color: #FFFFFF0D;
	margin: 20px 0px 20px 0px;
	border-radius: 10px;
	width: 100%;
	max-width: 742px;
}

.option-button {
	background-color: #ffffff00;
	transition: .3s ease;
	border: none;
	position: relative;
}

.option-button:hover {
	background-color: #FF550D;
	cursor: pointer;
}

.option-button.active {
	background-color: #FF611D;
}

.all {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 185px;
	height: 50px;
	border: none;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	transition: .3s ease;
}

.card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 185px;
	height: 50px;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	border-radius: 10px;
}

.phone {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 185px;
	height: 50px;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	border-radius: 10px;
	color: #fff;
}

.skin {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 185px;
	height: 50px;
	border: none;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.icon-button {
	display: flex;
	align-items: center;
	width: 200px;
	padding: 10px 0px 10px 10px;
	background-color: #FFFFFF0D;
	border-radius: 10px;
	border: none;
	transition: .3s ease;
	position: relative;
}

.icon-button img {
	height: 40px;
	border-radius: 9px;
}

.icon-text {
	text-align: left;
	margin-left: 10px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}

.icon-block p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 12px;
	color: #6F6F82;
	transition: .3s ease;
}

.icon-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.icon-button:hover {
	background-color: #FF550D;
	cursor: pointer;
 } 

.icon-button:hover p {
	color: #fff;
}

.icon-button.active{
	background-color: #FF611D;
}

.icon-button.active p{
	color: #fff;
}

.icon-selected {
	display: flex;
	align-items: center;
	display: flex;
	justify-content: space-between;
	background-color: #FFFFFF0D;
	padding: 10px;
	border-radius: 10px;
	margin: 20px 0px 20px 0px;
	position: relative;
	text-align: left;
}

.icon-selected::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.icon-selected img {
	width: 50px;
	height: 50px;
	margin-right: 20px;
	border-radius: 10px;
}

.selected-container {
	display: flex;
	align-items: center;
	max-width: 68%;
}

.selected-inforamtion p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-top: 5px;
}

.selected-block p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
}


.payment-information {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.payment-information p {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	margin-top: 7px;
}

.payment-block {
	width: 100%;
	display: flex;
}

.payment-block input {
	width: 100%;
	height: 45px;
	border-radius: 10px;
	background-color: #FFFFFF0D;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 20px;
	color: #6F6F82;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
}

.payment-block input::placeholder {
	font-family: 'Nunito';
	font-weight: 700;
	color: #6F6F82;
	transition: color 0.3s ease;
}

.payment-block img {
	width: 8px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: left 0.3s ease;
	height: 12px;
	margin-top: 2px;
}

.payment-block input:focus {
	outline: none;
}


.payment-container {
 width: 100%;
 max-width: 742px;
 background-color: #FFFFFF0D;
 height: 40px;
 border-radius: 10px;
 display: flex;
 margin: 15px 0px 0px 0px;
}

.payment-button {
	background-color: #ffffff00;
	height: 40px;
	border-radius: 10px;
	border: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	transition: .3s ease;
	position: relative;
}

.payment-button.active{
	background-color: #FF611D;
	transition: .3s ease;
}

.payment-button.active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.payment-button:hover {
	cursor: pointer;
	background-color: #FF550D;
}

.payment-button svg {
	margin: 0px 0px 0px 2px;
}

.payment-code p {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin: 30px 0px 10px 0px;
}

.payment-code input {
	width: 100%;
	max-width: 742px;
	height: 40px;
	border-radius: 10px;
	background-color: #FFFFFF0D;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #6F6F82;
	text-align: center;
	position: relative;
	transition:  0.3s ease;
	margin: 0 auto;
}

.payment-code input::placeholder {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #6F6F82;
	opacity: 1;
	transition:  0.3s ease;
}

.payment-code input:focus {
	outline: none;
}

.payment-code input:focus::placeholder,
.payment-code input:hover::placeholder {
	transform: translateX(100px);
	opacity: 0;
}

.pay {
	width: 100%;
	height: 60px;
	background-color: #FF550D;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin-bottom: 10px;
	transition: .3s ease;
	position: relative;
	z-index: 2;
}

.pay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.pay:hover {
	cursor: pointer;
	background-color: #FF611D;
}

.currency-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 70px;
	height: 40px;
	background-color: #FFFFFF0D;
	padding: 0px 11px 0px 13px;
	border-radius: 5px 5px 0px 5px;
}

.currency-container {
	position: relative;
	display: inline-block;
}

.currency-button {
	background-color: #FFFFFF0D;
	color: white;
	width: 20px;
	height: 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	transition: .3s ease;
	position: relative;
}

.currency-button.active {
	background-color: #FF550D;
}

.currency-button:hover {
	background-color: #FF550D;
}

.currency-arrow {
	transition: transform 0.3s;
}

.currency-button.active .currency-arrow {
	transform: rotate(-180deg);
}

.currency-menu {
	position: absolute;
	background-color: #2B2B31;
	border-radius: 0px 0px 5px 5px;
	width: 40px;
	height: 79px;
	z-index: 1;
	top: 100%;
	left: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	max-height: 0;
	margin-left: 30px;
	padding: 0px 0px 0px 7px;
}

.currency-menu.currency-show {
	display: block;
	max-height: 79px;
}

.currency-option {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	cursor: pointer;
	width: 26px;
	height: 26px;
	border-radius: 5px;
	background-color: #FFFFFF0D;
	transition: .3s ease;
	margin-top: 9px;
}

.currency-option:hover {
	background-color: #FF550D;
}

.currency-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}





.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	z-index: 8;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	width: 100%;
	max-width: 600px;
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	padding-bottom: 30px;
	background-color: #131319E8;
	border-radius: 20px;
	box-shadow: 0px 0px 75px;
}

.modal::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
}

.close {
	background-image: url(/assets/image/close.png);
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	left: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #272732;
	border: none;
	margin-bottom: 20px;
	transition: transform 0.5s ease-in-out;
}

.close:hover {
	cursor: pointer;
	 transform: rotate(360deg);
}

.modal .title {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
	text-align: center;
	width: 100%;
	max-width: 520px;
	position: relative;
}

.modal input {
	width: 100%;
	max-width: 478px;
	padding: 15px 10px;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	background-color: #131319E8;
	border: none;
	margin: 20px 0px 0px;
	text-align: center;
	position: relative;
}

.modal input::placeholder {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
}

.modal input:focus {
	outline: none;
}

.modal ol {
	color:#fff;
	font-family: Nunito;
	font-weight: 400;
	margin: 20px;
	max-width: 400px;
	margin-top: 40px;
}
.modal ol li {
	border-bottom: 1px solid #565656;
	padding-bottom: 10px;
	padding-top: 10px;
}
.modal ol li b {
	padding-bottom: 10px;
	display: block;
	font-weight: 700;
	font-size: 18px;
}
.modal ol li:last-child {
	border-bottom: 0;
}
.next {
	padding: 15px 30px;
	background-color: #FF4C01;
	border-radius: 10px;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color:	#fff;
	transition: .3s ease;
	position: relative;
	margin-top: 20px;
}

.next:hover {
	background-color: #FF611D;
	cursor: pointer;
}

.modal .subtitle {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	margin: 30px 0px 20px;
	position: relative;
}

.socials {
	display: flex;
	align-items: center;
	gap: 15px;
}

.socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #141319;
	text-decoration: none;
	border-radius: 5px;
	transition: .3s ease;
	position: relative;
}

.socials a:hover {
	background-color: #fff;
}

.password {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	width: 100%;
	max-width: 600px;
	height: 420px;
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	background-color: #131319E8;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0px 0px 75px #ff4c004a;
}

.password::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
}

.password .title {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
	text-align: center;
	width: 100%;
	max-width: 563px;
	position: relative;
}

.password .subtitle {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	margin: 30px 0px 20px;
	position: relative;
}

.password input {
	width: 100%;
	max-width: 478px;
	height: 50px;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	background-color: #131319E8;
	border: none;
	margin: 20px 0px 30px;
	text-align: center;
	position: relative;
}

.password input::placeholder {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
}

.password input:focus {
	outline: none;
}

.thanks {
	width: 100%;
	max-width: 600px;
	height: 320px;
	background-color: #131319E8;
	border-radius: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	position: relative;
}

.thanks::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
}

.thanks .title {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
	text-align: center;
	width: 100%;
	max-width: 563px;
	position: relative;
}

.thanks .subtitle {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	margin: 30px 0px 50px;
	width: 100%;
	max-width: 500px;
	text-align: center;
	position: relative;
}

.activation {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 300px;
	height: 70px;
	padding: 29px 30px 29px 20px;
	background-color: #FF4C01;
	border-radius: 0px 5px 5px 0px;
}

.activation svg {
	width: 40px;
	height: 20px;
}

.activation p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #fff;
	margin-left: 20px;
}

/* Update upgrade */

.profile-login {
	display: none;
}

.upgrade {
	margin: 100px 0px 57px 0px;
	padding: 0px 30px 0px 30px;
}

.upgrade-nav {
	display: flex;
	justify-content: center;
}

.upgrade-nav-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1860px;
}
@media (max-width:1000px) {
	.upgrade-nav-container {
		padding-left: 10px;
	}
}
.upgrade-nav-block {
	display: flex;
	align-items: center;
}

.upgrade-nav p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
}

.upgrade-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.upgrade-main {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-wrap: wrap
	
}

.upgrade-main img {
	margin: 0px -30px 0px -30px;
	width: 550px;
}

.progress-circle {
	position: relative;
	width: 165px;
	height: 165px;
	background: conic-gradient(
			from 180deg at 50% 50%,
			#24FF00 0deg,
			#FFF500 144.42deg,
			#FF0000 277.77deg,
			#24FF00 360deg
	);
	border: 1px solid #3C3C3C;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 50px 0px 50px;
}

.progress-inner {
	position: relative;
	width: 140px;
	height: 140px;
	background-color: #131319;
	border: 1px solid #3C3C3C;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.progress-text {
	position: absolute;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 38px;
	line-height: 47px;
	color: #fff;
	z-index: 2;
}

.progress-line {
	position: absolute;
	width: 2px;
	height: 60px; 
	background: linear-gradient(to bottom, #fff 50%, #131319 50%);
	transform-origin: 0% 116%;
	top: 0;
	left: 50%;
	z-index: 1;
}

.upgrade-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: -58px;
}

.upgrade-chance {
	display: flex;
	align-items: center;
	min-width: 190px;
}

.upgrade-chance p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 16px;
	color: #6F6F82;
	margin-right: 10px;
}

.upgrade-chance span {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.upgrade-ratio {
	display: flex;
	align-items: center;
	min-width: 190px;
}

.upgrade-ratio p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 16px;
	color: #6F6F82;
	margin-right: 10px;
}

.upgrade-ratio span {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.upgrade-button-item {
	background-image: url(/assets/image/upgrade-background.svg);
	background-size: cover;
	width: 100%;
	max-width: 246px;
	height: 250px;
	background-color: transparent;
	border: none;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
}

.upgrade-button-item {
	cursor: pointer;
}

.upgrade-button-receive {
	background-image: url(/assets/image/upgrade-background.svg);
	background-size: cover;
	width: 100%;
	max-width: 246px;
	height: 250px;
	background-color: transparent;
	border: none;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	color: #fff;
}

.upgrade-button-receive {
	cursor: pointer;
}

.upgrade-bottom {
	display: flex;
	justify-content: center;
}

.start-upgrade {
	width: 100%;
	max-width: 308px;
	height: 53px;
	background-color: #FF4C00;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	border: none;
	margin: 20px 0px 70px 0px;
	transition: .3s ease;
	clip-path: polygon(4% 0%, 100% 0%, 100% 80%, 95% 100%, 0% 100%, 0% 25%);
}

.start-upgrade:hover {
	box-shadow: 0px 10px 141.7px 0px #FF4C0087;
	background-color: #FF611D;
	cursor: pointer;
}

.upgrade-block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}


.upgrade-inventory {
	width: 100%;
	max-width: 920px;
	background-color: #1F1F25;
	border-radius: 20px;
}

.upgrade-receive {
	width: 100%;
	max-width: 920px;
	background-color: #1F1F25;
	border-radius: 20px;
}

.upgrade-inventory-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0px 15px 0px;
	border-bottom: 1px solid #45454F;
	margin: 0px 30px 20px 20px;
	height: 64px;
}

.upgrade-inventory-navigation p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
	color: #fff;
}

.upgrade-inventory-block p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-right: 10px;
	margin-top: 0px;
}

.upgrade-inventory-block span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
}

.upgrade-inventory-block {
	display: flex;
	align-items: center;
}

.upgrade-inventory-block2 {
	display: none;
	align-items: center;
}

.upgrade-inventory-block2 p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-right: 10px;
	margin-top: 5px;
}

.upgrade-inventory-block2 span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
}

.upgrade-card-container {
	width: calc(100% + -5px);
	height: 560px;
	overflow-y: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	position: relative;
	box-sizing: content-box;
	margin-bottom: 25px;
}
.upgrade-card-container .error-auth {
	width: calc(100% - 40px);
}
.upgrade-card-container::-webkit-scrollbar {
	width: 10px;
}

.upgrade-card-container::-webkit-scrollbar-track {
	background: #45454F;
	border-radius: 10px; 
}

.upgrade-card-container::-webkit-scrollbar-thumb {
	background-color: #FF4C00;
	border-radius: 10px; 
}

.upgrade-mobile {
	display: none;
	padding: 0px 5px 0px 5px;
}

.upgrade-mobile p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
	z-index: 2;
	position: relative;
	text-align: left;
	margin-left: 10px;
}

.upgrade-button-item-mobile {
	width: 100%;
	max-width: 1050px;
	height: 113px;
	border: none;
	background-color: #1F1F25;
	position: relative;
	border-radius: 10px;
	margin-bottom: 10px;
}

.upgrade-button-item-mobile:hover {
	cursor: pointer;
}

.upgrade-button-item-mobile img {
	width: 365px;
	height: 113px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.upgrade-button-receive-mobile {
	width: 100%;
	max-width: 1050px;
	height: 113px;
	border: none;
	background-color: #1F1F25;
	position: relative;
	border-radius: 10px;
	margin-bottom: 30px;
}

.upgrade-button-receive-mobile:hover {
	cursor: pointer;
}

.upgrade-button-receive-mobile img {
	width: 365px;
	height: 113px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.upgrade-inventory-price {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 125px;
	padding: 13px 11px 12px 11px;
	background-color: #31313A;
	border-radius: 5px;
}

.upgrade-inventory-price p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin: 0px 5px 0px 0px;
}


.upgrade-inventory-price span {
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 12px;
	color: #fff;
	margin: 0px 5px 0px 5px;
}

.upgrade-inventory-search {
	width: 100%;
	max-width: 170px;
	position: relative;
	border: none;
	background-color: #31313A;
	padding: 13px 11px 12px 11px;
	border-radius: 5px;
}

.upgrade-inventory-search input {
	width: 100%;
	max-width: 170px;
	border: none;
	background-color: #31313A;
	padding: 0px 15px 0px 0px;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
}

.upgrade-inventory-search input::placeholder {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
}

.upgrade-inventory-search input:focus {
	outline: none;
}

.upgrade-inventory-search button {
	position: absolute;
	border: none;
	background-color: transparent;
	top: 30%;
	margin-left: -10px;
}

.upgrade-inventory-search button:hover {
	cursor: pointer;
}

.upgrade-inventory-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.upgrade-drop {
	position: relative;
	overflow: hidden;
	max-width: 208px;
	min-width: 208px;
	height: 126px;
	border-radius: 10px;
	transition: background-color .1s ease;
}

.upgrade-drop:hover {
	cursor: pointer;
}

.upgrade-drop .subtitle {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	letter-spacing: -0.8px;
	text-wrap: nowrap;
}

.upgrade-drop .line {
	z-index: 2;
	width: 74px;
	height: 5px;
	left: 0;
	right: 0;
	border-radius: 0px 0px 4.5px 4.5px;
	margin: 0 auto;
	transition: background-color 0.1s ease;
}

.upgrade-drop.selected .line {
	background-color: #fff;
}

.upgrade-drop .title {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 12px;
	margin-bottom: 0px;
	text-wrap: nowrap;
}

.upgrade-drop.selected .title {
	color: #fff;
}


.drop-content {
	display: flex;
	width: calc(100% - 18px);
	margin: 0 auto;
}

.drop-price {
	text-align: right;
	width: 50%;
	padding-top: 16px;
	line-height: 0.1;
}

.drop-price span {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
}

.upgrade-drop img {
	top: 10px;
	left: 10px;
	max-width: 200px;
	max-height: 80px;
	margin: 0 auto;
	display: block;
}

.upgrade-drop.selected {
	background: linear-gradient(180deg, #7000FF 0%, #7000FF 115.71%);
}

/* Update user */

.user {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
	padding: 0px 30px 0px 30px;
}

.user-nav {
	width: 100%;
	max-width: 1860px;
}

.user-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
}

.user-nav-block {
	display: flex;
	align-items: center;
}

.user-nav p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #fff;
}

.user-copy {
	display: flex;
	align-items: center;
}

.user-copy p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-right: 10px;
}

.user-content {
	width: 100%;
	max-width: 1860px;
}

.user-information {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 1860px;
	margin: 40px 0px 20px 0px;
}

.user-information-level {
	width: 100%;
	height: 150px;
	background-color: #1F1F25;
	border-radius: 10px;
	padding: 30px;
}

.user-information-progress {
  height: 30px; 
  background-color: #2C2C34; 
  border-radius: 15px; 
	margin: 10px 0px 20px 0px;
	position: relative;
}

.progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.progress {
  height: 100%;
  width: 0; 
  background: linear-gradient(90deg, #FFB800, #FF7A00, #FFB800, #FFB800);
  background-size: 400% 400%;
  border-radius: 15px; 
  box-shadow: 0px 0px 26.7px 0px #FFDC786B;
  animation: gradientAnimation 5s linear infinite, fillProgress 5s linear forwards;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.progress-arrow {
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translateX(-50%) translateY(-10px);
  transition: left 2s ease-in-out;
  z-index: 10;
}

.user-information-container {
	display: flex;
	align-items: center;
	position: relative;
}

.user-information-container p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-right: 10px;
}

.user-information-container span {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
}

.user-information-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.user-information-block2 {
	display: flex;
	align-items: center;
}

.user-information-block span {
	font-family: 'Nunito';
	font-weight:700;
	font-size: 14px;
	color: #42424C;
}

.user-information-block2 p {
	font-family: 'Nunito';
	font-weight:700;
	font-size: 14px;
	color: #fff;
	margin-right: 10px;
}

.user-information-block2 span {
	font-family: 'Nunito';
	font-weight:700;
	font-size: 14px;
	color: #fff;
}

.user-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	max-width: 798px;
}



.user-drop {
	position: relative;
	width: 100%;
	max-width: 389px;
	height: 150px;
	overflow: hidden;	
	border-radius: 10px;
	background: linear-gradient(123deg, rgba(31,31,37,1) 0%, rgb(61 55 30) 100%)
}

.user-drop::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/assets/image/user-drop.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: transform 0.3s ease;
	transform-origin: center;
	z-index: 1;
}

.user-drop:hover::before {
	transform: scale(1.1);
	clip-path: inset(0 0 0 0);
}

.user-case {
	position: relative;
	width: 100%;
	max-width: 389px;
	height: 150px;
	overflow: hidden;	
	border-radius: 10px;
	background: linear-gradient(123deg, rgba(31,31,37,1) 0%, rgb(61 55 30) 100%)
}
.user-case *, .user-drop * {
	z-index: 2;
	position: relative;
}

.user-case::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/assets/image/user-case.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: right;
	transition: transform 0.3s ease;
	transform-origin: center;
	z-index: 1;
}

.user-case:hover::before {
	transform: scale(1.1);
	clip-path: inset(0 0 0 0);
}

.user-drop p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin: 30px 0px 65px 30px;
}

.user-drop span {
	font-family: 'Nunito';
	font-weight:700;
	font-size: 14px;
	color: #fff;
	margin: 0px 0px 0px 15px;
}

.user-case  {
	display: flex;
	flex-direction: column;
}

.user-case p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin: 30px 0px 40px 30px;
}

.user-case .case-name {
	font-family: 'Nunito';
	font-weight:700;
	font-size: 14px;
	color: #fff;
	margin: 0px 0px 2px 15px;
}


.user-case .case-open {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin: 0px 0px 0px 15px;
}



.user-buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	max-width: 1860px;
	gap: 10px;
	margin-bottom: 60px;
}

.user-buttons button, .user-buttons>a {
	width: 100%;
	aspect-ratio: 300 / 150; 
	max-width: 300px; 
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	border: none;
	border-radius: 15px;
	position: relative;
}

.user-buttons button:hover, .user-buttons>a:hover {
	cursor: pointer;
}

.user-buttons button span, .user-buttons>a span {
  position: absolute; 
  z-index: 1; 
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 28px;
	line-height: 28px;
	color: #fff;
	top: 60%;
	left: 20px;
}

.user-buttons button p, .user-buttons>a p {
	position: absolute;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	left: 20px;
	top: 60%;
}

.user-buttons button::after, .user-buttons>a::after  {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75.19deg, #FF4C01 0%, rgba(255, 76, 1, 0) 100%);
  opacity: 0; 
  border-radius: 15px; 
  transition: opacity 0.3s linear; 
	z-index: 0;
}

.user-buttons button.active::after, .user-buttons>a.active {
  opacity: 1;
}

.user-profile {
	background-image: url(/assets/image/user-profile.png);
}

.user-inventory{
	background-image: url(/assets/image/user-inventory.png);
}

.user-history {
	background-image: url(/assets/image/user-history.png);
}

.user-pay {
	background-image: url(/assets/image/user-pay.png);
}

.user-conclusion {
	background-image: url(/assets/image/user-conclusion.png);
}

.user-logout {
	background-image: url(/assets/image/user-logout.png);
}

.user-ref {
	display: none;
}

.user-ref2 {
	display: none;
}

.text-block {
	display: none;
	width: 100%;
}

.text-block.active {
	display: block;
}

.text-blocks {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1860px;

}

.user-block-title {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 30px;
	line-height:30px;
	color: #fff;
	margin-bottom: 30px;
}

.user-profile-container {
	height: auto;
	background-color: #1F1F25;
	border-radius: 20px;
	padding: 30px;
	position: relative;
}

.user-profile-container::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.user-profile-information {
	display: flex;
	align-items: center;
	margin: 0 auto;
}

.user-profile-information img {
	width: 100px;
	height: 100px;
	border: 7px solid #2F2F3D;
	border-radius: 50%;
	margin-right: 20px;
}

.user-profile-info-block span {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	line-height: 20px;
	color: #fff;
}

.user-profile-info-block2 {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.user-profile-info-block2 p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-right: 5px;
}

.user-profile-info-block2 span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
}

.user-profile-inputs {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 20px 0px 20px 0px;
}

.user-profile-input-container {
	width: 100%;
}

.user-profile-input-container p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	margin-bottom: 5px;
}

.user-profile-input-container input {
	height: 40px;
	border-radius: 5px;
	background-color: #2B2B33;
	border: none;
	padding: 0px 10px 0px 10px;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
	width: 100%;
}

.user-profile-input-container input::placeholder {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
}

.user-profile-input-container input:focus {
	outline: none;
}

.user-profile-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.user-profile-navigation-container {
	display: flex;
	align-items: center;
	gap: 30PX;
}
.user-profile-navigation-container a:last-child {
	color:#6F6F82;
}

.profile-telegram {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0185FF;
	border: none;
	padding: 7px 14px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	gap: 9px;
	border-radius: 10px;
	transition: .3s linear;
	position: relative;
}

.profile-telegram::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.profile-telegram:hover {
	background-color: #539ADB;
	cursor: pointer;
}

.user-profile-navigation p {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #6F6F82;
}

.profile-save {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FF4C01;
	border: none;
	width: 250px;
	height: 40px;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	border-radius: 10px;
	transition: .3s linear;
	position: relative;
}

.profile-save::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.profile-save:hover {
	cursor: pointer;
	background-color: #FF611D;
}










.user-inventory-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.user-inventory-navigation-block {
	display: flex;
	align-items: center;
}

.user-inventory-navigation-container {
	display: flex;
	align-items: center;
}

.user-inventory-navigation-block2 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.user-inventory-navigation-block p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-right: 10px;
}

.user-inventory-navigation-block span {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
}

.user-inventory-navigation-block2 p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-right: 30px;
}

.user-inventory-navigation-block2 button {
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	background-color: #1F1F25;
	border: none;
	border-radius: 5px;
	padding: 8px 17px 8px 17px;
	transition: .3s linear;
}

.user-inventory-navigation-block2 button:hover {
	cursor: pointer;
	background-color: #FF611D;
}

.user-inventory-navigation-block2 button.active {
	background-color: #FF4C00;
}

.user-show {
	width: 150px;
	height: 40px;
	border: none;
	background-color: #FF4C00;
	border-radius: 5px;
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	margin-left: 60px;
	transition: .3s linear;
}

.user-show:hover {
	cursor: pointer;
	background-color: #FF611D;
}


.user-items {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px;
	background-color: #1F1F25;
	width: 100%;
	padding: 20px 5px 20px 5px;
	border-radius: 10px;
	height: auto;
}


.user-item {
	position: relative;
	overflow: hidden;
	max-width: 208px;
	min-width: 208px;
	height: 126px;
	border-radius: 10px;
}

.user-item:hover {
	cursor: pointer;
}

.user-item .subtitle {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	margin: 0px 0px 0px 15px;
}

.user-item .line {
	position: relative;
	z-index: 2;
	width: 74px;
	height: 5px;
	margin: 0px 0px 0px 67px;
	border-radius: 0px 0px 4.5px 4.5px;
}

.user-item .title {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 12px;
	margin: 81px 0px 0px 15px;
}

.user-item img {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 200px;
}

.user-show-mobile {
	height: 57px;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	background-color: #FF4C01;
	width: 100%;
	border: none;
	border-radius: 10px;
	position: relative;
	transition: .3s linear;
}

.user-show-mobile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.user-show-mobile:hover {
	cursor: pointer;
	background-color: #FF611D;
}

.user-mobile-show {
	padding: 0px 10px 0px 10px;
	margin: 30px 0px 50px 0px;
}


table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}
th, td {
padding: 15px 30px 15px 30px;
	text-align: left; 
	border: none; 
}
th {
	background-color: #1F1F25;
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
}

td {
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}

td img {
	width: 140px;
	position: relative;
	left: -20px;
}

td p {
	position: relative;
	left: 20px;
}

tbody tr {
	border-bottom: 1px solid #1F1F25;
}

td span {
	padding: 10px 24px 10px 24px;
	border-radius: 10px;
}

.order-pending {
	background-color: #1F1F25;
}

.order-rejected {
	background-color: #FF0909;
}

.order-executed {
	background-color: #1CFF08;
}


#pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
	gap: 5px;
}

#pagination button {
	width: 35px;
	height: 35px;
  background-color: #1F1F25;
  cursor: pointer;
	border: none;
	border-radius: 5px;
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

#pagination button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

#pagination .active {
  background-color: #FF550D;
}

#pagination .dots {
	width: 35px;
	height: 35px;
  background-color: #1F1F25;
  cursor: pointer;
	border: none;
	border-radius: 5px;
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}







.user-orders {
	padding: 0px 5px 0px 5px;
}

.user-order {
	position: relative;
	margin-bottom: 45px;
	display: none;
}

.order-position {
	padding: 10px 24px 10px 24px;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 600;
	font-size: 16px;
	color: #fff;
	position: absolute;
	right: 0px;
	top: -24px;
}

.user-order-container {
	width: 100%;
	background-color: #1F1F25;
	padding: 30px 10px 30px 10px;
	border-radius: 10px;
}

.user-order-block p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
	position: relative;
}

.user-order-block span {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	position: relative;
}

.user-order-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.order-pending2 {
	background-color: #131319;
	margin-right: 10px;
}

.order-executed2 {
	background-color: #1CFF08;
	margin-right: 10px;
}

.order-rejected2 {
	background-color: #FF0909;
	margin-right: 10px;
}

.user-order-block .dots {
	font-family: 'Bebas Neue Cyrillic';
	flex-grow: 1;
	border-bottom: 1px dotted #737373;
	margin: 0 10px;
}







.user-close-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 15px 0px 15px;
}

.close-button {
	display: flex;
	align-items: center;
	background-color: transparent;
	border: none;
	gap: 15px;
	margin: 30px 0px 50px 0px;
}

.close-button:hover {
	cursor: pointer;
}

.close-button span {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 16px;
	color: #515162;
}

.user-close-block {
	width: 40px;
	height: 40px;
	background-color: #FFFFFF0D;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease;
	position: relative;
}

.user-close-block::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.close-button:hover .user-close-block {
	background-color: #FF4C01;
}

@media (max-width: 1200px) {
	.footer-mid-container {
		display: flex;
		flex-direction: column;
	}

	.footer-up {
		gap: 30px;
	}
}

@media (max-width: 1400px) {
	.mobile-games {
		display: inline-block;
	}

	.games {
		display: none;
	}
}

@media (max-width: 1200px) {
	.replenish {
		padding-top: 9px!important;
	}
	.replenish p {
		color:#fff;
		display: inline;
		padding-right:10px;
	}
	.footer-mid  {
		display: flex;
		flex-direction: column;
	}

	.footer-decoration  {
		width: 447px;
	}

	.footer-down {
		display: flex;
		flex-direction: column;
		gap: 50px;
		padding: 0px 15px 0px 15px;
	}
}

@media (max-width: 1152px) {
	.no-scroll {
		overflow: hidden;
	}

	.header-navigation {
		display: none;
	}

	.header-drop {
		padding: 10px 0px 0px 0px;
	}
	.best-drop {
		margin-left:5px;
	}
	.header-mobile {
		display: flex;
	}

	.replenish {
		padding: 0px 30px 0px 30px;
		height: 57px;
	}

	.replenish p {
		font-size: 18px;
	}

	.games-button  {
		font-size: 16px;
	}

	.games-container a {
		font-size: 16px;
	}

	.back {
		display: none;
	}

	h1 {
		font-size: 40px;
		line-height: 40px;
		width: 212px;
		text-align: center;
	}

	h2 {
		font-size: 40px;
		line-height: 40px;
	}

	.main-page-index {
		padding: 0px 15px 0px 15px;
		margin-bottom: 100px;
	}

	.poster {
		padding: 295px 0px 0px 0px;
	}


	.poster p {
		font-size: 18px;
	}

	.show {
		padding: 15px 93px 15px 93px;
		font-size: 18px;
	}

	.section-page-index {
		padding: 0px 0px 0px 0px;
	}


	.news {
		display: none;
		margin-bottom: 30px;
	}

	.news-mobile {
		display: block;
	}

	.section-page-index h3 {
		font-size: 28px;
		line-height: 28px;
		text-align: center;
	}

	.news-mobile {
		padding: 0px 0px 0px 15px;
	}

	.news-mobile p  {
		font-size: 18px;
	}

	.news-mobile button {
		height: 57px;
		font-size: 20px;
	}

	.news-mobile p {
		margin: 10px 0px 30px 0px;
	}

	.cases {
		gap: 10px;
		margin: 30px 0px 50px 0px;
	}

	.all-case {
		gap: 10px;
		margin-bottom: 100px;
	}

	.case-container {
		width: 200px;
		height: 200px;
	}

	.case .case-container img {
		width: 200px;
		height: 200px;
	}

	.case:hover img {
		width: 200px;
		height: 200px;
	}

	.case-animation  {
		width: 50px;
		height: 50px;
	}

	footer {
		height: 233px;
		padding: 0px 0px 0px 15px;
	}

	.footer-line  {
		display: none;
	}

	.footer-links {
		display: none;
	}

	.footer-decoration {
		display: none;
	}

	.footer-decoration-mobile {
		display: block;
	}
	/* Main Page User */

	.main-page-user .main-navigation {
		margin: 0px 0px 70px 0px;
	}

	.account img {
		width: 99px;
		height: 99px;
	}

	.main-page-user h3 {
		font-size: 40px;
		margin-bottom: 10px;
	}

	.replenish {
		padding: 0px 30px 0px 30px;
		height: 57px;
	}

	.replenish p {
		font-size: 18px;
	}

	.games-button  {
		font-size: 16px;
	}

	.games-container a {
		font-size: 16px;
	}

	.main-page-user {
		padding: 0px 15px 0px 15px;
		margin-bottom: 40px;
	}

	.main-page-user .main-container {
		display: none;
	}

	.main-page-user .mobile {
		display: block;
	}

	.account {
		display: flex;
		align-items: center;
		flex-direction: column;
		flex-direction: column;
		width: 100%;
		height: 205px;
		padding: 0px;
	}

	.account img {
		position: relative;
		top: -25px;
		margin: 0px;
	}

	.account-id {
		margin-top: 5px;
	}

	.account-id p {
		font-size: 16px;
		margin: 0px 15px 0px 0px;
	}

	.account-id span {
		font-size: 16px;
	}

	.copy  {
		height: 16px;
	}

	.account-container {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin-left: 0px;
	}

	.personal-mobile-button {
		font-size: 32px;
		height: 68px;
	}

	.personal-mobile-content {
		padding: 30px 0px 30px 0px;
	}

	h5 {
		margin: 0px 0px 20px 0px;
	}

	.personal-mobile-content {
		border-radius: 5px;
		padding: 10px;
	}
	.personal-mobile-content h2 {
		margin-top:0px;
		margin-bottom: 5px;
		font-size: 22px;
	}
	.personal-mobile-content .error-auth{
		margin-top:0px;
	}
	/* Main Page Case */
	.main-page-case {
		padding: 0px 15px 0px 15px;
		margin-bottom: 40px;
		padding: 0px;
	}

	.items-container {
		padding: 10px;
	}

	.main-page-case h3 {
		display: none;
	}
	
	.main-page-case .main-block {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		position: relative;
	}

	.buy-x-container {
		background-color: #FFFFFF0D;
		gap: 0px;
		border-radius: 5px;
	}

	.buy-x-container button {
		border-radius: 0px;
		background-color: transparent;
	}

	.buy-x-container button:hover  {
		border-radius: 5px;
	}

	.open-block span {
		font-size: 22px;
	}

	.quantity {
		font-size: 22px;
		width: 86px;
		height: 50px;
	}

	.open img {
		width: 345px;
		height: 325px;
	}

	.buy-x-container button::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 10px;
		border: 0px solid transparent;
		background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
		-webkit-mask:
				linear-gradient(#fff 0 0) padding-box, 
				linear-gradient(#fff 0 0);
		-webkit-mask-composite: destination-out;
		mask-composite: exclude;
	}

	.main-page-case .main-open {
		padding: 15px;
	}


	.main-page-case .main-navigation {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin: 0px 0px 50px 0px;
	}

	.promocode {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 345px;
		font-size: 20px;
		height: 60px;
		margin-top: 27px;
	}

	.buy-x p {
		display: none;
	}
	.open .open-block p {
		font-size: 20px;
	}
	
	.open p {
		font-size: 16px;
	}

	.buy-x  {
		width: 345px;
		position: relative;
		left: -8px;
	}

	.buy-x-container button {
		font-size: 32px;
		width: 57px;
		height: 57px;
	}

	.balance-up {
		left: 0px;
		margin: 10px 0px 10px 0px;
		width: 345px;
		padding: 0px;
		height: 57px;
	}

	.balance-up p  {
		font-size: 22px;
	}

	.balance-up svg  {
		display: none;
	}

	.open-fast  {
		width: 345px;
		font-size: 22px;
		height: 57px;
	}

	.section-page-case {
		padding: 0px 0px 0px 0px;
	}

	.item {
		width: 45%;
		height: 110px;
	}

	.item img {
		width: 100px;
		top: 32%;
	}

	.item-gun  {
		margin-top: 48px;
	}

	.item-line {
		width: 80px;
		margin: 0 auto;
	}
	/* Main Page Balance */
	.main-page-balance {
		padding: 0px;
		margin-bottom: 40px;
	}

	.main-page-balance .main-container {
		padding: 50px 0px 0px 0px;
	}

	.main-page-balance .main-navigation {
		margin-bottom: 50px;
		padding: 0px 15px 0px 15px;
	}

	.main-page-balance .navigation-container {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.balance-h4 {
		font-size: 32px;
		line-height: 32px;
	}

	.option-information p  {
		font-size: 14px;
		text-align: left;
	}

	.option-container {
		display: flex;
		align-items: self-start;
	}

	.main-page-balance .main-block {
		margin: 0px;
	}

	.main-page-balance .main-block p  {
		font-size: 18px;
		width: 345px;
		margin: 5px 0px 0px 0px;
	}

.main-replenish {
    height: 57px;
    width: 100%;
    /*margin-bottom: 10px;*/
    border-radius: 10px 10px 10px 10px;
  }


	.main-replenish p {
		font-size: 18px;
		line-height: 32px;
	}

  .main-withdraw {
    height: 57px;
    width: 100%;
    border-radius: 10px 10px 10px 10px;
  }

	.main-withdraw p {
		font-size: 18px;
		line-height: 32px;
	}
	.main-page-balance .main-container  {
		background-color: transparent;
		width: 100%;
		max-width: 100%;
	}


	.main-page-balance .main-information {
		padding: 0px;
	}

	.main-left  {
		padding: 0px;
		width: 100%;
		max-width: 100%;
		background-color: #FFFFFF0D;
		padding: 30px 15px 0px 15px;
	}

	.main-right {
		width: 100%;
		max-width: 100%;
		background-color: #FFFFFF0D;
		padding: 30px 15px 35px 15px;
	}

	.option-navigation {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		background-color: transparent;
		gap: 10px;
		width: 100%;
		max-width: 100%;
	}

	.option-button  {
		height: 57px;
	}

	.all {
		width: 100%;
		font-size: 18px;
	}

	.card {
		width: 100%;
		font-size: 18px;
	}

	.phone {
		width: 100%;
		font-size: 18px;
	}

	.skin {
		width: 100%;
		font-size: 18px;
	}

	.icon-button {
		width: 100%;
	}

	.payment-button {
		width: 100%;
	}

	.payment-container  {
		width: 100%;
		max-width: 100%;
	}

	.payment-code input {
		width: 100%;
		max-width: 100%;
	}

	.main-replenish::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 10px;
		border: 1px solid transparent;
		background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
		-webkit-mask:
				linear-gradient(#fff 0 0) padding-box, 
				linear-gradient(#fff 0 0);
		-webkit-mask-composite: destination-out;
		mask-composite: exclude;
	}

	.main-withdraw::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 10px;
		border: 1px solid transparent;
		background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
		-webkit-mask:
				linear-gradient(#fff 0 0) padding-box, 
				linear-gradient(#fff 0 0);
		-webkit-mask-composite: destination-out;
		mask-composite: exclude;
	}

	.option-button::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 10px;
		border: 1px solid transparent;
		background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
		-webkit-mask:
				linear-gradient(#fff 0 0) padding-box, 
				linear-gradient(#fff 0 0);
		-webkit-mask-composite: destination-out;
		mask-composite: exclude;
	}

	h6  {
		font-size: 17px;
	}

	.icon-block p {
		font-size: 16px;
	}

	.icon-button {
		height: 78px;
	}

	.icon-container  {
		margin: 20px 0px 50px 0px;
	}

	.icon-selected {
		height: 154px;
		margin: 30px 0px 50px 0px;
		padding: 15px 0px 15px 15px;
		display: flex;
		align-items: start;
		flex-direction: column;
	}

	.icon-selected img {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.selected-container  {
		align-items: start;
	}

	.selected-inforamtion p {
		font-size: 14px;
	}

	.selected-block p {
		position: relative;
		left: 50px;
		font-size: 14px;
	}

	.text-center {
		text-align: center;
	}
	
	.payment-information {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px;
	}

	.payment-information p {
		font-size: 18px;
		margin-top: 30px;
	}

	.payment-block input {
		height: 50px;
		font-size: 20px;
	}

	.payment-block input::placeholder {
		font-size: 20px;
	}

	.payment-block img {
		margin-top: 6px;
	}

	.payment-container {
		background-color: transparent;
	}

	.payment-button {
		font-size: 16px;
		background-color: transparent;
	}

	.payment-button.active {
		background-color: transparent;
	}

	.payment-button.active::before {
		border: 0px solid transparent;
	}

	.payment-code p {
		font-size: 18px;
	}

	.payment-code input {
		height: 50px;
		font-size: 20px;
		/* margin-bottom: 50px; */
		width: 100%!important;
	}

	.payment-code input::placeholder  {
		font-size: 20px;
	}

	.pay {
		height: 80px;
		font-size: 20px;
	}
	/* Registration */
	.close {
		left: 150px;
	}

	.modal {
		position: fixed;
		top: 50%;
		left: 50%;
		max-width: 102%;
		width: 102%;
		height: 102%;
		border-radius: 0px;
		box-shadow: none;
		z-index: 9999;
	}

	.modal::before  {
		border-radius: 0px;
		border: none;
	}

	.modal .title {
		font-size: 29px;
		line-height: 32px;
		width: 321px;
		margin-bottom: 10px;
		margin-top: -30px;
	}

	.modal input {
		height: 50px;
		font-size: 16px;
		margin: 11px 0px 10px;
	}

	.modal input::placeholder{
		font-size: 16px;
	}

	.next {
		height: 57px;
		font-size: 20px;
	}

	.modal .subtitle {
		font-size: 16px;
	}

	.socials a {
		width: 50px;
		height: 50px;
	}

	.password {
		position: fixed;
		top: 50%;
		left: 50%;
		max-width: 102%;
		width: 102%;
		height: 102%;
		border-radius: 0px;
		box-shadow: none;
		border: none;
	}

	.password::before  {
		max-width: 100%;
		width: 100%;
		height: 100%;
		border-radius: 0px;
		border: none;
	}

	.password .title {
		font-size: 40px;
		line-height: 40px;
		width: 325px;
	}

	.password input {
		height: 50px;
		font-size: 16px;
		margin: 40px 0px 30px;
	}

	.password input::placeholder{
		font-size: 16px;
	}

	.modal .subtitle {
		font-size: 16px;
	}
	.footer-content {
		padding: 50px 0px 50px 0px;
	}

	.footer-up {
		padding: 0px 15px 0px 15px;
	}

	.footer-up-container {
		margin: 0px 0px 0px 10px;
	}

	.footer-up img {
		width: 130px;
	}

	.footer-decoration {
		display: none;
	}

	.footer-mid {
		padding: 20px 0px 20px 30px;
	}

	.footer-сoop {
		width: 100%;
	}

	.footer-gmail {
		width: 100%;
	}

	.footer-up-container {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 30px;
	}

	.footer-block-information span {
		font-size: 30px;
	}
	
	/* Update upgrade */

	.upgrade-chance {
		display: none;
	}

	.upgrade-ratio {
		display: none;
	}

	.upgrade-button-item {
		/* display: none; */
		order: 2;
		width: 100%;
		/* max-width: 300px; */
		margin-bottom: 20px;
	}

	.upgrade-button-receive {
		/* display: none; */
		order: 3;
	}

	.upgrade-block {
		display: flex;
		flex-direction: column;
	}

	.upgrade-inventory-navigation {
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.upgrade-inventory-content {
		display: flex;
		flex-direction: column;
		align-items: start;
		height: 100px;
		gap: 10px;
	}

	.upgrade-inventory-navigation {
		height: auto;
		border: none;
		margin-bottom: 0px;
	}

	.upgrade-inventory-price {
		padding: 10px;	
	}

	.upgrade-inventory-search {
		padding: 10px;
	}

	.upgrade-inventory-navigation p {
		margin-bottom: 5px;
	}


	.upgrade-inventory-block2 {
		display: flex;
	}

	.upgrade-main img {
		/* margin: 0px -100px 0px -100px; */
		width: 500px;
	}

	.upgrade-inventory-price p {
		margin: 1px 5px 0px 0px;
	}

	.upgrade-drop {
		max-width: 170px;
		min-width: 170px;
		height: 112px;
	}

	.upgrade-drop .title  {
		/* margin: 61px 0px 0px 15px; */
	}

	.drop-price  {
		/* margin: 78px 0px 0px 70px; */
	}

	.upgrade-drop img  {
		top: 0px;
		left: 0px;
		max-width: 171px;
		max-height: 70px;
	}

	.upgrade-inventory-navigation  {
		margin: 0px 25px 20px 15px;
	}

	.upgrade-mobile {
		display: block;
	}

	.upgrade-inventory {
		max-width: 1050px;
	}

	.upgrade-receive {
		max-width: 1050px;
	}

	.upgrade-inventory-block p {
		margin-top: 5px;
	}

	.upgrade {
		padding: 0px;
		margin: 50px 0px 50px 0px;
	}

	.upgrade-nav {
		padding: 0px 5px 0px 5px;
		margin-bottom: 30px;
	}

	/* Update user */

.user {
	padding: 0px;
}

.user-content {
	padding: 0px 5px 0px 5px;
}

.user-buttons {
	flex-direction: column;
}

.user-buttons button, .user-buttons>a {
	max-width: 100%;
	height: 113px;
	background-size: cover;
	background-position: right;

}

.user-profile-container {
	height: 682px;
	padding: 0px 10px 0px 10px;
	margin-top: 80px;
	position: relative;
	top: 50px;
}

.user-profile-contant {
	padding: 0px 5px 0px 5px;
	margin-bottom: 120px;
}

.user-profile-information {
	flex-direction: column;
}

.user-profile-info-block {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.user-profile-navigation {
	flex-direction: column;
}

.user-profile-information img {
	margin-right: 0px;
	margin-bottom: 20px;
}

.user-profile-inputs {
	display: flex;
	flex-direction: column;
}
.user-profile-navigation-container {
	flex-direction: column;
	margin-bottom: 30px;
	gap: 15px;
	width: 100%;
}

.profile-telegram {
	width: 100%;
	height: 57px;
}

.profile-save {
	width: 100%;
	height: 57px;
}

.user-profile-input-container input {
	height: 57px;
}

.user-information {
	flex-direction: column;
}

.user-container {
	max-width: 1050px;
	gap: 5px;
	
}

.user-drop {
	height: 120px;
}

.user-case {
	height: 120px;
}

.user-drop span {
	margin: 0px 0px 0px 10px;
	font-size: 12px;
}

.user-drop p {
	margin: 35px 0px 5px 10px;
}

.user-case p {
	margin: 35px 0px 5px 10px;
}

.user-case .case-name {
	margin: 0px 0px 2px 10px;
}

.user-case .case-open {
	margin: 0px 0px 0px 10px;
}

.user-information {
	gap: 10px;
	margin: 30px 0px 10px 0px;
}

.user-information-level {
	height: 120px;
}

.user-information-progress {
	height: 5px;
}

.user-profile-information img {
	width: 160px;
	height: 160px;
	position: relative;
	top: -80px;
}

.user-profile-info-block span {
	font-size: 30px;
	position: relative;
	top: -80px;
}

.user-profile-info-block2 span {
	font-size: 20px;
}

.user-profile-info-block2 p {
	font-size: 20px;
	position: relative;
	top: -80px;
}

.user-profile-inputs {
	position: relative;
	top: -80px;
}

.user-profile-navigation {
	position: relative;
	top: -80px;
	/* margin-bottom: 1000px; */
}

.user-inventory-navigation {
	display: none;
}

.user-items {
	background-color: transparent;
	padding: 0px;
}

.user-item {
	max-width: 170px;
	min-width: 170px;
	height: 112px;
}

.user-item img {
	top: 0px;
	left: 0px;
	width: 171px;
}

.user-item .title  {
	margin: 61px 0px 0px 15px;
}

.user-item .line {
	margin: 0px 0px 0px 50px;
}


table {
	display: none;
}
	.history table {
		display: block;
	}

#pagination {
	display: none;
}

.user-block-title {
	text-align: center;
	margin-bottom: 76px;
}

.user-order {
	position: relative;
	margin-bottom: 45px;
	display: block;
}

.user-nav-container {
	justify-content: center;
}

.user-copy {
	display: none;
}

.user-profile {
	background-image: url(/assets/image/user-profile-mobile.png);
}

.user-inventory{
	background-image: url(/assets/image/user-inventory-mobile.png);
}

.user-history {
	background-image: url(/assets/image/user-history-mobile.png);
}

.user-pay {
	background-image: url(/assets/image/user-pay-mobile.png);
}

.user-conclusion {
	background-image: url(/assets/image/user-conclusion-mobile.png);
}

.user-logout {
	background-image: url(/assets/image/user-logout-mobile.png);
}


.user-buttons button span, .user-buttons>a span {
	font-size: 28px;
	top: 40%;
}

.user-ref {
	display: block;
	background-image: url(/assets/image/user-ref-mobile.svg);
	top: 50%;
}

.user-buttons .user-ref span {
	top: 30%;
}

.user-ref2 {
	display: block;
	background-image: url(/assets/image/user-profile-mobile.svg);
}
}

/* new */

@media (max-width: 600px) {
	.footer-up {
		display: flex;
		flex-direction: column;
		align-items: start;
	}
}

.case--not-available {
	opacity: 0.2
}
.hidden {
	display: none;
}

form {
	min-width: 320px;
	text-align:center;
	max-width: 400px;
}
.error-auth a {
	color: #f00;
}
.error-auth{
	background: url('data:image/svg+xml,<%3Fxml version="1.0" %3F><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"><svg height="32" style="overflow:visible;enable-background:new 0 0 32 32" viewBox="0 0 32 32" width="32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g id="Error_1_"><g id="Error"><circle cx="16" cy="16" id="BG" r="16" style="fill:%23D72828;"/><path d="M14.5,25h3v-3h-3V25z M14.5,6v13h3V6H14.5z" id="Exclamatory_x5F_Sign" style="fill:%23E6E6E6;"/></g></g></g></svg>') no-repeat 15px center #ff9b9b;
	color:#4e1212;
	border: 0;
	font-size: 14px;
	padding: 17px 20px;
	padding-left: 60px;
	margin-top: 20px;
	text-align: left;
	border-radius: 10px;
	background-size: 24px;
	font-family: 'Nunito';
	position: relative;
	z-index: 10;
	height: max-content;
}
.success-auth{
	color: #2a3d08;
	border: 0;
	font-family: 'Nunito';
	font-size: 14px;
	padding: 17px 20px;
	padding-left: 60px;
	margin-top: 20px;
	margin-bottom: 10px;
	border-radius: 10px;
	text-align: left;
	background: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --><svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 50 50" xml:space="preserve"><circle style="fill:%2325AE88;" cx="25" cy="25" r="25"/><polyline style="fill:none;stroke:%23FFFFFF;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;" points="38,15 22,33 12,25 "/></svg>') no-repeat 15px center #a6ffa7;
	background-size: 26px;
}

#avatar {
	border-radius: 50%;
	width: 80px;
	border: 10px solid #272732;
	margin-top: 20px;
	margin-bottom: 10px;
}
.username {
	color:#fff;
    font-family: 'Nunito';
}

.faq-item {
    max-width: 980px;
    margin: 0 auto 15px;
}

.faq-item .heading {
    position: relative;
    cursor: pointer;
    background: rgba(183 183 183 / 12%);
    border-radius: 10px;
    border: 1px solid fb0055;
    font-family: 'TTLakes';
    font-size: 15px;
    padding: 23px 20px 22px 70px;
    transition: all 0.5s ease;
    color: #fff;
    font-family: 'Nunito';
}

.faq-item .heading:before {
    content: '';
    height: 3px;
    width: 27px;
    position: absolute;
    left: 24px;
    top: 50%;
    margin-top: -1.5px;
    /* box-shadow: 0 0 15px 3px #00a1ff; */
    background: #FF4C01;
    transition: all 0.3s ease;
}

.faq-item.active .heading:before {
    background: #FF4C01;
}

.faq-item .heading:after {
    content: '';
    height: 27px;
    width: 3px;
    position: absolute;
    left: 36px;
    top: 50%;
    margin-top: -13.5px;
    /* box-shadow: 0 0 15px 3px #00a1ff; */
    background: #FF4C01;
    transition: all 0.5s ease;
}

.faq-item.active .heading:after {
    height: 0;
    margin-top: 0;
    background: rgba(255,189,64,1);
}

.faq-item.active .heading {
    background: rgba(255,189,64,0.12);
    border-color: rgba(255,189,64,1);
}

.faq-item .faq-content {
    padding: 0 20px 0 70px;
    color: #97949f;
    font-family: 'TTLakes';
    font-size: 15px;
    line-height: 21px;
    transition: all 0.5s ease;
    height: 0;
    overflow: hidden;
    box-sizing: content-box;
    position: relative;
}

.faq-item .faq-content:after {
    content: '';
    width: 4px;
    height: calc(100% - 40px);
    background: #FF4C01;
    position: absolute;
    left: 40px;
    top: 28px;
}

.faq-item.active .faq-content {
    padding: 35px 20px 20px 70px;
    font-family: 'Nunito';
}
.faq {
	padding: 20px;
	padding-bottom: 50px;
	font-family: 'Nunito';
}
.faq h1 {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 40px;
	width:100%;
}

.top h1 {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	width:100%;
	
}

.top {
	color: #fff;
	font-family: 'Nunito';
	margin-bottom: 45px;
}

.top-page {
    max-width: 1000px;
    margin: 0 auto
}

.top-page__table {
    width: 100%;
    font-weight: 300
}

.top-page__th,
.top-page__td {
    padding: 15px 15px
}

.top-page__th {
    text-align: left;
    padding-bottom: 20px;
    font-weight: 300;
    opacity: .5
}

.top-page__th--place {
    width: 100px;
    text-align: center
}

.top-page__th--user {
    text-align: left
}

.top-page__th--opens {
    width: 200px
}

.top-page__th--profit {
    width: 150px
}

.top-page__td {
    position: relative
}

.top-page__row:nth-child(2n) {
    background-color: rgba(0, 0, 0, 0.2)
}

.top-page__user {
    text-decoration: none
}

.top-page__pic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px
}

.top-page__name {
    font-size: 18px;
    line-height: 24px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    transition: all .3s ease
}

.top-page__user:hover .top-page__name {
    color: #fff
}

.top-page__place {
    display: block;
    margin: 0 auto;
    width: 36px;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 36px
}

.top-page__row[data-place='1'] .top-page__place,
.top-page__row[data-place='2'] .top-page__place,
.top-page__row[data-place='3'] .top-page__place,
.top-page__row[data-place='4'] .top-page__place {
    font-weight: 900;
    position: relative;
    z-index: 1;
    color: #000
}

.top-page__row[data-place='1'] .top-page__place:before,
.top-page__row[data-place='2'] .top-page__place:before,
.top-page__row[data-place='3'] .top-page__place:before,
.top-page__row[data-place='4'] .top-page__place:before {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    bottom: 1px;
    z-index: -1;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%
}

.top-page__row[data-place='1'] .top-page__place:before {
    background-color: #ffd92c
}

.top-page__row[data-place='2'] .top-page__place:before {
    background-color: #fff
}

.top-page__row[data-place='3'] .top-page__place:before {
    background-color: #f3975b
}

.top-page__row[data-place='4'] .top-page__place:before {
    background-color: #ddd
}

.page-text {
	font-family: 'Nunito';
	color:#fff;
	padding-bottom:40px;
}
.page-text h1 {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	width:100%;
	
}

.info-page {
    font-weight: 300;
    padding: 0 10px;
    min-height: 328px;
}

.info-page h1 {
    margin-top: 40px;
    margin-bottom: 30px;
    line-height: 1.3
}

.info-page h1,
.info-page h2,
.info-page h3 {
    margin-bottom: 20px;
    margin-top: 30px
}

.info-page p,
.info-page ul,
.info-page ol {
    margin: 10px 0
}

.info-page li {
    margin-bottom: 10px;
    padding-left: 20px
}

.info-page a {
    color: #FF4C00;
    text-decoration: none
}

.info-page--page-agreement {
    font-size: 14px;
    line-height: 18px;
    max-width: 1000px;
    margin: 0 auto
}

.info-page--page-agreement ol {
    counter-reset: item
}

.info-page--page-agreement li {
    list-style: none
}

.info-page--page-agreement ol>li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
    margin-right: 4px;
    color: #FF4C00
}

.info-page--page-agreement ul>li:before {
    content: '-';
    margin-right: 10px;
    color: #FF4C00
}

.info-page--contacts {
    line-height: 1.2
}

.info-page--faq h1 {
    text-align: center;
    margin-bottom: 50px
}

.js-pay-form {
	width: 100%;
	max-width: 100%;
}



.farm-buttons {
    text-align: center;
    font-size: 0;
    line-height: 0
}

.farm-buttons__text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 20px
}

.farm-buttons__input {
    display: none
}

.farm-buttons__label {
    border: none;
    position: relative;
    background-color: #FFFFFF0D;
    font-family: 'Bebas Neue Cyrillic';
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    border-radius: 10px;
    transition: .4s ease;
	padding: 10px 15px;
	margin: 5px;
	cursor: pointer;
}

.farm-buttons__label:hover {
	background-color: #FF4C00;
	cursor: pointer;
}

.farm-buttons__label::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.farm-buttons__input:checked+.farm-buttons__label,
.farm-buttons__label:hover {
    background: #FF4C00;
}


#slot .row {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 5px;
	text-align: center;
	height: 180px!important;
	background: linear-gradient(180deg, rgb(152 144 145 / 22%) 0%, rgb(7 7 7 / 0%) 115.71%);
	transition: .3s ease;
}
#slot .row p {
	margin-bottom:3px;
	font-size: 14px;
	font-family: "Nunito";
	line-height: 1.4;
}
#slot .row p span{
	margin-bottom:4px;
	font-size: 11px;
	font-family: "Nunito";
	display:block;
}
#slot .row::before {
    content: "";
    position: absolute;
    border-bottom-left-radius: 8px;
	 border-bottom-right-radius: 8px;
	width:80px;
	margin-left:-38px;
	height: 6px;
	background-color: #fff;
    box-shadow: 0px 4px 14.9px 0px #818181a1;
    transition: .3s ease;
}

.upload-file svg {
	fill: #fff;
    width: 17px;
    position: relative;
    left: 7px;
    top: 3px;
}
.upload-file {
    background-color: #ff4c00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Nunito';
    font-size: 14px;
}
.upload-file:hover {
	background-color: #FF611D;
}
.balance-withdraw a {
	color:#ff4c00;
	font-family: 'Nunito';
    font-size: 15px;
	border-bottom: 1px dotted #ff4c00;
}
.uploaded-image {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	background: #454545;
	padding:  10px;
	border-radius: 5px;
}
.uploaded-image img {
	width: 100px;
	border: 1px solid #b3b3b3;
	box-shadow: 0px 0px 5px #2d2d2d;
	border-radius: 5px;
}
.uploaded-image a {
	text-decoration: none;
	border: 0;
	color: #8b8686;
	margin-top: -8px;
}

.uploaded-image a:hover {
	color:#fff;
}

.uploaded-image a svg {
	fill:#8b8686;
	position: relative;
	top: 9px;
}

.uploaded-image a:hover svg {
	fill:#fff;
}

.balance-withdraw small {
	padding-top:10px;
	display: block;
	font-size: 12px;
	color:#ccc;
	font-family: 'Nunito';
    font-size: 14px;
}
.balance-withdraw .error-auth{
	margin-bottom: 10px;
}

.check {
	display: flex;
	align-items: center;
	gap: 10px;
	color:#fff;
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: 'Nunito';
}
					.checkbox {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox-label {
  cursor: pointer;
  position: relative;
  display: block;
  width: 60px;
  height: 30px;
  border-radius: 20px;
  background: #555555;
}

.checkbox-label:before {
  position: absolute;
  left: 4px;
  top: 3px;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: .3s;
}

.checkbox:checked + .checkbox-label {
  background-color: #438543;
}

.checkbox:checked + .checkbox-label:before {
  left: calc(100% - 28px);
}

.choices {
	font-family: 'Nunito';
	font-size: 15px;
}

table.profile-trades-history {
	background: #38383f;
	width: 100%;
	font-family: 'Nunito';
	border-spacing: 0;
    border-collapse: separate;
	border-radius: 10px;
	margin-top: 20px;
}
table.profile-trades-history tr td {
	padding: 14px;
	text-align: center;
	color:#fff;
}
table.profile-trades-history tr:nth-child(2n) td {
	background: #313139;
}
table.profile-trades-history tr:hover td {
	background: #464651;
}
table.profile-trades-history tr td span {
	background: #464651;
	padding: 5px 15px;
	border-radius: 5px;
}
table.profile-trades-history tr th {
	padding: 15px;
	background: #ff611d;
	color:#fff;
}
table.profile-trades-history tr th:first-child {
	border-top-left-radius: 10px;
}
table.profile-trades-history tr th:last-child {
	border-top-right-radius: 10px;
}

.money {
	transition: color 1s ease;
}
.updated-minus {
    color: #FF4C00;
}

.updated-plus {
    color: green;
}

#slot .row.item-green{
	background: linear-gradient(180deg, rgba(5, 255, 0, 0.22) 0%, rgba(5, 255, 0, 0) 115.71%);
	transition: .3s ease;
}
#slot .row.item-green::before {
	background: #05FF00;
	box-shadow: 0px 4px 14.9px 0px #05FF00A1;
}
#slot .row.item-red{
	background: linear-gradient(180deg, rgba(255, 0, 46, 0.22) 0%, rgba(255, 0, 46, 0) 115.71%);
}
#slot .row.item-red::before {
	background-color: #FF002E;
	box-shadow: 0px 4px 14.9px 0px #FF002EA1;
}
#slot .row.item-purple{
	background: linear-gradient(180deg, rgba(112, 0, 255, 0.22) 0%, rgba(112, 0, 255, 0) 115.71%);
}
#slot .row.item-purple::before {
	background: #7000FF;
	box-shadow: 0px 4px 14.9px 0px #7000FFA1;
}
#slot .row.item-yellow{
	background: linear-gradient(180deg, rgba(255, 229, 0, 0.22) 0%, rgba(255, 229, 0, 0) 115.71%);
}
#slot .row.item-yellow::before {
	background-color: #FFE500;
	box-shadow: 0px 4px 14.9px 0px #FFE500A1;
}
#slot .row button {
	background: #ff611d;
	border:0px;
	color: #fff;
	padding: 5px 20px;
	position: relative;
	font-size: 11px;
	/* top: -10px; */
	border-radius: 4px;
	margin-bottom: -21px;
	cursor: pointer;
}
#slot .row button:hover {
	background: #e64a07;
}

#slot .row button:disabled {
	background: #4e4343;
	opacity: 0.6;
}

.slot-img img:nth-child(2) {
	display: none!important;
}

@media (max-width:1000px) {
	.modal {
		overflow-y: scroll;
		top: 0px;
		left: 0px;
		transform: none;
		background: rgb(0, 0, 0);
		width: 100%;
		max-width: 100%;
		border-radius: 0px;
		height: 100%;
	}
}
.main-page-balance  .user-close-container {
	display:none;
}
@media (max-width:768px) {
	.main-page-balance  .user-close-container {
	display:block;
}
	.main-page-balance .main-block {
		margin-bottom: 20px;
	}
	table.profile-trades-history th {
		display:block;
		border-radius:0!important;
		padding: 0px;
		
	}
	table.profile-trades-history tr {
		display:block;
	}
	table.profile-trades-history tr td {
		display:block;
		borde-radius:0!important;
	}
	table.profile-trades-history tr th {
		padding: 7px;
	}
}

.payment-code div {
	display: flex;
	height: auto;
	/* flex-wrap: wrap; */
	align-items: center;
	margin-bottom: 20px;
	gap: 20px;
}
.payment-code div *{
	width: 50%;
}
.payment-code div button {
	color:#fff;
	padding:0px;
	height: auto;
	padding: 10px;
	text-align: center;
	font-weight: 800;
	font-size: 14px;
	margin: 0 auto;
	display: block;
	font-family: 'Nunito';
}
@media (max-width:1000px) {
	.payment-code div button {
		width: 100%;
	}
	.payment-code div {
		flex-wrap: wrap;
	}
}

.personal-content form a {
	display: block;
}

.free-case-info {
	margin: 0 auto;
	text-align: center;
	color:#fff;
	margin-top: 20px;
	font-family: "Nunito";
}
.free-case-info .button { 
	display: inline-block;
	margin-top:20px;
    align-items: center;
    justify-content: center;
    padding: 10px 30px 11px 30px;
    /* height: 40px; */
    background-color: #FF4C00;
    border: none;
    border-radius: 3px;
    clip-path: polygon(3% 0%, 100% 0%, 100% 80%, 97% 100%, 0% 100%, 0% 20%);
    position: relative;
    transition: .4s ease;
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.upgrade-main .upgrade-drop {
	margin: 0 auto;
}

.upgrade-main .upgrade-drop::before {
	background: #595959b5;
	content: '';
	width: 100%;
	height: 100%;
	right:0;
	z-index:99;
}

.upgrade-main .upgrade-drop:hover::before {
	position: absolute;
	content: 'Ð£Ð´Ð°Ð»Ð¸Ñ‚ÑŒ';
	padding-top: 50px;
	display: block;
}

.start-upgrade[data-disabed="1"]  {
    opacity: 0.9;
	background:#737373!important;
	cursor: not-allowed;
}

.upgrade__page .upgrade-dial-2 {
  position: absolute;
  z-index: 13;
  width: 145px;
  height: 145px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: #131319;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.upgrade__page .upgrade-dial-2 .dial-lose {
  visibility: hidden;
  opacity: 0;
  display: none;
  bottom: -.625rem;
  position: relative
}

.upgrade__page .upgrade-dial-2 .dial-lose span {
  font-size: .75rem;
  margin-top: .3125rem;
  color: #68687f
}

.upgrade__page .upgrade-dial-2 .dial-lose .chance {
  color: #ffd0dc
}

.upgrade__page .upgrade-dial-2 .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.upgrade__page .upgrade-dial-2 .chance-text {
  color: #68687f;
  text-transform: uppercase;
  font-size: .75rem;
  padding: .25rem 0 0
}

.upgrade__page .upgrade-dial-2 .dial-arrow {
  width: 4.375rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto
}

.upgrade__page .upgrade-dial-2 .dial-arrow-wrap {
  position: absolute;
  width: 1px;
  -webkit-transform: rotate(var(--dial));
  transform: rotate(var(--dial));
  -webkit-transform-origin: 50% 80px;
  transform-origin: 50% 72px;
  -webkit-transition: -webkit-transform var(--transform-delay);
  transition: -webkit-transform var(--transform-delay);
  transition: transform var(--transform-delay);
  transition: transform var(--transform-delay), -webkit-transform var(--transform-delay);
  top: 0px;
  height: 27px;
  border: 1px solid white;
}

.upgrade__page .upgrade-dial-2 .chance {
  font-family: 'Bebas Neue Cyrillic';
  font-weight: 400;
  font-size: 38px;
  line-height: 47px;
  color: #fff;
}

.upgrade__page .upgrade-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65px;
  margin: 5rem auto 2.1875rem;
  position: relative
}

.upgrade__page .upgrade-block>* {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.upgrade__page .center__border-1,
.upgrade__page .center__border-2,
.upgrade__page .center__border-3 {
  position: relative;
  margin: auto;
  border-radius: 50%
}


.upgrade__page .center__border-2 {
  width: 170px;
  height: 170px;
  background-image: conic-gradient(from 180deg at 50% 50%, #24FF00 0deg, #FFF500 144.42deg, #FF0000 277.77deg, #24FF00 360deg);
}

.upgrade-spin {
	margin: 15px;
	min-width: 190px;
}

.info-load {
	color:#fff;
	margin-top: 20px;
	font-family: "Nunito";
	font-size:14px;
}

input#search-price {
	background: #31313A;
	border: 0px;
	width: 40px;
	text-align: right;
	outline: none;
	color:#6F6F82;
	font-family: "Nunito";
}

#upgradeContainer>div {
    margin: 0 auto;
    margin-top: 30px;
}

#upgradeContainer {
	opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

#upgradeContainer.show-item {
	opacity: 1;
    transform: translateY(0);
}

.upgrade .drop-information {
	width: 50%;
	text-align: left;
	line-height: 1.3;
}

#upgradeContainer p img {
	display: block;
	margin: 0 auto;
	width: 70px;
	margin-top: 30px;
	margin-bottom: -50px;
}
.faq h2 {
	margin-bottom:40px;
}

.upgrade .drop-container {
	position: inherit;
}

#upgradeItemEmptyTo .grey-text, #upgradeItemEmpty .grey-text{
	position: relative;
	top: 80px;
}

.countdown {
    display: flex;
    gap: 15px;
    text-align: center;
	margin-top: 20px;
}

.time {
	background: #1F1F2B;
    color: #fff;
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 80px;
	font-family: 'Bebas Neue Cyrillic';
    font-weight: 400;
    font-size: 28px;
	text-shadow: 0px 0px 20px #474747;
}
.time p {
	font-family: Nunito;
	font-size: 12px;
	color:#737373;
}

.no-farm {
	color:#fff;
	width: 100%;
	text-align: center;
	font-family: Nunito;
	font-size: 17px;
}

form#settings  {
	max-width:100%;
}

@media(max-width:1000px) {
	.mobile-hidden {
		display:none;
	}
	.drop-labels__price {
		font-size:10px!important;
	}
}
@media(min-width:1000px) {
	.laptop-hidden {
		display:none;
	}
	.user-show-mobile {
		display: none;
	}
}

.user-show[disabled],.user-show-mobile[disabled] {
	background-color: #797979;
	opacity: 0.4
}
.low{opacity:0.2; cursor: not-allowed;}
.option-block .icon-selected {
	display: none;
}
.option-block .icon-selected[data-payment=vm] {
	display: flex;
}

.header-drops {
	display: flex;
}
.header-drops .best-drop {
	margin-top: 9px;
	margin-right: 5px;
	margin-left: 5px;
	/* padding: 10px; */
}
.header-drops .best-drop .drop {
	/* max-width: 222px; */
	/* min-width: 211px; */
	/* height: 113px; */
	background: url(/assets/image/best-bg.svg) no-repeat!important;
	background-size: 100%!important;
}
.header-drops .best-drop .drop .line {
	background: rgba(255, 77, 1, 1);
	box-shadow: 0px 4px 14.9px 0px rgba(255, 77, 1, 0.63);
	height:6px;
}
.header-drops .best-drop .drop .current img {
	left:20px;
	top: 25px;
	width: 132px;
}
.header-drops .best-drop .drop .title {
    position: relative;
    z-index: 1;
    font-family: 'Nunito';
    font-weight: 400;
    font-size: 12px;
    width: 120px;
    /* margin: 66px 0px 0px 15px; */
}
.header-drops .best-drop .drop .cost {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-block;
	padding: 3px 15px 2px 35px;
	border-radius: 20px;
	color:rgba(255, 77, 1);
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	z-index: 1;
	background: url(/assets/image/best.svg) no-repeat 9px 4px #fff;
	background-size: 16px;
}
.header-drops .best-drop .drop .new img {
	top: 120px;
	left: 53px;
}
.header-drop {
	padding-top: 9px;
}
.icon-block {
	margin-bottom:17px;
}
.main-page-balance h4 span {
	display:inlin-block;
	background: #35353b;
	color:#6f6f82;
	font-family: Nunito;
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 5px;
	margin-left:7px;
	top: -2px;
	position: relative;
}
.main-page-balance h4 span svg {
	height:10px;
	margin-left: 3px;
}
.payment-block .to, payment-block .from {
	width: 40%;
	height: auto;
}
.payment-block .convert {
	width:20%;
	margin-top: 53px;
}
.payment-block .to div {
	width: 100%;
	padding: 9px 20px;
	margin-top: 13px;
    border-radius: 10px;
    background-color: #FFFFFF0D;
    border: none;
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 20px;
    color: #6F6F82;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.payment-block .to div svg {
	margin-left:4px;
	
}

.user-referral-container {
	display:flex;
	gap: 20px;
	background: rgba(31, 31, 37, 1);
	padding: 16px;
	border-radius:10px;
	/* flex-wrap: wrap; */
	justify-content: space-between;
	margin-bottom: 20px;
}

.user-referral-info {
	max-width:380px;
	height: 100%;
	width: 100%;
	padding: 20px;
	color:#fff;
	border-radius:10px;
	background: rgba(26, 26, 33, 1);
}
.user-referral-info button {
	display: block;
	width:100%;
	border: 0px;
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 20px;
	color:#fff;
	font-family: Nunito;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	background: rgba(42, 42, 48, 1);
	cursor: pointer;
}
.user-referral-info button[disabled] {
	opacity: 0.3;
	cursor:not-allowed;
}
.user-referral-info button:last-child {
	margin-bottom: 0;
}
.user-referral-info button:hover {
	background: rgba(255, 76, 0, 1);
}
.user-referral-info button svg {
	position:relative;
	top: 3px;
	margin-right:10px;
}
.ref_balance {
	background: rgba(31, 31, 37, 1);
	max-width: 340px;
	padding: 20px;
	text-align: center;
	font-family: Nunito;
	margin-top:20px;
	border-radius: 10px;
	margin-bottom:20px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.ref_balance b {
	font-weight: 700;
	font-size: 27px;
}
.ref_balance p {
	font-weight: 400;
	font-size: 16px;
	color: rgba(80, 80, 96, 1);
}
.statistics {
	display: flex;
	gap: 20px;
	width: 100%;
	margin-bottom: 40px;
	/* flex-wrap: wrap; */
}
.statistics-item {
	width: 100%;
	background: rgba(26, 26, 33, 1);
	text-align: center;
	padding: 30px 30px;
	color:#fff;
	border-radius: 10px;
	font-family: Nunito;
}
.statistics-item b {
	font-size: 27px;
	font-weight: 700;
	line-height: 36.83px;
	text-align: left;
}
.statistics-item p {
	font-family: Nunito;
	font-size: 18px;
	font-weight: 400;
	line-height: 24.55px;
	color: rgba(80, 80, 96, 1);
}
.user-referral-list {
	width: 100%;
	max-width: calc(100% - 400px);
}
.table-list {
	background: rgba(255, 255, 255, 0.05);
	padding: 10px 20px;
	width: 100%;
	border-radius: 10px;
	margin-bottom:20px;
	border: 1px solid;
	border-image-source: linear-gradient(101.57deg, rgba(255, 255, 255, 0.1) 3.57%, rgba(53, 53, 65, 0) 96.66%);
}
.table-list table {
	width: 100%;
	border: 0px;
	margin-bottom: 0px;
}
.table-list table thead tr {
	border-bottom: 1px solid rgba(67, 67, 71, 1);
}
.table-list table tbody tr {
	border-bottom: 1px solid rgba(67, 67, 71, 1);
}
.table-list table tbody tr:last-child {
	border-bottom: 0;
}
.user-referral-list table thead th {
	background: none!important;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
.user-referral-list table tbody tr td {
	text-align: left;
}
a[data-class="referral"] {
	color:#6f6f82;
	font-family: Nunito;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0185FF;
	border: none;
	padding: 7px 15px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	gap: 5px;
	border-radius: 10px;
	transition: .3s linear;
	position: relative;
}

.table-list {
	display:block;
}
.div-list {
	display: none;
}
.div-list table tr td {
	padding:6px 0px;
}
.div-list table tr.eall {
	border-bottom:1px solid rgb(160 160 160);
}
.div-list table tr.eall td {
	padding-bottom: 13px;
}
.div-list table tr td:first-child {
	text-align: left;
	color:#fff;
	font-size: 22px;
	font-family: 'Bebas Neue Cyrillic';
    font-weight: 400;
}
.div-list table tr td:last-child {
	text-align: right;
	color:#6f6f82;
	font-size: 16px;
	
}

@media (max-width:1167px) {
	
	.user-referral-info {
		max-width: 100%;
	}
	.user-referral-list table {
		display: table;
		font-size:11px;
	}
	.user-referral-list table * {
		font-size:13px;
	}
	.user-referral-list table thead tr th {
		font-size:15px;
		min-width: 155px;
	}
	.table-list {
		overflow-x: scroll
	}
	.statistics {
		flex-wrap: wrap;
	}
	.statistics-item {
		 flex-grow: 1;
	}
	
}

@media (max-width:768px) {
	.table-list {
		display: none;
	}
	.div-list {
		display: block;
	}
	.user-referral-container {
		flex-wrap: wrap;
	}
	.user-referral-list {
		max-width: 100%;
	}
	.statistics {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
		.statistics-item {
			width: auto;
		}
	.ref_balance {
		margin-top: -60px;
	}
	.user-nav-container {
		flex-wrap: wrap;
	}
	.user-nav-container .user-nav-block { 
		width: 100%;
		text-align:center;
	}
	.user-nav-container .user-nav-block p {
		width: 100%;
		text-align: center;
		padding-bottom: 15px;
	}
	#referral .user-block-title {
		margin-top: 35px;
	}
	.user-referral-list .user-block-title {
			margin-bottom: 30px;
		}
	}

}

.table-list::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.table-list::-webkit-scrollbar-track {
  background: rgba(69, 69, 79, 1);
  border-radius: 10px; 
}

.table-list::-webkit-scrollbar-thumb {
  background-color: blue; 
  border-radius:10px; 
  border: 3px solid  rgba(255, 76, 0, 1);

}
@media (max-width:1265px) {
	.statistics {
	justify-content: space-between;
	}
}
.total_pay {
	text-align: center;
	margin-bottom: 20px;
	font-family: Nunito;
	color:#6f6f82;
}


header .online span {
	display:block;
	color: rgba(111, 111, 130, 1);
	font-family: Nunito;
	font-size: 13px;
	font-weight: 400;
	line-height: 21.82px;
	text-align: left;
}
header .online b {
	font-family: Bebas Neue Cyrillic;
	font-size: 20px;
	font-weight: 400;
	line-height: 22px;
	text-align: left;
	color:#fff;
	padding-left: 17px;
	background: url(/assets/image/icons/online.svg) no-repeat center left;
}

header .volume {
	display: block;
	width: 30px;
	height: 30px;
	outline: none;
	border: 0;
	/*margin-left: 30px;*/
	margin-right: 20px;
	background: url(/assets/image/icons/mute.svg) no-repeat center #353541;
	background-size: 16px;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}
header .volume:hover {
	transform: scale(0.95);
}
header .volume.active {
	border: 1px solid #ff611d;
	box-shadow: 0px 0px 10px #000;
	background: url(/assets/image/icons/volume.svg) no-repeat center #ff4c01;
	background-size: 16px;
}

/* Ð­Ñ„Ñ„ÐµÐºÑ‚ Ð½Ð°Ð¶Ð°Ñ‚Ð¸Ñ */
header .volume:active {
	transform: scale(0.95); /* Ð£Ð¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ðµ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° */
	box-shadow: 0px 0px 5px #000 inset; /* Ð’Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½ÑÑ Ñ‚ÐµÐ½ÑŒ Ð´Ð»Ñ Ð¾Ñ‰ÑƒÑ‰ÐµÐ½Ð¸Ñ Ð³Ð»ÑƒÐ±Ð¸Ð½Ñ‹ */
}

header .volume::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

header .links {
	margin-left: 17px;
}
header .links a {
	display: inline-block;
	padding: 10px 15px 10px 13px;
	color: rgba(94, 94, 94, 1);
	font-family: Nunito;
	font-size: 16px;
	font-weight: 600;
	text-align: left;
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-right: 5px;
}

header .links a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

header .links a:hover {
	color: #fff;
	background-color:#ff4c01;
}
header .links a svg {
	position: relative;
	top: 2px;
	margin-right:5px;
	max-height:15px;
}
header .links a:hover svg path {
	fill: #fff;
}
header .links a[href="/games"]:hover svg path {
	fill: none;
	stroke:#fff;
}
/* ÐšÐ¾Ð½Ñ‚Ñ€Ð°ÐºÑ‚Ñ‹ */

.page-contract {
	padding-top: 0px;
	margin-top: 30px;
	width: 100%;
	background: url(/assets/image/pages/contract/bg.png) no-repeat top;
	min-height:600px;
	background-size: 1550px;
	text-align: center;
}
.page-contract h1 {
	text-align: center;
	font-size:32px;
	width: 100%;
}
.page-contract .contract {
	background: rgba(33, 33, 41, 0.81);
	max-width: 1238px;
	margin: 0 auto;
	border-radius: 10px;
	margin-top: 370px;
	padding: 20px;
	margin-bottom: 80px;
	position: relative;
}
.page-contract .contract:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask:
			linear-gradient(#fff 0 0) padding-box, 
			linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}
.page-contract .contract .top-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	align-items: center
}
.page-contract .contract .top-bar h3 {
    font-family: 'Bebas Neue Cyrillic';
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    color: #fff;
}
.page-contract .contract .top-bar .total-sum span {
	font-family: Nunito;
	font-size: 14px;
	font-weight: 400;
	color: #6F6F82;
	text-align: left;
}
.page-contract .contract .top-bar .total-sum b {
	color:#Fff;
	font-family: Nunito;
	font-size: 14px;
	font-weight: 700;
	line-height: 19.1px;
	padding-left: 5px;
	text-align: left;
}
.page-contract .contract .top-bar .total-sum svg path {
	fill: #fff;
}
.page-contract .contract .top-bar a {
	color: #6F6F82;
	font-family: Nunito;
	font-size: 14px;
	font-weight: 400;
	z-index: 1;
}
.page-contract .contract .top-bar a:hover {
	color:#fff;
}
.page-contract .contract .limit {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	color:#fff;
	font-family: Nunito;
	font-size: 14px;
	font-weight: 700;
}
.page-contract .contract .limit .end {
	color: #6F6F82;
}

.page-contract .contract .limit .start svg path {
	fill: #fff;
}
.page-contract .contract .limit .end svg path {
	fill: #6F6F82;
}
.page-contract .contract .information-progress {
	height: 30px; 
	background-color: #2C2C34; 
	border-radius: 15px; 
	margin: 15px 0px 20px 0px;
	position: relative;
}

.page-contract .contract .information-progress .progress-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.page-contract .contract .information-progress .progress {
  height: 100%;
  width: 0; 
  background: linear-gradient(90deg, #0500FFA1, #0500FFA1, #9e9cffa1, #0500FFA1);
  background-size: 400% 400%;
  border-radius: 15px; 
  box-shadow: 0px 0px 26.7px 0px #A378FF6B;
  animation: gradientAnimation 5s linear infinite, fillProgress 5s linear forwards;
}

.page-contract .contract .error-auth {
	display: inline-block;
}
.page-contract .contract .balance-up {
	width: 100%;
  max-width: 308px;
  height: 53px;
  background-color: #FF4C00;
  font-family: 'Nunito';
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  border: none;
  margin: 20px 0px 10px 0px;
  transition: .3s ease;
  clip-path: polygon(4% 0%, 100% 0%, 100% 80%, 95% 100%, 0% 100%, 0% 25%);
}
.page-contract .contract .balance-up svg {
	position: relative;
	top: 2px;
	margin-right: 5px;
}
.page-contract .contract .js-contract-list {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 5px;
	flex-wrap: wrap;
}
.page-contract .contract .js-contract-list .drop-list-item-placeholder {
	background: #2C2C34;
	height: 7px;
	border-radius: 10px;
	width: 115px;
	height: 115px;
}
.page-contract .contract .js-contract-list .item {
	width: 115px;
	height: 115px;
	display: block;
	cursor:  pointer;
}
.page-contract .contract .js-contract-list .item .item-gun {
	display: none;
}
.page-contract .contract .js-contract-list .item .item-information {
	display: none;
}
.page-contract .contract .js-contract-list .item .item-line {
	width: 70%;
	position: inherit;
	top:0px;
}
.page-contract .contract .js-contract-list .item img {
	width: 100%;
	max-width: calc(100% - 30px);
	transform: none;
	left: 0;
	right: 0;
	top: 33%;
}
.page-contract .contract .js-contract-list .item:hover:after {
	content: ' ';
	display: block;
	background: #f00;
	width: 115px;
	height: 115px;
	border-radius: 10px;
	margin-left: -15px;
	margin-top: -5px;
	position: absolute;
	background: url(/assets/image/icons/remove.svg?) no-repeat center #ff2424;
	background-size: 30px;
	box-shadow: inset 0 0 50px rgb(0 0 0);
	border: 1px solid #ffffff1a;
	
}
.page-contract .contract .counter {
	text-align: left;
	margin-bottom: 15px;
	font-family: Nunito;
	font-size: 14px;
}
.page-contract .contract .counter span {
	font-weight: 400;
	color: #6F6F82;
	text-align: left;
}
.page-contract .contract .counter b {
	color:#Fff;
	font-size: 14px;
	font-weight: 700;
	padding-left: 5px;
	text-align: left;
}
.page-contract .drops {
	background: #1F1F25;
	max-width: 1430px;
	margin: 0 auto;
	border-radius: 15px;
	padding: 20px;
	position: inherit;
	margin-top: 30px;
}
.page-contract .drops .scroll-container {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: center;
	overflow-y: hidden;
}

.page-contract .drops .item {
	margin-bottom: 0px;
	max-width: 190px;
	cursor: pointer;
	text-align: left;
}

.page-contract .drops .item .item-gun {
	text-align: left;
}



@media (max-width: 1238px) {
	.page-contract .contract {
		margin-left: 10px;
		margin-right: 10px;
		overflow: hidden;
	}
}
@media (max-width: 1490px) {
	.page-contract .drops {
		margin: 30px 10px;
		padding: 7px;
	}
}

.page-contract-result {
	display: none;
	background: #353541;
	padding-bottom: 44px;
	max-width: 400px;
	margin: 0 auto;
	border-radius: 10px;
	margin-top: 50px;
	padding: 30px;
	text-align: center;
	box-shadow: inset 0px 0px 610px #000000;
	color:#fff;
	position: relative;
}
.page-contract-result::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 1px solid transparent;
	background: linear-gradient(to right, #FFFFFF1A, #35354100) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}
.page-contract-result img {
	max-width: 100%;
	width: auto;
}
.page-contract-result button {
	margin: 0 auto;
	margin-top: 20px;
}
.page-contract-result h3 {
	font-family: 'Bebas Neue Cyrillic';
    font-weight: 400;
    font-size: 28px;
    color: #fff;
}
.page-contract-result .name {
	font-weight: 400;
    font-size: 22px;
}
.page-contract-result .price {
	font-family: 'Nunito';
    font-weight: 700;
    font-size: 22px;
}
.page-contract-result .market_hash_name {
	font-family: 'Nunito';
    font-weight: 400;
    font-size: 16px;
	color:#6f6f82;
	padding-top:2px;
	padding-bottom: 5px;
}

@media (max-width:500px) {
	.page-contract .contract .top-bar h3 {
		flex: 1 1 100%;
		padding-bottom: 20px;
	}
	.page-contract .contract .js-contract-list {
		flex-wrap: nowrap;
		width: 1200px;
		/* min-width: 200px; */
		/* overflow-x: scroll; */
	}
	.page-contract .contract {
		margin-bottom: 40px;
		margin-top: 175px;
	}
	.page-contract h2 {
		font-size: 27px;
		max-width: 80%;
		margin: 0 auto
	}
	.page-contract {
		background-size: 778px;
	}
	.page-contract .drops {
		padding-right: 10px;
	}
	.page-contract .drops .scroll-container {
		max-height: 500px;
		overflow-y: scroll;
		overflow-x: hidden;
		padding-right: 10px;
		gap: 5px;
	}
	.page-contract .drops .item .item-information p {
		font-size: 10px;
	}
	.page-contract .drops .item .item-gun {
		font-size: 12px;
	}

	.page-contract .balance-up, .page-contract-result .balance-up {
		width: auto;
		padding-left: 40px;
		padding-right: 40px;
	}
	.page-contract-result {
		margin-left: 10px;
		margin-right: 10px;
	}
	.js-contract-list-container {
		overflow-x: scroll;
		position: relative;
		z-index: 1;
		padding-bottom: 10px;
	}
	.page-contract .drops .item .item-line {
		position: inherit;
		top: -5px;
	}
}
@media (max-width:360px) {
	.page-contract .drops .item {
		max-width:130px;
		padding: 10px;
	}
	.page-contract .drops .item .item-line {
		position: inherit;
		top: -13px;
	}
	
}
.page-contract .drops .scroll-container::-webkit-scrollbar {
    width: 5px;
}
.js-contract-list-container::-webkit-scrollbar {
    height: 5px;
}
.page-contract .drops .scroll-container::-webkit-scrollbar-track, .js-contract-list-container::-webkit-scrollbar-track {
	background: #45454F;
	border-radius: 10px;
}
.page-contract .drops .scroll-container::-webkit-scrollbar-thumb, .js-contract-list-container::-webkit-scrollbar-thumb {
    background-color: #FF4C00;
    border-radius: 10px; 
}
.page-contract .drops .scroll-container::-webkit-scrollbar-thumb:hover, .js-contract-list-container::-webkit-scrollbar-thumb:hover {
    background-color: #45454F;
}

.scroll-container .error-auth {
	margin: 20px;
	width: 100%;
}
.free-case-info-vk {
	background: #1F1F2B;
	margin-top: 20px;
	text-align:left;
	padding: 20px;
	margin: 20px 10px 10px;
	border-radius: 10px;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 13px;
	line-height: 1.6;
	color: #6F6F82;
}
.free-case-info-vk b {
	display:block;
	text-align: center;
	font-weight: 800;
	font-size: 16px;
	line-height: 2.6;
}
.free-case-info-vk ol {
	padding-left: 20px;
}
.free-case-info-vk ol ul {
	padding-left: 20px;
}
.free-case-info-vk a {
	color:#FF4C00;
}