input,
input:focus,
input:active,
button,
button:focus,
button:active {
	outline: none;
	border: none;
	background: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Geometria', sans-serif;
	user-select: none;
	font-style: normal;
	text-decoration: none;
}

#waves {
    opacity: 0.5;
	flex: 0 0 auto;
}

html::-webkit-scrollbar{
	width: 4px;
}
html::-webkit-scrollbar-track{
	background: rgba(0,0,0,0.8);
}
html::-webkit-scrollbar-thumb{

	background: #1A1A1D;
}

#snowfall {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	z-index: -1;
	overflow: hidden;
	flex: 0 0 auto;
}


.alert {
	color: white;
	padding: 0px 20%;
}

html {
	background: linear-gradient(180deg, #1a1a1d, #0e0e0e);
	min-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}

body{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.content{
	flex: 1 0 auto;
}

#darknessBackground {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 50;
	transition: .2s;
}

.userSettings {
	position: absolute;
	border-radius: 16px;
	background: #1a1a1d;
	z-index: 51;
	color: white;
	right: 24.7%;
	top: 2.5%;
	max-height: 0;
	padding: 10px;
	animation: anim_show 0.25s ease-in-out both;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.userSettings:nth-child(1n) a,
.userSettings:nth-child(1n) p {
	width: calc(100% + 20px);
	/* animation: anim_opacity 0.25s 0.25s ease-in-out both; */
	/* opacity: 0; */
}

.userSettings a i {
	font-size: 20px;
	margin-right: 5px;
}

@keyframes anim_opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.userSettings .username {
	font-size: 20px;
	vertical-align: middle;
	color: white;
}

.userSettings .username i {
	margin-bottom: 2px;
}

.userSettings hr {
	margin-bottom: 20px;
	width: 20px;
}

.userSettings hr.down {
	margin-left: calc(100% - 20px);
	margin-bottom: 0px;
	margin-top: 10px;
}

.userSettings.close {
	animation: anim_close 0.25s ease-in-out both;
}

@keyframes anim_show {
	0% {
		max-height: 0px;
		/* padding: 0px; */
	}
	100% {
		max-height: 300px;
		/* padding: 10px; */
	}
}

@keyframes anim_close {
	0% {
		max-height: 300px;
		/* padding: 10px; */
	}
	100% {
		max-height: 0px;
		/* padding: 0px; */
	}
}

.userSettings img {
	vertical-align: middle;
	margin-right: 5px;
}

.userSettings p {
	padding: 5px 0px;
	font-size: 16px;
	font-family: 'Geometria';
	font-weight: 500;
	cursor: pointer;
	transition: .2s;
}

.userSettings p:hover {
	filter: brightness(0.5);
}

.userSettings a {
	padding: 5px 0px;
	font-size: 16px;
	font-family: 'Geometria';
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: .2s;
}

.userSettings a:hover {
	filter: brightness(0.5);
}

.auth {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: white;
	padding: 4px 8px;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Geometria';
	font-weight: 500;
	transition: .2s;
}

.auth:hover {
	filter: brightness(0.5);
}

.header {
	/*background: #1a1a1d;*/
	width: 100%;
	height: 70px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	/* padding: 0px 400px; */
	padding: 0px 21vw;
	justify-content: space-between;
	z-index: 1;
	backdrop-filter: blur(5px);
}

.header .logo {
	font-family: 'Geometria';
	font-weight: bold;
	color: #878787;
	font-size: 5vh;
	text-decoration: none;
}

.header .logo img{
	vertical-align: middle;
	margin-bottom: 7px;
}

.header .acc_info {
	display: flex;
	align-items: center;
}

.header .acc_info .socicon {
	color: white;
	font-size: 26px;
	margin-left: 20px;
	transition: .2s;
}

.header .acc_info .socicon.discord:hover {
	color: #7289DA;
}

.header .acc_info .socicon.youtube:hover {
	color: #FF0000;
}

.header .acc_info .socicon.telegram:hover {
	color: #0088cc;
}

.header .acc_info .socicon.vk:hover {
	color: #597da3;
}

.header .acc_info .user {
	position: relative;
	margin-left: 10px;
}

.header .acc_info .user img {
	width: 45px;
	border-radius: 50%;
	z-index: 1;
	transition: .2s;
}

.header .acc_info .user .borderDashed {
	position: absolute;
	top: -3px;
	left: -3px;
	width: 51px;
	height: 51px;
	border: 2px dashed white;
	border-radius: 50%;
	z-index: 2;
	transition: .2s;
}

.header .acc_info .user:hover img {
	filter: brightness(0.5);
	transition: .2s;
}

.header .acc_info .user:hover .borderDashed {
	animation: rotate_border 10s infinite linear;
	cursor: pointer;
	transition: .2s;
}

.header .acc_info .balance .money {
	font-family: 'Geometria';
	font-size: 13px;
	color: #fff;
}

.header .acc_info .balance .donate {
	font-family: 'Geometria';
	font-weight: 500;
	font-size: 13px;
	color: #878787;
}

.header .acc_info .balance .donate:hover {
	text-decoration: underline;
	filter: brightness(0.8);
	cursor: pointer;
}

.header_buttons {
	z-index: 3;
	padding: 0px 24vw;
	/* width: calc(100% - 10.5vw); */
	justify-content: space-around;
	display: flex;
	height: 100px;
}

.header_buttons.fix {
	position: fixed;
	top: 0;
	width: 100%;
}

.header_buttons .button {
	/*background: #1a1a1d;*/
	height: 40px;
	width: 160px;
	border-radius: 0px 0px 12px 12px;
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
	font-family: 'Geometria';
	font-weight: 500;
	color: white;
	text-align: center;
	line-height: 40px;
	transition: .2s;
	cursor: pointer;
	backdrop-filter: blur(5px);
}

.header_buttons .button:hover {
	height: 55px;
	line-height: 62px;
}

@keyframes rotate_border {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}

.content {
	/* position: absolute;
	width: 100%;
	top: 25%; */
	min-height: 100%;

	padding: 0px 19vw;
}

.cheatsList {
	display: flex;
	flex-wrap: wrap;
}

.cheatsStatus {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cheat {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: white;
	width: 210px;
	/* height: 40px; */
	/*background: #1A1A1D;*/
	/*border: 2px dashed #48484A;*/
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
	border-radius: 12px;
	padding: 10px 5px;
	margin-right: 12px;
	margin-top: 10px;
	backdrop-filter: blur(5px);
}

.cheat .block {
	margin-left: 5px;
}

.cheat .status {
	font-family: 'Geometria';
	font-weight: 500;
}

.cheat .status.ud {
	color: #00FF0A;
}

.cheat .status.ou {
	color: #ff9900;
}

.cheat .status.od {
	color: #FAFF00;
}

.cheat .status.rsk {
	color: #FF0F00;
}

.cheat .status.freezed {
	color: #4A95AD;
}

.info_block {
	margin-right: calc(100% - 400px);
	color: white;
	/*background: #1A1A1D;*/
	/*border: 2px dashed #48484A;*/
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
	border-radius: 12px;
	padding: 10px 5px;
	backdrop-filter: blur(5px);
}

.game {
	position: relative;
	background: rgba(0, 0, 0, 0.8);
	width: 320px;
	height: 180px;
	border-radius: 12px;
	cursor: pointer;
	transition: .2s;
	margin-right: 20px;
	margin-top: 20px;
}

.game .fullbg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;

}

.game.sale::after{
	content:'';
	width: 100px;
	height: 100px;
	position: absolute;
	top: -10px;
	right: -10px;

	background: url('../img/tag2.png');
	background-size: cover;
}

.game .info{
	position: absolute;
	width: 100%;
	bottom: -50%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: rgba(0, 0, 0, 0.8);
	transition: .4s;
}

.game .info.v4{
	bottom: -66%; // +16 for new count
}
.game .info.v3{
	bottom: -50%;
}
.game .info.v2{
	bottom: -34%;
}

.game .info.v1{
	bottom: -19%;
}
.game .info.v0{
	bottom: 0%;
}
.game:hover .info{
	border-radius: 10px;
	bottom: 0%;
}

.game p {
	width: 100%;
	padding: 5px 10px;
	bottom: 0;
	color: white;
	
}


#login-panel {
	position: absolute;
	width: 320px;
	left: 50%;
	/* margin-left: 25%; */
	transform: translate(-50%);
	margin-top: 5%;
}

#login-panel h1 {
	color: rgb(255, 255, 255);
	margin: 20px 35px;
	width: 200px;
	text-align: center;
}

