@import url("https://fonts.googleapis.com/css?family=Fira+Sans");

/* -------------------------------- Global style applied here -------------------------------- */

:root{
	/* ----- Colors for light theme ----- */
	--theme-light-text-color: black;
	--theme-light-background-color: rgba(239, 241, 240, 0.8);
	--theme-light-border-color: rgb(229, 234, 232);
	--theme-light-box-bg-color: rgb(252, 252, 252);
	--theme-light-hint-color: rgba(51, 51, 51, 0.6);
	--theme-light-glow-color: rgba(0, 0, 0, 0.2);

	/* ----- Colors for dark theme ----- */
	--theme-dark-text-color: white;
	--theme-dark-background-color: rgb(1, 1, 1);
	--theme-dark-border-color: rgb(53, 53, 53);
	--theme-dark-box-bg-color: rgb(27, 27, 27);
	--theme-dark-hint-color: rgba(255, 255, 255, 0.5);
	--theme-dark-glow-color: rgba(206, 206, 206, 0);

	/* --theme-current-color: rgb(3, 216, 3);
	--theme-current-color-light: rgba(0, 255, 0, 0.2); */

	--theme-current-color: rgb(11, 8, 155);
	--theme-current-color-light: rgba(0, 123, 255, 0.2);

	/* --theme-current-color: rgb(139, 69, 19);
	--theme-current-color-light: rgba(139, 69, 19, 0.2); */

	/* ----- color theme palette ----- */
	--theme-text-color: var(--theme-light-text-color);
	--theme-background-color: var(--theme-light-background-color);
	--theme-border-color: var(--theme-light-border-color);
	--theme-box-bg-color: var(--theme-light-box-bg-color);
	--theme-color-approved: rgba(0, 255, 0, 0.8);
	--theme-color-pending: gray;
	--theme-color-denied: rgba(255, 0, 0, 0.8);

	--theme-text-color: var(--theme-dark-text-color);
	--theme-background-color: var(--theme-dark-background-color);
	--theme-border-color: var(--theme-dark-border-color);
	--theme-box-bg-color: var(--theme-dark-box-bg-color);
	--theme-text-hint-color: var(--theme-dark-hint-color);
	--theme-glow-color: var(--theme-dark-glow-color);
}

*{
	box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* transition: all ease-in 0.3; */
	font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}
html{
    height: 100vh;
}

body:not(#spin){
    scroll-behavior: smooth;
    text-rendering: optimizespeed;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    width: 100%;
	height: auto;
    background-color: var(--theme-background-color);
    color: var(--theme-text-color);
    min-width: 300px;
    min-height: 100vh;
    overflow-x: hidden;
	display: flex;
	flex-direction: column;
}
a{
    text-decoration: none;
	color: var(--theme-text-color);
}
img{
	width: 30px;
	height: 30px;
}
svg {
	width: 1.2em;
	height: 1.2em;
	vertical-align: middle;
	fill: currentColor;
	display: inline-block;
}

.flex-grid{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}

.auto-fit{
	position: relative;
	width: 96%;
	left: 50%;
	transform: translate(-50%, 0);
}
.align-items-center{
	text-align: center;
}
.infinity-bottom-120px{
	height: 120px;
	width: 100%;
}
.infinity-top-60px{
	height: 60px;
	width: 100%;
}
.pointer-element{
	cursor: pointer;
}
.float-right{
	position: absolute;
	float: right;
	right: 10px;
}
.float-right-2{
	position: absolute;
	float: right;
	right: 10px;
	margin-top: 5px;
}
.croutch{
	height: 80px;
	width: 100%;
}
#home, #profile, .trade{
	user-select: none;
}
.flex-r{
	display: flex;
	flex-direction: row;
}
.flex-c{
	display: flex;
	flex-direction: column;
}
.fit-size{
	position: relative;
	width: 96%;
	left: 50%;
	transform: translate(-50%, 0);
}
.ai-center{
	text-align: center;
}
.fly-right{
	position: absolute;
	float: right;
	right: 10px;
}
.fly-left{
	margin: 0 5px;
}
.select-none{
	user-select: none;
}
.no-change{
	pointer-events: none;
}
.generic{
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
	padding: 5px;
}
ul {
	list-style-type: none;
	padding: 10px;
}
li {
	padding: 10px 0;
	border-bottom: 1px solid var(--theme-border-color);
}
li:last-child {
	border-bottom: none;
}
.border-auto{
	margin: 5px auto;
	width: 96%;
}
.float-right-3{
	position: absolute;
	float: right;
	right: 5px;
}
.float-right-4{
	position: absolute;
	float: right;
	margin-top: 3px;
	right: 5px;
}
.float-left{
	margin: 0 10px 0 5px;
}
.no-select{
	user-select: none;
}
.no-change{
	pointer-events: none;
}
.light-half-hr{
	width: 88px;	
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	height: 0;
	border: 1px solid rgba(245, 222, 179, 0.3);
}
.hr-full-width{
	margin: 0 10px 10px 0;
	height: 0;
	border: 1px solid rgba(245, 245, 245, 0.5);
}

