
@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: white;
	--theme-light-border-color: white;
	--theme-light-box-bg-color: rgba(240, 240, 240, 0.8);
	--theme-light-hint-color: rgba(51, 51, 51, 0.6);
	--theme-light-glow-color: rgba(191, 0, 10, 0.2);

	/* ----- Colors for dark theme ----- */
	--theme-dark-text-color: white;
	--theme-dark-background-color: #1E2A3A;
	--theme-dark-border-color: #2B6CB0;
	--theme-dark-box-bg-color: #2A3F59;
	
	--theme-dark-hint-color: rgb(134, 134, 134);
	--theme-dark-glow-color: rgba(206, 206, 206, 0.2);

	/* ----- color theme palette ----- */
	--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-hint-color: var(--theme-dark-hint-color);
	--theme-glow-color: var(--theme-dark-glow-color);
	--theme-text-light: rgba(196, 196, 196, 0.589);
	--theme-special-color: #1735bb;

	/* ----- Theme color palette ----- */
	--theme-color-approved: rgba(0, 255, 0, 0.8);
	--theme-color-pending: gray;
	--theme-color-denied: rgba(255, 0, 0, 0.8);

	/* ----- Theme color palette choosen ----- */
	/* --theme-color: var(--color-theme-red); */
}

*{
	box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all ease-in 0.3s;
	font-family: "Fira Sans", Helvetica, Arial, sans-serif;
}
html{
    height: 100vh;
}

body{
    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;
}

.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;
}
.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;
}
.light-half-hr{
	width: 88px;	
	position: relative;
	left: 50%;
	transform: translate(-50%, 0);
	height: 0;
	border: 1px solid var(--theme-border-color);
}
.hr-full-width{
	margin: 0 10px 10px 0;
	height: 0;
	border: 1px solid var(--theme-border-color);
}

.status-accepted{ color: var(--theme-color-approved); }
.status-rejected{ color: rgba(255, 0, 0, 0.5); }
.status-pending{ color: var(--theme-color-pending); }

	
.mail-content{ border-left: 3px dashed; }

.mail-done{ border-color:var(--theme-color-approved); }
.mail-wel{ border-color:whitesmoke; }
.mail-rejected{ border-color:var(--theme-color-denied); }
.mail-idle{ border-color:var(--theme-color-pending); }

.members-active{
	background-color: var(--theme-color-approved);
	border-radius: 50%;
	color: greenyellow;
}
.members-inactive{
	background-color: var(--theme-color-denied);
	border-radius: 50%;
	color: var(--theme-color-denied);
}
.active-members{
	color: var(--theme-color-approved);
}
.inactive-members{
	color: var(--theme-color-denied);
}
#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: var(--theme-special-color);
	margin-top: 10px;
	text-align: center;
	display: block;
}
#fixed_panel{
	position: fixed;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0);
	height: 60px;
	width: 100%;
	backdrop-filter: blur(4px);
	z-index: 5;
}
#fixed_panel #fixed_bottom_btn{
	border: 1px solid var(--theme-border-color);
	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;

}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- NAV MENU ---------------------------------------- */

#home #item-1, #team #item-2, #savings #item-3, #mailbox #item-4, #account #item-5{
	background-color: var(--theme-glow-color);
	color: var(--theme-text-color);
}
#fixed_bottom_panel a{
	color: var(--theme-hint-color);
}
#fixed_bottom_panel{
	position: fixed;
	z-index: 3;
	bottom: 0;
	text-align: center;
	background-color: rgba(0, 0, 0, 0);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(245, 222, 179, 0.3);
	width: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	flex-wrap: nowrap;
}
#fixed_bottom_panel nav{
	width: 100%;
}
#fixed_bottom_panel nav a i{
	font-size: 21px;
	margin-top: 10px;
}
#fixed_bottom_panel nav a b{
	font-size: smaller;
	margin-top: 3px;
}
#fixed_bottom_panel a{
	width: 20%;
}
#fixed_bottom_panel a:hover{
	background-color: var(--theme-glow-color);
	color: var(--theme-text-color);
}
#item-3{
	font-size: xx-large;
}

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* --------------------------------- POP-UP / POP-UP MESSAGE --------------------------------- */