#login-panel #login-form {
	height: 90px;
	width: 300px;
	border-radius: 8px;
	position: relative;
}

#login-panel #login-form::before {
	display: block;
	position: relative;
	height: 2px;
	background: #1a1a1d;
	content: '';
	top: 44px;
	margin-left: 20px;
	z-index: 1;
}

#login-panel #login-form input:first-of-type {
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

#login-panel #login-form input:last-of-type {
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

#login-panel #login-form input[type="text"],
#login-panel #login-form input[type="password"],
#login-panel #login-form button[type="submit"] {
	background: rgb(52, 56, 61);
	box-shadow: inset -100px -100px 0 rgb(52, 56, 61);
	color: white;
}

#login-panel #login-form input[type="text"],
#login-panel #login-form input[type="password"] {
	position: relative;
	display: block;
	width: 280px;
	height: 45px;
	border: 0;
	outline: 0;
	top: -2px;
	padding: 0 0 0 20px;
	font-weight: 700;
}

#login-panel #login-form input[type="password"] {
	border-radius: 0px 0px 8px 8px;
}

#login-panel #login-form input[type="text"]:focus,
#login-panel #login-form input[type="password"]:focus {
	color: rgb(255, 255, 255);
}

#login-panel #login-form button[type="submit"] {
	display: block;
	position: absolute;
	width: 52px;
	height: 52px;
	color: #1a1a1d;
	border-radius: 50px;
	outline: 0;
	z-index: 2;
	top: 19px;
	right: -24px;
	border: 6px solid #1a1a1d;
	font-size: 30px;
	text-indent: 0px;
	padding-left: 4px;
	padding-bottom: 10px;
	text-align: center;
}