.status-accepted{ color: green; }
.status-rejected{ color: rgba(255, 0, 0, 0.5); }
.status-pending{ color: gray; }

	
.mail-content{ border-left: 3px dashed; }

.mail-done{ border-color:green; }
.mail-wel{ border-color:whitesmoke; }
.mail-rejected{ border-color:red; }
.mail-idle{ border-color:gray; }

.members-active{
	background-color: green;
	border-radius: 50%;
	color: greenyellow;
}
.members-inactive{
	background-color: red;
	border-radius: 50%;
	color: rgba(165, 42, 42, 0.9);
}
.active-members{
	color: green;
}
.inactive-members{
	color: rgba(255, 0, 0, 0.6);
}
#sold_panel{
	border: 1px solid rgba(245, 245, 245, 0.3);
	border-radius: 10px;
	margin: 10px 0;
	background-color: rgba(41, 41, 41, 0.5);
}
.uBlock{
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
	padding: 5px;
}
.inactive-block{
	opacity: .5;
}
#user_alert{
	border: 1px solid red;
	border-radius: 10px;
	background-color: rgba(255, 0, 0, 0.1);
	color: wheat;
	margin-top: 10px;
	text-align: center;
	display: block;
}
#fixed_panel{
	position: fixed;
	bottom: 0;
	background-color: rgba(29, 29, 29, 0.5);
	height: 60px;
	width: 100%;
	backdrop-filter: blur(4px);
	z-index: 5;
}
#fixed_panel #fixed_bottom_btn{
	border: 1px solid rgba(245, 245, 245, 0.5);
	background-color: rgb(53, 53, 53);
	height: 50px;
	top: 10px;
	width: 100%;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	font-size: xx-large;
	letter-spacing: 1px;
}
#header_nav{
	position: sticky;
	top: 0;
	background-color: var(--theme-background-color);
	z-index: 3;
	width: 100%;
	height: 50px;
	align-items: center;
	justify-content: space-between;
}
.back_btn{
	padding: 10px 15px;
	height: 100%;
	font-size: 20px;
}
.back_btn svg{
	width: 1.5em;
	height: 1.5em;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- NAV MENU ---------------------------------------- */

#register {
	background-image: url('pictures/background.webp');
	background-size: cover;
	background-position: center;
}
#home #menu-1, #factory #menu-2, #spin #menu-3, #team #menu-4, #account #menu-5{
	color: var(--theme-current-color) !important;
}
#spin footer{
	background-color: transparent;
}
#menu-3{
	font-size: xx-large;
}
footer{
	position: fixed;
	z-index: 3;
	bottom: 0;
	background-color: var(--theme-box-bg-color);
	width: 100%;
	height: 60px !important;
	flex-wrap: nowrap;
}
.user-active a{
	width: 20% !important;
}
footer nav{
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin: 0 1px;
}
footer a{
	color: var(--theme-text-hint-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 56px !important;
}
footer a svg{
	width: 1.5em;
	height: 1.5em;
}
footer svg:nth-child(3){
	width: 2.5em;
	height: 2.5em;
}
footer a:hover{
	color: var(--theme-current-color-light);
}
footer nav a i{
	font-size: 21px;
	margin-top: 10px;
}
footer nav a b{
	font-size: smaller;
	font-weight: normal;
	margin-top: 3px;
}
footer a{
	width: 25%;
}

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* --------------------------------- POP-UP / POP-UP MESSAGE --------------------------------- */

#NOTIFICATION, #LOADING{
	/* display: none; */
	position: fixed;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	transition: opacity 1s;
	user-select: none;
}
#LOADING{
	backdrop-filter: blur(1px);
	display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}
.spinner {
    border: 5px solid var(--theme-box-bg-color);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
#news img{
	width: 100%;
	height: 200px;
}
#news header{
	width: 100%;
	height: 220px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
ul {
	list-style-type: none;
	padding: 10px;
}

li {
	padding: 10px 0;
	border-bottom: 1px solid var(--theme-border-color);
}

li:last-child {
	border-bottom: none;
}

.fade-out {
    opacity: 0;
}