#pop_up_panel{
	position: fixed;
	bottom: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
	transition: all 300ms;
}
#pop_up_content{
	position: fixed;
	z-index: 4;
	bottom: 0;
	width: 100%;
	border-radius: 30px 30px 0 0;
	background-color: var(--theme-box-bg-color);
	border-top: 2px solid var(--theme-border-color);
	transition: all 400ms;
}
#pop_up_closeBtn{
	background-color: var(--theme-special-color);
	margin: 10px;
	text-align: center;
	color: var(--theme-text-color);
	font-size: larger;
	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: var(--theme-background-color);
	padding: 10px;
	border-radius: 10px;
}
.pop_link:hover, #pop_up_close_btn:hover, #pop_up_closeBtn:hover{
	background-color: var(--theme-border-color);
}
#pop_up{
	margin: 20px 0;
}
.elite-member{
	color: var(--theme-special-color);
}

.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: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	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;
	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: green;
	font-size: larger;
}
.pop-up-message b{
	color: green;
}
.pop-up-message a{
	color: green;
}
.pop-up-message a:hover{
	color: green;
	font-weight: bolder;
	transition: all 400ms;
}
.pop-up-message h2{
	margin-bottom: 20px;
}
.pop-up-message span{
	border-radius: 10px;
	padding: 5px;
	border: 1px solid var(--theme-border-color);
}
.pop-up-message h2, .pop-up-message span{
	text-align: center;

}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------- HOME ------------------------------------------ */
#home header{
	background-color: var(--theme-box-bg-color);
	border-radius: 0 0 30px 30px;
    /* background-image: url("background.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    z-index: 2;
    user-select: none;
	border-bottom: 2px solid var(--theme-border-color);
}
#fixed_top_panel{
	position: sticky;
	top: 0;
	background-color: rgba(0, 0, 0, 0);
	backdrop-filter: blur(3px);
	z-index: 5;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
}
.user-sold, .user-pts{
	font-size: smaller;
	font-weight: lighter;
}
#home header .user-avatar img{
	border-radius: 50%;
	margin-top: 5px;
}
.panel-user-infos{
	justify-content: center;
	align-items: center;
}
.panel-user-infos span{
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	padding: 2px 5px 1px 5px;
	margin-right: 5px;
	border: 1px solid var(--theme-border-color);
}
.infinity-bottom-60px{
	width: 100%;
	height: 50px;
}
#pnl_events{
	/* display: none; */
	position: absolute;
	top: 60px;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 4px;
	border-radius: 10px;
	border: 1px solid var(--theme-border-color);
	font-size: 16px;
}
#event_timer, #event_countdown{
	background-color: rgba(0, 0, 0, 0.6);
	border: 1px solid var(--theme-border-color);
	padding: 1px 5px;
	align-items: center;
	font-size: 13px;
	border-radius: 8px;
}
#event_timer{
	position: absolute;
	float: right;
	right: 5px;
}
#event_countdown{
	position: absolute;
	float: right;
	right: 90px;
}
#user_balance{
	font-size: xx-large;
}
#user_prod_speed{
	align-items: center;
	justify-content: center;
	
}
.transparent-text{
	font-weight: lighter;
	font-size: smaller;
	color: var(--theme-text-light);
	margin-top: 10px;
}
#progress_bar{
	width: 60%;
	height: 10px;
	border: 1px solid var(--theme-special-color);
	margin: 0 5px;
	border-radius: 20px;
}
#progress_bar_level{
	width: 73%;
	border-radius: 20px;
	height: 100%;
	display: block;
	background-color: var(--theme-special-color);
}
#referral_pop_up_link{
	font-size: smaller;
	margin: 10px 0;
}
.light-text{
	font-size: smaller;
	font-weight: lighter;
	color: var(--theme-text-light);
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------- TEAM ------------------------------------------ */

#team h2{
	margin-bottom: 20px;
}
#team h3{
	margin-bottom: 10px;
}
#referral_benefits, #team_members{
	border: 1px solid var(--theme-border-color);
	padding: 5px;
	border-radius: 10px;
	background-color: rgba(44, 44, 44, 0.4);
}
.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 .sec-word{
	font-weight: lighter;
	font-size: smaller;
	color: var(--theme-text-light);
}
#team .benefit .last-b{
	border: none;
	margin: 0;
}
#team #referral_program{
	margin: 20px 0;
	border: 1px solid var(--theme-border-color);
	padding: 5px;
	border-radius: 10px;
}
#team #referral_program .referral_link{
	border: 1px solid var(--theme-border-color);
	padding: 5px;
	border-radius: 10px;
	background-color: rgba(99, 99, 99, 0.2);
	word-wrap: break-word;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- MAILBOX ----------------------------------------- */