#login-panel #login-form button[type="submit"]:hover {
	color: rgb(0, 126, 165);
	text-shadow: 0 0 10px rgb(0, 126, 165);
	cursor: pointer;
}

#login-panel #login-form a {
	color: rgb(111, 119, 135);
	text-decoration: none;
	/* padding: 0 20px; */
	font-weight: 700;
	font-size: 12px;
	margin: 5px 0 0 0;
	margin-left: 20px;
}

#login-panel #login-form a:hover {
	border-bottom: 1px solid;
}

.speedbar {
	margin-left: 5%;
	text-decoration: none;
	color: white;
	font-family: 'Geometria';
	display: none;
}

.speedbar i {
	font-size: 22px;
}

.speedbar a {
	color: white;
	text-decoration: none;
	content: '1';
}


/* Modal Registration */

.clean_form_block * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clean_form_block *:before,
.clean_form_block *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.overlay_clean {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow-y: auto;
	z-index: 99;
}

.clean_form_block {
	font-family: 'Geometria', sans-serif;
	visibility: hidden;
}

.clean_form {
	width: 395px;
	margin: 100px auto 140px auto;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 999;
}

.clean_form_block.show_form .clean_form {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1 !important;
	visibility: visible !important;
}

.border_top_clean_form {
	height: 4px;
}

.border_top_clean_form div {
	width: 20%;
	height: 4px;
	float: left;
}

.clean_forms {
	clear: both;
}

.body_clean_form {
	background: #fff;
	position: relative;
}

.title_clean_form {
	font-weight: 700;
	font-size: 24px;
	color: #464646;
	padding: 24px 0 0 27px;
}