#NOTIFICATION span{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%;
	max-width: 480px;
	height: auto;
	text-align: center;

	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-bottom: 2px solid var(--theme-border-color);
	color: white;
	border-radius: 10px;
	padding: 5px;
	box-shadow: 0px 10px 20px var(--theme-box-bg-color);
}
#POP_UP{
	display: none;
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);
	transition: all 400ms;
}
#CLOSE{
	position: absolute;
	float: right;
	bottom: -70px;
	text-align: center;
	border-radius: 50%;
	border: 2px solid whitesmoke;
	color: whitesmoke;
	font-size: xx-large;
	width: 49px;
	height: 49px;
	left: 50%;
	transform: translate(-50%, 0);
	cursor: pointer;
}
#CLOSE:hover{
	background-color: whitesmoke;
	border-color:black;
	color: black;
}
#POP_UP_CONTENT{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%;
	height: auto;
}
@media only screen and (orientation: portrait) and (max-width: 375px) {
	#TAG_PRODUCTS img{
		width: 100px;
		height: 100px;
	}
	#TAG_PRODUCTS h4{
		font-size: x-large;
	}
	#TAG_PRODUCTS br{
		display: none;
	}
	#TAG_PRODUCTS{
		height: 434px !important;
	}
	#POP_UP_CONTENT{
		height: 434px;
	}
	#CLOSE{
		bottom: -55px;
	}
}


@media only screen and (orientation: landscape) and (max-width: 1024px) {
	#POP_UP_CONTENT {
		width: 80%;
		height: 95%;
		max-width: 512px;
	}
	.TAG_ALL {
		width: 512px;
		height: auto;
		margin: auto 0;
		position: relative;
		top: 50%;
		transform: translate(0, -50%);
		max-height: 100%;
		overflow-y: scroll;
	}
	#CLOSE{
		display: block;
		left: auto;
		position: absolute;
		right: -40px;
		transform: none;
		top: 0;
		font-size: xx-large;
		width: 49px;
		height: 49px;
	}
}
.TAG_ALL{
	background-color: var(--theme-box-bg-color);
	padding: 5px;
	border-radius: 10px;
	margin: auto;
}
#TAG_ASSISTANCE{
	border-bottom: 1px solid var(--theme-border-color);
	max-width: 320px;
}
#TAG_WALLET{
	border: 1px solid var(--theme-border-color);
	max-width: 320px;
}
#TAG_ASSISTANCE a{
	border: 1px solid var(--theme-border-color);
}
#TAG_ASSISTANCE span{
	display: block;
}
#TAG_GOALS{
	border: 1px solid var(--theme-border-color);
	max-width: 480px;
	height: 500px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-top: 0;
}
#TAG_PRODUCTS{
	border: 1px solid var(--theme-border-color);
	max-width: 480px;
	height: 495px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 5px;
}
#TAG_SUBMIT{
	border: 1px solid var(--theme-border-color);
	max-width: 480px;
	height: 500px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-top: 0;
}
#withdraw #TAG_SUBMIT{
	height: 410px;
}

#TAG_COUPON{ 
	border-bottom: 1px solid var(--theme-border-color);
	max-width: 320px;
}
#TAG_GOALS .light-text, #TAG_SUBMIT .s-h{
	position: sticky;
	top: 0;
	background-color: var(--theme-box-bg-color);
	border-bottom: 1px solid var(--theme-border-color);
	z-index: 2;
	padding: 5px 0;
}
.s-h{
	border-bottom: 1px solid var(--theme-border-color);
}
.app-101{
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 5px;
	margin: 5px 0;
	height: 60px;
}
#TAG_SUBMIT span #timer{
	position: absolute;
	float: right;
	right: -5px;
	top: 0;
	width: 30px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#TAG_SUBMIT span #timer{
	width: auto;
	right: 0;
}
.app-101 a{
	background-color: var(--theme-current-color);
	border-radius: 7px;
	padding: 5px;
	position: relative;
	float: right;
	right: 0;
	text-align: center;
	font-size: smaller;
}
.idle a{
	pointer-events: none;
	opacity: 0.3;
}
.done{
	pointer-events: none;
	opacity: 0.3;
}
.done a{
	background-color: green;
}
.app-101 .text{
	width: 85%;
	height: 43px;
	padding-right: 5px;
	padding-top: 5px;
	display: block;
	font-size: smaller;
}
.progress{
	background-color: var(--theme-current-color);
	border-radius: 10px;
	height: 5px;
	position: relative;
}
.progress span{
	background-color: green;
	display: block;
	width: 0%;
	height: 100%;
	border-radius: 10px;
}

