/* 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 {
	background-color: #15151D;
	margin-bottom: 20px;
}
/* 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: 100px;
	/* height: 35px; */
	margin-right: 20px;
}

.mobile-games {
	position: relative;
	display: none;
}

.games-button {
	width: 160px;
	height: 40px;
	background-color: #FFFFFF0D;
	border-radius: 5px;
	padding: 9px 12px 9px 9px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.3s ease;
}

.games-button:hover {
	cursor: pointer;
}

.games-button.active {
	background-color: #8001f7;
	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: #FFFFFF;
	transition: .3s ease;
}

.games-container a:hover {
	background-color: #8001f7;
}

.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: #FFFFFF;
	border-radius: 1px;
	margin-bottom: 4px;
}

.burger-line2 {
	width: 31px;
	height: 4px;
	background-color: #FFFFFF;
	border-radius: 1px;
	margin-bottom: 4px;
	transition: width 0.4s ease;
}

.burger-line3 {
	width: 31px;
	height: 4px;
	background-color: #FFFFFF;
	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: 18px;
	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: 10px 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 {
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.3s ease;
}

.drop:hover .drop-container {
	transform: translateY(-50%);
}

.drop .current img {
	position: absolute;
	top: 9px;
	left: 40px;
}

.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: 3;
   
    height: 5px;
     border-radius: 0px 0px 4.5px 4.5px;
    margin-top: 105px;
}

.drop .title {
	position: relative;
	z-index: 1;
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 12px;
	margin: 60px 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;
}

.navigation-left {
	display: flex;
	align-items: center;
}

.navigation-right {
	display: flex;
	align-items: center;
}
 
.logo {
	margin-right: 30px;
}

.logo img {
	width: 200px; /* Заменил */
	height: 40px;
}

.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: #8001f7;
}

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: flex;
	align-items: center;
	background-color: #8001f7;
	border: none;
	padding: 10px 16px 10px 16px;
	border-radius: 10px;
	margin: 0px 30px 0px 30px;
	position: relative;
	overflow: hidden;
	transition: .3s ease;
}

.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;
}

.replenish p {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	position: relative;
	left: 0;
	transition: .3s ease;
}

.replenish svg {
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: .3s ease;
}

.replenish:hover {
	background-color: #FF611D;
	cursor: pointer;
}

.replenish:hover svg {
	opacity: 1;
	left: 10px;
}

.replenish:hover p {
	left: 8px;
}
/* Profile None */
.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: 12px;
	color: #585858;
}

.money {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 12px;
	color: #fff;
	margin: 0px 2px 0px 5px;
}
@media (max-width:1000px) {
	.money {
		font-size: 14px;
	}
	.balance span {
		font-size: 14px;
	}
}
.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';
}

.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;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 360px 0px 0px 0px;
}

.poster h1 {
	-webkit-text-stroke: 1px #000000;
	/*text-shadow: 1px 1px 2px black, 0 0 2em black, 0 0 0.7em black;*/
	text-shadow: black 1px 0 10px;
}

.poster p {
	-webkit-text-stroke: 0.1px #000000;
	/*text-shadow: 1px 1px 2px black, 0 0 2em black, 0 0 0.7em black;*/
	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: #8001f7;
	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: 1340px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 22.5px;
	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: 260px;
	height: 230px;
	margin: -15px 0px 0px -5px;
}

.case:hover .case-animation {
	filter: blur(70px);
	background-color: #FDFF17;
}

.case img {
	width: 250px;
	height: 220px;
	position: absolute;
	z-index: 2;
	transition: .3s ease;
}

.case-container {
	width: 250px;
	height: 220px;
}

.case-animation {
	width: 100px;
	height: 100px;
	background-color: #fbff17;
	border-radius: 50%;
	position: relative;
	left: 30%;
	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: #8001f7;
	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: 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: #8001f7;
	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: #8001f7;
	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;
}


.stats {
	display: flex;
	align-items: center;
}

.stats-case {
	margin-bottom: 10px;
}

.stats-people {
	margin-bottom: 10px;
}

.stats-case img {
	margin-right: 10px;
}

.stats-contract img {
	margin-right: 18px;
}

.stats-people img {
	margin-right: 10px;
}

.stats-upgrade img {
	margin-right: 12px;
}

.footer-decoration {
	position: relative;
	top: -92px;
	margin-left: -2000px;
}