.mail-box{
	background-color: rgba(104, 104, 104, 0.3);
	border-radius: 10px;
	border: 1px solid var(--theme-border-color);
	margin: 10px 0;
}
.mail-title{
	border-radius: 10px 10px 0 0;
	padding: 0 5px;
	background-color: rgba(245, 222, 179, 0.13);
}
.mail-date{
	margin: 0 5px;
	border-top: 1px solid var(--theme-border-color);
	display: block;
}
.mail-content{
	display: block;
	margin: 5px 5px;
	padding-left: 5px;
}
.details-btn{
	color: whitesmoke;
}
#mailbox h3{
	position: sticky;
	top: 0;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0);
	backdrop-filter: blur(2px);
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- ACCOUNT ----------------------------------------- */

#account #header, #savings #header{
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	margin-top: 10px;
	border-radius: 10px;
}
#account #h_boxes{
	justify-content: space-evenly;
}

#account .h-box{
	width: 70px;
	margin: 20px 0 10px 0;
	background-color: var(--theme-box-bg-color);
	border: 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: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding-top: 10px;
}
#account .h-large-box i{
	font-size: 30px;
}
#account .h-box i{
	font-size: 20px;
}
.flex-v-box{
	margin: 10px 0;
	padding: 5px;
	border-radius: 15px;
	align-items: center;
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
}
#elite_member_activation{
	background-color: var(--theme-hint-color);
	border-radius: 0 0 10px 10px;
	color: white;
	border-top: 1px solid var(--theme-border-color);
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ----------------------------------------- MEMBERS ----------------------------------------- */
#header_back_btn{
	position: sticky;
	top: 0;
	background-color: rgba(0, 0, 0, 0);
	backdrop-filter: blur(8px);
	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;
}
.member{
	background-color: var(--theme-box-bg-color);
	padding: 5px;
	border-radius: 10px;
	border: 1px solid var(--theme-border-color);
	margin-bottom: 10px;
}
.header-title{
	margin-top: 10px;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* -------------------------------------- VIEW MESSAGE --------------------------------------- */

#message_labels, .message_labels, #message_details, #login_infos, #personal_infos, #mobile_wallet_infos, #usdt_wallet_infos{
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 5px;
}
#message_labels h3, #message_details h3, .message_labels h3{
	border-bottom: 1px solid var(--theme-border-color);
}
.message_labels{
	margin: 10px 0;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* -------------------------------------- EDIT PROFILE --------------------------------------- */

.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;
	border-bottom: 2px solid var(--theme-border-color);
	width: 100%;
	color: white;
	font-size: larger;
	width: 100%;
	display: block;
}
.user-data{
	margin: 5px 0;
}
.btn-float-right{
	position: absolute;
	float: right;
	right: 10px;
	bottom: 5px;
	font-weight: bolder;
	text-align: right;
	width: 60px;
}
.save-btn{
	background-color: var(--theme-special-color);
	color: white;
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	height: 40px;
	margin-top: 20px;
	font-size: x-large;
	cursor: pointer;
}

#edit_profile .light-text a{
	color: var(--theme-special-color);
}
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* -------------------------------- DEPOSIT/WITHDRAW/TRANSFER -------------------------------- */