#pop_up_panel{
	position: fixed;
	bottom: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
	transition: all 400ms;
}
#pop_up_content{
	position: fixed;
	z-index: 4;
	bottom: 0;
	width: 100%;
	border-radius: 30px 30px 0 0;
	color: whitesmoke;
	background-color: black;
	border-top: 2px solid whitesmoke;
	transition: all 400ms;
}
#pop_up_closeBtn{
	background-color: whitesmoke;
	margin: 10px;
	text-align: center;
	color: black;
	height: 40px;
	font-size: 30px;
	border-radius: 10px;
	font-weight: bolder;
}
#pop_up_close_btn{
	position: absolute;
	float: right;
	top: 10px;
	right: 10px;
	background-color: whitesmoke;
	text-align: center;
	color: black;
	padding: 5px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}
#pop_up_title{
	margin: 5px 0 20px 0;
}
.pop_link{
	background-color: rgba(53, 53, 53, 0.4);
	padding: 10px;
	border-radius: 10px;
}
.pop_link:hover, #pop_up_close_btn:hover, #pop_up_closeBtn:hover{
	background-color: rgba(122, 122, 122, 0.7);
}
.pop_link:active, #pop_up_close_btn:active, #pop_up_closeBtn:active{
	background-color: rgb(175, 175, 175);
}
#pop_up{
	margin: 20px 0;
}
.elite-member{
	color: goldenrod;
}

.pop-up-message{
	position: fixed;
	display: flex;
	flex-direction: column;
	width: 90%;
	max-width: 500px;
	padding: 0 5px 5px 5px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgb(49, 49, 49);
	border: 1px solid rgba(245, 245, 245, 0.5);
	border-radius: 10px;
	z-index: 5;
	user-select: none;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
	transition: all 400ms;
}
.pop-up-message h2 i{
	cursor: pointer;
	position: absolute;
	float: right;
	right: 5px;
	color: wheat;
	border-radius: 50%;
}
.pop-up-message h2 i::before{
	font: var(--fa-font-solid);
	content: '\f057';
	border-radius: 50%;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}
.pop-up-message h2 i:hover{
	color: whitesmoke;
	font-size: xx-large;
	transition: all 500ms;

}
.pop-up-message b{
	color: wheat;
}
.pop-up-message a{
	color: rgba(245, 222, 179, 0.6);
	text-decoration: underline;
	text-decoration-color: rgba(245, 222, 179, 0.2);
	text-decoration-thickness: 2px;
}
.pop-up-message a:hover{
	color: wheat;
	font-weight: bolder;
	font-size: larger;
	transition: all 400ms;
}
.pop-up-message a:active{
	color: wheat;
}
.pop-up-message h2{
	margin-bottom: 20px;
}
.pop-up-message span{
	background-color: rgba(22, 22, 22, 0.527);
	border-radius: 10px;
	padding: 5px;
	border: 1px solid rgba(245, 245, 245, 0.2);
}
.pop-up-message h2, .pop-up-message span{
	text-align: center;

}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------- HOME ------------------------------------------ */
#home header{
	height: 220px;
}
#home header .slideshow{
	height: 220px;
	animation-name: fadeOut, fadeIn;
	animation-duration: 300ms, 1.7s;
}
#home header .slideshow img{
	width: 100%;
	height: 100%;
	/* display: none; */
}
.scale-this{
	position: absolute;
	top: 85px;
	width: 50px;
	height: 50px;
	font-size: x-large;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(245, 245, 245, 0.1);
	border-radius: 20px;
	cursor: pointer;
}
.scale-this:hover{
	border: 1px solid var(--theme-border-color);
}
.prev{
	left: 0;
	border-radius: 0 20px 20px 0;
	padding-right: 5px;
}
.next{
	right: 0;
	border-radius: 20px 0 0 20px;
	padding-left: 5px;
}

@keyframes fadeIn {
	from {
		opacity: .3;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: .2;
	}
}

#sliders{
	position: relative;
	margin: auto;
}
#slider-id{
	position: relative;
	top: -16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	height: 16px;
	background-color: rgba(245, 245, 245, 0.1);
}
#slider-id span{
	background-color: var(--theme-current-color);
	border-radius: 50%;
	width: 10px;
	height: 10px;
	margin: 3px 10px;
	cursor: pointer;
}
#slider-id .active{
	background-color: white;
}
#home article, #account article{
	height: 120px;
	background-color: var(--theme-box-bg-color);
	border-radius: 10px;
	border-bottom: 1px solid var(--theme-border-color);	
}
#home article a, #account article a{
	position: relative;
	top: 0;
	z-index: 2;
	left: 0;
	top: -125px;
	padding: 5px 10px;
	text-align: center;
	display: block;
	height: 120px;
}
#home article a span, #account article a span{
	font-size: x-large;
	font-weight: bold;
}
#home article img, #account article img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
#articles h1{
	margin: 10px 5px 0 5px;
}
.article{
	margin-top: 5px;
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
	padding: 5px;
	display: flex;
	flex-direction: row;
	height: 100px;
	border-bottom: 1px solid var(--theme-border-color);
}
.article img{
	width: 88px;
	height: 88px;
	border-radius: 10px;
	margin-right: 5px;
}
.article h4{
	border-bottom: 1px solid var(--theme-border-color);
	margin-bottom: 5px;
}
.article p{
	font-weight: lighter;
	font-size: smaller;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 60px;
}
#cards{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
#cards a{
	margin: 10px 0;
	width: 32%;
	border-bottom: 1px solid var(--theme-border-color);	
	background-color: var(--theme-box-bg-color);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
}
#cards a:hover{
	border: 1px solid whitesmoke;
	background-color: var(--theme-box-bg-color);
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------- TEAM ------------------------------------------ */

