@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap";
.flexcolumn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

body {
	background: #2a2337 !important;
	font-family: poppins, sans-serif;
	/* background: -webkit-gradient(linear, left top, left bottom, from(#267ea9), to(#bd2660)); */
	/* background: linear-gradient(to bottom, #267ea9, #bd2660); */
	background: linear-gradient(to bottom, rgba(16, 18, 22, 0.8), rgba(20, 18, 30, 0.9));
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh
}

.dashboard-container .sidebar {
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	/* background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 18, 22, 0.8)), to(rgba(20, 18, 30, 0.9)));
	background: linear-gradient(to bottom, rgba(16, 18, 22, 0.8), rgba(20, 18, 30, 0.9)); */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.dashboard-container .sidebar .logo {
	padding: 20px 0
}

.dashboard-container .sidebar .logo img {
	max-width: 100%
}

.dashboard-container .sidebar li {
	list-style: none;
	color: #fff;
	margin: 5px;
	font-size: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	height: 45px;
	width: 45px;
	cursor: pointer
}

.dashboard-container .sidebar nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.dashboard-container .sidebar nav ul .active {
	background:#2a2337 !important

}

.dashboard-container main {
	/* margin-left: 70px; */
	position: relative
}

.dashboard-container main .main-content {
	max-width: 1100px;
	margin: auto;
	padding: 30px 20px 20px;
	z-index: 9;
	position: relative;
	color: #fff;
	background:#2a2337 !important
}

.dashboard-container main::before {
	content: "";
	position: fixed;
	top: 0;
	left: 70px;
	right: 0;
	height: 30%;
	background: #2a2337;
	border-bottom: 1px solid #2a2337
}

.dashboard-container main::after {
	content: "";
	position: fixed;
	top: 30%;
	left: 70px;
	height: 70%;
	right: 0;
	bottom: 0;
	background: #2a2337;
	z-index: 1
}

.dashboard-container main .dash-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.dashboard-container main .dash-header .dashboard-heading {
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 3px
}

.dashboard-container main .dash-header .dashboard-heading p {
	font-size: 34px!important
}

.dashboard-container main .dash-header .dashboard-small-heading p {
	margin: 10px 2px;
	padding: 4px 8px;
	border: 1px solid #25223d;
	border-radius: 4px
}

.dashboard-container main .dash-header .dashboard-small-heading p i {
	color: #8248e5
}

.dashboard-container main .dash-header .dashboard-small-heading p:last-of-type {
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3
}

.dashboard-container main .search i {
	margin: 10px 3px;
	padding: 4px;
	font-size: 20px;
	cursor: pointer
}

.rotate {
	-webkit-animation: rotate 2s linear infinite;
	animation: rotate 2s linear infinite
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotateZ(0deg);
		transform: rotateZ(0deg)
	}
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg)
	}
}

@keyframes rotate {
	from {
		-webkit-transform: rotateZ(0deg);
		transform: rotateZ(0deg)
	}
	to {
		-webkit-transform: rotateZ(360deg);
		transform: rotateZ(360deg)
	}
}

.primary-btn {
	border-radius: 7px;
	border: 2px solid #8248e5;
	color: #8248e5;
	padding: 2px 10px;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
	font-size: 14px;
	margin: 10px;
	cursor: pointer
}

.secondary-btn {
	border-radius: 7px;
	margin: 10px;
	cursor: pointer;
	border: 2px solid #8248e5;
	color: #fff;
	background: #8248e5;
	padding: 2px 10px;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
	font-size: 14px
}

.disabled-btn {
	border-radius: 7px;
	margin: 10px;
	cursor: pointer;
	border: 2px solid #d6c8ed;
	color: #545454;
	background: #d6c8ed;
	padding: 2px 10px;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
	font-size: 14px
}

.dash-content {
	margin-top: 35px
}

.mh-450 {
	min-height: 550px
}

.dash-wallet {
	background: #eee7fa !important;
	/* border: 1px solid #2b2a3a; */
	border-radius: 30px;
	padding: 20px;
	min-height: 520px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 450px
}

.dash-wallet .wallet-value-info {
	-webkit-box-flex: 2;
	-ms-flex: 2;
	flex: 2;
	text-align: center;
	/* display: inline-block; */

}