.description_clean_form {
	font-size: 14px;
	color: #666;
	padding: 0 29px 0 28px;
	line-height: 16px;
}

.border_clean_form_1 {
	border-bottom: 1px solid #e4e4e4;
	margin: 18px 0 0 0;
}

.input_name_clean_form {
	font-size: 14px;
	color: #666;
	padding: 22px 0 4px 3px;
}

.f_input_clean_form {
	border: 1px solid #e2e2e2;
	width: 100%;
	height: 49px;
	border-radius: 4px;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1) inset;
	padding: 0 15px;
	color: #666;
	font-size: 18px;
	transition: .2s;
	background: #fff;
}

.f_input_clean_form:focus {
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1) inset, 0px 0px 4px 0px rgba(49, 177, 226, .8);
	border: 1px solid #31b1e2;
	transition: .2s;
}

.form_block_clean_form {
	padding: 3px 29px 25px 29px;
}

.fbutton_clean_form {
	display: block;
	height: 45px;
	border: 0;
	border: 2px solid #2969b0;
	border-radius: 4px;
	/* background: #2c82c9; */
	color: #2969b0;
	/* text-shadow: 0 1px 0 #2969b0; */
	font-weight: 700;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	margin: 24px 0 0 0;
	font-size: 15px;
	font-family: 'Geometria', sans-serif;
	width: 205px;
}

.footer_clean_form span {
	background: #fff;
	display: block;
}

#result-registration font {
	font-size: 12px;
	display: block;
	margin: 5px 0 -4px 0;
}

#result-registration font li {
	list-style-type: none;
}

.close_clean_form {
	position: absolute;
	top: 10px;
	right: -40px;
	cursor: pointer;
	z-index: 150;
	background: url('../img/close.png') no-repeat center center;
	background-size: cover !important;
	width: 20px;
	height: 20px;
	opacity: 0.6;
	transition: .2s;
}

.close_clean_form:hover {
	opacity: 0.8;
	transition: .2s;
}

.validation_ok {
	display: block;
	border-radius: 4px;
	border: 1px dashed #ddd;
	padding: 11px 14px;
	margin: 15px;
}

.validation_ok div {
	padding: 8px 0 0 0;
}

.validation_ok a {
	color: #2c82c9;
	text-decoration: underline;
}

.validation_ok a:hover {
	text-decoration: none;
}


/* Billing */

.billing-pay-step .coins_input {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background: #1A1A1D;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	width: 300px;
	padding: 5px 0px;
	margin-top: 5px;
	margin-bottom: 10px;
}

.billing-pay-step .coins_input i {
	color: white;
	font-size: 20px;
	margin-right: 10px;
}

.billing-pay-step .coins_input input {
	background: none;
	border: none;
	outline: none;
	color: white;
	font-size: 18px;
	width: 240px;
	height: 40px;
}

.billing-pay-step {
	position: absolute;
	left: 50%;
	margin-top: 5%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: content-box;
	width: 300px;
	/*background: rgba(26,26,26,0.6);*/
	border-radius: 8px;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
	padding: 15px;
	backdrop-filter: blur(5px);
}

.billing-pay-step label {
	color: white;
}

.billing-pay-step button {
	background: #4a85ad;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	color: white;
	border-radius: 8px;
	margin-top: 10px;
	filter: brightness(0.8);
	height: 40px;
	width: 300px;
	cursor: pointer;
	transition: .2s;
}

.billing-pay-step button:hover {
	filter: brightness(1);
}

.billing-waiting {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 1fr;
	grid-template-rows: 0.6fr 1.8fr 0.6fr;
	gap: 0px 0px;
	grid-auto-flow: row;
	grid-template-areas: "InvoiceInfo InvoiceInfo ." "paymentLists paymentLists paymentLists" "Submit Submit Submit";
}