#team h2{
	margin-bottom: 5px;
}
#team h3{
	margin-bottom: 20px;
}
#team #referral{
	margin: 10px 0;
}
#team #referral h4{
	border-bottom: 1px solid var(--theme-border-color);
	padding: 5px;
	border-radius: 5px;
	height: 30px;
	cursor: pointer;
	background-color: var(--theme-box-bg-color);
}
#team #referral span{
	font-size: smaller;
	display: block;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#team #referral a{
	color: whitesmoke;
	background-color: var(--theme-current-color);
	padding: 2px 5px 0 5px;
	border-radius: 5px;
	position: relative;
	float: right;
	right: -2px;
	top: -22px;
	font-size: smaller;
	font-weight: lighter;
}
#team .team-commissions, #team .addons{
	justify-content: space-between;
	margin-bottom: 10px;
}
#team #myTeam i, #team #coupons i{
	font-size: smaller;
}
#team #myTeam a, #team #coupons a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 5px;
	text-align: center;
}
#team #total_friends, #team #total_earnings, #team #myTeam, #team #coupons{
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 49%;
	border-bottom: 1px solid var(--theme-border-color);	
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
}
#team .team-commissions span{
	font-size: x-large;
}
#team .team-commissions h4{
	font-weight: lighter;
}
#team .team-lvl{
	border-bottom: 1px solid var(--theme-border-color);	
	border-radius: 10px;
	padding: 5px;
	margin-bottom: 10px;
	justify-content: space-between;
	align-items: center;
	background-color: var(--theme-box-bg-color);
}
#team .team-lvl span:not(.lvl){
	font-size: smaller;
}
#team .team-lvl b{
	font-size: larger;
}
.lvl{
	border-radius: 50%;
	background-color: var(--theme-current-color);
	color: whitesmoke;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: xx-large;
}
#referral_benefits{
	border-bottom: 1px solid var(--theme-border-color);	
	padding: 5px;
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
}
.benefit{
	align-items: center;
	margin-bottom: 10px;
}
.benefits{
	line-height: 1.2;
	border-bottom: 1px solid var(--theme-border-color);
	width: 100%;
}
#team .benefit img{
	margin: 0 5px;
}
#team .benefit .s-w{
	font-weight: lighter;
	font-size: smaller;
	color: var(--theme-text-hint-color);
}
#team .benefit .last-b{
	border: none;
}
.team-commissions i{
	font-size: smaller;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- PRODUCTS ----------------------------------------- */
#head, #categories-products{
	position: sticky;
	top: 0;
	background-color: var(--theme-box-bg-color);
	z-index: 5;
	width: 100%;
	height: 50px;
	border-bottom: 1px solid var(--theme-border-color);
	align-items: center;
	justify-content: flex-start;
	padding: 0 10px;
}
#categories-products{
	overflow-x: auto;
	overflow-y: hidden;
	padding-right: 0;
	flex-wrap: nowrap;
}
#head a, #categories-products a{
	border-bottom: 2px solid var(--theme-border-color);
	color: var(--theme-border-color);
}
#head span{
	background-color: var(--theme-current-color);
	border-bottom: 2px solid whitesmoke;
}
#head span, #head a, #categories-products a{
	border-radius: 10px;
	padding: 5px;
	margin-right: 10px;
}
#head a:hover, #categories-products a:hover{
	border: 1px solid var(--theme-border-color);
	border-bottom: 2px solid var(--theme-border-color);
}
#products #head #mine{
	width: 100px;
	text-align: center;
	font-weight: bolder;
}
#categories-products a{
	width: 100px;
	text-align: center;
}
#categories-products .this{
	background-color: var(--theme-current-color);
	border-bottom: 2px solid whitesmoke;
	color: whitesmoke;
}
#members #head a, #members #head span{
	width: 32%;
	text-align: center;
}
.item{
	border-bottom: 1px solid var(--theme-border-color);	
	border-radius: 10px;
	padding: 5px;
	margin: 5px 0;
	background-color: var(--theme-box-bg-color);
}
.details img{
	width: 160px;
	height: 160px;
	border-radius: 5px;
	margin-right: 5px;
	border: 1px solid var(--theme-border-color);
}
.item img{
	width: 100px;
	height: 100px;
	border-radius: 10px;
	margin-right: 5px;
}
.item a, .details a{
	background-color: var(--theme-current-color);
	border-radius: 5px;
	text-align: center;
	display: block;
	margin-top: 5px;
}
.item h4{
	margin-bottom: 5px;
}
.item span{
	font-size: smaller;
	font-weight: lighter;
}
.cycles-count{
	border: 1px solid var(--theme-border-color);
	padding: 0 5px;
	border-radius: 2px 8px;
	position: absolute;
	float: right;
	right: 0;
	top: 0;
	font-size: smaller;
	font-weight: lighter;
}
.details{
	color: var(--theme-text-hint-color);
}
.details .flex-grid{
	width: 100%;

}