.vert-box-choices input[type=radio]{
	display: none;
}
.vert-box-choices .radio-btn:checked + label{
	border: 1px solid green;
	background-color: rgba(0, 128, 0, 0.4);
}
.box-full-width i{
	padding-right: 5px;
}
.box-full-width{
	background-color: var(--theme-box-bg-color);
	border: 1px solid var(--theme-border-color);
	border-radius: 10px;
	padding: 5px 10px;
	margin: 5px 0;
	cursor: pointer;
}
.selected{
	border: 1px solid green;
	background-color: rgba(0, 128, 0, 0.5);
	color: white;
}
#MobileMoney, #OrangeMoney{
	display: none;
}
.MTN{
	border: 1px solid yellow;
}
.ORANGE{
	border: 1px solid orange;
}
#payment_boxes .checkbox:checked + label.ORANGE{
	background-color: rgba(255, 166, 0, 0.6);
}
#payment_boxes .checkbox:checked + label.MTN{
	background-color: rgba(255, 255, 0, 0.6);
}
#payment_boxes{
	height: 80px;
}
input[type=radio]{
	display: none;
}
#payment_boxes input[type=radio] + label{
	border-radius: 10px;
	padding: 5px;
	margin: 5px 10px;
	margin-left: 0 !important;
	font-size: larger;
	justify-content: center;
	align-items: center;
	color: var(--theme-text-color);
	width: 100px;
	height: 70px;
}
#payment_boxes input[type=radio]:checked + label{
	border: 1px solid var(--theme-border-color);
	background-color: var(--theme-current-color);
	box-shadow: 0 0 20px 1px var(--theme-glow-color);
	color: white;
}
#payment_boxes input[type=radio]:checked + label i::before{
	content: '\f14a';
}
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* --------------------------------------- PRODUCTION ---------------------------------------- */

.upgrade_production, .production-sample{
	margin: 10px 0;
	border-radius: 10px;
	border: 1px solid var(--theme-border-color);
	background-color: var(--theme-box-bg-color);

}
.upgrade_production{
	border-color: var(--theme-special-color);
}
#upgrade_btn{
	height: 40px;
	background-color: var(--theme-special-color);
	color: white;
	font-weight: bolder;
	font-size: x-large;
	text-align: center;
	border-radius: 10px;
	margin-right: 5px;
	border: 1px solid var(--theme-border-color);
}

.upgrade_production .card-top, .production-sample .card-top{
	padding: 5px;
	border-radius: 10px 10px 0 0;
	border-bottom: 1px solid var(--theme-border-color) !important;
}
.upgrade_production hr, .production-sample hr{
	margin-right: 0;
	height: 0;
	border: 1px solid var(--theme-border-color);
}
.upgrade_production .card-bottom, .production-sample .card-bottom{
	padding: 5px 0 5px 5px;
}
.upgrade_production .price-block, .production-sample .price-block{
	margin-left: 5px;
	margin-bottom: 10px;
}
.upgrade_production .price-block .item-level, .production-sample .price-block .item-level{
	background-color: var(--theme-special-color);
	border-radius: 50%;
	border: 1px solid var(--theme-border-color);
	padding: 5px 8px;
	color: white;
	font-weight: bolder;
	font-size: xx-large;
}
.upgrade_production .price-block .item-price, .production-sample .price-block .item-price{
	font-size: xx-large;
}
#savings .price-block{
	/* height: 30px; */
	margin-top: 10px;
}

/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------- */

/* ------------------------------------ LOG IN / SIGN UP ------------------------------------- */

.fixed-block{
	position: fixed;
	width: 96%;
	max-width: 512px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.user-register{
	border-color: var(--theme-special-color);
	background-color: transparent;
}
input::placeholder{
	color: var(--theme-text-light);
}
#register label, #connexiom label{
	color: white;
}
@media only screen and (orientation: landscape) {
	.fixed-block{
		position: relative;
		transform: none;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);

	}
}
#about-us img{
	display: flex;
	width: 90%;
	max-width: 512px;
	height: auto !important;
	margin: 0 auto;
}
#about-us .about{
	width: 90%;
	max-width: 512px;
	margin: 20px auto;
}
