@font-face {
    font-family: 'Arciform';
    src: url('../fonts/Arciform.otf');
    font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf');
    font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf');
    font-weight: bold;
	font-style: normal;
}

:root{
	--color-theme-1:#426AB3;
	--color-theme-1-h:#2a5095;
	--color-theme-2:#8B52A1;
	--color-theme-2-h:#713e85;
	--neutral-light:#F2F2F2;
	--neutral-dark:#2C2C2C;
	--accent:#7ED957;
	--dark-navy: #0A2540;
	--highlight:#4CC9F0;
	--text-dark-gray:#2c2c2c;
	--text-light-gray:#6c6c6c;
}
body{
	font-family:'Poppins-Regular' !important;
	font-size:14px !important;
	color:var(--neutral-dark) !important;
	letter-spacing:0.03em !important;
}
a{
	color:var(--color-theme-2);
}
/*** text color ***/
.text-default-purple{
	color:var(--color-theme-1);
}
.text-default-blue{
	color:var(--color-theme-2);
}
/*** Button css ***/
.btn-theme{
	background-color:var(--color-theme-1) !important;
	color:#fff !important;
	border:0 !important;
	padding:8px 15pt !important;
	border-radius:8px !important;
	transition:all ease .3s;
}
.btn-theme:hover{
	opacity:.85;
}
.btn-theme-2{
	background-color:var(--accent);
	color:#fff;
	border:0;
	padding:8px 15pt;
	border-radius:8px;
	transition:all ease .3s;
}
.btn-theme-2:hover{
	opacity:.85;
}
.disabled{
	cursor:not-allowed;
	opacity:.5;
	filter: grayscale(1);
}

/*** default layout ***/
.fade-in-message{
	top:56px;
	position:fixed;
	margin:0 auto;
	width:100%;
	max-width:498px;
	z-index:999;
}
.outside-wrapper{
	background:#f7f7f7;
	height: 100vh;
    min-height: 100vh;
	overflow:auto;
}
.body-wrapper{
	max-width:500px;
	margin:0 auto;
	height:100%;
	background:#fff;
	/*background:linear-gradient(45deg, var(--color-theme-1), var(--color-theme-2));*/
	position:relative;
}
.floated-navigation{
	position:fixed;
	right:10px;
	bottom:10px;
}
.navbar-wrapper{
	width:100%;
	max-width:500px;
	margin:0 auto;
	padding:0 15px;
	position:fixed;
	z-index:999;
	background:#f1f1f1;
	border-bottom:1px solid #e5e5e5;
}
.top-icon{
	max-width:200px;
}
.btn-top-navbar{
	background:var(--color-theme-1);
	padding:5px;
	border-radius:6px;
	border:none;
	color:#fff;
	font-family:'san-sarif';
	line-height:normal;
}
.btn-top-navbar i{
	font-size:20pt;
}
.btn-floated{
	background:var(--color-theme-2);
	padding:7pt 10pt;
	border-radius:10px;
	border:none;
	color:#fff;
}
.custom-offcanvas{
	background:var(--color-theme-1) !important;
	border:none !important;
}
.select-lang a{
	display:block;
	color:var(--neutral-light);
	padding:10px;
	text-decoration:none;
	transition:all ease .3s;
}
.select-lang a:hover{
	opacity:.5;
}
.side-offcanvas-list a{
	display:block;
	color:var(--neutral-light);
	text-decoration:none;
	font-size:14px;
	padding:10px;
	border-radius:10px;
	transition:all ease .3s;
}
.side-offcanvas-list a:hover{
	background:rgba(255,255,255,.15);
}
.notice-bell{
	font-size:20pt;
	color:var(--color-theme-1);
	margin:0 15px;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
}
.notice-bell:hover{
	text-decoration:none;
}
.reddot{
	position:absolute;
	top:-6px;
	right:-6px;
	background:#d00;
	border-radius:50%;
	width:20px;
	height:20px;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:9px;
	font-weight:700;
	color:#fff;
}
.notification-count{
	width:auto;
	height:16px;
	border-radius:25px;
	background:#d00;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	font-size:10px;
	margin-left:5px;
	padding:10px 5px;
}