.details a{
	font-size: x-large;
	border: 1px solid var(--theme-border-color);
}
.details p{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 3px 0;
	border-bottom: 1px solid var(--theme-border-color);
}
.details h4{
	text-align: center;
	font-size: xx-large;
	/* margin-top: 10px; */
}
#fixed_bottom{
	position: fixed;
	bottom: 0;
	background-color: var(--theme-box-bg-color);
	z-index: 22;
	width: 100%;
	height: 50px;
	border-top: 1px solid var(--theme-border-color);
	align-items: center;
}
#fixed_bottom a{
	background-color: var(--theme-current-color);
	border: 1px solid var(--theme-border-color);
	border-bottom: 2px solid var(--theme-border-color);
	border-radius: 10px;
	height: 40px;
	text-align: center;
	margin: 5px auto;
	width: 98%;
	display: block;
	font-size: x-large;
	cursor: pointer;
}
.cycles span{
	border: none;
	border-left: 1px solid var(--theme-border-color);
	border-bottom: 1px solid var(--theme-border-color);
	padding: 0 5px;
	border-radius: 0 8px;
	position: relative;
	float: right;
	top: -5px;
	right: -5px;
}
.sold-out .details, .tasks-locked #TAG_GOALS div, #tasks .tasks-locked div{
	pointer-events: none;
	opacity: .4;
	color: var(--theme-border-color);
}
.expired{
	pointer-events: none;
	opacity: .7;
}
.lock{
	opacity: .2;
	pointer-events: none;
}
.expired{
	border: 1px solid var(--theme-border-color);
}
.expired .cycles-count{
	top: 1px;
	right: 1px;
}
.sold-out .closed, .tasks-locked .locked, #tasks .locked, #products .locked{
	position: absolute;
	font-size: xx-large;
	top: 50%;
	left: 50%;
	width: 300px;
	display: block;
	transform: translate(-50%, -50%);
	padding: 10px;
	border: 1px solid whitesmoke;
	background-color: rgba(245, 245, 245, 0.1);
	border-radius: 40px;
	text-align: center;
	backdrop-filter: blur(1px);
}
#tasks .locked{
	top: 300px;
	left: 50%;
	transform: translate(-50%, 0);
}
.notice{
	backdrop-filter: blur(60px);
	display: block;
	width: 100%;
	text-align: center;
}
.limited{
	opacity: .8;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- ACCOUNT ----------------------------------------- */
#user-details{
	margin: 10px 0;
	align-items: center;
}
#user-details img{
	border-radius: 10px;
	width: 55px;
	height: 55px;
	margin-right: 10px;
}
#user-details .id{
	cursor: pointer;
}
#user-details span[class=float-right]{
	cursor: pointer;
}
.user-sold{
	justify-content: space-between;
}
.user-sold div{
	display: flex;
	align-items: left;
	flex-direction: column;
	width: 49%;
	padding: 5px 10px;
	border-bottom: 1px solid var(--theme-border-color);
	border-radius: 10px;
	background-color: var(--theme-box-bg-color);
}
.user-sold h4{
	font-weight: lighter;
}
.user-sold div span{
	font-size: x-large;
}
.user-sold div span[class=float-right]{
	font-size: normal;
	cursor: pointer;
}
.user-sold i{
	font-size: smaller;
}
#account #h_boxes{
	justify-content: space-between;
	margin: 5px 0;
}
#account .h-box{
	width: 32%;
	margin: 20px 0 10px 0;
	background-color: var(--theme-box-bg-color);
	border-bottom: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 10px 0;
	font-size: smaller;
}
#account .h-large-box{
	width: 80px;
	height: 80px;
	margin: 40px 0;
	background-color: rgba(61, 61, 61, 0.3);
	color: whitesmoke;
	border: 1px solid whitesmoke;
	border-radius: 10px;
	padding-top: 10px;
}
#account .h-large-box i{
	font-size: 30px;
}
#account .h-box i{
	font-size: 20px;
}