.footer-decoration-mobile {
	display: none;
	position: absolute;
 	z-index: 1;
 	top: -50px;
	right: 0;
}
/* 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: #8001f7;
}

.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: #FFFFFF;
	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: #8001f7;
	color: #FFFFFF;
	stroke: #FFFFFF;
}

.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: #8001f7;
	color: #FFFFFF;
	stroke: #FFFFFF;
}

.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: 32px;
	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: #FFFFFF;
	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: #8001f7;
	cursor: pointer;
}

.promocode svg {
	margin-right: 10px;
}

.main-open {
	background-color: #15151D;
	/* height: 460px; */
	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: #FFFFFF;
	margin-bottom: -8px;
	position: relative;
	z-index: 2;
}

.open img {
	width: 330px;
	/* height: 220px; */
	position: relative;
	z-index: 1;
	margin-bottom: 27px;
}

.open-container {
	display: flex;
	align-items: center;
	margin: 20px 0px 0px 0px;
}
.open-container a {
	color:#8001f7;
}

.open svg {
	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: #FFFFFF;
	margin: 0px 10px 1.5px 0px;
}

.open span {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
}

.open p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #6F6F82;
	/* margin-top: 19px; */
}

.alternate-container {
	/* display: none; */
	background-color: #15151D;
	/* height: 460px; */
	width: 100%;
	max-width: 1340px;
	/* padding: 10px; */
	border-radius: 10px;
	overflow: hidden;
}

.alternate-block {
	width: 100%;
	max-width: 1000px;
	display: flex;
	align-items: center;
	/* white-space: nowrap; */ /* Ð§Ñ‚Ð¾Ð±Ñ‹ ÑÐ»ÐµÐ¼ÐµÐ½Ñ‚Ñ‹ Ð½Ðµ Ð¿ÐµÑ€ÐµÐ½Ð¾ÑÐ¸Ð»Ð¸ÑÑŒ Ð½Ð° Ð½Ð¾Ð²ÑƒÑŽ ÑÑ‚Ñ€Ð¾ÐºÑƒ */
	/* animation: spin 3s ease-in-out forwards; */
}

.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: #FFFFFF;
}

.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: #FFFFFF;
	border-radius: 10px;
	transition: .4s ease;
}

.buy-x-container button:hover, .buy-x-container button.active {
	background-color: #8001f7;
	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: 10px 30px 11px 30px;
	/* height: 40px; */
	background-color: #8001f7;
	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: #FFFFFF;
}

.balance-up:hover {
	background-color: #FF611D;
	cursor: pointer;
}

.balance-up p {
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color: #FFFFFF;
}

.balance-up svg {
	margin-left: 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: #FFFFFF;
}

/* 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: 136px;
	top: 40%;
	margin: 0 auto;
	/* left: 20%; */
}

.personal-content .item img {
	position: absolute;
	width: 116px;
	top: 30%;
	margin: 0 auto;
	/* left: 20%; */
}

.item-gun {
	font-family: 'Nunito';
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	margin-top: 90px;
}

.item-line {
	width: 110px;
	height: 5px;
	margin: 0px 0px 0px 40px;
	border-radius: 0px 0px 4.5px 4.5px;
	position: absolute;
	top: 0;
}

.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;
}
/* 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: #FFFFFF;
	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: #FFFFFF;
	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: #FFFFFF;
	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: #FFFFFF;
	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 0px 15px 0px;
	background-color: #FFFFFF0D;
	border-radius: 10px 0px 0px 10px;
	border: none;
	transition: .4s ease;
}

.main-replenish p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	position: relative;
	left: 0;
	transition: .4s ease;
}

.main-replenish svg {
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: .4s ease;
}

.main-replenish:hover, .main-replenish.active {
	background-color: #FF4C00;
	cursor: pointer;
}

.main-replenish:hover svg, .main-replenish.active svg {
	opacity: 1;
	left: 80px;
}

.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 0px 15px 0px;
	background-color: #FFFFFF0D;
	border-radius: 0px 10px 10px 0px;
	border: none;
	transition: .4s ease;
}

.main-withdraw p {
	font-family: 'Bebas Neue Cyrillic';
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	position: relative;
	left: 0;
	transition: .4s ease;
}

.main-withdraw svg {
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: .4s ease;
}

.main-withdraw:hover, .main-withdraw.active {
	background-color: #FF4C00;
	cursor: pointer;
}

.main-withdraw:hover svg, .main-withdraw.active svg {
	opacity: 1;
	left: 105px;
}

.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: 20px;
	line-height: 20px;
	color: #FFFFFF;
	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;
}

.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: #FFFFFF;
	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: #FFFFFF;
	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: #FFFFFF;
}

.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: #FFFFFF;
}

.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;
}

.icon-text {
	text-align: left;
	margin-left: 10px;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
}

.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;
}

.icon-button:hover {
	background-color: #FF550D;
	cursor: pointer;
 } 

.icon-button:hover p {
	color: #FFFFFF;
}

.icon-button.active{
	background-color: #FF611D;
}

.icon-button.active p{
	color: #FFFFFF;
}

.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;
}

.selected-container {
	display: flex;
	align-items: center;
}

.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: #FFFFFF;
	margin-top: 7px;
}

.payment-block {
	position: relative;
	width: 100%;
	height: 40px;
}

.payment-block input {
	width: 100%;
	height: 100%;
	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;
	font-size: 16px;
	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: #FFFFFF;
	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: #FFFFFF;
	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: #FFFFFF;
	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;
	/* height: 420px; */
	display: none;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	padding-bottom: 30px;
	background-color: #131319E8;
	border-radius: 20px;
	/* backdrop-filter: blur(10px); */
	box-shadow: 0px 0px 75px #ff4c004a;
}