.wallet-value {
	/* -webkit-box-flex: 25;
	-ms-flex: 25; */
	/* flex: 25; */
	display: inline-block;

	padding:50px;
	margin-top: 10px;;
	/* background: #191b1f; */
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	border-left: 6px solid #8248e5;
	border-top: 6px  solid #8248e5;
	border-right: 6px solid #8248e5;
	border-bottom: 6px solid #8248e5;

}

.wallet-value p {
	margin: 0!important;
	padding: 0!important;
	color: #000;
	font-weight: bold;
	font-size: 15px
}

.wallet-value h1 {
	font-weight: 700
}

@-webkit-keyframes borderotate {
	0% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	10% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	50% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	90% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
}

@keyframes borderotate {
	0% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	10% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	50% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
	90% {
		border-left: 6px solid #8248e5;
		border-top: 6px #8248e5;
		border-right: 6px solid #8248e5;
		border-bottom: 6px #8248e5;
	}
}

.wallet-info {
	margin: 10px;
	padding: 10px
}

.wallet-info p {
	color: #000;
	font-weight: 700;
	margin: 0;
	padding: 0
}

.wallet-info .wallet-info-amount {
	color: #8248e5;
	font-weight: bold;
	font-size: 22px;
}

.dash-transactions {
	background: #eee7fa!important;
	height: 90%;
	/* border: 1px solid #2b2a3a; */
	padding: 20px;
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color:"#8248e5";
	font-weight: bold;
}

.dash-transactions>div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.gray {
	color: #a8a8a8
}

.green {
	color: #8248e5
}

.card-head {
	color: #a8a8a8;
	letter-spacing: 1px;
	font-weight: 600
}

.card-graph {
	-webkit-box-flex: 2!important;
	-ms-flex: 2!important;
	flex: 2!important;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	color: #8248e5;
	font-weight: bold;
}

.card-footer>div {
	/* background: #04010c; */
	border-radius: 10px;
	padding: 4px 10px;
	margin: 10px;
	color:#8248e5;
	font-weight: bold;
	
}

.card-footer p {
	margin: 0;
	padding: 0;
	font-size: 14px
}

.flexCenter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.referral-text {
	width: 98%;
	display: inline-block;
	border-bottom: 2px solid #8248e5;
	padding: 4px;
	white-space: nowrap;
	overflow: hidden!important;
	margin: 10px;
	text-overflow: ellipsis
}

.w-98 {
	width: 98%!important
}

.table td, .table th{
	color:#000 !important
}

.token-rates-dash {
	/* background: #eee7fa!important;
	height: 100%;
	padding: 20px;
	position: relative;
	overflow: hidden;
	border-radius: 20px */
}

.stake-token-card {
	border: 1px solid #2b2a3a;
	height: 100%;
	background: #191b1f27;
	padding: 20px;
	border-radius: 20px
}

.rates-cards {
	margin: 3px;
	padding: 8px 2px;
	background: transparent;
}

.rates-cards .rate-card {
	padding: 8px;
	/* background: #121119; */
	margin: 10px 0
}

.rates-cards .rate-icon {
	background: #8248e5;
	border-radius: 4px;
	height: 40px;
	width: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-right: 20px
}

.rates-cards p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #8248e5;
	font-weight: bold;
}

p {
	font-size: 14px!important
}

.blue {
	color: #8248e5
}

.orange {
	color: #d36c61
}

nav a {
	color: #fff
}

.stake-token-card {
	position: relative;
	overflow: hidden
}

.stake-token-card .card-middle {
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	margin-top: 10px;
	margin-bottom: 100px
}

.stake-footer-btn {
	background: #8248e5;
	/* color: rgba(11, 11, 14, .94); */
	position: absolute;
	width: 75%;
	border: none;
	outline: none;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
	cursor: pointer
}

@-webkit-keyframes letter-move {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 10% 10%;
		transform-origin: 10% 10%;
		text-shadow: none
	}
	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
		-webkit-transform-origin: 10% 10%;
		transform-origin: 10% 10%
	}
}

@keyframes letter-move {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 10% 10%;
		transform-origin: 10% 10%;
		text-shadow: none
	}
	100% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
		-webkit-transform-origin: 10% 10%;
		transform-origin: 10% 10%
	}
}

.name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly
}

.letters {
	color: #fff;
	font-size: 25px;
	font-family: gorditas, Arial, sans-serif;
	font-weight: 700;
	-webkit-animation: letter-move 1.5s cubic-bezier(.68, -.55, .265, 1.55) alternate-reverse both;
	animation: letter-move 1.5s cubic-bezier(.68, -.55, .265, 1.55) alternate-reverse both
}