.InvoiceInfo {
	justify-self: start;
	align-self: center;
	grid-area: InvoiceInfo;
	color: white;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

input[type=radio] {
	display: none;
}

.paymentLists {
	justify-self: stretch;
	grid-area: paymentLists;
	color: white;
}

.paymentLists .payments {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.billing-pay-label {
	margin: 10px;
}

.billing-pay-label>input {
	visibility: hidden;
	position: absolute;
}

.billing-pay-label>input+img {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
	background: #ffffff3b;
	border-radius: 6px;
	backdrop-filter: blur(4px);
	cursor: pointer;
	opacity: 0.5;
}

.billing-pay-label>input:checked+img {
	opacity: 1;
}

.Submit {
	justify-self: center;
	align-self: center;
	grid-area: Submit;
	margin-top: 30px;
}

.Submit input {
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
	background: #4a85ad;
	border-radius: 6px;
	font-family: 'Geometria';
	opacity: 0.8;
	font-size: 18px;
	font-weight: 500;
	padding: 7px 40px;
	color: white;
	backdrop-filter: blur(4px);
	translate: .2s;
	cursor: pointer;
}

.Submit input:hover {
	opacity: 1;
}

.spoiler {
	background-color: #1a1a1d;
	;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.35);
	padding: 5px 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	max-height: 300px;
	overflow-y: auto;
}

.spoiler-toggle {
	font-weight: bold;
	cursor: default;
	padding: 5px;
	font-size: 12px;
	color: #ffffff;
}

.spoiler-text {
	padding: 5px;
}

.shipment {
	display: grid;
	grid-template-columns: 0.35fr 1.4fr;
	grid-template-rows: 2fr;
	gap: 0px 0px;
	grid-template-areas: "gaming descript";
}

.gaming {
	margin-right: 20px;
	grid-area: gaming;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	color: white;
}

.gaming .buy,
.buyCheat .buy {
	margin-right: 20px;
	margin-top: 20px;
	background: #1A1A1D;
	height: 38px;
	width: 200px;
	color: white;
	border-radius: 8px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	transition: .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gaming .buy:hover,
.buyCheat .buy:hover {
	filter: brightness(1.2);
}

.gaming .image {
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	width: 200px;
	height: 200px;
}

.gaming .selGame,
.buyCheat .selGame {
	margin-right: 20px;
	width: 10px;
	height: 10px;
	background: #4B4B4B;
	border-radius: 10px;
	margin-right: 10px;
}

.gaming .selGame.active,
.buyCheat .selGame.active {
	background: #1DFA5B;
	box-shadow: 0px 0px 4px #1DFA5B;
}

.descript {
	grid-area: descript;
}

.shipgame {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	color: white;
}

.shipgame:hover {
	color: gray;
	cursor: pointer;
}


/*

 Social Links 
 Position: Right Bottom

*/

.socialLinks {
	position: fixed;
	bottom: 30px;
	right: 30px;
	height: 45px;

	display: grid; 
	grid-template-columns: 45px 45px 45px 45px 45px; 
	grid-template-rows: 45px; 
	gap: 0px 10px; 
	grid-template-areas: 
		". . . . ."; 
}

.socialLinks .socicon {
	color: white;
	font-size: 26px;
	transition: .2s;	
	line-height: 0;

	display: flex;
	align-items: center;
	justify-content: center;
	
	border-radius: 45px;

	opacity: 0.6;

	background: #323232;
	width: 45px;
	height: 45px;
}

.socialLinks .socicon:after
{
	content: attr(data-title);
	display: none;
	box-sizing: content-box;
	position: absolute;
	bottom: 130%;
	color: #fff;
	word-wrap: none;
	backdrop-filter: blur(4px);
	padding: 8px;
	height: 10px;
	min-width: 50px;
	line-height: normal;
	text-align: center;
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,.75);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.75);
	box-shadow: 0 1px 1px rgba(0,0,0,.75);
	font-size: 12px;
}

.socialLinks .socicon:hover:after{display: block;}

.socialLinks .socicon:hover{
	opacity: 0.9;
}

.socialLinks .socicon.discord:hover {
	color: #7289DA;
}

.socialLinks .socicon.youtube:hover {
	color: #FF0000;
}