.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: #FFFFFF;
	text-align: center;
	width: 100%;
	max-width: 520px;
	position: relative;
}

.modal input {
	width: 100%;
	max-width: 478px;
	/* height: 50px; */
	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;
}

.next {
	/* width: 160px; */
	/* height: 50px; */
	padding: 15px 30px;
	background-color: #8001f7;
	border-radius: 10px;
	border: none;
	font-family: 'Nunito';
	font-weight: 700;
	font-size: 16px;
	color:	#FFFFFF;
	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: #FFFFFF;
	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: #FFFFFF;
	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: #8001f7;
	border-radius: 0px 5px 5px 0px;
}

.activation svg {
	width: 40px;
	height: 20px;
}

.activation p {
	font-family: 'Nunito';
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 20px;
}
@media (max-width: 1400px) {
	.mobile-games {
		display: inline-block;
	}

	.games {
		display: none;
	}
}

@media (max-width: 1270px) {
	.footer-stats {
		display: none;
	}
}

@media (max-width: 1000px) {
	.no-scroll {
    overflow: hidden;
	}

	.header-navigation {
		display: none;
	}

	.header-drop {
		padding: 10px 0px 0px 15px;
	}

	.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: 172px;
		height: 160px;
	}

	.case .case-container img {
		width: 172px;
		height: 160px;
	}

	.case:hover img {
		width: 180px;
		height: 168px;
	}

	.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;
		/* top: -260px; */
		/* margin-bottom: -260px; */
	}

	.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;
		/* height: 718px; */
	}


	.main-page-case .main-navigation {
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin: 50px 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: 150px;
		height: 110px;
		/* margin: 0 auto; */
	}

	.item img {
		width: 80px;
		top: 32%;
	}

	.item-gun  {
		margin-top: 48px;
	}

	.item-line {
		width: 80px;
		margin: 0px 0px 0px 30px;
	}
	/* 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: 18px;
	}

	.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;
	}

	.main-replenish p {
		font-size: 32px;
		line-height: 32px;
	}

	.main-withdraw {
		height: 57px;
		width: 100%;
	}

	.main-withdraw p {
		font-size: 32px;
		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: 40px 15px 0px 15px;
	}

	.main-right {
		width: 100%;
		max-width: 100%;
		background-color: #FFFFFF0D;
		padding: 40px 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: 30px 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: 20px;
		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;
	}
}

/* new */

.case--not-available {
	opacity: 0.2
}
.hidden {
	display: none;
}

form {
	min-width: 320px;
	text-align:center;
	max-width: 400px;
}
.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';
}
.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: #8001f7;
    transition: all 0.3s ease;
}

.faq-item.active .heading:before {
    background: #8001f7;
}

.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: #8001f7;
    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: #8001f7;
    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: #FFFFFF;
    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: #FFFFFF;
	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: #ffffff;
    box-shadow: 0px 4px 14.9px 0px #818181a1;
    transition: .3s ease;
}

#settings, #settings_mobile {
	margin: 0 auto;
	margin-top: 20px;
}
#settings input, #settings_mobile 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: 7px auto;
    text-align: center;
    position: relative;
}
#settings p, #settings_mobile p {
	color:#a6a6a6;
	font-family: 'Nunito';
	font-size:14px;
	text-align: left;
	padding-left: 10px;
	padding-top: 10px;
}

.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%;
	}
}
@media (max-width:768px) {
	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;
	}
}