.letters-12 {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s
}

.letters-11 {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s
}

.letters-10 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.letters-9 {
	-webkit-animation-delay: .9s;
	animation-delay: .9s
}

.letters-8 {
	-webkit-animation-delay: .8s;
	animation-delay: .8s
}

.letters-7 {
	-webkit-animation-delay: .7s;
	animation-delay: .7s
}

.letters-6 {
	-webkit-animation-delay: .6s;
	animation-delay: .6s
}

.letters-5 {
	-webkit-animation-delay: .5s;
	animation-delay: .5s
}

.letters-4 {
	-webkit-animation-delay: .4s;
	animation-delay: .4s
}

.letters-3 {
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}

.letters-2 {
	-webkit-animation-delay: .2s;
	animation-delay: .2s
}

.letters-1 {
	-webkit-animation-delay: .1s;
	animation-delay: .1s
}

.popup-card-section, .referral-popup {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	/* height: 100vw; */
	width: 100vw;
	z-index: 9999999999;
	/* background: #8248e527 */
}

.referral-card {
	max-width: 500px!important
}

.popup-card-bg, .referral-card {
	border-radius: 15px;
	color: #fff;
	background: #0a0c14;
	border: 2px solid #8248e5;
	-webkit-box-shadow: 3px 3px 3px rgba(255, 255, 255, .084), -3px -3px 3px #000;
	box-shadow: 3px 3px 3px rgba(255, 255, 255, .084), -3px -3px 3px #000;
	padding: 20px;
	width: 100%;
	max-width: 800px
}

.popup-card-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px
}

.popup-card-heading h3 {
	font-size: 19px;
	font-weight: 700
}

.close-popup-card {
	width: 20px;
	height: 20px;
	color: #fff;
	font-size: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	border-radius: 50%
}

.top-table {
	margin: auto
}

.top-table tr, .top-table th, .top-table td {
	padding: 10px;
	text-align: center
}

.bottom-table {
	max-width: 500px;
	width: 100%;
	padding-top: 80px;
	margin: 50px auto;
	border-radius: 7px;
	color:black;
	
}

.bottom-table tr, .bottom-table th, .bottom-table td {
	padding: 10px;
	text-align: center;
	border: 2px solid #8248e5
}

@media(max-width:768px) {
	/* .wallet-value {
		padding: 30px
	} */
}

.primary-input {
	border: none;
	border-bottom: 2px solid #8248e5;
	color: #8248e5;
	padding: 10px;
	background: 0 0;
	color: #fff
}

.checkbox-class {
	height: 20px;
	width: 20px;
	border: 2px solid #8248e5;
	color: #8248e5;
	background: 0 0;
	margin-right: 5px;
	-webkit-appearance: unset!important;
	-moz-appearance: unset!important;
	appearance: unset!important
}

.checkbox-class:focus {
	border: 2px solid #8248e5!important;
	-webkit-appearance: unset!important;
	-moz-appearance: unset!important;
	appearance: unset!important
}

.checkbox-class:checked {
	background: #8248e5;
	padding: 3px
}

.backbutton {
	margin-left: 20px;
	color: #8248e5;
	cursor: pointer
}

.next-btn {
	margin: 50px auto 20px;
	max-width: 150px;
	color: #fff!important;
	padding: 10px;
	font-weight: 800;
	display: block
}

.next-btn2 {
	color: #fff!important;
	padding: 10px;
	font-weight: 800;
	display: block
}

.navbar-toggle {
	position: fixed;
	top: 30px;
	right: 10px;
	height: 50px;
	width: 50px;
	font-size: 24px;
	color: #fff;
	z-index: 99;
	display: none
}

.navbar-toggle i {
	color: #fff
}

.show-sidebar {
	-webkit-transform: translateX(0)!important;
	transform: translateX(0)!important
}

@media(max-width:768px) {
	.sidebar {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		/* background: #0b0b0e!important; */
		z-index: 9999;
		-webkit-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out
	}
	.navbar-toggle {
		display: block!important
	}
	.dashboard-container main {
		margin-left: 0!important
	}
	.dashboard-container main::before, .dashboard-container main::after {
		left: 0!important
	}
}

.loading-popup .referral-card {
	min-height: 300px!important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.text-dark{
	color:"#fff" !important;
	font-weight: bold;
}