.socialLinks .socicon.telegram:hover {
	color: #0088cc;
}

.socialLinks .socicon.vk:hover {
	color: #597da3;
}

@media (max-width: 800px) {
	.socialLinks{
		display: none;
	}
}



.curpage{
    color: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: row;
    align-items: center;

    margin-bottom: 20px;

}
  
.curpage hr{
    width: 30px;
    height: 2px;
    border-radius: 12px;
    background: rgba(255,255,255,0.75);
    margin-right: 5px;
} 

.curpage h1{
    font-size: 18px;
}  


/* Modal */

#modal{
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow:hidden;
    background: rgba(0,0,0,0.65);
    z-index: 15;
    backdrop-filter: blur(2px);
}

#modal #close{
    color:  white;
    font-size: 34px;
    position: absolute;
    right: 1%;
    top: 1%;
    cursor: pointer;
    transition: .2s;
}

#modal #close:hover{
    color: rgb(131, 0, 0);
}

/* Modal Auth & Register */

#modal__Auth{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0e0e0e; /* #14213D90; */
    padding: 20px;
    border-radius: 8px;
    color:  white;
}

#modal__Auth #modal__Auth_Header {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

#modal__Auth #modal__Auth_Header > p{
    color: white;
    width: 50%;
    text-align: center;
    padding: 12px 0px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#modal__Auth #modal__Auth_Header > p:nth-child(1){
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
}

#modal__Auth #modal__Auth_Header > p.active{
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    text-shadow: 0px 0px 4px white;
}

#modal__Auth #modal__Auth_Content #catAuth,
#modal__Auth #modal__Auth_Content #catReg
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#modal__Auth #modal__Auth_Content label{
    margin-top: 10px;
}
#modal__Auth #modal__Auth_Content .input_block{
    margin-top: 5px;
    padding: 4px 6px;
    font-size: 18px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
}
#modal__Auth #modal__Auth_Content .input_block input{
    padding: 4px;
    font-size: 18px;
    color: white;
}
#modal__Auth #modal__Auth_Content .input_block i {
    margin-right: 3px;
    margin-left: 5px;
}

#modal__Auth #modal__Auth_Content .button_auth{
    margin-top: 25px;
    padding: 4px 6px;
    font-size: 18px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    transition: .2s;
    cursor: pointer;
}
#modal__Auth #modal__Auth_Content .button_auth:hover{
    color: white;
}
#modal__Auth #modal__Auth_Content .button_auth i{
    margin-right: 3px;
}

#modal__Auth #modal__Auth_Content #captcha{
    margin-top: 25px;
}

#modal__Auth #modal__Auth_Content .forgot{

    margin-top: 3px;
    color: rgba(255,255,255,0.5);
    transition: .2s;
	text-decoration: line-through;
    cursor: pointer;
}

#modal__Auth #modal__Auth_Content .forgot:hover{
    color: white;
}


/* Modal Buy DWCoin */
#modal__Payments{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0e0e0e; /* #14213D90; */
    padding: 20px;
    border-radius: 8px;
    color:  white;
	min-height: 350px;
	max-height: 420px;
}

#modal__Payments #modal__Payments_Header {
    text-align: center;
	margin-bottom: 20px;
	position: relative;
}
#modal__Payments #modal__Payments_Header::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 25%;
	width: 50%;
	height: 1px;
	background: rgba(255,255,255,0.5);
}
#modal__Payments #modal__Payments_Content {
	display: flex;
	justify-items: space-between;
	align-items: center;
}
#modal__Payments #modal__Payments_Content .payments{
	flex: 0 0 auto;
	margin-right: 10px;
	max-height: 340px;
	overflow-y: hidden;
	
}

#modal__Payments #modal__Payments_Content .payments .data{
	overflow-y: auto;
	padding-right: 5px;
	max-height: 315px;
}

