.body .desktop-content {
	position: relative;
	left: 180px;
	width: calc(100% - 180px);
}
.body .mobile-content {
	position: relative;
	height: calc(100vh - 132px);
	overflow-y: scroll;
}
.body .sidebar {
	position: fixed;
	width: 180px;
	min-height: 100vh;
	background-color: #1b1d1c;
	display: flex;
	flex-direction: column;
	overflow: inherit !important;
	z-index: 100;
}
.body .sidebar__top {
	padding: 20px 0;
	flex: 1 1;
	position: relative;
}
.body .sidebar__lz-logo-container {
	display: flex;
	width: 100%;
	margin-bottom: 10px;
	justify-content: center;
}
.body .sidebar__account-info-button-container {
	display: flex;
	width: 100%;
	margin: 15px 0;
	justify-content: center;
	position: absolute;
	bottom: 10px;
	left: 0;
}
.body .sidebar__connect-wallet-button {
	padding: 5px 15px;
	font-size: 14px;
	cursor: pointer;
}
.body .sidebar__menu-item-list {
	margin-top: 40px;
}
.body .sidebar__menu-item {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.body .sidebar__menu-item__icon {
	width: 15px;
	height: 15px;
}
.body .sidebar__menu-item__label {
	display: flex;
	cursor: pointer;
	height: 50px;
	width: 100%;
	align-items: center;
	position: relative;
	padding-left: 20px;
	background-image: linear-gradient(60deg, #34401d, #34401d 50%, transparent 0);
	background-size: 220%;
	background-position: 100%;
	transition: all 0.25s ease-out;
}
.body .sidebar__menu-item__label.active,
.body .sidebar__menu-item__label:hover {
	background-position: 0;
}
.body .sidebar__menu-item__title {
	color: #fff;
	display: flex;
	font-size: 16px;
	margin-left: 8px;
	position: relative;
	white-space: nowrap;
}
.body .sidebar__menu-item__title-text {
	z-index: 1;
}
.body .sidebar__menu-item__title-selected {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: linear-gradient(90deg, #5aa62b 0, #96cf24);
	transition: all 0.25s ease-out;
}
.body .sidebar__menu-item:hover .sidebar__menu-item__title-selected,
.body .sidebar__menu-item__title-selected.active {
	height: 100%;
}
.body .sidebar__menu-item__submenu {
	display: none;
}
.body .sidebar__menu-item__submenu.expand {
	display: block;
}
.body .sidebar__sub-menu-item {
	font-size: 16px;
	cursor: pointer;
	padding-left: 40px;
	color: #fff;
	height: 40px;
	display: flex;
	align-items: center;
}
.body .sidebar__bottom {
	display: flex;
	border-top: 1px solid hsla(0, 0%, 50.2%, 0.2);
}
.body .sidebar__bottom__container {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px;
}
.body .sidebar__bottom__configs {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 10px;
}
.body .sidebar__bottom__language {
	cursor: pointer;
	position: relative;
}
.body .sidebar__bottom__language--select {
	position: fixed;
	left: 180px;
	bottom: 0;
	color: #9ca3af;
	width: 160px;
	box-sizing: content-box;
	padding: 15px 0;
	background: rgba(27, 29, 28, 0.8);
	border-bottom-right-radius: 15px;
	border-top-right-radius: 15px;
	z-index: 90;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	opacity: 0;
	transition: all 0.25s ease-out;
}
.body .sidebar__bottom__language--select.active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.body .sidebar__bottom__language--select-option:last-child {
	border: none;
}
.body .sidebar__bottom__language--select .btn-close-language {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}
.body .sidebar__bottom__language--select-option {
	white-space: nowrap;
	padding: 10px 0 10px 22px;
	text-align: left;
	background: linear-gradient(90deg, #96cf24 5.53%, #5aa62b 50%, #ccd2e3 0);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	transition: all 0.25s ease-out;
	cursor: pointer;
}
.body .sidebar__bottom__language--select-option.selected {
	background: linear-gradient(270deg, #96cf24 10.53%, #5aa62b);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.body .sidebar__bottom__language--select-option:hover {
	background-position: 0 100%;
}
.body .sidebar__bottom__theme-icon {
	cursor: pointer;
}
.body .sidebar__bottom__language-icon {
	color: #fff;
	vertical-align: middle;
	margin-right: 5px;
}
.body .sidebar__bottom__language-text {
	color: #9ca3af;
	text-transform: uppercase;
}
.body .sidebar__bottom__social-media-icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.body .sidebar__expand {
	background-color: #1b1d1c;
	position: fixed;
	bottom: 0;
	left: 180px;
	display: flex;
	flex-direction: column;
	padding: 20px 40px;
	width: 360px;
	border-radius: 0 10px 10px 0;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	opacity: 0;
	z-index: 9;
	transition: all 0.25s ease-out;
}
.body .sidebar__expand.show {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.body .sidebar__expand__left-arrow-icon {
	position: absolute;
	top: 10px;
	right: 3px;
	padding: 0 10px;
	cursor: pointer;
}
.body .sidebar__expand__bnb-balance,
.body .sidebar__expand__lz-balance {
	display: flex;
	justify-content: space-between;
	opacity: 0.75;
	color: #fff;
	margin: 5px 0;
}
.body .sidebar__expand__view-on-bsc-scan {
	margin: 20px 0;
	cursor: pointer;
}
.body .sidebar__expand__view-on-bsc-scan a {
	font-size: 16px;
}
.body .navbar {
	width: 100%;
	background-color: #1b1d1c;
	display: flex;
	flex-direction: column;
	padding: 15px;
}
.body .navbar__top-line {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	height: 42px;
}
.body .navbar__lz-logo-icon-container {
	flex: 0.55 1;
}
.body .navbar__title {
	text-shadow: 0 0 10px rgba(201, 251, 103, 0.5);
	flex: 0.35 1;
	font-size: 36px;
	white-space: nowrap;
	overflow: hidden;
}
.body .navbar__menu-icon {
	flex: 0.1 1;
}
.body .navbar__menu-item-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin: 10px 0 -10px;
	max-height: 0;
	transition: all 0.25s ease-out;
	overflow: hidden;
}
.body .navbar__menu-item-list.active {
	max-height: 200px;
	transition: all 0.25s ease-out;
}
.body .navbar__menu-item {
	display: flex;
	width: 100%;
	margin: 5px 0;
}
.body .navbar__menu-item__icon {
	width: 15px;
	height: 15px;
}
.body .navbar__menu-item__title {
	color: #fff;
	display: flex;
	font-size: 16px;
	margin-left: 8px;
	white-space: nowrap;
	position: relative;
}
.body .navbar__menu-item__title-text {
	z-index: 1;
}
.body .navbar__menu-item__title-selected {
	position: absolute;
	left: -8px;
	top: -3px;
	width: calc(100% + 8px);
	height: 8px;
	background: linear-gradient(90deg, #5aa62b 0, #96cf24);
}
.body .navbar__sub-menu-item-list {
	width: calc(100% - 24px);
	height: 24px;
	margin: auto;
	background-color: #3a3a3a;
	color: #ccd2e3;
	border-radius: 0 0 5px 5px;
	display: flex;
	align-items: center;
	position: relative;
}
.body .navbar__sub-menu-item-list__parallax {
	overflow-x: hidden !important;
}
.body .navbar__sub-menu-item-list__parallax-layer {
	align-items: center;
	display: flex;
}
.body .navbar__sub-menu-item-list__grid {
	display: grid;
	flex: 1 1;
}
.body .navbar__sub-menu-item-list__prev-icon {
	margin: -6px 0;
}
.body .navbar__sub-menu-item-list__item-title {
	display: flex;
	justify-content: center;
}
.body .navbar__sub-menu-item-list__next-icon {
	margin: -6px 0;
}
.body .footer {
	width: 100%;
	background-color: #1b1d1c;
	position: fixed;
	bottom: 0;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	z-index: 20;
}
.body .footer__language {
	cursor: pointer;
	position: relative;
	width: 50px;
	text-align: left;
}
.body .footer__language--select {
	position: absolute;
	bottom: 40px;
	right: -78px;
	color: #9ca3af;
	min-width: 160px;
	padding: 15px 0;
	box-sizing: content-box;
	background: rgba(27, 29, 28, 0.8);
	border-top-left-radius: 15px;
	opacity: 0;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	transition: all 0.25s ease-out;
}
.body .footer__language--select.active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}
.body .footer__language--select .btn-close-language {
	display: inline-block;
	position: absolute;
	top: 5px;
	right: 15px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}
.body .footer__language--select-option:last-child {
	border: none;
}
.body .footer__language--select-option {
	white-space: nowrap;
	padding: 7px 20px;
	text-align: left;
}
.body .footer__language--select-option.selected {
	justify-content: center;
	background: linear-gradient(270deg, #96cf24 10.53%, #5aa62b);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.body .footer__language-icon {
	color: #fff;
	vertical-align: middle;
	margin-right: 5px;
}
.body .footer__language-text {
	color: #9ca3af;
}
.body .footer__connect-wallet-button {
	padding: 5px 15px;
	font-size: 14px;
}
.body .footer__expand {
	width: 100%;
	background-color: #1b1d1c;
	z-index: 10;
	-webkit-transform: translateY(calc(100% + 50px));
	transform: translateY(calc(100% + 50px));
	transition: all 0.25s ease-out;
	opacity: 0;
	position: fixed;
	bottom: 60px;
	height: 280px;
	display: flex;
	flex-direction: column;
	padding: 20px 40px;
}
.body .footer__expand.show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.body .footer__expand__bnb-balance,
.body .footer__expand__lz-balance {
	display: flex;
	justify-content: space-between;
	opacity: 0.75;
	color: #fff;
	margin: 5px 0;
}
.body .footer__expand__view-on-bsc-scan {
	margin: 15px 0;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.body .footer__expand__view-on-bsc-scan a {
	font-size: 16px;
}
.body .footer__expand__view-on-bsc-scan-link {
	flex: 1 1;
}
.body .footer__expand__social-medias {
	display: flex;
	align-items: center;
}
.body .footer__expand__social-medias > * {
	margin: 5px;
}
.dark {
	--color-primary: #328b31;
	--color-primary-light: #96cf24;
	--layout-background-color: #000;
	--color-grey: #535353;
	--color-grey-light: #9ca3af;
	--color-grey-light-1: grey;
	--color-white: #fff;
	--color-black: #000;
	--color-text-default: #fff;
}
.dark,
.light {
	--sidebar-color: #1b1d1c;
}
.light {
	--color-primary: #328b31;
	--color-primary-light: #96cf24;
	--layout-background-color: #e5e5e5;
	--color-grey: #535353;
	--color-grey-light: #9ca3af;
	--color-grey-light-1: grey;
	--color-white: #fff;
	--color-black: #000;
	--color-text-default: #000;
}
@-webkit-keyframes moveInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem);
	}
	80% {
		-webkit-transform: translateX(1rem);
		transform: translateX(1rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes moveInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem);
	}
	80% {
		-webkit-transform: translateX(1rem);
		transform: translateX(1rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes moveInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(10rem);
		transform: translateX(10rem);
	}
	80% {
		-webkit-transform: translateX(-1rem);
		transform: translateX(-1rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes moveInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(10rem);
		transform: translateX(10rem);
	}
	80% {
		-webkit-transform: translateX(-1rem);
		transform: translateX(-1rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@-webkit-keyframes moveInBottom {
	0% {
		opacity: 0;
		-webkit-transform: translateY(3rem);
		transform: translateY(3rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
@keyframes moveInBottom {
	0% {
		opacity: 0;
		-webkit-transform: translateY(3rem);
		transform: translateY(3rem);
	}
	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}
*,
:after,
:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: var(--layout-background-color);
}
html {
	font-size: 62.5%;
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
	html {
		font-size: 56.25%;
	}
}
@media only screen and (max-width: 768px) {
	html {
		font-size: 50%;
	}
}
.container {
	padding-left: 10rem;
	padding-right: 12rem;
}
@media only screen and (max-width: 768px) {
	.container {
		padding: 2.2rem;
	}
}
@font-face {
	font-family: montserrat-medium;
	font-style: normal;
	font-weight: 400;
	src: url(/static/media/Montserrat-Medium.e2d60bc4.ttf);
}
@font-face {
	font-family: montserrat-light;
	font-style: normal;
	font-weight: 400;
	src: url(/static/media/Montserrat-Light.02afb26f.ttf);
}
body {
	font-weight: 400;
	color: var(--color-text-default);
}
*,
body {
	font-family: montserrat-medium, sans-serif;
}
* {
	font-size: 1.6rem;
}
a {
	color: inherit;
	text-decoration: inherit;
}
.text-center {
	text-align: center;
}
.hidden {
	display: none !important;
}
.lz-button-container {
	border-radius: 5px;
	justify-content: center;
	display: flex;
	cursor: pointer;
	position: relative;
}
.lz-button-container:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1px;
	border-radius: 5px;
	background: linear-gradient(270deg, #96cf24 10.53%, #5aa62b);
	-webkit-mask: linear-gradient(270deg, #96cf24 10.53%, #5aa62b) content-box,
		linear-gradient(270deg, #96cf24 10.53%, #5aa62b);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}
.lz-button-container:hover {
	background-image: linear-gradient(270deg, #96cf24 10.53%, #5aa62b),
		linear-gradient(90deg, #5aa62b 0, #96cf24);
}
.lz-button-text {
	padding: 10px;
	font-size: 16px;
	background: linear-gradient(90deg, #5aa62b 0, #96cf24);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.lz-button-container:hover .lz-button-text {
	background: #fff;
	-webkit-background-clip: text;
	background-clip: text;
}
.account-info-button {
	background-color: #242424;
	padding: 5px 10px;
	border-radius: 5px;
	display: flex;
	height: 44px;
	width: 157px;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.account-info-button__brief {
	display: flex;
	flex-direction: column;
}
.account-info-button__address {
	color: #9ca3af;
	font-size: 14px;
}
.account-info-button__bnb-balance {
	color: #fff;
	font-size: 14px;
}
.lz-text {
	font-size: 16px;
	background: linear-gradient(90deg, #5aa62b 0, #96cf24);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.copyable-address-container {
	background-color: #242424;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 10px 0;
	display: flex;
	align-items: center;
}
.copyable-address {
	font-size: 16px;
	background: linear-gradient(
		90deg,
		#fff 77.81%,
		hsla(0, 0%, 100%, 0.1) 89.27%,
		hsla(0, 0%, 100%, 0) 98.13%
	);
	opacity: 0.75;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: calc(100% - 20px);
}
.copyable-address-copy-icon {
	cursor: pointer;
	z-index: 1;
}
body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, segoe ui, roboto, oxygen,
		ubuntu, cantarell, fira sans, droid sans, helvetica neue, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
code {
	font-family: source-code-pro, Menlo, Monaco, Consolas, courier new, monospace;
}