/*** sign in page ***/
.login-wrapper{
	background: linear-gradient(0deg, #e5e5e5 50%, #fff);
}
.wt-login-header{
	padding:30pt 15pt;
	padding-top:80px;
	display:block;
	width:100%;
	position:relative;
}
.wt-login-header:before{
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	/*background:url(../images/wt-header-bg.png) no-repeat;
	background-size:cover;
	background-position:center;*/
}
.welcome-text{
	color:var(--neutral-dark);
	font-weight:bold;
	position:relative;
}
.main-logo{
	max-width:220px;
}
.wt-login-wrapper{
	padding:25pt 15pt;
	height:100vh;
	background:rgba(255,255,255,1);
	border-radius:35px 35px 0 0;
	box-shadow: 0px -10px 5px rgb(200 200 200 / 15%);
	font-size:14px;
}
#_submit{
	display:block;
	width:100%;
	margin-bottom:10pt;
	border:none;
	border-radius:10px;
	background:var(--accent);
	transition:all ease .3s;
}
#_submit:hover{
	opacity:.65;
}
/*** Dashboard ***/
.wt-dashboard-header{
	display:flex;
	position:relative;
	padding-top:65px;
	padding-bottom:60pt;
	background:linear-gradient(0deg, #e5e5e5 30%, #fff);
	overflow:hidden;
}
.wt-dashboard-header:before{
	content: '';
    position: absolute;
    top: 0;
    right: -30%;
    width: 100%;
    height: 100%;
    background: url(../images/icon-cellegence-reverse.png) no-repeat;
    background-position: center;
    background-size: 100%;
    opacity: .5;
}
.wt-dashboard-header.titanium{
	position:relative;
}
/*.wt-dashboard-header.titanium:before{
	content:'';
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
	max-width:150px;
	background:url(../images/membership-rank-badge.png) no-repeat;
	background-size:contain;
	background-position:right top;
}*/
.wt-dashboard-header-left{
	width:80%;
	padding:15pt;
	position:relative;
}
.wt-dashboard-header-right{
	width:20%;
	padding:10px;
	position:relative;
	overflow:hidden;
	z-index:1;
}
.wt-dashboard-header-right:before{
	content:'';
	position:absolute;
	top:0;
	right:-30%;
	width:100%;
	height:100%;
	background:url(../images/icon-cellegence-reverse.png) no-repeat;
	background-position:center;
	background-size:100%;
	opacity:.5;
	z-index:-1;
	display:none;
}
.last-event-log{
	margin-top:auto;
	text-align:right;
	color:var(--neutral-dark);
	font-size:12px;
}
.wt-membership, .wt-commision-rank{
	color:var(--text-light-gray);
	font-size:14px;
	margin-bottom:10px;
}
.wt-membership h3, .wt-commision-rank h3{
	font-family: 'Poppins-Bold';
	font-weight:bold;
	font-size:24pt;
	margin-bottom:0;
	color:var(--color-theme-1);
}
.wt-membership h4{
	font-family: 'Poppins-Regular';
	font-weight:bold;
	font-size:16px;
	margin-bottom:0;	
}
.wt-membership h5{
	margin-bottom:0;
}
.membership{
	color:var(--color-theme-2);
}
.strategy-partner{
	color:#d00;
}
.gradient-text{
	background-image:linear-gradient(45deg, var(--color-theme-1), #af4261, #d3891a, #8d7c02);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; /* Vendor prefix */
	color: transparent; /* Fallback for other browsers and standard */
}
.pmv-qv{
	display:inline-block;
	width:auto;
	padding:10pt;
	background:#fff;
	border-radius:15px;
}
.pmv-qv ul{
	margin:0;
	padding:0;
	display:flex;
	align-items:center;
}
.pmv-qv li{
	width:auto;
	text-align:center;
	list-style:none;
	display:block;
	font-weight:bold;
	color:var(--color-theme-2);
}
.wt-dashboard-content-wrapper{
	background:#fff;
	height:auto;
	padding:15pt;
	position:relative;
	z-index:1;
}
.wt-dashboard-content-wrapper:before{
	content:'';
	position:absolute;
	top:-60px;
	left:0;
	width:100%;
	height:100%;
	background:#fff;
	z-index:-1;
	display:none;
}
.wt-dashboard-wallet-grid{	
	background:#fff;
	border-radius:15px;
	/*margin-top:-60pt;*/
	box-shadow:0 0 15px rgba(100,100,100,.15);
}
.wt-dashboard-wallet-grid ul{
	margin:0;
	padding:10px;
	display: flex;
    flex-wrap: wrap;
}
.wt-dashboard-wallet-grid li{
	display:block;
	list-style:none;
	width:50%;
	padding:10pt;
	text-align:center;
}
.wt-dashboard-wallet-card h4{
	font-size:14px;
	font-weight:600;
	color:var(--color-theme-2);
	margin-bottom:5px;
}
.wt-wallet-amount{
	font-family:'Poppins-Bold';
	font-weight:bold;
	font-size:16pt;
	line-height:normal;
	color:var(--neutral-dark);
}
.wt-wallet-dot-01{
	color:#FEC963;
}
.wt-wallet-dot-02{
	color:#FF5B5B;
}
.wt-wallet-dot-03{
	color:#00B2FF;
}
.wt-wallet-dot-04{
	color:#00D7A3;
}
.content-wrapper-title{
	margin-bottom:15pt;
	position:relative;	
}
.content-wrapper-title h3{
	margin-bottom:10px;
	font-size:18px;
	font-weight:600;
	color:var(--color-theme-1);	
}
.content-wrapper-title p{
	color:var(--text-light-gray);
	font-size:14px;
}
.content-wrapper-subtitle{
	margin-bottom:10px;
	position:relative;
	padding-left:15px;
}
.content-wrapper-subtitle:before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:5px;
	height:100%;
	background-color:var(--neutral-dark);
}
.content-wrapper-subtitle h4{
	margin-bottom:0;
	font-size:16px;
	font-weight:600;
	color:var(--neutral-dark);
}
.anno-card h4{
	font-size:16px;
	font-weight:600;
	color:var(--text-dark-gray);
}
.anno-card p{
	font-size:10pt;
	color:var(--text-light-gray);
}
.anno-card p span{
	color:var(--text-light-gray);
}
.anno-card-date{
	font-size:14px;
	font-weight:bold;
	color:var(--neutral-dark);
}
@media(max-width:786px){
	.wt-dashboard-header{
		flex-direction:column;
	}
	.wt-dashboard-header-left, .wt-dashboard-header-right{
		width:100%;
	}
}
/*** Subscription ***/
.inner-content-wrapper{
	border-radius:20px 20px 0 0;
	padding-top:30pt;
	height:auto;
	font-size:14px;
}
.margin-top--15px{
	margin-top:-15px;
}
.margin-top--100px{
	margin-top:-100pt;
}
.margin-top--60pt{
	margin-top:-60pt;
}
.margin-top-60pt{
	margin-top:60pt;
}
.default-card{
	position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
.default-card-body{
	flex: 1 1 auto;
    padding:10px;
	font-size:14px;
	font-weight:normal;
}
.status-text{
	font-weight:bold;
	background:#f7f7f7;
	padding:5px 10px;
	border-radius:6px;
	border:1px solid #eee;
}
.status-active{
	color:#00D7A3;
}
.status-pending{
	color:#ffc107;
}
.status-inactive{
	color:#dc3545;
}
.monthly-total-renewal{
	color:var(--color-theme-1);
	font-weight:bold;
}
.subscription-amount{
	font-weight:bold;
	margin-bottom:10px;
}
.payment-method-card{
	padding:10px;
	background-color:#f7f7f7;
	border-radius:15px;
	font-size:14px;
	color:#3c3b83;
}
.payment-method-card-amount{
	font-size:16pt;
	font-weight:bold;
}
.payment-method-icon{
	width:22px;
	height:22px;
}
.btn-payment-method-desposit{
	width:100%;
	background:#fff;
	border-radius:10px;
	text-align:center;
	font-size:16px;
	padding:10px;
	display:block;
	text-decoration:none;
	transition:all ease .3s;
}
.btn-payment-method-desposit:hover{
	text-decoration:none;
	color:#000;
}
.py-card-01{
	background:linear-gradient(0deg, #FFCC68, #FABE4B);
}
.py-card-01 a{
	color:#a77615;
	font-weight:600;
}
.py-card-02{
	background:linear-gradient(90deg, #FF5B5B, #ff3c3c);
}
.py-card-02 a{
	color:#d32b2b;
	font-weight:600;	
}
.py-card-03{
	background:linear-gradient(90deg, #a9eaff, #a2efd4);
}
.py-card-03 a{
	color:#095c69;
	font-weight:600;	
}
/*** transaction History ***/
.show_search{
	text-decoration:none;
	font-size:12px;
	padding:10px;
}
.default-table{
	/* min-width:800px; */
	width:100%;
}
.default-table >tbody>tr:nth-of-type(odd)>*{
	background-color:#F9F5FF;
}
.default-table tr th{
	color:var(--neutral-dark);
	font-size:12px;
}
.default-table tr td{
	font-size:12px;
	color:var(--neutral-dark);
	border:0;
}
.default-table tr th a, .default-table tr td a{
	color:#000;
	text-decoration:none;
}
/*** Wallet ***/
.wallets-card{
	padding:10px;
	background-color:#f7f7f7;
	border-radius:15px;
	border:1px solid #e3e3e3;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, .35);
	font-size:14px;
	color:#3c3b83;
	height:100%;
}
.wallet-car-top{
	
}
.wallets-card-amount{
	font-size:16pt;
	font-weight:bold;
}
.wallets-card-icon{
	width:36px;
	height:36px;
}
.btn-payment-method-desposit{
	width:100%;
	background:#fff;
	border-radius:10px;
	text-align:center;
	font-size:14px;
	padding:10px;
	display:block;
	text-decoration:none;
	transition:all ease .3s;
}
.btn-payment-method-desposit:hover{
	text-decoration:none;
	color:#000;
}
.wallet-usdt{
	/*background:linear-gradient(0deg, #FFCC68, #FABE4B);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-usdt a{
	color:#a77615;
	font-weight:600;
}
.wallet-reward{
	/*background:linear-gradient(90deg, #FF5B5B, #ff3c3c);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-reward a{
	color:#d32b2b;
	font-weight:600;	
}
.wallet-withdraw{
	/*background:linear-gradient(90deg, #a9eaff, #a2efd4);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-withdraw a{
	color:#095c69;
	font-weight:600;	
}
.wallet-redeem{
	/*background:linear-gradient(90deg, #8cc9ed, #aef7ff);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-redeem a{
	color:#196897;
	font-weight:600;
}
.wallet-bonus{
	/*background:linear-gradient(90deg, #e17a3d, #fbb03f);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-bonus a{
	color:#e17a3d;
	font-weight:600;	
}
.wallet-travel{
	/*background:linear-gradient(90deg, #cec3ff, #aeceff);*/
	background:linear-gradient(90deg, #f1f1f1, #eee);
}
.wallet-miles-points{
	background:linear-gradient(90deg, #b9ffd5, #c2ffae);
}
.wallet-share{
	background:linear-gradient(90deg, #efefef, #d3d3d3);
}
.depositModal .modal-content{
	border-radius:15px;
}
.depositModal .modal-header{
	display:flex;
	align-items:center;
}
.depositModal .modal-title{
	font-size:14pt;
	font-weight:bold;
}
.show-sub-total{
	color:var(--text-dark-gray);
	padding:10px;
	margin-bottom:10px;
	text-align:center;
	background: #fbfbfb;
    border: 1px dotted #c5c5c5;
    border-radius: 10px;
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.sub-total{
	font-size:22px;
	color:var(--color-theme-2);
}
.divider{
	width:100%;
	max-width:80%;
	height:1px;
	background:#eee;
	margin:10px auto;
	position:relative;
}
/*.scan-qrcode-deposit{
	padding:15px;
	margin-bottom:15px;
	min-height:120px;
}
.qrcode-grid{
	width:100%;
	max-width:225px;					
	margin:15pt auto;
	margin-top:25pt;					
}
.qrcode-grid h4{
	margin-bottom:15px;
	color:var(--color-theme-1);
	font-size: 20px;
	font-weight: bold;
}
.qrcode-block{
	width:150px;
	height:150px;
	background:#f7f7f7;
	margin:0 auto;
	padding:5px;
	border-radius:10px;
	box-shadow:0 0 10px rgba(0,0,0,.15);
}
.copy-address-grid{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:5px;
	width:100%;
}
.wallet-address-lot{
	width:100%;
	max-width:65%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.copy-address-button{
	width:32px;
	height:32px;
	border:none;
	background:var(--color-theme-1);
	color:#fff;
	padding:5px;
	border-radius:10px;
	transition:all ease .3s;
}
.copy-address-button:hover{
	opacity:.65;
}*/
@media(max-width:991px){
	.wallet-car-top{
		display:flex;
		flex-direction:column;
		justify-content:center;
		align-items:center;
	}
	.wallet-car-middle{
		text-align:center;
	}
	.wallets-card-icon{
		margin-bottom:5px;
	}
}
@media(max-width:500px){	
	.btn-payment-method-desposit{
		font-size:14px;
	}
}
/*** Profile ***/
.referral-code-card{
	max-width:265px;
	min-height:320px;
	margin:0 auto 25px;
	padding:15px;
	background:var(--color-theme-1);
	border-radius:20px;
	position:relative;
	z-index:1;
	color:#fff;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	gap:10px;
}
.referral-code-card:before{
	content:'';
	position:absolute;
	right:0;
	bottom:-25px;
	width:250px;
	height:250px;
	background:url(../images/icon-cellegence-reverse.png) no-repeat;
	background-size:cover;
	background-position:bottom center;
	opacity:.15;
	z-index:-1;
	transform:rotate(-25deg);
}
.referral-qr-code{
	background:#fff;
	padding:10pt;
	border-radius:15px;
	margin:0 auto;
	position:relative;
	max-width:152px;
	position:relative;
}
.refferral-code-label{
	padding:10px 15px;
	background:#fff;
	border-radius:10px;
	display:block;
	margin:0 auto;
	color:#000;
	min-width:200px;
	text-align:center;
}
.copy-download-link{
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	text-decoration:none;
	transition:all ease .3s;
	color:var(--color-theme-2) !important;
	font-size:14px;
}
.copy-download-link:hover{
	color:var(--color-theme-1) !important;
	text-decoration:none;
	transition:all ease .3s;
}
.copy-download-icon{
	width:52px;
	height:52px;
	padding:15px;
	margin-bottom:6px;
	background:var(--color-theme-2);
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all ease .3s;
}
.copy-download-link:hover .copy-download-icon{
	background:var(--color-theme-1);
}
.copy-download-icon img{
	max-width:100%;
}
.copy-download-icon i{
	color:#fff;
	font-size:16pt;
}
/*** sign up page ***/
.register-title{
	position:relative;
	color:#fff;
}
.register-title h3{
	color:var(--neutral-dark);
	font-weight:bold;
	font-size:22pt;
}
.register-step-pills{
	gap: 15px;
    justify-content: space-evenly;
}
.register-step-pills .nav-link{
	padding:0 !important;
	position:relative;
}
.register-step-pills .nav-link:before{
	content:'';
	position:absolute;
	top:15px;
	right:-35px;
	width:30px;
	height:1px;
	border-top:3px dotted var(--color-theme-1);
}
.register-step-pills .nav-link.last-child:before{
	display:none;
}
.register-step-pills .nav-link.active, .register-step-pills .show>.nav-link{
	background-color:transparent !important;
	border-radius:0;
	display:flex;
	gap:5px;
	flex-direction: column;
    align-items: center;
}
.register-step-badge{
	width:30px;
	height:30px;
	display:flex;
	justify-content:center;
	align-items:center;
	background-color:#eee;
	border-radius:50%;
	color:var(--color-theme-2);	
	transition:opacity 0.3s ease-in;
}
.register-step-desc{
	text-align:center;
	padding:0 5px 0;
	max-width:125px;
	display:none;
	transition:opacity 0.3s ease-in;
}
.register-step-desc h4{
	color:var(--color-theme-2);
	font-weight:bold;
	font-size:14px;
	margin:0 0 5px;
}
.register-step-desc p{
	color:#777;
	margin-bottom:0px;
	font-size:12px;
}
.register-step-pills .nav-link.active .register-step-desc{
	display:block;
}
.register-step-pills .nav-link.active .register-step-badge{
	background-color:var(--color-theme-2);
	color:#fff;
	width:35px;
	height:35px;
}
.tac_btn{
	background:var(--color-theme-1);
	padding:5px 10px;
	border-radius:5px;
	border:0;
	color:#fff;
	font-size:14px;
	transition:all ease .3s;
}
.tac_btn:hover{
	background:var(--color-theme-1-h);
}
/*** new registration ***/
.select-slot-grid{
	margin:10px 0;
	display:flex;
	align-items:center;
	gap:10px;
}
.select-slot-container {
	display: inline-block;
	position: relative;
	padding-left:0;
	margin-bottom:0;
	cursor: pointer;
	font-size:16px;
	text-align:center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.select-slot-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.select-slot-checkmark {
	position: relative;
	top: 0;
	left: 0;
	background-color: #fff;
	padding: 10px 20px;
	margin-bottom:5px;
    border: 1px solid #eee;
    display: inline-block;
	color: #bfbfbf;
	transition:all ease .3s;
}
.select-slot-container:hover input ~ .select-slot-checkmark {
	background-color: #f9f9f9;
}
.select-slot-container input:checked ~ .select-slot-checkmark {
	background-color:#f7f7f7;
	color: #000;
	    border: 1px solid #aaa;
}
.select-slot-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.select-slot-container input:checked ~ .select-slot-checkmark:after {
	display: block;
}
.select-slot-container .select-slot-checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: transparent;
}
.select-slot-label{
	font-size:10px;
	color:#aaa;
}
/*** subscription plan grid ***/
.subscription-plan-grid ul{
	display:flex;
	flex-wrap:wrap;
	margin:0;
	padding:0;
}
.spg-card-inner{
	position:relative;
	z-index:1;
	display: flex;
    justify-content: space-between;
	align-items:center;
}
.sp-title{
	font-weight:bold;
	font-size:20pt;
}
.sp-icon img{
	width:100%;
	max-width:95px;
	-webkit-filter:drop-shadow(0px 0px 5px rgba(0,0,0,.35));
	filter:drop-shadow(0px 0px 5px rgba(0,0,0,.35));
}
.subscription-plan-grid li{
	list-style:none;
	display:block;
	width:50%;
	padding:0 5px;
}
.package-label{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    font-size:12px;
	font-weight:bold;
	text-transform:uppercase;
	color:#fff;
    background:linear-gradient(90deg,transparent, rgba(255,255,255,.15) 50%, var(--highlight) 80%);
    padding: 4px 15px;	
	width: 220px;
    text-align: right;
}
.spg-container {
	display: block;
	position: relative;
	padding:15pt 10pt 10pt;
	margin-bottom: 12px;
	cursor: pointer;
	font-size:16pt;
	color:#fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow:hidden;
}
.spg-container:before{
	content:'';
	position:absolute;
	bottom:0;
	right:0;
	width:150px;
	height:100%;
	background:url(../images/icon-cellegence-reverse.png) no-repeat;
	background-position:center;
	background-size:contain;
	z-index:1;
	opacity:.1;
}
.spg-container.strategy-partner:before{
	content:'';
	position:absolute;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	background:url(../images/strategy-partner-card-bg.jpg) no-repeat;
	background-position:center;
	background-size:cover;
	z-index:1;
	opacity:.5;
	border-radius:10px;
}
.spg-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.spg-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	background-color:#aaa;
	border-radius:10px;
	transition:all ease .3s;
}
.spg-container:hover input ~ .spg-checkmark {
	background-color:var(--color-theme-2-h);
}
.spg-container input:checked ~ .spg-checkmark {
	background-color:var(--color-theme-1);
}
.spg-checkmark:after {
	content: "";
	position: absolute;
	display: none;
	transition:all ease .3;
}
.spg-container input:checked ~ .spg-checkmark:before {
	content:'';
	position:absolute;
	bottom:0;
	right:-10px;
	width:35px;
	height:50px;
	background:var(--accent);
	transform: skewX(-45deg);
	display:none;
}
.spg-container input:checked ~ .spg-checkmark:after {
	content:'';
	position:absolute;
	bottom:0;
	right:60px;
	width:35px;
	height:20px;
	background:var(--accent);
	transform: skewX(45deg);
	display:none;
	z-index:1;
}
/*.spg-container .spg-checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}*/
/*** custom radios ***/
.custom-radios-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size:14px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.custom-radios-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.custom-radios-checkmark {
	position: absolute;
	top:50%;
	left: 0;
	transform:translateY(-50%);
	height: 24px;
	width: 24px;
	background-color: #eee;
	border-radius: 50%;
}
.custom-radios-container:hover input ~ .custom-radios-checkmark {
	background-color: #ccc;
}
.custom-radios-container input:checked ~ .custom-radios-checkmark {
	background-color:#fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .35);
}
.custom-radios-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.custom-radios-container input:checked ~ .custom-radios-checkmark:after {
	display: block;
}
.custom-radios-container .custom-radios-checkmark:after {
	top:5px;
	left:5px;
	width:14px;
	height:14px;
	border-radius: 50%;
	background:var(--color-theme-1);
}
.custom-radios-content h4{
	margin-bottom:5px;
}
/*** choose payment method ***/
.choose-payment-method-grid ul{
	margin:0;
	padding:0;
	display:flex;
	justify-content:center;
	gap:10px;
}
.choose-payment-method-grid li{
	list-style:none;
	display:block;
	width:200px;
	height:100%;
	max-width:200px;
}
.payment-method-detail{
	position:relative;
	z-index:1;
	text-align:center;
	color:var(--neutral-dark);
	font-weight:bold;
}
.choose-payment-method-container {
	display: block;
	position: relative;
	padding:10pt;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.choose-payment-method-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.choose-payment-method-checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	/*background-color:var(--color-theme-2);*/
	background-color:#f8f8f8;
	border-radius:10px;
	transition:all ease .3s;
	box-shadow:0 0 5px rgba(0,0,0,0);
}
.choose-payment-method-container:hover input ~ .choose-payment-method-checkmark {
	/*background-color:var(--color-theme-2-h);*/
	background-color:#f2f2f2;
}
.choose-payment-method-container input:checked ~ .choose-payment-method-checkmark {
	/*background-color:var(--color-theme-1);*/
	border:1px solid #c9c9c9;
	box-shadow:0 0 15px rgba(0,0,0,.35);
}
.choose-payment-method-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.choose-payment-method-container input:checked ~ .choose-payment-method-checkmark:after {
	display: none;
}
.choose-payment-method-container .choose-payment-method-checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}	
.total-payment-amount{
	color:var(--color-theme-2);
	font-size:14pt;
	font-weight:bold;
}
.qrcode-pay{
	width:100%;
	height:100%;
	background:#fff;
	display:block;
	padding:0;
	margin:0 auto;
	border-radius:15px;
	font-size:14px;
}
.qrcode-pay img{
	max-width:125px;
}
.terms-text li{
	list-style: decimal;
    font-size: 14px;
    color: var(--text-light-gray);
}
/*** My Products ***/
.myproduct-grid{
	margin:10pt 0;
}
.myproduct-grid ul{
	margin:0;
	padding:0;
}
.myproduct-grid li{
	display:block;
	list-style:none;
	margin-bottom:15px;
	padding:10pt;
	border-radius:10px;
	border:1px solid #eee;
}
.myproduct-grid li:nth-child(odd){
	background:#f5f5f5;
}
.myproduct-img{
	width:125px;
	height:125px;
	margin:0 auto;
	border-radius:15px;
	overflow:hidden;
	box-shadow:0 0 20px rgba(0,0,0,.15);
	display:flex;
}
.myproduct-img img{
	max-width:100%;
}
.myproduct-name{
	font-family: 'Poppins-Bold';
	font-size:16px;
	font-weight:bold;
	color:var(--color-theme-1);
	margin-bottom:10px;
}
.modal-redeem-product-img{
	width:100%;
	max-width:250px;
	padding:15pt;
	margin:0 auto;
}
.modal-redeem-product-img img{
	max-width:100%;
}
.redeem-method-grid{
	margin-bottom:10px;
}
.redeem-method-container {
	display: block;
	position: relative;
	margin-bottom:5px;
	font-size:12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.redeem-method-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.redeem-method-checkmark {
	position: relative;
	height:auto;
	width:100%;
	padding:10px;
	background-color: #fff;
	display:block;
	border: 1px solid #eee;
	border-radius: 10px;
	color:#888;
	transition:all ease .3s;
}
.redeem-method-container:hover input ~ .redeem-method-checkmark {
	background-color: #eee;
}
.redeem-method-container input:checked ~ .redeem-method-checkmark {
	background-color: #efefef;
	border: 1px solid #ddd;
	color:#000;
}
.redeem-method-checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.redeem-method-container input:checked ~ .redeem-method-checkmark:after {
	display: block;
}
.redeem-method-container .redeem-method-checkmark:after {
	content:'\f26a';
	font-family: "bootstrap-icons";
	font-size:16px;
	top:50%;
	right:10px;
	transform:translateY(-50%);
}
.qty-wrapper {
	display: inline-flex;
	align-items: center;
	width:100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	overflow: hidden;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.qty-btn {
	width: 32px;
	height: 32px;
	border: none;
	background: #f5f5f5;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
}
.qty-btn:active {
	background: #e0e0e0;
}
.qty-input {
	width:100%;
	height: 32px;
	border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	outline: none;
}
.qty-btn:disabled {
	opacity: 0.4;
	cursor: default;
}
/*** Redeemption history ***/
.redeemption-history-grid{
	margin:10pt 0;
	display:inline-block;
	width:100%;
}
.redeemption-history-grid ul{
	margin:0;
	padding:0;
}
.redeemption-history-grid li{
	display:block;
	list-style:none;
	padding:10px;
	margin-bottom:15px;
	border-radius:10px;
}
.redeemption-history-grid li:nth-child(odd){
	background:#efefef;
}	
.redeemption-history-card{
	display:grid;
	grid-template-columns:auto 1.5fr .7fr;
	gap:20px;
	font-size:clamp(12px, 3vw, 14px);
}
.redeemption-history-card-left{
	text-align:center;
}
.redeemption-history-img{
	width:60px;
	display:block;
	margin-bottom:10px;
	border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.redeemption-history-img img{
	max-width:100%;
}
.redeemption-history-product-name{
	font-weight:bold;
}
.redeemption-status-label{
	padding:5px 10px;
	border-radius:10px;
	background:var(--color-theme-1);
	color:#fff;
	text-align:center;
}