#modal__Payments #modal__Payments_Content .payments .data::-webkit-scrollbar{
	width: 4px;
}
#modal__Payments #modal__Payments_Content .payments .data::-webkit-scrollbar-track{
	background: rgba(0,0,0,0.5);
}
#modal__Payments #modal__Payments_Content .payments .data::-webkit-scrollbar-thumb{

	background: #1A1A1D75;
}
#modal__Payments #modal__Payments_Content .payments h1{
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
}

#modal__Payments #modal__Payments_Content .payments .payment{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	padding: 5px;
	filter:brightness(0.5);
	background: rgba(0,0,0,0.2);
	border-radius: 8px;
	max-width: 170px;
	transition: .2s;
	cursor: pointer;
	margin-bottom: 10px;
}
#modal__Payments #modal__Payments_Content .payments .payment:hover{
	filter:brightness(0.8);
}
#modal__Payments #modal__Payments_Content .payments .payment.active{
	filter:brightness(1);
}

#modal__Payments #modal__Payments_Content #paymentData{
	flex: 0 1 auto;
    margin-left: 10px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modal__Payments #modal__Payments_Content #paymentData .rate{
	color: #9f9f9f;
	margin-bottom: 50px;
}

#modal__Payments #modal__Payments_Content #paymentData label{
    margin-top: 10px;
}
#modal__Payments #modal__Payments_Content #paymentData .input_block{
    margin-top: 5px;
    padding: 4px 6px;
    font-size: 18px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
}
#modal__Payments #modal__Payments_Content #paymentData .input_block input{
    padding: 4px;
    font-size: 18px;
    color: white;
}
#modal__Payments #modal__Payments_Content #paymentData .input_block i {
    margin-right: 3px;
    margin-left: 5px;
}

#modal__Payments #modal__Payments_Content #paymentData .button_pay{
    margin-top: 25px;
    padding: 4px 6px;
    font-size: 18px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    transition: .2s;
    cursor: pointer;
	width: 100%;
}
#modal__Payments #modal__Payments_Content #paymentData .button_pay:hover{
    color: white;
}
#modal__Payments #modal__Payments_Content #paymentData .button_pay i{
    margin-right: 3px;
}

/*NEW STYLES*/

.d-flex {
    display: flex;
}
.d-none {
    display: none;
}
.d-inline {
    display: inline-block;
}
.ai-c {
    align-items: center;
}
.ml-a {
    margin-left: auto;
}
.mr-a {
    margin-right: auto;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-50 {
    margin-bottom: 50px;
}

@media screen and (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-flex {
        display: flex !important;
    }
    .d-xl-inline {
        display: inline-block !important;
    }
}

.aboutme .head h1 {
	color: #fff;
    display: block;
    text-align: center;
}

.aboutme__subtitle h2,
.aboutBlock h2 {
    color: #fff;
    font-size: 16px;
}
.aboutBlock h1 {
    color: #fff;
    font-size: 16px;
	font-family: 'Geometria';
    margin-bottom: 5px;
}

.aboutBlock {
    margin: -40px;
    margin-top: 0;
}
.aboutBlock .whyus {
    background: #1A1A1C;
    border-radius: 10px;
    box-shadow: 0px 5px 11px 4px rgb(0 0 0 / 34%);
    margin: 40px;
    position: relative;
    padding: 10px;
    padding-top: 40px;
    min-height: 177px;
    width: calc(25% - 20px);
}

.aboutBlock .whyus h2 {
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
    text-align: center;
}
.aboutBlock .whyus .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 5px 11px 4px rgb(0 0 0 / 34%);
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
}

.aboutBlock .whyus .icon i {
    color: #000;
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#darknessBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 50;
    transition: .2s;
}

.aboutme hr {
    width: 80px;
    background: white;
    color: white;
    height: 1px;
}

@media screen and (max-width: 1200px) {
    .aboutme__subtitle {
        margin-bottom: 80px;
    }
    .aboutBlock .whyus {
        margin: 80px;
    }
    .aboutBlock {
        margin: -80px;
        margin-top: 0;
    }
    .aboutBlock .whyus {
        min-height: auto;
        width: calc(100% - 180px);
    }
}