.flex-v-box{
	padding: 10px 0;
	align-items: center;
	border-bottom: 1px solid var(--theme-border-color);

}

.flex-v-box:last-child{
	border-bottom: none;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- WALLET ------------------------------------------ */
#header_back_btn{
	position: sticky;
	top: 0;
	background-color: var(--theme-box-bg-color);
	z-index: 5;
	width: 100%;
	height: 50px;
	border-bottom: 1px solid var(--theme-border-color);
	align-items: center;
	justify-content: space-between;
}
.back_btn{
	padding: 10px 15px;
	height: 100%;
	font-size: larger;
	font-weight: bolder;
}

.wallet{
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 5px 5px 5px 10px;
	margin: 5px 0;
	height: auto;
}
.wallet .text{
	height: 30px;
	padding-right: 5px;
	font-size: smaller;
	display: flex;
	align-items: center;
}
.wallet b{
	margin: 0 5px;
}
.wallet i{
	font-size: x-large;
	margin-right: 5px;
}
.wallet a{
	background-color: var(--theme-current-color);
	border-radius: 7px;
	padding: 5px;
	position: relative;
	float: right;
	right: 0;
	text-align: center;
	font-size: smaller;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------ DEPOSIT/WITHDRAW ------------------------------------- */

#deposit input[type=radio]{
	display: none;
}
#deposit .amount-box{
	border-bottom: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 2px 5px;
	margin: 5px 5px;
	cursor: pointer;
}
#deposit input[type=radio]:checked + label{
	border: 1px solid var(--theme-border-color);
	background-color: var(--theme-box-bg-color);
}
.choices{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
}
#deposit .amount-box:hover{
	border: 1px solid whitesmoke;
}
input[type=checkbox] + label{
	border: 1px solid var(--theme-border-color);
	border-right: 1px solid var(--theme-text-hint-color);
	border-top: 1px solid var(--theme-text-hint-color);
	border-bottom: 1px solid var(--theme-text-hint-color);
	border-radius: 10px;
	padding: 8px 20px;
	margin: 5px 10px 5px 0;
	cursor: pointer;
	color: rgba(245, 245, 245, 0.7);
}

#bank_choice{
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	color: var(--theme-text-color);
	padding: 5px;
	outline: none;
	width: 100%;
	height: 40px;
	cursor: pointer;
}
select::-ms-expand {
	background-color: whitesmoke;
}
select:hover {
	border-color: whitesmoke;
}
#bank_choice:focus {
	border-color: whitesmoke;
}
#withdraw .user-sold, #withdraw a:not(.back_btn), #deposit .user-sold, #deposit #submit-data a{
	margin-top: 10px;
}
#deposit #submit-data a{
	text-decoration: underline;
	text-decoration-color: var(--theme-border-color);
	text-decoration-thickness: 2px;
}
.conditions span::first-letter{
	font-size: larger;
	color: whitesmoke;
}
#tasks .app-101{
	background-color: var(--theme-box-bg-color);
}
#tasks .expired{
	opacity: .5;
	pointer-events: none;
}

#TAG_SUBMIT #head{
	justify-content: space-between;
	padding: 5px 0;
}
#TAG_SUBMIT #sl-1, #TAG_SUBMIT #sl-2{
	width: 49%;
	margin: 0;
	text-align: center;
	border: 2px solid var(--theme-border-color);
	color: black;
	height: 37px;
}
#TAG_SUBMIT  a[id=sl-1]{
	background-color: orange;
	opacity: .3;
}
#TAG_SUBMIT a[id=sl-2]{
	background-color: yellow;
	opacity: .3;
}
#TAG_SUBMIT #head .selected{
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	opacity: 1;
}

#transactions .log, #record .log{
	margin: 5px 0;
}
.log .add{
	color: green;
}
.log .del{
	color: red;
}
.log .light-text, .light-text{
	font-size: smaller;
	font-weight: lighter;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* -------------------------------------- VIEW MESSAGE --------------------------------------- */

#message_labels, .message_labels, #message_details, #login_infos, #personal_infos, #mobile_wallet_infos, #usdt_wallet_infos{
	background-color: rgba(46, 46, 46, 0.6);
	border: 1px solid rgba(245, 245, 245, 0.3);
	border-radius: 10px;
	padding: 5px;
}
#message_labels h3, #message_details h3, .message_labels h3{
	border-bottom: 1px solid rgba(245, 245, 245, 0.3);
}
.message_labels{
	margin: 10px 0;
}


