@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700&display=swap');
body {
	font-family: 'Sen', sans-serif;
	font-size: 14px;
	color: #2D1B0E;
	background: #fff;
	padding-top: 57px;
}
img {
	max-width: 100%;
}
a {
	text-decoration: none;
	color: #47131A;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover {
	color: #F6B200;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
}
h1,.h1 {font-size: 52px;}
h2,.h2 {font-size: 44px;}
h3,.h3 {font-size: 32px;}
h4,.h4 {font-size: 30px;}
h5,.h5 {font-size: 26px;}
h6,.h6 {font-size: 22px;}
table.vertical-align-middle tr td {
	vertical-align: middle;
}
table.table tr td {
	border-bottom-color: #EBE8E2 !important;
}
table img.nftImg {
	width: 30px;
	margin-right: 5px;
}
section {
	padding: 20px 0;
	border-radius: 16px;
}
section[class*="bg-"] {
	padding: 20px;
	margin-bottom: 20px;
}
section[class*="bg-"] .sectionHeading {	
	margin-bottom: 20px;
}
section .sectionHeading {
	font-size: 28px;
	margin-bottom: 5px;
	font-weight: 700;
	color: #47131A;
}
section .sectionSubHeading {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 400;
	color: #47131A;
}
section .sectionSubHeading .more {
	display: inline-block;
	border: 1px solid #98795C;
	color: #98795C;
	padding: 5px 15px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.customRadio {
	position: relative;
	padding-left: 35px;
}
.customRadio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.customRadio .checkmark {
	position: absolute;
	top: 50%;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #CAB6A4;
	border-radius: 50%;
	transform: translateY(-50%);
}
.customRadio input:checked ~ .checkmark {
	background-color: #0FD545;
}
.customRadio .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.customRadio input:checked ~ .checkmark:after {
	display: block;
}
.customRadio .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn {
	font-weight: 700;
	border-radius: 12px;
	border: none;
	padding: 6px 18px;
	color: #fff;
	border: 1px solid transparent;
	font-size: 14px;
}
.btn:focus {
	box-shadow: none;
}
.btn.btn-lg {
	padding: 15px;
	font-size: 16px;
}
.btn.bg-soft-yellow {
	color: #2D1B0E;
	border-color: #FFE000;
}
.rounded {
	border-radius: 30px !important;
}
.rounded-16 {
	border-radius: 16px;
}
.rounded-12 {
	border-radius: 12px;
}
.rounded-8 {
	border-radius: 8px;
}
.backdrop {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;	
	background: rgba(255,255,255,0);
	backdrop-filter: blur(8px);
	display: none;
	opacity: 0;
	z-index: 2;
}
.modalOverlay {
	background: rgba(0,0,0,.3);
}
/* menu open in mobile */
.menuOpen {
	overflow: hidden;
}
.menuOpen .backdrop {
	display: block;
	opacity: 1;
}
.menuOpen .menuToggle img {
	transform: scaleX(-1);
}
.menuOpen aside {
	left: 0;
}
/* Badge */
.badge {
	position: relative;
	color: #47131A;
	text-align: center;
}
.badge.sm {
	font-size: 12px;
}
.badge.md {
	font-size: 14px;
	padding: 12px 20px;
}
.badge.md.hasIcon {
	position: relative;
    padding-left: 38px;
}
.badge.md.hasIcon .icon {
	width: 22px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.badge.arrow {
	margin-left: 10px;
}
.badge.arrow:before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: -6px;
	top: 50%;
	transform: translateY(-50%);
	border-top: 4px solid transparent;
	border-right: 6px solid;
	border-bottom: 4px solid transparent;
}
.badge.bg-pink.arrow:before {
	border-right-color: #FC346D;
}
.badge.bg-yellow {
	background: #FFE000;
}
.badge.bg-purple {
	background: #6647BF;
	color: #fff;
}
.badge.bg-purple.arrow:before {
	border-right-color: #6647BF;
}
.badge.bg-grey.arrow:before {
	border-right-color: #EBE8E2;
}
.badge.bg-yellow.arrow:before {
	border-right-color: #FFE000;
}
/* Background solid color */
.bg-grey {
	background: #EBE8E2;
}
.bg-grey-1 {
	background: #F7F7F7;
}
.bg-soft-grey {
	background: #F3EDDF;
}
.bg-pink {
	background: #FC346D;
}
.bg-soft-pink {
	background: #FAE1E0;
}
.bg-green {
	background: #0FD545;
}
.bg-yellow {
	color: #47131A;
	background: #FFE000;
}
.bg-dark-yellow {
	background: #F6B200;
}
.bg-soft-yellow {
	background: #FFFAD9;
}
.bg-soft-yellow-1 {
	background: #FFF5B0;
}
.bg-natural {
	background: #FDF1CC;
}
.bg-brown {
	color: #FFFAD9;
	background: #47131A;
}
.bg-dark-brown {
	color: #FFFAD9;
	background: #2D1B0E;
}
.bg-mint {
	background: #E8FBEA;
}
.bg-soft-green {
	background: #F0F8DB;
}
.bg-purple {
	background: #EAE9FD;
}
.bg-purple-1 {
	background: #FCEDFE;
}
.bg-soft-blue {
	background: #EDF8FE;
}
/* Background gradient */
.bg-blue-grad {
	background: linear-gradient(225deg, #0FD545 37.97%, #018E27 100%);
}
.bg-yellow-grad {
	color: #2D1B0E;
	background: linear-gradient(90deg, #FFAA00 0%, #FFD702 100%);
}
/* Text color */
.text-yellow {
	color: #F6B200;
}
.text-brown {
	color: #583A1E;
}
.text-soft-brown {
	color: #CAB6A4;
}
.text-green {
	color: #0FD545;
}
.text-pink {
	color: #FC346D;
}
/*========================== COMMON ==========================*/
.nftFilter .dropdown-toggle {
	background: #fff;
	border: 1px solid #CAB6A4;
	border-radius: 12px;
	color: #47131A;
	font-weight: 400;
    padding: 8px 20px;
}
.contentOverlay {
	position: relative;
}
.contentOverlay .inner {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 25px;
}
.earnPassiveElement .inner {
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.earnPassiveElement .title,
.earnPassiveElement .apr {
	font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}
.earnPassiveElement .apr img {
    width: 40px;
}
/* blindboxElement */
.blindboxElement .item {
	padding: 25px;
	height: 100%;
	position: relative;	
}
.blindboxElement .item:not(:last-child) {
	margin-bottom: 10px;
}
.blindboxElement .item .icon {
	position: absolute;
	height: 125px;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.blindboxElement .item .phase {
	font-weight: 400;
	margin-bottom: 10px;
	min-width: 100px;
}
.blindboxElement .item .title {
	font-size: 24px;
	margin-bottom: 10px;
}
.blindboxElement .item .time {
	font-size: 18px;
	font-weight: 700;
}
/* gamebase Element */
.gamebaseElement .thumb {
	border-radius: 18px;
}
.gamebaseElement .item {
	background: #F7F7F7;
	border-radius: 18px;
	margin-bottom: 20px;
}
.gamebaseElement .thumbWrap .title {
	text-transform: uppercase;
	color: #98795C;
	margin-bottom: 20px;
	font-size: 14px;
}
.gamebaseElement .thumbWrap .title img {
	position: relative;
	top: -2px;
}
.gamebaseElement .thumbWrap .prizePot {
	color: #98795c;
    padding-left: 40px;
}
.gamebaseElement .thumbWrap .price {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1;
}
.gamebaseElement .thumbWrap .price img {
	width: 40px;
}
.gamebaseElement .bottom {
	padding: 15px 20px;
}
.gamebaseElement .bottom .social a:not(:last-child) {
	margin-right: 5px;
}
.gamebaseElement .bottom .social a {
	opacity: .3;
}
.gamebaseElement .bottom .social a:hover {
	opacity: 1;
}
.gamebaseElement .bottom .social img {
	width: 28px;
}
/* pool element */
.poolElement .top .value {
	font-size: 38px;
	font-weight: 700;
}
.poolElement .top {
	font-size: 16px;
	margin-bottom: 20px;
}
.poolElement ul li {
	padding: 10px 15px;
	margin-bottom: 8px;
}
.poolElement ul li .value {
	font-size: 26px;
	font-weight: 700;
}
/* search element */
.searchElement {
	position: relative;
	background: #EBE8E2;
	border-radius: 12px;
	padding: 5px 5px 5px 15px;
	margin-right: 10px;
}
.searchElement input {
	background: none;
	border: none;
}
.searchElement input:focus {
	border: none;
	box-shadow: none;
	outline: none;
}
.searchElement .icon {
    background: #FFE000;
    padding: 6px 14px;
    border-radius: 10px;
    border: none;
}
/* list NFT */
.listNft {
	margin: -12px 0;
}
.listNft .item {	
	margin: 12px 0;
}
.listNft .item .top {
	position: relative;
	text-align: center;
	padding: 15px;
	border-radius: 16px 16px 0 0;
}
.listNft .item .top .percent {
	padding: 6px 10px;
	font-size: 14px;
}
.listNft .item.end .top .percent {
	background: #2D1B0E;
	color: #fff;
}
.listNft .item .top .nftThumb {
	height: 130px;
	margin: 10px 0 20px;
}
.listNft .item .title {
	margin: 0;
	font-size: 13px;
}
.listNft .item .bottom {
	padding: 15px;
	background: #F7F7F7;
	border-radius: 0 0 16px 16px;
}
/* stats Element */
.statsElement {
	padding: 20px;
	text-align: center;
}
.statsElement .item:not(:last-child) {
    border-right: 2px solid #F6B200;
}
.statsElement .number {
	font-size: 28px;
	font-weight: 700;
}
/* hidden box element */
.hiddenBoxElement .item {
	text-align: center;
	padding: 30px 20px 20px;	
}
.hiddenBoxElement .item img {
	margin-bottom: 20px;
}
/* list task element */
.listTaskElement .item {
	padding: 20px;
}
.listTaskElement .item .title {
	font-size: 18px;
}
.listTaskElement .item .value,
.listTaskElement .item .name {
	font-size: 16px;
    font-weight: 700;
}
.listTaskElement .item .nftReward .nftThumb {
	height: 90px;
	margin-right: 10px;
}
.listTaskElement .item .nftReward .badge {
	padding: 10px 15px;
	font-size: 14px;
}
/*========================== HEADER ==========================*/
header,
header a {
	color: #47131A;
	font-weight: 700;
}
header {
	background: #fff;
	padding: 10px 0;
	border-bottom: 1px solid #EBE8E2;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
header .logo {
	display: block;
	width: 250px;
}
header .logo span {
	background: #0FD549;
	color: #fff;
	font-weight: 700;
	display: inline-block;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 30px;
}
header .headerMenu {
	font-size: 16px;
}
header .headerMenu li + li {
	margin-left: 20px;
}
header .headerMenu li a:hover {
	color: #F6B200;
}
header .headerMenu .babbuPrice .icon img,
aside .babbuPrice .icon img {
	width: 26px;
    background: #FFE000;
    border-radius: 50%;
    padding: 2px;
}
header .connectWallet {
	margin-right: 15px;	
}
header .connected {
	margin-right: 15px;
	background: #F7F7F7;
	border-radius: 12px;
}
header .connected .totalNft {
	margin: 0 15px;
}
header .dropdown .dropdown-toggle::after {
	display: none;
}
header .dropdown .dropdown-menu .dropdown-item {
	font-weight: 700;
}
header .dropdown .dropdown-menu li .dropdown-item:hover {
	background: #FFF5B0;
}
/*========================== SIDE MENU ==========================*/
aside {
	font-weight: 700;
	color: #000;
	width: 250px;
	padding: 20px 20px 0 0;
	background: #fff;
	position: fixed;
    overflow: auto;
    height: calc(100% - 57px);
	top: 57px;
}
aside a {
	display: block;
	padding: 10px 20px;
	color: #000;
	border-radius: 8px;
	position: relative;
	white-space: nowrap;
}
aside .iAmBabu {
	text-align: right;
	margin-top: 30px;
}
#mainmenu li a .icon {
	margin-right: 10px;
	width: 25px;
}
#mainmenu li a .icon,
#mainmenu li a .text {
	display: inline-block;
	vertical-align: middle;
}
#mainmenu li a:hover {
	color: #F6B200;
}
#mainmenu li a.active {
	background: #FFE000;
}
#mainmenu li.parentMenu > a:before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid #583A1E;
}
#mainmenu li.parentMenu .subMenu {
	background: #FFFAD9;
	margin-right: -20px;
}
#mainmenu li.parentMenu .subMenu li:first-child {
	padding-top: 10px;
}
#mainmenu li.parentMenu .subMenu li:last-child {
	padding-bottom: 10px;
}
#mainmenu li.parentMenu .subMenu a {
	font-weight: 400;
	padding: 5px 10px 5px 55px;
}
/*========================== CONTENT ==========================*/
#mainContent {
	padding: 20px 0 20px 20px;
    height: 100%;
    border-left: 1px solid #EBE8E2;
    margin-left: 250px;
}
/*========================== HOMEPAGE ==========================*/
#homepage .banner {
	background: #F7F7F7;
	padding: 20px;
	margin-bottom: 20px;
}
#homepage .banner .carousel-indicators {
	width: 186px;
    padding-left: 20px;
    position: static;
    display: block;
    margin: 0;
}
#homepage .banner .carousel-indicators .item:not(:first-child) {
	margin-top: 20px;
}
#homepage .banner .carousel-indicators .item {
	position: relative;
    text-indent: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: auto;
    background: none;
	border: none;
	opacity: 1;
	filter: grayscale(1);
	cursor: pointer;
}
#homepage .banner .carousel-indicators .item:before {
	content: "";
    width: 0;
    height: 0;
	position: absolute;
    left: -15px;
    top: 50%;
	opacity: 0;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-right: 15px solid #ffe000;
    border-bottom: 10px solid transparent;
}
#homepage .banner .carousel-indicators .item.active {
	filter: grayscale(0);
}
#homepage .banner .carousel-indicators .item.active:before {
	opacity: 1;	
}
#homepage .banner .carousel-indicators .item img {
	border-radius: 20px;
}
#homepage .community a {
	display: inline-block;
	margin-right: 15px;
}
/*========================== ABOUT PAGE ==========================*/
#aboutPage {
	color: #47131A;
	margin: -20px 0 -20px -20px;
}
#aboutPage section {
	padding: 45px 30px;
	background: #FFE000;
	border-radius: 0;
}
#aboutPage section:nth-child(odd) {
	background: #F7F7F7;
}
#aboutPage .sectionHeading {
	font-size: 32px;
	color: #060C3C;
	margin: 0;
}
#aboutPage .sectionSubHeading {
	font-size: 22px;
	color: #98795C;
}
#aboutPage section.banner {
	padding-right: 380px;
	background: #FFE000 url(../img/bg-banner.png) no-repeat bottom right / 630px;
}
#aboutPage .banner .textGroup-1 {
	font-size: 28px;
	margin-bottom: 10px;
}
#aboutPage .banner .textGroup-2 {
	font-size: 52px;
}
#aboutPage .banner .textGroup-2 .text-5 {
	font-size: 72px;
}
#aboutPage .banner p {
	margin-bottom: 50px;
}
#aboutPage .banner .btn {
	padding: 6px 35px;
	border: 1px solid #47131A;
}
#aboutPage .banner .launch {
	color: #47131A;
	font-weight: 400;
	margin: 0 15px 0 10px;
}
#aboutPage .banner .social a {
	margin-left: 6px;
}
#aboutPage .banner .social a img {
	width: 26px;
}
#aboutPage section.stats {
	background: #FFED69;
	padding: 25px 15px;
	text-align: center;
}
#aboutPage .stats .number {
	font-weight: 700;
	font-size: 24px;
}
#aboutPage .metaverse {
	color: #5D6180;
}
#aboutPage .metaverse .title {
	color: #060C3C;
}
#aboutPage .tokenomic .total {
	display: inline-block;
	background: #F6B200;
	border-radius: 16px;
	font-size: 18px;
	font-weight: 700;
	padding: 10px 30px;
	margin-top: 30px;
}
#aboutPage .tokenomic img {
	display: block;
	margin-top: 30px;	
}
#aboutPage .galaxy .item {
	margin-top: 30px;
}
#aboutPage .galaxy .item .title {
	margin: 15px 0;
	color: #2D1B0E;
}
#aboutPage .roadmap .sectionHeading {
	margin-bottom: 45px;
}
#aboutPage .roadmap .left {
	margin-right: 15px;
}
#aboutPage .roadmap .right {
	margin-left: 15px;
}
#aboutPage .roadmap ul li {
	background: #FAD551;
	border-radius: 16px;
	margin: 5px 0;
	text-align: center;
	padding: 10px;
	font-size: 18px;
}
#aboutPage .roadmap ul li.active {
	font-weight: 700;
	background: #47131A;
	color: #fff;
}
#aboutPage .faq .sectionHeading {
	font-size: 44px;
	text-align: center;
	margin-bottom: 15px;
}
#aboutPage .howToBuy .sectionHeading {
	margin-bottom: 45px;
}
#aboutPage .howToBuy .steps > li {
	padding: 25px 35px;
	background: #fff;
	border-radius: 16px;
}
#aboutPage .howToBuy .steps > li:not(:last-child) {
	margin-bottom: 15px;
}
#aboutPage .howToBuy .title {
	font-size: 22px;
}
#aboutPage .howToBuy .title img {
	margin-right: 25px;
}
#aboutPage .howToBuy .desc {
	padding: 5px 0 0 65px;
	font-size: 18px;
	word-break: break-word;
}
#aboutPage .howToBuy .desc ul {
	list-style-type: disc;
}
#aboutPage section.friends {
	background: #fff;
	border-left: 1px solid #fff;
	margin-left: -1px;
}
#aboutPage .friends .sectionHeading {
	margin-bottom: 30px;
}
#aboutPage .friends a {
	display: block;
	text-align: center;
	box-shadow: 0px 4px 20px -2px rgba(6, 12, 59, 0.08);
	border-radius: 16px;
	margin-bottom: 20px;
}
#aboutPage .friends a img {
	border-radius: 16px;
}
#aboutPage section.footer {
	background: #fff;
	border-left: 1px solid #fff;
	margin-left: -1px;
	font-size: 18px;
	text-align: center;
	color: #98795C;
	padding-top: 20px;
}
#aboutPage .footer .social {
	margin-bottom: 20px;
}
#aboutPage .footer .social a {
	margin: 0 8px;
}
#aboutPage .footer .social a img {
	width: 30px;
}
/*========================== MARKET AUCTION PAGE ==========================*/
#marketAuctionPage .navWrap .nav-pills {
	display: inline-flex;
}
#marketAuctionPage .navWrap .nav-link {
	width: 200px;
	font-size: 16px;
	font-weight: 700;
}
#marketAuctionPage .nftFilter {
	margin: 20px 0;
}
#marketAuctionPage .nftFilter .filterNft {
	margin-right: 10px;
}
#marketAuctionPage .nftFilter .btnHistory {
	background: #EBE8E2;
	color: #2D1B0E;
	padding: 9px 20px;
}
/*========================== NFT DETAIL PAGE ==========================*/
#nftDetailPage .overview .leftInfo {
	height: 100%;
	padding: 20px;
	border-radius: 16px;
	background: #FAE1E0;
}
#nftDetailPage .overview .leftInfo .badge {
	font-size: 14px;
    padding: 10px 14px;
}
#nftDetailPage .overview .leftInfo .nftImg {
	height: 270px;
}
#nftDetailPage .overview .leftInfo .btn {
    background: #F6B200;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-left: 10px;
}
#nftDetailPage .overview .leftInfo .btn img {
	width: 25px;
}
#nftDetailPage .overview .leftInfo .dropdown-toggle::after {
	display: none;
}
#nftDetailPage .overview .rightInfo {
	height: 100%;
    padding: 20px;
    border-radius: 16px;
	background: #FFFAD9;
	font-size: 16px;
}
#nftDetailPage .overview .rightInfo .sectionHeading,
#nftDetailPage .overview .rightInfo .top > div {
	margin-bottom: 15px;
}
#nftDetailPage .overview .rightInfo .value {
	font-size: 26px;
	font-weight: 700;
}
#nftDetailPage .overview .rightInfo .currencies .selected {
	font-weight: 700;
	color: #F6B200;
}
#nftDetailPage .overview .rightInfo .currencies div + div {
	padding-left: 10px;
}
#nftDetailPage .overview .rightInfo .currencies div + div::before {
	content: "|";
	padding-right: 10px;
	color: #EBE8E2;
}
#nftDetailPage .overview .rightInfo .btnBid {
	padding: 15px;
	margin-bottom: 5px;
}
#nftDetailPage .overview .rightInfo .tab-pane {
	padding-top: 15px;
}
#nftDetailPage .overview .rightInfo table {
	font-size: 14px;
	margin: 0;
}
#nftDetailPage .overview .rightInfo table tr td:last-child {
	text-align: right;
}
#nftDetailPage .history table {
	margin: 20px 0 0;
	text-align: right;
}
#nftDetailPage .history table tr td:nth-child(1),
#nftDetailPage .history table tr td:nth-child(2) {
	text-align: left;
}
#nftDetailPage .rule .sectionHeading {
	margin-bottom: 20px;
}
/*========================== NFT MINT PAGE ==========================*/
#nftMintPage .navWrap {
	margin-bottom: 30px;
}
#nftMintPage .minting {
    padding: 20px;
    background: #F7F7F7;
}
#nftMintPage .minting .nftPrize {
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	background: url(../img/bg-babbu-nft-mint.jpg) no-repeat center center / cover;
}
#nftMintPage .minting .nftPrize img {
	width: 290px;
	margin: 20px 0;
}
#nftMintPage .minting .nftPrize .info .item {
	font-weight: 700;
	background: #FFD6E7;
	padding: 5px 10px;
	border-radius: 25px;
}
#nftMintPage .minting .leftSide .name {
	font-size: 20px;
	margin: 20px 0 15px;
}
#nftMintPage .minting .leftSide .name span {
	font-weight: 400;
}
#nftMintPage .minting .leftSide .percent {
	background: #faf8e6;
	border-radius: 16px;
	padding: 15px 30px;
}
#nftMintPage .minting .rightSide .item {
	padding: 50px 20px 15px;
    text-align: center;
    border-radius: 16px;
	position: relative;	
	height: 254px;
	margin-bottom: 20px;
}
#nftMintPage .minting .rightSide .item .remove {
	position: absolute;
	top: 15px;
	right: 15px;
}
#nftMintPage .minting .rightSide .item .nftThumb {
	height: 140px;
}
#nftMintPage .minting .rightSide .item .name {
	margin: 0;
    font-size: 13px;
    margin-top: 30px;
}
#nftMintPage .minting .rightSide .item.selectNft {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
#nftMintPage .minting .rightSide .item.selectNft .name {
	margin-top: 15px;
}
#nftMintPage .minting .rightSide .successRate {
	padding: 15px;
	margin-bottom: 20px;
}
#nftMintPage .mintingDetail .sectionHeading {
	margin-bottom: 20px;
}
#nftMintPage .mintingDetail table tr td:first-child {
	border-radius: 16px 0 0 16px;
}
#nftMintPage .mintingDetail table tr td:last-child {
	border-radius: 0 16px 16px 0;
}
#nftMintPage .mintingDetail table tr td:not(:first-child) {
	text-align: center;
}
#nftMintPage .mintingDetail table tbody tr td:not(:first-child) {
	font-weight: 700;
}
#nftMintPage .rule .sectionHeading {
	font-size: 18px;
}
/*========================== NFT MINING PAGE ==========================*/
#nftMiningPage .totalMining {
	padding: 15px 120px 5px 60px;
	margin-bottom: 20px;
	background: url(../img/bg-farm.jpg) no-repeat center center / cover;
}
#nftMiningPage .totalMining .value {
	font-size: 38px;
	font-weight: 700;
}
.poolElement .top {
	font-size: 16px;
	margin-bottom: 20px;
}
.poolElement ul li {
	padding: 10px 15px;
	margin-bottom: 8px;
}
.poolElement ul li .value {
	font-size: 26px;
	font-weight: 700;
}
#nftMiningPage .listNft .title {
	margin: 0 0 3px;
}
#nftMiningPage .listNft .item .top {
	height: 264px;
}
#nftMiningPage .listNft .item.addNft .top {
	padding-top: 80px;
}
#nftMiningPage .listNft .item .top .nftThumb {
	margin-top: 30px;
}
/*========================== GAMEBASE PAGE ==========================*/
#gamebasePage .blindboxElement .item .icon {
	right: 80px;
}
/*========================== BLINDBOX PAGE ==========================*/
#blindboxPage .listNft .item .top {
	border-radius: 16px;
	cursor: pointer;
}
#blindboxPage #pills-blindbox-camping .overview .item {
	margin-bottom: 20px;
}
#blindboxPage #pills-blindbox-camping .info .rule .title {
	font-size: 18px;
}
/*========================== BLINDBOX DETAIL PAGE ==========================*/
#blindboxDetailPage .hiddenBoxElement .item {
	margin-bottom: 20px;
}
#blindboxDetailPage .hiddenBoxElement .item:hover,
#blindboxDetailPage .hiddenBoxElement .item.picked {
	box-shadow: 0px 0px 0px 2px #ff9189;
	cursor: pointer;
}
#blindboxDetailPage .info .value {
	font-size: 16px;
	font-weight: 700;
}
#blindboxDetailPage .info .price {
	background: #F3EDDF;
	padding: 20px;
	font-size: 16px;
}
#blindboxDetailPage .info .price .value {
	font-size: 28px;
}
#blindboxDetailPage .info .rule .title {
	font-size: 18px;
}
#blindboxDetailPage .listNft .item .top {
	border-radius: 16px;
	cursor: pointer;
}
/*========================== BOUNTY PAGE ==========================*/
#bountyPage .intro {
	position: relative;
	font-size: 16px;
}
#bountyPage .intro .imgBabbu {
	position: absolute;
    top: 20px;
    right: 60px;
    width: 230px;
}
#bountyPage .listTaskElement .item {
	margin-bottom: 20px;
}
#bountyPage .steps .item {
	padding: 20px 20px 40px;
	height: 100%;
}
#bountyPage .steps .stepName {
	font-size: 18px;
}
#bountyPage .steps .title {
	font-size: 22px;
	margin: 15px 0;
}
#bountyPage .referrer,
#bountyPage .referrer .referLink,
#bountyPage .referrer .myRefer {
	margin-top: 20px;
	margin-bottom: 20px;
}
#bountyPage .referrer section {
	height: 100%;
	margin: 0;
}
#bountyPage .history .nav,
#bountyPage .history .tab-content {
	margin-top: 20px;
}
#bountyPage .history table tr th:first-child,
#bountyPage .history table tr td:first-child {
	text-align: left;
}
/*========================== BOUNTY DETAIL PAGE ==========================*/
#bountyDetailPage .taskSteps {
	border-left: 1px solid #EBE8E2;
}
#bountyDetailPage .taskSteps .title {
	font-size: 18px;
}
#bountyDetailPage .taskSteps ol li {
	margin-bottom: 10px;
}
#bountyDetailPage .btn {
	margin-top: 50px;
}
/*========================== COMMUNITY PAGE ==========================*/
#communityPage .listSocial .item {
	background: #F7F7F7;
	border-radius: 16px;
	padding: 15px 25px;
	margin-bottom: 20px;
}
#communityPage .listSocial .icon {
	width: 35px;
	margin-right: 20px;
}
#communityPage .listSocial .title {
	font-size: 20px;
	margin-bottom: 0;
}
/*========================== FARM PAGE ==========================*/
#farmPage .statsElement {
	padding: 10px 20px;
	position: relative;
	margin-bottom: 40px;
	background: url(../img/bg-farm.jpg) no-repeat center center / cover;
}
#farmPage .statsElement .number {
	font-size: 40px;
}
#farmPage .pair .item {
	padding: 20px;
}
#farmPage .pair .item .top {
	text-align: center;
	border-bottom: 1px solid #EBE8E2;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#farmPage .pair .item .top .value {
	font-size: 35px;
	font-weight: 700;
}
#farmPage .pair .item .coin img {
	display: inline-block;
	width: 40px;
}
#farmPage .pair .item .coin img:first-child {
	background: #FF6F0E;
	border-radius: 50%;
}
#farmPage .pair .item .coin img + img {
	margin-left: -15px;	
}
#farmPage .pair .item .apr {
	padding: 20px;
	margin: 20px 0;
}
#farmPage .pair .item .apr .value {
	font-size: 26px;
	font-weight: 700;
}
#farmPage .pair .item .action {
	margin-bottom: 15px;
}
#farmPage .pair .item .action .value {
	font-size: 24px;
	font-weight: 700;
}
#farmPage .pair .item .action .btn {
	width: 100px;
}
/*========================== LIST NFT PAGE ==========================*/
#nftListPage .listNft .item .top {
	border-radius: 16px;
	cursor: pointer;
}
/*========================== MODAL ==========================*/
.modal .closeModal {
	cursor: pointer;
}
.modal .table tr td:not(:first-child),
.modal .table tr th:not(:first-child) {
	text-align: right;
}
.modal .table tr td:first-child {	
	padding-left: 0;
}
.modal .table tr td:last-child {
	padding-right: 0;	
}
.modal .table thead tr > * {
	border: none;
	white-space: nowrap;
}
.modal .table tr:last-child > * {
	border: none;
}
.modal .table a:hover {
	text-decoration: underline;
}
.modalHistory .tab-content {
	margin-top: 25px;
}
.modalHistory .nftImg {
	width: 40px;
}
.modalHistory .nftImg img {
	width: 100%;
}
.modalHistory .nftName {
	color: #2D1B0E;
	line-height: 1.2;
}
.modalHistory .number {
	font-weight: 700;
	font-size: 16px;
}
.modalHistory .status {
	font-size: 13px;
}
#bidModal .totalBid {
	background: #EBE8E2;
	padding: 20px;
	text-align: center;
	border-radius: 12px;
	margin: 20px 0 10px;
}
#bidModal .totalBid .value {
	font-size: 32px;
	font-weight: 700;
}
#bidModal .priceExchange {
	font-size: 18px;
} 
#bidModal .btnBid {
	padding: 15px;
	margin-top: 25px;
}
#connectWalletModal ul li {
	font-size: 16px;
	font-weight: 700;
	padding: 8px 20px;
	border: 1px solid #EBE8E2;
	border-radius: 12px;
	cursor: pointer;
}
#connectWalletModal ul li:hover {
	background: #FFF5B0;
	border-color: #FFF5B0;
}
#connectWalletModal ul li:not(:last-child) {
	margin-bottom: 10px;
}
#accountModal .tab-content {
	margin-top: 20px;
}
#accountModal .balance .icon {
	width: 30px;
	text-align: center;
}
#accountModal .transaction thead tr td {
	border-bottom: 1px solid #dbd4c1;
}
#accountModal .transaction tr td {
	border-color: #dbd4c1;
}
#accountModal .transaction .more {
	display: inline-block;
	background: #CAB6A4;
	padding: 5px;
	border-radius: 50%;
	line-height: 1;
}
#accountModal #pills-profile .desc .title {
	font-size: 18px;
}
#accountModal #pills-profile .breadcrumb {
	margin: 15px 0;
	font-size: 14px;
}
#accountModal #pills-profile .starter {
	background: #F7F7F7;
    padding: 15px;
    border-radius: 16px;
}
#accountModal #pills-profile .starter .totalCost {
	text-align: center;
	margin-bottom: 15px;
}
#accountModal #pills-profile .starter .totalCost .value {
	font-size: 16px;
}
#accountModal #pills-profile .starter .totalCost .value {
	font-weight: 700;
	font-size: 36px;
}
#accountModal #pills-profile .option li {
	background: #EBE8E2;
	border-radius: 16px;
	padding: 10px 15px;
	font-weight: 700;
	font-size: 16px;
	margin: 10px 0;
}
#accountModal #pills-profile .arrowDown {
	position: relative;
    text-align: center;
    padding: 8px 0;
}
#accountModal #pills-profile .arrowDown:before {
	border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 8px;
    left: 0;
    position: relative;
    top: 0;
    transform: rotate(135deg);
    width: 8px;
}
#accountModal #pills-profile .btn.disabled {
	background: #EBE8E2;
	color: #CAB6A4 !important;
}
#newNftModal .imgWrap {
	background: url(../img/bg-star.png) no-repeat center center / contain;
	padding: 40px 0;
    margin-bottom: 20px;
}
#newNftModal .imgWrap img {
	width: 200px;
}
#newNftModal .modal-body .btn {
	margin-top: 30px;
}
#publishNftModal .modal-body {
	padding: 15px;
}
#publishNftModal .leftInfo {
	height: 100%;
	padding: 20px;
	border-radius: 16px;
	background: #FAE1E0;
}
#publishNftModal .leftInfo .badge {
	font-size: 14px;
    padding: 10px 14px;
}
#publishNftModal .leftInfo .nftImg {
	height: 270px;
}
#publishNftModal .price input,
#publishNftModal .price input:focus {
	border: none;
    background: none;
    font-weight: 700;
    margin-left: 15px;
	box-shadow: none;
	outline: none;
}
#publishNftModal .label {
	width: 90px;
}
#publishNftModal .customRadio button {
	display: block;
	background: #FFFAD9;
	color: #47131A;
}
#publishNftModal .customRadio:not(:last-child) {
	margin-right: 15px;
}
#publishNftModal .customRadio input:checked + .btn {
	background: #FFE000;
}
#upgradeMiningModal .nav-link {
    padding: 10px 5px;
} 
#upgradeMiningModal .speedPack .item {
	padding: 15px;
}
#upgradeMiningModal .speedPack .item .value {
	font-size: 35px;
	font-weight: 700;
}
#stakeModal .balance,
#unstakeModal .balance {
	padding: 15px;
}
#stakeModal .balance .max,
#unstakeModal .balance .max {
	color: #F6B200;
	cursor: pointer;
	border: 1px solid #F6B200;
	padding: 3px 10px;
	border-radius: 30px;
}
#stakeModal .balance input,
#stakeModal .balance input:focus,
#unstakeModal .balance input,
#unstakeModal .balance input:focus {
	background: none;
	border: none;
	box-shadow: none;
	outline: none;
	font-size: 24px;
	font-weight: 700;
	color: #CAB6A4;
}
#stakeModal .balance .coin {
	font-weight: 700;
	font-size: 22px;
}
#stakeModal .plus {
	text-align: center;
	font-weight: 700;
	font-size: 36px;
}
#stakeModal #pills-stake-lp .item {
	padding: 10px;
}
#stakeModal #pills-stake-lp .item + .item {
	margin-left: 15px;
}
#stakeModal .customRadio .checkmark {
	border: 2px solid #CAB6A4;
    background: none;
	transform: none;
    top: 0;
}
#stakeModal .customRadio .checkmark:after,
#stakeModal .customRadio input:checked ~ .checkmark {
	border-color: #0FD545;
}
#unstakeModal .coin img:first-child {
    background: #FF6F0E;
    border-radius: 50%;
}
#unstakeModal .coin img + img {
    margin-left: -10px;
}
#nftInfoModal .value {
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
}
/*========================== BOOTSTRAP OVERRIDE ==========================*/
hr {
	background-color: #dbd4c1;
}
.form-control,
.form-control:focus {
	border: none;
	color: #CAB6A4;
	background: #EBE8E2;
	border-radius: 12px;
	padding: 12px 15px;
	box-shadow: none;
}
/* Breadcrumb */
.breadcrumb {
	color: #98795C;
	font-size: 16px;
}
.breadcrumb a {
	color: #47131A;
}
.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
}
/* Dropdown */
.dropdown .dropdown-menu {
	background: #fff;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 25%);
	border-radius: 12px;
	font-size: 14px;
	padding: 10px;
}
.dropdown .dropdown-menu li a {
	padding: 8px 15px;
	border-radius: 8px;
}
.dropdown .dropdown-menu li a:hover {
	color: #000;
	background: #FFF5B0;
}
.dropdown .dropdown-menu li a.selected {
	background: #FFE000;    
	font-weight: 700;
}
/* Table */
.table td, .table th {
	vertical-align: middle;
}
.table thead {
	color: #98795C;
}
/* Nav */
.nav-pills.style-1 {
	background: #EBE8E2;
	border-radius: 12px;
	padding: 5px;
}
.nav-pills.style-1 .nav-link {	
	color: #47131A;
	border-radius: 8px;
	font-weight: 700;
}
.nav-pills.style-1 .nav-link.active,
.nav-pills.style-1 .show>.nav-link {
	background: #FFE000;
	color: #47131A;
}
.nav-pills.style-2 {
	margin: 0 -10px;
}
.nav-pills.style-2 .nav-item {
	margin: 0 10px;
}
.nav-pills.style-2 .nav-link {
	background: #fff;
	border: 1px solid #EBE8E2;
	border-radius: 12px;
	color: #47131A;
	text-align: center;
}
.nav-pills.style-2 .nav-link.active {
	background: #FDF1CC;
	border-color: #FDF1CC;
}
.nav-pills.style-2 .nav-link .text {
	display: block;
}
.nav-tabs .nav-link,
.nav-tabs .nav-link.active {
	background: none;
}
.nav-tabs .nav-link {
	border: none;
	padding: 0 0 8px;
	color: #47131A;
}
.nav-tabs .nav-link + .nav-link {
	margin-left: 40px;
}
.nav-tabs .nav-link.active {
	border-bottom: 1px solid #98795C;
	color: #47131A;
	font-weight: 700;
}
/* Progress */
.progress {
	height: 8px;
	background: #EBE8E2;
	border-radius: 12px;
}
.progress-bar {
	border-radius: 12px;
	background: linear-gradient(241.62deg, #FFD702 23%, #FFAA00 64.93%);
}
.progress.style-1 {
	height: 12px;
}
.progress.style-1 .progress-bar {
	background: #0FD545;
}
/* Modal */
.modal .modal-content {
	background: #FFFFFF;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
	border-radius: 12px;
}
.modal .modal-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	text-align: center;
}
.modal .modal-header {
	border-bottom: none;
	padding: 30px;
}
.modal .modal-body {
	padding: 15px 30px 30px;
}
/* Paginate */
.pagination {
	margin-top: 50px;
}
.pagination .next img {
	transform: scaleX(-1);
}
.pagination .page-item .page-link {
	border-radius: 30px;
	border: none;
	color: #47131A;
	font-size: 16px;
	line-height: 1;
	padding: 6px 10px;
}
.pagination .page-item.active .page-link,
.pagination .page-item.active:hover .page-link {
	background: #47131A;
	color: #fff;
}
.pagination .page-item:hover .page-link,
.pagination .page-link:focus {
	background: none;
	box-shadow: none;
}
/* Accordion */
.accordion.style-1 .accordion-item {
	background: none;
	border-color: #EBE8E2;
	padding: 25px 0;
}
.accordion.style-1 .accordion-item:last-child {
	border-bottom: 1px solid #EBE8E2;
}
.accordion.style-1 .accordion-button {
	padding: 0;
	font-weight: 700;
	font-size: 18px;
	background: none;
	border: none;
	box-shadow: none;
	display: flex;
}
.accordion.style-1 .accordion-button:not(.collapsed) {
	color: #2D1B0E;
}
.accordion.style-1 .accordion-button::after {
	display: none;
}
.accordion.style-1 .accordion-button .text {
	display: block;
	width: 100%;
}
.accordion.style-1 .accordion-button .symbol {
	position: relative;
	width: 18px;
	height: 18px;
	margin-left: 10px;
	flex-shrink: 1;
}
.accordion.style-1 .accordion-button .symbol:before,
.accordion.style-1 .accordion-button .symbol:after {
	content: "";
	background: #47131A;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	border-radius: 5px;
}
.accordion.style-1 .accordion-button .symbol:before {
	width: 100%;
	height: 3px;
}
.accordion.style-1 .accordion-button .symbol:after {
	height: 100%;
	width: 3px;
}
.accordion.style-1 .accordion-button:not(.collapsed) .symbol:after {
	opacity: 0;
}
/*========================== RESPONSIVE ==========================*/
@media (max-width: 1440px) {
	
}
@media (max-width: 1366px) {
	
}
@media (max-width: 1180px) {
	/* Homepage */
	#homepage .banner .carousel-indicators {
		width: 170px;
	}
	#homepage .banner .carousel-indicators .item img {
		border-radius: 10px;
	}
	#homepage .banner .carousel-indicators .item:not(:first-child) {
		margin-top: 10px;
	}
	/* About page */
	#aboutPage section.banner {
		padding-right: 300px;
	}
}
@media (max-width: 1024px) {
	/* gamebase element */
	.gamebaseElement .thumbWrap .title,
	.gamebaseElement .thumbWrap .price {
		margin-bottom: 10px;
	}
	/* Homepage */
	#homepage .banner .carousel-indicators {
		width: 140px;
	}	
	/* About page */
	#aboutPage section.banner {
		padding-right: 260px;
	}
	#aboutPage .banner .btn {
		padding: 6px 20px;
	}
}
@media (max-width: 992px) {
	header {
		border-bottom: none;
		z-index: 3;
		box-shadow: 1px 0px 0px #fff;
	}
	header .logo {
		width: 180px;
	}
	header .logo span {
		display: none;
	}
	header .connectWallet {
		white-space: nowrap;
		font-size: 12px;
		margin-right: 5px;
	}
	header .connected .totalNft {
		margin: 0 10px;
	}
	header .connectWallet .btn,
	header .connected .btn {
		font-size: 13px;
		padding: 5px 10px;
	}
	header .language {
		width: 30px;
	}
	aside {
		left: -250px;
		padding: 10px;
		overflow: auto;
		z-index: 2;
		box-shadow: 1px 0px 0px #fff;
		top: 52px;
	}
	#mainContent {
		padding: 0;
		border-left: none;
		margin-left: 0;
	}
	/* home page */
	#homepage .banner {
		padding: 0;
		background: none;
	}
	#homepage .banner .carousel-indicators {
		width: 100%;
		padding-left: 0;
		display: flex;
	}
	#homepage .banner .carousel-indicators .item,
	#homepage .banner .carousel-indicators .item:not(:first-child) {
		margin: 0;
		padding: 10px 5px 0 5px;
	}	
	#homepage .banner .carousel-indicators .item:before {
		display: none;
	}
	/* about page */
	#aboutPage {
		margin: 0;
	}
	/* mining page */
	#nftMiningPage .totalMining {
		padding: 15px 60px;
	}
	/* bounty page */
	#bountyPage .intro .imgBabbu {
		right: 20px;
	}
	/* community page */
	#communityPage .listSocial .item {
		padding: 15px;
		margin-bottom: 15px;
	}
}
@media (max-width: 768px) {
	header .connectWallet,
	header .connected {
		margin-right: 5px;
	}
	header .logo {
		width: 205px;
	}
	#homepage .overview {
		max-width: 470px;
	}
}
@media (max-width: 576px) {
	body {
		font-size: 13px;
	}
	h1,.h1 {font-size: 32px;}
	h2,.h2 {font-size: 26px;}
	h3,.h3 {font-size: 21px;}
	h4,.h4 {font-size: 18px;}
	h5,.h5 {font-size: 16px;}
	h6,.h6 {font-size: 14px;}
	header .logo {
		width: auto;
	}
	header .logo img {
		width: 100px;
	}
	header .menuToggle img {
		width: 20px;
	}
	section {
		padding: 15px 0;
	}
	section[class*="bg-"] {
		padding: 15px;
		margin-bottom: 10px;
	}
	section .sectionHeading {
		font-size: 24px !important;
	}
	section .sectionSubHeading {
		font-size: 14px !important;
	}
	section[class*="bg-"] .sectionHeading {
		margin-bottom: 10px;
	}
	.row.sm {
		margin: 0 -5px
	}
	.row.sm > div {
		padding: 0 5px;
	}
	#mainmenu li.parentMenu .subMenu {
		margin: 0 -10px;
	}
	.contentOverlay .inner {
		padding: 15px;
	}
	/* list nft */
	.listNft {
		margin: -5px 0;
	}
	.listNft .item {
		margin: 5px 0;
	}
	.listNft .item .top {
		padding: 8px;
	}
	.listNft .item .top .percent {
	    font-size: 12px;
	}
	.listNft .item .title {
		font-size: 12px;
	}
	.listNft .item .bottom {
		padding: 8px;
	}
	/* blindbox element */
	.blindboxElement .item {
		padding: 15px;
	}
	#gamebasePage .blindboxElement .item .icon,
	.blindboxElement .item .icon {
		right: 15px;
		height: 110px;
	}
	.blindboxElement .item .title {
		font-size: 20px;
	}
	.blindboxElement .item .time {
		font-size: 15px;
	}
	/* gamebase element */
	.gamebaseElement .item {
		margin-bottom: 10px;
		height: auto;
	}	
	.gamebaseElement .thumbWrap .title {
		font-size: 13px;
	}
	.gamebaseElement .thumbWrap .price {
		font-size: 26px;
	}
	.gamebaseElement .thumbWrap .price img {
		width: 35px;
	}
	.gamebaseElement .thumbWrap .time .badge {
		padding: 10px 15px;
	}
	.gamebaseElement .bottom {
		padding: 10px 15px;
	}	
	/* earn passive */
	.earnPassiveElement .title,
	.earnPassiveElement .apr {
		font-size: 26px;
		margin-bottom: 10px;
	}
	.earnPassiveElement .item {
		margin-bottom: 10px;
		height: auto;
	}
	/* stats element */
	.statsElement .item:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid #FAD551;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	/* hidden box element */
	.hiddenBox .item {
		padding: 20px 5px;
	}
	/* pool element */
	.poolElement .top .value {
		font-size: 34px;
	}
	/* list task element */
	.listTaskElement .item {
		margin-bottom: 10px;
		padding: 10px;
	}
	/* accordion */
	.accordion.style-1 .accordion-item {
		padding: 15px 0;
	}
	.accordion.style-1 .accordion-button {
		font-size: 14px;
	}
	.accordion.style-1 .accordion-button .symbol {
		width: 14px;
		height: 14px;
	}
	.accordion.style-1 .accordion-button .symbol:after {
		width: 2px;
	}
	.accordion.style-1 .accordion-button .symbol:before {
		height: 2px;
	}
	.accordion.style-1 .accordion-body {
		padding: 15px 0 0;
	}
	/* modal */
	.modal .modal-header,
	.modal .modal-body {
		padding: 15px;
	}
	#publishNftModal .label {
		width: 100%;
		margin-bottom: 5px;
	}
	#publishNftModal .price .btn,
	#publishNftModal .time .btn {
		font-size: 14px;
	}
	/* nav */
	.nav-pills .nav-link {
		padding: 8px;
	}
	.nav-pills.style-1.scroll {
		display: block !important;
		white-space: nowrap;
		overflow: auto;
	}
	.nav-pills.style-1.scroll .nav-item {
		display: inline-block;
	}
	/* pagination */
	.pagination {
		margin-top: 30px;
	}
	/* breadcrumb */
	.breadcrumb {
		font-size: 14px;
	}
	/* homepage */	
	#homepage .blindboxElement .item {
		margin-bottom: 10px;
		height: auto;
	}
	/* About page */
	#aboutPage section {
		padding: 15px !important;
	}
	#aboutPage section.banner {
		background-image: none;
	}
	#aboutPage .banner .textGroup-1 {
		font-size: 20px;
		margin: 0;
	}
	#aboutPage .banner .textGroup-2 {
		font-size: 35px;
	}
	#aboutPage .banner .textGroup-2 .text-5 {
		font-size: 50px;
	}
	#aboutPage .banner p {
		margin-bottom: 20px;
	}
	#aboutPage .banner .social {
		margin-top: 20px;
	}
	#aboutPage .stats .row > div:not(:last-child) {
		margin-bottom: 15px;
	}
	#aboutPage .metaverse .item,
	#aboutPage .roadmap .sectionHeading,
	#aboutPage .howToBuy .sectionHeading,
	#aboutPage .friends .sectionHeading {
		margin-bottom: 20px;
	}
	#aboutPage .roadmap ul li {
		font-size: 14px;
	}
	#aboutPage .roadmap .left,
	#aboutPage .roadmap .right {
		margin: 0;
	}
	#aboutPage .howToBuy .steps > li {
		padding: 15px;
	}
	#aboutPage .howToBuy .title {
		font-size: 16px;
	}
	#aboutPage .howToBuy .title img {
		margin-right: 5px;
		width: 30px;
	}
	#aboutPage .howToBuy .desc {
		padding-left: 0;
		font-size: 15px;		
	}
	#aboutPage .friends a {
		margin-bottom: 10px;
	}
	#aboutPage section.footer {
		font-size: 14px;
	}
	/* Market Auction page */	
	#marketAuctionPage .navWrap .nav-pills {
		display: flex;
	}
	#marketAuctionPage .navWrap .nav-item {
		flex-grow: 1;
	}
	#marketAuctionPage .navWrap .nav-link {
		width: 100%;
	}
	#marketAuctionPage .nftFilter {
		flex-wrap: wrap;
	}
	#marketAuctionPage .nftFilter .searchElement {
		display: flex;
		flex-grow: 1;
		margin-top: 10px;
		padding-left: 5px;
	}
	#marketAuctionPage .nftFilter .searchElement input {
		flex-grow: 1;
		padding-right: 5px;
	}
	#marketAuctionPage .nftFilter .btnHistory {
		margin-top: 10px;
	}
	/* Nft detail page */
	#nftDetailPage section:not(:last-child),
	#nftDetailPage .overview .leftInfo,
	#nftDetailPage .overview .rightInfo {
		padding: 10px;
		margin-bottom: 10px;
		height: auto;
	}
	#nftDetailPage .overview .leftInfo .nftImg {
		margin-top: 30px;
	}
	#nftDetailPage .overview .rightInfo {
		margin-bottom: 0;
	}
	#nftDetailPage .overview .rightInfo .value {
		font-size: 22px;
	}
	/* Nft mint page */
	#nftMintPage .minting {
		padding: 0;
		background: none;
	}
	#nftMintPage .minting .leftSide {
		padding: 15px;
		background: #F7F7F7;
		border-radius: 16px;
		margin-bottom: 10px;
	}
	#nftMintPage .minting .nftPrize,
	#nftMintPage .minting .leftSide .percent {
		padding: 15px;
	}
	#nftMintPage .minting .nftPrize img {
		width: 220px;
	}
	#nftMintPage .minting .nftPrize .info .item {
		margin-top: 5px;
	}
	#nftMintPage .minting .rightSide,
	#nftMintPage .minting .rightSide .item,
	#nftMintPage .minting .rightSide .successRate {
		margin-bottom: 10px;
	}	
	#nftMintPage .minting .rightSide .item {
		padding: 50px 5px 15px;
	}	
	/* Blind box detail page */
	#blindboxPage #pills-blindbox-camping .overview .item {
		margin-bottom: 10px;
	}
	#blindboxDetailPage .hiddenBoxElement .item {
		margin-bottom: 10px;
		padding: 20px 5px;
	}
	#blindboxPage #pills-blindbox-camping .overview .sectionHeading,
	#blindboxDetailPage .overview .sectionHeading {
		margin: 10px 0;
	}
	/* mining page */
	#nftMiningPage .totalMining {
		padding: 15px;
	}
	/* bounty page */
	#bountyPage .intro {
		font-size: 14px;
	}
	#bountyPage .referrer, 
	#bountyPage .referrer .referLink, 
	#bountyPage .referrer .myRefer {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	#bountyPage .referrer .item {
		height: auto;
		margin-top: 10px;
	}
	#bountyPage .listTask .item {
		margin-bottom: 10px;
	}
	#bountyPage .listTaskElement .item {
		margin-bottom: 10px;
	}
	/* bounty detail page */
	#bountyDetailPage .taskSteps {
		border-left: none;
		border-top: 1px solid #EBE8E2;
		padding-top: 20px;
		margin-top: 10px;
	}
	#bountyDetailPage .btn {
		margin-top: 20px;
	}
	/* community page */
	#communityPage .listSocial .icon {
		margin-right: 15px;
	}
	/* farm page */
	#farmPage .statsElement {
		margin-bottom: 20px;
	}
	#farmPage .pair .item {
		margin-top: 10px;
	}
	#stakeModal .balance input,
	#stakeModal .balance input:focus {
		font-size: 20px;
	}
	#stakeModal .balance .coin {
		font-size: 18px;
	}
	#stakeModal #pills-stake-lp .item {
		padding: 8px;
	}
	#stakeModal #pills-stake-lp .item + .item {
		margin-left: 8px;
	}
}