.member{
	background-color: rgb(51, 51, 51);
	padding: 5px;
	border-radius: 10px;
	border: 1px solid rgba(245, 245, 245, 0.4);
	margin-bottom: 10px;
}
.header-title{
	margin-top: 10px;
}
.elite_member{
	color: goldenrod;
	font-weight: lighter;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------ LOG IN / SIGN UP ------------------------------------- */

#user_connection, .fixed-block{
	margin: auto;
	max-width: 512px;
}
#user_registration{
	background-color: transparent;
	border: none;
}
label{
	display: flex;
	flex-direction: row;
}
#register a, #withdraw a{
	text-decoration: underline var(--theme-border-color) 2px;
}
label i, label i{
	position: relative;
	top: 5px;
	margin: 0 5px;
	padding-left: 2px;
	width: 23px;
}
.user-phone, .amount{
	margin: 0;
	font-style: normal;
	font-size: larger;
	top: 0;
	width: 50px;
}
label input, label input, label input{
	padding-left: 5px;
}
.text-box{
	background-color: var(--theme-box-bg-color);
	border-radius: 10px;
	border: 1px solid var(--theme-border-color);
	padding: 5px;
	margin: 5px 0;
}
.text-content{
	background-color: rgba(0, 0, 0, 0);
	outline: none;
	border: none;
	color: white;
	font-size: larger;
	width: 100%;
	display: block;
}
.text-content::placeholder{
	color: var(--theme-border-color);
}
.save-btn{
	background-color: var(--theme-current-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	height: 40px;
	margin-top: 20px;
	color: whitesmoke;
	font-size: x-large;
	cursor: pointer;
	text-align: center;
	justify-content: center;
}
#deposit .save-btn{
	width: 100%;
}
#deposit #TAG_SUBMIT .left-pay .text-box{
	border: 1px solid var(--theme-border-color);
	justify-content: space-between;
}
#deposit #TAG_SUBMIT .text-box .fa-phone{
	transform: rotate(270deg);
	margin-right: 4px;
}
#deposit #TAG_SUBMIT .left-pay .uBlock{
	margin-top: 5px;
	border: 1px solid var(--theme-border-color);
}
#withdraw #TAG_SUBMIT .uBlock{
	margin-top: 5px;
}
#withdraw #TAG_SUBMIT .uBlock hr{
	border: 1px solid var(--theme-border-color);
}
#deposit #TAG_SUBMIT .left-pay .save-btn{
	border: 1px solid var(--theme-current-color);
	background-color: var(--theme-current-color);
}
#deposit #TAG_SUBMIT .right-pay .text-box{
	border: 1px solid var(--theme-border-color);
}
#deposit #TAG_SUBMIT .right-pay .uBlock{
	margin-top: 5px;
	border: 1px solid var(--theme-border-color);
}
#deposit #TAG_SUBMIT .right-pay .save-btn{
	border: 1px solid var(--theme-current-color);
	background-color: var(--theme-current-color);

}
#deposit #TAG_SUBMIT .save-btn{
	opacity: .2;
	pointer-events: none;
	color: white;
}
.left-pay, .right-pay{
	display: none;
}
.selected-payment{
	display: block;
}
#friends{
	margin-top: 10px;
}
#friends .uBlock{
	border: none;
	border-bottom: 1px solid var(--theme-border-color);
}
#ERROR_PAGE{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 95%;
	max-width: 320px;
	height: auto;
	max-height: 320px;

	background-color: rgb(10, 2, 40);
	padding: 15px;
	border-radius: 10px;
	border: 1px solid rgba(245, 245, 245, 0.7);
	border-left: 2px solid rgba(245, 245, 245, 0.7);
	border-bottom: 2px solid rgba(245, 245, 245, 0.7);
}
#ERROR_PAGE p:first-of-type {
	padding-bottom: 10px;
	color: rgba(245, 245, 245, 0.7);
	border-bottom: 1px solid rgba(245, 245, 245, 0.7);
}
#ERROR_PAGE p:nth-of-type(2){
	color: rgba(245, 245, 245, 0.7);
	padding-top: 10px;
}
#ERROR_PAGE p{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.list {
    border: 2px solid var(--theme-border-color);
	border-radius: 10px;
    margin-bottom: 10px;
	color: whitesmoke;
}

.list button {
    background-color: var(--theme-box-bg-color);
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
	border-radius: 10px;
	border: none;
	color: whitesmoke;
    outline: none;
    font-size: 16px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-data {
    display: none;
    padding: 5px;
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
	border-radius: 0 0 10px 10px;
    background-color: var(--theme-box-bg-color);
    border-top: 3px solid var(--theme-background-color);
}
button:hover{
	background-color: rgba(245, 245, 245, 0.1);
	border-radius: 8px;
	border-bottom: 2px solid var(--theme-border-color);
}

button.active {
	border-bottom: 2px solid var(--theme-border-color);
}
