@font-face {
	font-family: 'trustfont';
	src: url('../assets/fonts/bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	/* Add other font formats (e.g., woff, woff2, etc.) here */
}

@font-face {
	font-family: 'trustfont';
	src: url('../assets/fonts/light.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	/* Add other font formats (e.g., woff, woff2, etc.) here */
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	list-style: none;
	outline: none;
	box-sizing: border-box;
	text-decoration: none;
}

.dark * {
	transition-property: background, background-color;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

.dark {
	transition-property: color, background, background-color;
	transition-duration: 0.35s;
	transition-timing-function: ease-out;
}

body * {
	transition-property: background, background-color;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}

body {
	transition-property: color, background, background-color;
	transition-duration: 0.35s;
	transition-timing-function: ease-out;
}

.blackbgbutton,
.blackbgbutton:hover {
	text-decoration: none;
	cursor: pointer;
}

/* (bfill)---------------------------------------------------------------------- */
.bfill {
	text-decoration: none;
	border-radius: 30px;
	font-size: 15px;
	background-color: #0500FF;
	color: #fff;
	position: relative;
	display: block;
	padding: 6px 24px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition: 0.08s ease-in;
	-o-transition: 0.08s ease-in;
	-ms-transition: 0.08s ease-in;
	-moz-transition: 0.08s ease-in;
	-webkit-transition: 0.08s ease-in;
}

.dark .bfill {
	background-color: #48FF91;
	color: #000;
}

.bfill:hover {
	color: #000;
}

.dark .bfill:hover {
	color: #fff;
}

.bfill:before {
	content: "";
	position: absolute;
	background-color: #48FF91;
	display: block;
	bottom: 0;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	z-index: -1;
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	-webkit-transition-duration: 0.2s;
	-webkit-transition-property: left;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	transition-duration: 0.2s;
	transition-property: left;
}

.dark .bfill:before {
	background-color: #0500FF;
}

.bfill:hover:before {
	left: 0;
}

/* (wbfill)---------------------------------------------------------------------- */
.wbfillbar {
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	height: 47px;
}

.wbfill {
	text-decoration: none;
	border-radius: 30px;
	font-size: 15px;
	background-color: #fff;
	color: #0500FF;
	position: relative;
	display: block;
	padding: 10px 32px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.6;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition: 0.08s ease-in;
	-o-transition: 0.08s ease-in;
	-ms-transition: 0.08s ease-in;
	-moz-transition: 0.08s ease-in;
	-webkit-transition: 0.08s ease-in;
}

.wbfill:hover {
	color: #000;
}

.wbfill:before {
	content: "";
	position: absolute;
	background-color: #48FF91;
	display: block;
	bottom: 0;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	z-index: -1;
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	-webkit-transition-duration: 0.2s;
	-webkit-transition-property: left;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	transition-duration: 0.2s;
	transition-property: left;
}

.wbfill:hover:before {
	left: 0;
}

/* (bfill)---------------------------------------------------------------------- */
.bbfillbar {
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	height: auto;
}

.bbfill {
	text-decoration: none;
	border-radius: 30px;
	font-size: 15px;
	background-color: #0500FF;
	color: #fff;
	position: relative;
	display: block;
	padding: 10px 32px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	overflow: hidden;
	z-index: 1;
	cursor: pointer;
	transition: 0.08s ease-in;
	-o-transition: 0.08s ease-in;
	-ms-transition: 0.08s ease-in;
	-moz-transition: 0.08s ease-in;
	-webkit-transition: 0.08s ease-in;
}

.dark .bbfill {
	background-color: #48FF91;
	color: #000;
}

.bbfill:hover {
	color: #000;
}

.dark .bbfill:hover {
	color: #fff;
}

.bbfill:before {
	content: "";
	position: absolute;
	background-color: #48FF91;
	display: block;
	bottom: 0;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	z-index: -1;
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	-webkit-transition-duration: 0.2s;
	-webkit-transition-property: left;
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
	transition-duration: 0.2s;
	transition-property: left;
}

.dark .bbfill:before {
	background-color: #0500FF;
}

.bbfill:hover:before {
	left: 0;
}

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

.blackbgbutton:hover {
	text-decoration: none;
	color: #ffffff;
}

html {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	font-size: 10px;
	display: block;
	position: relative;
}

body {
	margin: 0;
	padding: 0;
	font-weight: 500;
	box-sizing: border-box;
	display: block;
	position: relative;
	font-family: trustfont, sans-serif;
	line-height: 1.3;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-weight: 500;
	text-shadow: 0;
	overflow-x: hidden;
	background-color: #ffffff;
	color: #222;
}

.dark body {
	background-color: #000;
	color: #fff;
}

body * {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.25;
	font-weight: 700;
}

#root {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	min-height: 650px;
}

.ark {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-self: center;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.intro-open .ark {
	opacity: 0.35;
}

button,
a {
	cursor: pointer;
}

.dark .app-container {
	background-color: #222429;
}

.formview .app-container {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.app-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100%;
	background-color: rgb(241, 241, 241);
	filter: blur(20px);
	opacity: 0;
	position: absolute;
	padding: 0;
	border: 0;
	margin: 0;
	transition: 0.6s ease-in;
	z-index: 2;
}

.app-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.app-header {
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 8px 24px;
	position: fixed;
	background-color: rgb(231, 231, 231);
	top: 0;
	left: 0;
	z-index: 199;
}

.dark .app-header {
	background-color: #000;
}

.app-headerbg {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	overflow: hidden;
	padding: 0 9px 0 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 190;
}

.dark .app-headerbg div {
	background: linear-gradient(to bottom, #000 40px, transparent);
}

.app-headerbg div {
	background: linear-gradient(to bottom, rgb(241, 241, 241) 40px, transparent);
	height: 100%;
	width: 100%;
}

.app-header-connect {
	height: 50px;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.app-header-left,
.app-header-right {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-icon svg {
	height: 22px;
	position: relative;
}

.app-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	position: relative;
}

.dark .linee {
	background: rgb(201, 198, 198);
}

.linee {
	width: 20px;
	height: 2px;
	background: rgb(44, 44, 44);
	margin-top: 4px;
	border-radius: 5px;
	transition: all 0.2s;
}

.linee1 {
	width: 15px;
	margin-top: 0;
	transform: translateX(5px);
}

.dark .linee1before {
	background: rgb(201, 198, 198);
}

.linee1before {
	content: "";
	display: block;
	transform: translateX(-5px);
	width: 3px;
	height: 2px;
	background: rgb(44, 44, 44);
	transition: width 0.2s ease 0.1s, transform 0.2s;
}

.dark .linee3after {
	background: rgb(201, 198, 198);
}

.linee3after {
	content: "";
	display: block;
	transform: translateX(17px);
	width: 0px;
	height: 2px;
	background: rgb(44, 44, 44);
	transition: width 0.2s ease 0.1s;
}

.linee3 {
	width: 13px;
}

.menu-animate .menu-icon .linee1 {
	width: 10px;
	transform: translateX(0px);
}

.menu-animate .menu-icon .linee1before {
	width: 0px;
	transform: translateX(0px);
}

.menu-animate .menu-icon .linee3 {
	width: 15px;
}

.menu-animate .menu-icon .linee3after {
	content: "";
	display: block;
	transform: translateX(17px);
	width: 3px;
	height: 2px;
	background: rgb(44, 44, 44);
	transition: width 0.2s ease 0.1s;
}

.dark .menu-animate .menu-icon .linee3after {
	background: rgb(201, 198, 198);
}

.mode-switch {
	background-color: transparent;
	border: none;
	padding: 0;
	color: #1f1c2e;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dark #navlinks {
	background: #3b3e46;
}

.dark #navlinks a {
	color: #ededed;
}

#navlinks a {
	height: 49px;
	text-decoration: none;
	color: #222429;
	border-radius: 8px;
	position: relative;
	padding: 0 2vw 0 2vw;
	margin: 6px 0;
	font-weight: 900;
	font-size: 35px;
	transition: all 0.2s;
}

#navlinks a:hover {
	background-color: #adabc0;
}

.dark #navlinks a:hover {
	background-color: #50476d;
}

.auto-hidden {
	visibility: hidden;
}

.socialicons svg {
	width: 38px;
	height: 38px;
}

.socialicons {
	width: 100%;
	height: 50px;
	display: flex;
	margin: 8px 0 0 0;
	align-items: center;
	justify-content: left;
	text-decoration: none;
	position: relative;
	padding: 0 0 0 2vw;
}

#navlinks .socialicons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0 0 0 0;
	text-decoration: none;
	position: relative;
}

.dark .socialicons svg {
	fill: #fff;
}

.socialicons svg {
	width: 38px;
	height: 38px;
	fill: #222429;
}

#navlinks .lowerlayer {
	padding: 0 0 5vh 0;
	align-items: flex-start;
	overflow-y: scroll;
	height: calc(85vh - 69px);
}

#navlinks {
	position: fixed;
	left: 0;
	bottom: -100%;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 30px 0 0 20px;
	border-radius: 35px 35px 0 0;
	background: #ededed;
	list-style: none;
	-webkit-font-smoothing: antialiased;
	transition: bottom 0.6s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 10%);
	z-index: 9000;
}

.menu-release #navlinks {
	bottom: -15%;
}

.menu-release .xclose.witholdmenu svg {
	transform: rotate(0deg);
}

.witholdmenucont {
	width: 100%;
	height: 38px;
	display: flex;
	justify-content: left;
	align-items: center;
}

@media screen and (max-width: 720px) {
	.app-header-right button {
		margin-left: 4px;
	}

	.app-header-connect button {
		margin-left: 4px;
	}
}

.heart-icon {
	height: 30px;
	width: auto;
	margin: 0 8px;
	fill: #d73b5f;
	stroke: none;
}

.searchnow {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgb(255, 255, 255);
	box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
	z-index: 200;
}

.dark .searchnow {
	background: #333740;
}

.nav-item {
	text-decoration: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition-duration: 0.2s;
	align-items: center;
}

.dark .nav-item.pool svg {
	stroke: none;
	fill: rgb(201, 198, 198);
}

.nav-item.pool svg {
	stroke: none;
	fill: #333;
}

.dark .nav-item svg {
	stroke: rgb(201, 198, 198);
	fill: rgb(201, 198, 198);
}

.nav-item svg {
	stroke: #333;
	fill: #333;
	transition-duration: 0.2s;
	height: 22px;
	width: 22px;
}

svg.moon {
	fill: none;
}

.dark svg.moon {
	fill: rgb(201, 198, 198);
}

.nav-item:hover svg {
	animation: left-edge 0.5s linear 1;
}

img:hover .menu,
svg:hover .menu {
	box-shadow: 0px 10px 5px rgb(100, 187, 241, 0.1);
}

.menu {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 40px;
	height: 40px;
	bottom: 30px;
	right: 24px;
	border-radius: 12px;
	background: rgb(255, 255, 255);
	box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
	z-index: 200;
}

.dark .menu {
	background: #333740;
}

.formyinfo div.formyinfotitle {
	font-weight: 800;
}

.formyinfo div {
	font-weight: 700;
}

.dark .formyview .formyinfo {
	color: #fff;
}

.formyview .formyinfo {
	padding: 0 15px;
	font-size: 13px;
	color: #21242b;
	font-weight: 700;
}

.formyinfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 1px 0;
	width: 100%;
	height: 18px;
}

.nextformydata {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	position: relative;
	color: #333740;
	font-size: 13px;
	font-weight: 500;
	width: 100%;
	margin: 5px 0 0 0;
	height: 232px;
	border-radius: 22.5px;
	padding: 0;
}

.dark .nextformydata {
	color: #fff;
}

.furtherformydata {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	position: relative;
	color: #333740;
	overflow: visible;
	font-size: 13px;
	font-weight: 500;
	width: 100%;
	margin: 5px 0 0 0;
	height: 211px;
	border-radius: 22.5px;
	padding: 0;
}

.dark .furtherformydata {
	color: #fff;
}

.padlock {
	height: 21.7px;
	width: 17.85px;
	margin: 0 8px 0 0;
}

.formy-form__button span {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 9;
}

.formy-form__button {
	width: 100%;
	height: 45px;
	background: rgb(5 0 255/1);
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
}

.dark .formy-form__button {
	background: #48FF91;
	color: #000;
}

#formyapproveone.formy-form__button {
	width: 70%;
	margin: 0 auto;
}

.fview .formyboard {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.pview .trackboard {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.qrview .qrboard {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.retrieveview .retrieveboard {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.connectwalletbutton {
	font-size: 13px;
}

.connectwalletbutton {
	display: flex;
	height: 40px;
	width: 116px;
	margin-left: 10px;
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	background: rgb(241, 241, 241);
	border: 2px solid rgb(5 0 255/1);
	border-radius: 12px;
	padding: 0;
	color: rgb(5 0 255/1);
	box-shadow: 2px 4px 4px rgb(0 0 0 / 10%);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dark .connectwalletbutton {
	background: #222429;
	border: 2px solid #48FF91;
	color: #48FF91;
}

.connectwalletbutton {
	z-index: 205;
}

.connectwalletbutton:active {
	transform: scale(0.95);
	box-shadow: 0 1px 4px -1px rgba(10, 22, 50, .24);
}

.connectwalletbutton ul {
	width: 55px;
	margin: 0 auto;
	list-style: none;
	text-align: center;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	font-size: 12px;
	font-weight: 600;
	line-height: 28px;
}

.connectwalletbutton ul li:not(:first-child) {
	top: 16px;
	left: 0;
	right: 0;
	position: absolute;
}

.walletinactive .preshowwallet {
	opacity: 1;
	z-index: 20;
}

.walletactive .showwallet {
	opacity: 1;
	z-index: 20;
}

.showwallet svg {
	width: 25px;
	height: 25px;
	margin-right: 5px;
}

.preshowwallet,
.showwallet {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(255, 255, 255);
	padding: 0;
	position: absolute;
	overflow: hidden;
	width: 112px;
	height: 36px;
	border-radius: 12px;
	vertical-align: middle;
	transition: 0.6s ease-in;
	z-index: 2;
}

.dark .preshowwallet,
.dark .showwallet {
	background: #1b1b1b;
}

.walletavatar {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	margin: 0 6px 0 9px;
	border-radius: 50%;
}

.thewalletaddress {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 11px;
	height: 25px;
}

.connectwalletbutton .walleticonbg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 40px;
	background: none;
}

.connectwalletbutton .walleticonbg .walleticon {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: #fff;
	z-index: 1;
	stroke-width: 1.5px;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}




.connectwallet {
	display: flex;
	height: 40px;
	width: 116px;
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	background: none;
	border-radius: 12px;
	padding: 0;
	color: #fff;
	box-shadow: 2px 4px 4px rgb(0 0 0 / 10%);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.connectwallet {
	z-index: 205;
}

.connectwallet:active {
	transform: scale(0.95);
	box-shadow: 0 1px 4px -1px rgba(10, 22, 50, .24);
}

.connectwallet ul {
	width: 55px;
	margin: 0 auto;
	list-style: none;
	text-align: center;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	font-size: 12px;
	font-weight: 600;
	line-height: 28px;
}

.connectwallet ul li:not(:first-child) {
	top: 16px;
	left: 0;
	right: 0;
	position: absolute;
}

.connectwallet .walleticonbg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 40px;
	background: rgb(5 0 255/1);
}

.dark .connectwallet .walleticonbg {
	background: #48FF91;
}

.connectwallet .walleticonbg .walleticon {
	display: block;
	position: relative;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: #fff;
	z-index: 1;
	stroke-width: 1.5px;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.buttonloading.formy-form__button .formy-form__buttonbefore {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: -100%;
	width: 300%;
	height: 100%;
	background: rgb(5 0 255/1) repeating-linear-gradient(60deg,
			transparent,
			transparent 10px,
			rgb(42, 39, 250) 10px,
			rgb(42, 39, 250) 20px);

	animation: buttonloading 1s infinite linear;
}

.dark .buttonloading.formy-form__button .formy-form__buttonbefore {
	background: #48FF91 repeating-linear-gradient(60deg,
			transparent,
			transparent 10px,
			#48FF91 10px,
			#48FF91 20px);
}

.buttonloading.formy-form__button {
	overflow: hidden;
	transform: translateZ(0);
}

.formyboard {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 350px;
	filter: blur(20px);
	opacity: 0;
	position: absolute;
	vertical-align: middle;
	padding: 20px 15px;
	border-radius: 28px;
	background: rgb(255, 255, 255);
	border: 1px solid rgb(219 220 229/1);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	transition: 0.6s ease-in;
	z-index: 2;
}

.dark .formyboard {
	border: 1px solid rgb(75 75 75/1);
	background-color: rgb(18, 18, 18);
}

.qrboard {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 370px;
	filter: blur(20px);
	opacity: 0;
	position: absolute;
	vertical-align: middle;
	transition: 0.6s ease-in;
	z-index: 2;
}

.trackboard {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 370px;
	filter: blur(20px);
	opacity: 0;
	position: absolute;
	vertical-align: middle;
	padding: 30px 15px 5px 15px;
	border-radius: 28px;
	background: rgb(255, 254, 254);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	transition: 0.6s ease-in;
	z-index: 2;
}

.formypool-item {
	display: flex;
	list-style: none;
	padding: 0 8px;
	margin: 20px auto 0 auto;
	height: 388px;
	width: 350px;
	align-items: center;
	justify-content: center;
}

.formone .formone {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.nextform .nextform {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.formtwo .formtwo {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.formthree .formthree {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.formyapprove .formyview {
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

.formytoken-title-icon img {
	height: 20px;
	width: 20px;
	border-radius: 50%;
}

.formytokenicon-background {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 22px;
	width: 22px;
	background-color: #d8d8d8;
	border-radius: 50%;
}

.formytoken-title {
	margin: 0 5px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	text-overflow: ellipsis;
	padding: 5px 0;
	font-family: monospace;
	overflow: hidden;
	white-space: nowrap;
}

.formytoken-title:hover {
	color: #000;
}

.formytoken-title-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.formy-tokenbox img {
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.formy-tokenbox img,
.formy-tokenbox span {
	pointer-events: none;
}

.formy-tokenbox:hover,
.formy-tokenbox:focus {
	color: #ffffff;
}

.dark .formy-tokenbox {
	border: 0.1rem solid #494d59;
	background-color: #333740;
	color: #b1b8ca;
}

.formy-tokenbox {
	width: 100%;
	border-radius: 1.4rem;
	color: #000;
	font-size: 15px;
	text-transform: uppercase;
	border: 0.15rem solid #dbdde0;
	background: transparent;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	align-items: center;
	padding: 5px 9px;
	margin: 0 0 7px 0;
}

.formy-tokenbox:hover {
	color: #000;
}

.dark .formy-tokenbox:hover {
	color: #fff;
}

.formy-tokenbox:focus {
	border: 0.1rem solid #2c62f6;
	box-shadow: 0 0 0 0.2rem rgba(44, 98, 246, 0.4);
}

.formy-form__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 302px;
	width: 92%;
}

.formy-form__inner.farm__inner {
	height: 259px;
}

.totalvalueformyd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-bottom: 8px;
	width: 100%;
	height: 18px;
}

.switch-toggle__label {
	position: relative;
	cursor: pointer;
}

.switch-toggle__input {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}

.switch-toggle__input:focus+.switch-toggle__design {
	box-shadow: 0 0 0 0.1rem hsl(200, 79%, 16%), 0 0 0 0.2rem hsl(200, 79%, 46%);
}

.switch-toggle {
	margin: 0;
}

.swapsetting__input div {
	line-height: 1.5;
	font-size: 13px;
	height: 20px;
}

.dark .swapsetting__input input {
	color: #fff;
}

.swapsetting__input input {
	text-align: center;
	height: 20px;
	width: 18px;
	border: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	color: #000;
	background: transparent;
}

.txdl .swapsetting__input {
	padding: 3px 9px 3px 9px;
}

.dark .swapsetting__input {
	color: #fff;
	background: hsl(0, 0%, 20%);
}

.swapsetting__input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 60px;
	height: 3rem;
	overflow: hidden;
	padding: 3px 15px;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	border-radius: 100rem;
	background: #e0dfe6;
	position: relative;
	transition: 0.2s, box-shadow 0s;
}

.switch-toggle__design {
	display: inline-block;
	width: 6rem;
	height: 3rem;
	border-radius: 100rem;
	background: #d0cedc;
	position: relative;
	transition: 0.2s, box-shadow 0s;
}

.dark .switch-toggle__design {
	background: hsl(0, 0%, 20%);
}

.switch-toggle__design .switch-toggle__designball {
	position: absolute;
	left: .6rem;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 100rem;
	background: hsl(0, 0%, 65%);
	transition: inherit;
}

.switch-toggle .switch-toggle__design {
	transition: 0.3s, box-shadow 0s;
}

.switch-toggle__input:checked+.switch-toggle__design {
	border-color: transparent;
	background: hsl(200, 79%, 16%);
}

.switch-toggle__input:checked+.switch-toggle__design .switch-toggle__designball {
	left: calc(100% - (22px + .6rem));
	background: hsl(200, 79%, 46%);
}

.switch-toggle .switch-toggle__input:checked+.switch-toggle__design .switch-toggle__designball {
	left: calc(100% - .6rem);
	transform: translate(-100%, -50%);
}

.switch-toggle:active .switch-toggle__designball {
	width: calc(22px + .4rem);
}

.dot {
	animation: dot-anim 8s linear infinite;
}

/* Animations */

@keyframes dot-anim {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes left-edge {
	0% {
		transform: rotate(0deg);
	}

	35% {
		transform: rotate(-25deg);
	}

	75% {
		transform: rotate(25deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes buttonloading {
	0% {
		transform: translateX(25px);
	}

	100% {
		transform: translateX(-20px);
	}
}

#poolgrid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: fixed;
	overflow-y: scroll;
	filter: blur(0);
	opacity: 1;
	z-index: 20;
}

#allpoolgrid {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	padding: 0;
	border: 0;
	margin: 0;
	transition: 0.6s ease-in;
	z-index: 2;
}

.poolmini {
	display: flex;
	position: fixed;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	list-style: none;
	width: 100%;
	top: 66px;
	z-index: 90;
}

.poolminibg {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 120px;
	overflow: hidden;
	padding: 0 9px 0 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 88;
}

.dark .poolminibg div {
	background: linear-gradient(to bottom, #222429 90px, transparent);
}

.poolminibg div {
	background: linear-gradient(to bottom, rgb(241, 241, 241) 90px, transparent);
	height: 100%;
	width: 100%;
}

.formysearch-box {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: calc(100% - 10px);
	height: 40px;
	margin: 5px 5px 0 5px;
	padding: 0 5px 0 16px;
	border-radius: 12px;
	color: #000;
	background: rgb(255, 255, 255);
	border: 0.1rem solid #b7b7b7;
	box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dark .formysearch-box {
	color: #fff;
	background: #333740;
	border: 0.1rem solid #494d59;
}

.formysearch {
	width: 100%;
	transition: 0.3s;
	border: 0;
	font-weight: 500;
	color: #000;
	background: none;
	font-size: 15px;
}

.dark .formysearch {
	width: 100%;
	transition: 0.3s;
	border: 0;
	color: #fff;
	background: none;
	font-size: 15px;
}

.press {
	cursor: pointer;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dark .poolback svg {
	fill: #fff;
	stroke: #fff;
}

.poolback svg {
	height: 13px;
	fill: #333;
	stroke: #333;
	stroke-width: 30;
}

.press:active {
	transform: scale(0.96);
}

button {
	border: none;
	cursor: pointer;
	background-color: transparent;
	outline: none;
}

.network-title-icon {
	display: inline-flex;
}

.network-title-icon svg {
	height: 25px;
	width: 25px;
}

.networkbackground {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25px;
	width: 25px;
}

.networkbackground img {
	height: 22px;
	width: 22px;
}

.main-network:hover,
.main-network:focus {
	color: #ffffff;
}

.main-network {
	height: 40px;
	width: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #494d59;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-network svg {
	height: 24px;
	width: 24px;
	fill: #000000;
}

.dark .main-network svg {
	fill: #ffffff;
}

.main-network:hover {
	border: 0.1rem solid #2c62f6;
	box-shadow: 0 0 0 0.2rem rgb(92, 120, 197);
}

.dark .main-network:hover {
	border: 0.1rem solid #48FF91;
	box-shadow: 0 0 0 0.2rem #229450;
}

.gList_item-name {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 220px;
}

.gList_items-about {
	display: flex;
	justify-content: center;
	align-items: center;
	text-overflow: ellipsis;
	font-weight: 600;
	overflow: hidden;
	white-space: nowrap;
}

.gList_items-about svg {
	height: 25px;
	width: 25px;
}

.dark .onnotice .rednot {
	border: 2px solid #333740;
}

.onnotice .rednot {
	width: 10px;
	height: 10px;
	top: 19px;
	right: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	position: absolute;
	z-index: 90;
	opacity: 1;
	background-color: #e13c42;
}

.gList_itembg {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25px;
	width: 25px;
}

.gList_itembg img {
	height: 25px;
	width: 25px;
}

.gList_item .gList_itembg {
	margin-right: 10px;
}

.gList_items-button {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 0 12px;
}

.gList_items-button svg {
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	fill: #b1b8ca;
}

.gList_items-button svg,
.gList_items-button span {
	pointer-events: none;
}

.gList_items-button:hover,
.gList_items-button:focus {
	color: #ffffff;
}

.gList_items-button:hover svg,
.gList_items-button:focus svg {
	fill: #ffffff;
}

.gList_item {
	height: 4.6rem;
	transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow: hidden;
	cursor: pointer;
}

.gList_items-list-wrapper {
	padding: 0 1rem 1rem 1rem;
	position: relative;
}

.dark ul.gList_items-list::-webkit-scrollbar-thumb {
	background: rgba(218, 219, 224, 0.5);
}

ul.gList_items-list::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: rgba(90, 96, 124, 0.5);
	cursor: pointer;
}

ul.gList_items-list::-webkit-scrollbar {
	width: 8px;
	height: 90%;
	background: transparent;
}

.listholder {
	width: 100%;
	height: 321px;
	overflow-y: hidden;
	position: relative;
	list-style-type: none;
}

ul.gender-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 180px;
	border-radius: 1.4rem;
	padding: 0 5px;
	overflow: hidden;
	position: relative;
	list-style-type: none;
}

ul.gList_items-list {
	width: 100%;
	height: 321px;
	border-radius: 1.4rem;
	padding: 0 5px;
	overflow-y: scroll;
	position: relative;
	list-style-type: none;
}

li.gList_items-list-item:hover .gList_items-about {
	color: #fff;
}

.gList_items-about {
	color: #2e3035;
}

.dark .gList_items-about {
	color: #d4d4d4;
}

.dark li.gList_items-list-item {
	color: #d4d4d4;
	background-color: #383c47;
}

li.gList_items-list-item {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	position: relative;
	cursor: pointer;
	margin: 3px 0 0 0;
	height: 32px;
	width: 100%;
	color: #2e3035;
	background-color: #e0dfe6;
	border-radius: 1rem;
	z-index: 1;
	opacity: 1;
	transition: all 0.4s linear;
}

li.gList_items-list-item:first-child {
	margin: 8px 0 0 0;
}

li.gList_items-list-item:hover {
	color: #fff;
	background-color: #222429;
}

button {
	border: none;
	cursor: pointer;
	background-color: transparent;
	outline: none;
}

.text-truncate {
	display: flex;
	justify-content: center;
	align-items: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.dropdown-title-icon,
.dropdown-arrow {
	display: inline-flex;
}

.dropdown-arrow svg {
	fill: #333;
	height: 14px;
	width: 14px;
}

.dark .main-button:hover .dropdown-arrow svg,
.dark .main-button:focus .dropdown-arrow svg,
.dark .main-button:active .dropdown-arrow svg {
	fill: #fff;
}

.main-button:hover .dropdown-arrow svg,
.main-button:focus .dropdown-arrow svg,
.main-button:active .dropdown-arrow svg {
	fill: #333;
}

.dropdown-title {
	margin: 0 auto 0 5px;
}

.dropdown-button {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 0 8px;
}

.dropdown-button svg {
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	fill: #696969;
}

.dropdown-button svg,
.dropdown-button span {
	pointer-events: none;
}

.dropdown-button:hover,
.dropdown-button:focus {
	color: #ffffff;
}

.dropdown-button:hover svg,
.dropdown-button:focus svg {
	fill: #ffffff;
}

.main-button.country-code {
	padding: 5px 8px 5px 5px;
	height: 44px;
	width: auto;
	font-weight: 800;
	font-size: 14px;
	font-family: monospace;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f0f0f0;
	color: #21242b;
	border-radius: 12px;
	box-shadow: none;
	border: 1px solid #6363631f;
	margin: 0 5px 7px 0;
	transition: all 0.3s ease-in-out;
}

.inputcontainer {
	height: 51px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.inputcontainer .card-input {
	width: calc(100% - 60px);
}

.main-button {
	height: 44px;
	font-weight: 800;
	font-size: 15px;
	font-family: monospace;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f0f0f0;
	color: #555;
	border-radius: 12px;
	box-shadow: none;
	font-weight: 600;
	border: 2px solid #6363631f;
	padding: 5px 15px;
	width: 100%;
	margin-top: 9px;
	transition: all 0.3s ease-in-out;
}

.main-button:hover,
.main-button:focus,
.main-button:active {
	color: #000;
}

.dark .country-code {
	border: 1px solid #ffffff1f;
	color: #ececec;
	background: #21242b;
}

.dark .main-button {
	border: 2px solid #ffffff1f;
	color: #ececec;
	background: #21242b;
}

.dark .main-button:hover,
.dark .main-button:focus,
.dark .main-button:active {
	color: #fff;
}

.main-button:focus,
.main-button:hover,
.tags:hover,
.formysearch-box:hover {
	border: 0.1rem solid #2c62f6;
	box-shadow: 0 0 0 0.2rem rgba(44, 98, 246, 0.4);
}

.main-button .dropdown-arrow {
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-left: 3px;
}

.sortpool-container {
	padding-top: 0px;
	position: relative;
	margin: 0 9px 0 0;
	width: 90px;
}

.sortpool-container .sortpool-content {
	height: 0;
	width: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	padding: 0 10px;
	background-color: #fff;
	border-radius: 1.4rem;
	border: 0.1rem solid #b7b7b7;
	transform: translateY(-10px);
	transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}

.dark .sortpool-container .sortpool-content {
	background-color: #333740;
	border: 0.1rem solid #494d59;
}

.sortlist-item {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 35px;
	width: 72px;
	flex-direction: column;
	position: relative;
	z-index: 1;
	color: #333;
	font-weight: 600;
	padding: 0 9px;
	cursor: pointer;
	margin: 10px 0 0 0;
	border-radius: 9px;
	font-size: 12px;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dark .sortlist-item {
	color: #b1b8ca;
}

.sortlist-item.sortlast {
	margin: 0 0 10px 0;
}

.sortlist-item:hover {
	background: #b7b7b7;
	color: #000;
}

.dark .sortlist-item:hover {
	background: #1a1a1a;
	color: #fff;
}

.sortopen .sortpool-container .sortpool-content {
	opacity: 1;
	width: 90px;
	height: 90px;
	position: absolute;
	left: 0;
	top: 50px;
	transform: translateY(0);
	z-index: 999;
	pointer-events: auto;
	visibility: visible;
	overflow: visible;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
}

.inputdirection {
	color: #555555;
	margin: 0 0 12px 0;
	font-size: 14px;
	font-weight: 900;
}

.inputup {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%;
}

.tokenicon-background {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	width: 20px;
	background-color: #d8d8d8;
	border-radius: 50%;
}

.dark .switchicon {
	stroke: #ececec;
}

.switchicon {
	height: 18px;
	width: 18px;
	fill: none;
	stroke-width: 2px;
	stroke: #333;
}

.dark .switchrod {
	background-color: #ececec;
}

.switchrod {
	display: block;
	position: absolute;
	border-radius: 1px;
	width: 2px;
	top: 50%;
	left: 50%;
	height: 13px;
	margin: -7px 0 0 -0.75px;
	background-color: #333;
}

.dark .mbheader {
	color: #fff;
}

.showup.backsettings {
	display: flex;
	opacity: 1;
}

.farm-tokenbox span {
	line-height: 1;
}

.togetright {
	background-image: url(../images/torightdark.svg);
	background-repeat: no-repeat;
	margin: 0 5px;
	background-size: contain;
	width: 13px;
	height: 13px;
}

.dark .pback {
	background-image: url(../images/poolbacklight.svg);
}

.pback {
	background-image: url(../images/poolbackdark.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 7.73px;
	height: 13px;
}

.dark .togetright {
	background-image: url(../images/torightlight.svg);
}

.toright {
	background-image: url(../images/torightdark.svg);
	background-repeat: no-repeat;
	margin: 0 5px;
	background-size: contain;
	width: 16px;
	height: 16px;
}

.dark .toright {
	background-image: url(../images/torightlight.svg);
}

.backsettings.farmback {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 30px;
	width: 70px;
	opacity: 1;
	transition: all 0.2s;
}

.backsettings {
	display: none;
	justify-content: space-between;
	align-items: center;
	height: 30px;
	width: 70px;
	opacity: 0;
	transition: all 0.2s;
}

svg#loadericon {
	opacity: 0;
	width: 140px;
	height: 140px;
	stroke-width: 4;
	color: #000;
}

.dark svg#loadericon {
	color: #fff;
}

.loaderpig {
	stroke-dasharray: 319 319;
	stroke-dashoffset: 0px;
}

.loadercalculator {
	stroke-dasharray: 0 252;
	stroke-dashoffset: 0px;
}

.wallettext {
	font-size: 14px;
	margin: 0 0 5px 0;
	word-wrap: break-word;
	color: #000000;
}

.datetext {
	font-size: 13px;
	font-weight: 500;
	color: #787878;
}

.loaderwallet {
	stroke-dasharray: 0 240;
	stroke-dashoffset: 0px;
}

.showup.mbtitle {
	display: flex;
	opacity: 1;
}

.farmstatus {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	cursor: default;
	border: 2px solid #ababab;
	color: #9c9b9b;
	border-radius: 20px;
	height: 25px;
	width: 60px;
}

.mbtitle {
	display: none;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	cursor: default;
	padding: 0 0.6rem 0 0;
	color: #9c9b9b;
	opacity: 0;
}

.farmheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	font-weight: 600;
	font-size: 14px;
	width: 100%;
	margin: 13.5px 0 0 0;
	padding: 0 5px 6.5px 5px;
	transition: all 0.2s;
}

.mbheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	width: 95%;
	height: auto;
	padding: 0 5px 0 0;
	transition: all 0.2s;
}

.barnheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	width: 100%;
	padding: 10.5px 5px 18.5px 5px;
	transition: all 0.2s;
}

.dark .card-input {
	border: 2px solid #ffffff1f;
	color: #ececec;
	background: #21242b;
}

.qrSerial {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #222;
	box-shadow: none;
	font-size: 11px;
	font-weight: 700;
	height: 16px;
	width: 100%;
	margin: 12px 0 0 0;
	transition: all 0.3s ease-in-out;
}

.dark .qrNature {
	color: #eee;
}

.qrNature {
	display: block;
	text-align: center;
	color: #21242b;
	opacity: 0.8;
	box-shadow: none;
	font-size: 13px;
	padding: 0 40px;
	width: 100%;
	margin: 4px 0;
	transition: all 0.3s ease-in-out;
}

.dark .supertitle {
	color: #eee;
}

.hiddenInput {
	width: 0;
	height: 0;
	text-decoration: none;
	list-style: none;
	border-width: 0;
}

.supertitle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #21242b;
	box-shadow: none;
	font-size: 13px;
	padding: 0 9px;
	width: 100%;
	margin: 4px 0;
	transition: all 0.3s ease-in-out;
}

.dark .innerMessage,
.dark .inputMessage {
	color: #ff4747;
}

.innerMessage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #ff0000;
	box-shadow: none;
	font-size: 11px;
	padding: 0 18px;
	margin: 5px 0;
	width: 100%;
	height: 15.5px;
	transition: all 0.3s ease-in-out;
}

.inputMessage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: #ff0000;
	box-shadow: none;
	font-size: 11px;
	padding: 0 18px;
	width: 100%;
	margin: 2px 0;
	transition: all 0.3s ease-in-out;
}

.recard {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f0f0f0;
	border-radius: 12px;
	box-shadow: none;
	border: 1px solid #6363631f;
	padding: 5px 15px;
	height: 90px;
	width: 100%;
	margin: 10px 0 7px 0;
	transition: all 0.3s ease-in-out;
}

.recard:hover {
	border-color: #2c62f6;
	box-shadow: 0 0 0 0.2rem rgb(44 98 246 / 40%);
}

.ccard {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
}

.card-input {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	background: #f0f0f0;
	color: #21242b;
	border-radius: 12px;
	box-shadow: none;
	border: 2px solid #6363631f;
	border-color: #2c62f6;
	padding: 5px 15px;
	width: 100%;
	margin-top: 9px;
	transition: all 0.3s ease-in-out;
}

.dark .card-input {
	border-color: #62f99f;
}

.btmtabbar {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	position: fixed;
	bottom: 20px;
	margin: 0 auto;
	border-radius: 15px;
	font-size: 14px;
	background: rgb(255, 255, 255);
	border: 1px solid rgb(219 220 229/1);
}

.dark .btmtabbar {
	border: 1px solid rgb(75 75 75/1);
	background-color: rgb(18, 18, 18);
}

.dotdot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #000;
}

.dark .dotdot {
	background-color: #fff;
}

.dotdotmid {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #000;
	margin: 0 4px;
}

.dark .dotdotmid {
	background-color: #fff;
}

.btmtabbar #burgerbutton2 {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0.8;
}

.btmtabbar #burgerbutton2:hover {
	opacity: 1;
}

.generatorboard .trustnavcont {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	padding: 30px 20px 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 73px;
}

.generatorboard .trustnavburger {
	display: block;
}

.generatorboard nav.navitrust {
	padding: 30px 20px 32px 20px;
}

.btmtabbar a {
	padding: 5px 10px;
	color: #000;
	opacity: 0.8;
}

.btmtabbar a:hover {
	opacity: 1;
}

.dark .btmtabbar a {
	color: #fff;
}

.btmtabbar a.activelink {
	color: #0500ff;
	font-weight: 700;
	opacity: 1;
}

.dark .btmtabbar a.activelink {
	color: #0bd15a;
}

.card-input__input {
	width: 100%;
	height: 32px;
	font-size: 12px;
	font-weight: 600;
	color: inherit;
	background: none;
	outline: none;
	border: 0;
	padding: 5px 0;
	font-family: monospace;
}

.card-input:hover,
.dark .tags:hover {
	border-color: #2c62f6;
	box-shadow: 0 0 0 0.2rem rgb(44 98 246 / 40%);
}

.card-input:focus {
	border-color: #2c62f6;
	box-shadow: 0 0 0 0.2rem rgb(44 98 246 / 40%);
}

.dark .card-input:hover {
	border-color: #48FF91;
	box-shadow: 0 0 0 0.2rem #62f99f;
}

.dark .card-input:focus {
	border-color: #48FF91;
	box-shadow: 0 0 0 0.2rem #62f99f;
}

.defi-machines {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

.dark .swap,
.dark .pool,
.dark .reward {
	background-color: transparent;
}

.swap,
.pool,
.reward {
	border-radius: 17px;
	background-color: transparent;
	transition: background 1s;
}

.usefarm .swap-machine {
	height: 100%;
	width: 100%;
}

.pool-machine {
	height: 100%;
	width: 100%;
}

.uppercase {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
}

.titlemax {
	font-weight: 900;
	font-size: 20px;
	margin: 0 0 10px 0;
	line-height: 1;
}

.boldmax {
	font-weight: 900;
	font-size: 23px;
	margin-left: 20px;
}

.rewardspace {
	height: 90px;
	width: 100%;
}

.swap-machine,
.pool-machine,
.defi-reward {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	transition: 0.6s ease-in;
	z-index: 2;
}

.poolmain {
	padding: 0;
	width: 100%;
}

li.swap-machine {
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

li.pool-machine {
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

.logotrust {
	display: none;
}

.dark .withlove {
	color: #fff;
}

.withlove {
	font-weight: 500;
	color: #000;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 10px;
	font-size: 15px;
	height: auto;
	margin: 0 auto
}

@media screen and (min-width: 340px) {

	.withlove {
		flex-direction: row;
	}
}

#poolgrid::-webkit-scrollbar-thumb,
.defi-reward::-webkit-scrollbar-thumb {
	border-radius: 8px;
	cursor: pointer;
	background: rgba(90, 96, 124, 0.5);
}

#navlinks .lowerlayer::-webkit-scrollbar {
	width: 8px;
	background: transparent;
}

#navlinks .lowerlayer::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: rgba(90, 96, 124, 0.5);
	cursor: pointer;
}

#poolgrid::-webkit-scrollbar,
.defi-reward::-webkit-scrollbar {
	width: 8px;
	background: transparent;
}

.dark .formysearch-box span {
	background: #21242b;
}

.formysearch-box span {
	height: 30px;
	width: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ccced7;
	margin: 0 0 0 5px;
	position: relative;
}

.dark .formysearch-box svg {
	stroke: #fff;
}

.formysearch-box svg {
	height: 20px;
	width: 20px;
	position: relative;
	fill: none;
	stroke: #222;
}


.footerall-links div.footersection4 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.footerall-links div.footersectionbase4 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 0;
	margin-top: 10px;
	width: 100%;
}

.footersection4 h4 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 13px;
	text-align: center;
	padding: 0;
	line-height: 1.2;
}

.footersection4 p {
	font-size: 12px;
	font-weight: 400;
	color: #4a545e;
	text-align: center;
	padding: 0;
	margin: 0 0 8px 0;
}

.dark .footersection4 p {
	color: #d0cedc;
}

.footerblackbgbutton {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 58px 0 10px;
	text-decoration: none;
	border-radius: 5px;
	border: 1px solid transparent;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	color: #ffffff;
	background-color: #000000;
	user-select: none;
}

.dark .footerblackbgbutton {
	color: #000000;
	background-color: #ffffff;
}

.footerall-links .footerblackbgbutton div {
	margin: 0;
}

.footerblackbgbuttonsmltxt {
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	margin: 0 0 3px 0;
}

.footerblackbgbuttontxt {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
}

.footerblackbgbutton svg {
	fill: #fff;
	height: 50px;
	width: 50px;
	margin: 0 10px 0 0;
}

.dark .footerblackbgbutton svg {
	fill: #000;
}

.section4 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	background-color: #f9fbfd;
	padding: 48px 0 48px 0;
	width: 100%;
}

.section4 h4 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 18px;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.section4 p {
	font-size: 17px;
	font-weight: 400;
	color: #4a545e;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 16px 0;
}


.gentoplogo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	height: 50px;
	text-decoration: none;
	color: #000;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	user-select: none;
}

.dark .gentoplogo {
	color: #fff;
}

.gentoplogosmltxt {
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	margin: 0 0 3px 0;
}

.gentoplogotxt {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
}

.gentoplogo svg {
	height: 50px;
	width: 50px;
	margin: 0 10px 0 0;
	fill: #000;
}

.dark .gentoplogo svg {
	fill: #fff;
}

.blackbgbutton {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 18px 0 10px;
	text-decoration: none;
	border-radius: 5px;
	border: 1px solid transparent;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	color: #ffffff;
	background-color: #000000;
	user-select: none;
}

.blackbgbuttonsmltxt {
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	margin: 0 0 3px 0;
}

.blackbgbuttontxt {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: left;
}

.blackbgbutton svg {
	height: 50px;
	width: 50px;
	margin: 0 10px 0 0;
}

.mobiledmodehouse {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 30px 0 0;
}

.mobiledmode {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 20px;
	text-decoration: none;
	border-radius: 9999px;
	border: 1px solid #000;
	text-align: center;
	text-transform: capitalize;
	font-weight: 500;
	line-height: 1;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	color: #000;
	background-color: transparent;
	user-select: none;
}

.dark .mobiledmode {
	border: 1px solid #fff;
	color: #fff;
}

@media screen and (min-width: 850px) {

	.logotrust {
		display: block;
	}

}

@media screen and (min-width: 992px) {

	.section4 h4 {
		font-size: 21px;
	}

}

.section33 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 48px 0 80px 0;
	width: 100%;
}

.bar33 {
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: row;
	box-sizing: border-box;
	width: 100%;
}

.bar33.bar33a {
	flex-wrap: wrap;
}

.section33 h3 {
	font-size: 32px;
	color: #000;
	letter-spacing: -.02em;
	font-weight: 700 !important;
	margin-top: 16px !important;
	margin-bottom: 16px;
	width: 100%;
	max-width: 500px;
	text-align: center !important;
}

@media (min-width: 768px) {
	.section33 h3 {
		font-size: 40px;
		max-width: 450px;
		text-align: left !important;
		margin-top: 48px !important;
		margin-bottom: 16px;
	}
}

.section33 p {
	color: #4a545e !important;
	text-align: center !important;
	line-height: 1.6;
	font-weight: 400;
	font-size: 17px;
	width: 100%;
	margin-top: 0;
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.section33 p {
		font-size: 19px;
		text-align: left !important;
	}
}

.bar33 div {
	font-size: 19px;
	font-weight: 400;
	color: #4a545e;
	padding: 0 20px;
	max-width: 500px;
	margin: 0 0 16px 0;
}

@media (min-width: 768px) {
	.bar33 div {
		width: 50%;
	}
}

.section33 img {
	width: 100%;
	max-width: 500px;
	position: relative;
	padding-right: 50px;
	padding-left: 50px;
	margin: 0 auto 70px auto;
}

@media (min-width: 768px) {
	.section33 img {
		width: 50%;
		padding-right: 10px;
		padding-left: 10px;
		max-width: 400px;
		margin: 0;
	}
}

.section3 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 48px 0 80px 0;
	width: 100%;
}

.section3 h3 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 32px;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.section3 p {
	font-size: 19px;
	font-weight: 400;
	color: #4a545e;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 16px 0;
}

.section3grids {
	width: 100%;
	padding: 45px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.section3grid {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 0 16px 0;
}

.section3grid img {
	width: 122px;
	height: auto;
	margin: 30px 0 20px 0;
}

.section3gridtxt {
	display: block;
	width: 330px;
}

.section3gridtxt h5 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
}

.section3gridtxt div {
	font-size: 14px;
	text-align: center;
	color: #4a545e;
}

@media screen and (min-width: 700px) {

	.section3grids {
		justify-content: space-evenly;
	}

	.section3grid {
		width: 320px;
		margin: 0 15px;
	}

	.section3gridtxt h5 {
		font-size: 21px;
	}

}

@media screen and (min-width: 992px) {

	.section3 h3 {
		font-size: 43px;
	}

	.section3 p {
		font-size: 21px;
	}

}

.searchcontainer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 500px;
	position: relative;
	padding: 0;
	margin: 0;
	transition: 0.6s ease-in;
}

.searchloader,
.searchresult {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	filter: blur(20px);
	opacity: 0;
	position: absolute;
	padding: 0;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
	transition: 0.6s ease-in;
	z-index: 1;
}

.searchloading .searchloader,
.searchloaded .searchresult {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	filter: blur(0);
	opacity: 1;
	position: absolute;
	padding: 0;
	border: 0;
	margin: 0;
	transition: 0.6s ease-in;
	z-index: 20;
}

.searchinputcontainer {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0;
	margin: 0;
}

.searchbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	border-radius: 22px;
	background-color: #e0e4ec;
	padding: 15px 15px;
	width: 90%;
	max-width: 500px;
}

.searchbar svg {
	width: 20px;
	height: 20px;
	margin: 0 10px 0 0;
}

.searchbar input {
	background-color: transparent;
	border: none;
	font-size: 16px;
	width: 190px;
}

.searchsection {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 130px 0 48px 0;
	width: 100%;
}

.searchsection h2 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 36px;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.searchsection p {
	font-size: 19px;
	font-weight: 400;
	color: #4a545e;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 16px 0;
}

@media screen and (min-width: 600px) {

	.searchbar input {
		width: 390px;
	}

}

@media screen and (min-width: 992px) {

	.sarchsection h2 {
		font-size: 46px;
	}

	.searchsection p {
		font-size: 21px;
	}

	.searchbar {
		padding: 15px 30px;
	}

	.searchbar input {
		width: 390px;
	}

}

.section2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 68px 0 128px 0;
	width: 100%;
}

.section2.blacklists {
	padding: 150px 0 48px 0;
}

.section2 h2 {
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 28px;
	text-align: center;
	padding: 0 30px;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.section2 p {
	font-size: 15px;
	font-weight: 400;
	color: #4a545e;
	text-align: center;
	padding: 0 20px;
	margin: 0 0 16px 0;
}

.dark .section2 p {
	color: #ffffff;
}

.section2grids {
	width: 100%;
	padding: 32px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.section2grid {
	padding: 0 20px;
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0;
}

.blacklists .section2subgrid {
	padding: 20px;
}

.section2subgrid {
	display: flex;
	width: 100%;
	padding: 14px 22px;
	margin: 0;
	font-size: 13px;
	border: 1px solid #c9c9c9;
}

.dark .section2subgrid {
	border: 1px solid #e6e9ec;
}

@media (min-width:760px) {
	.section2subgrid {
		padding: 24px 32px;
		font-size: 17px;
	}
}

.section2first1subgrid {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

.section2last1subgrid {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.section2first2subgrid {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.section2last2subgrid {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}

.section2gridicon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-right: 16px;
}

.section2gridicon svg {
	width: 21px;
	height: 21px;
}

@media screen and (min-width: 450px) {
	.section2grid {
		width: 90%;
	}
}

@media screen and (min-width: 720px) {
	.section2grid {
		width: 70%;
	}
}

@media screen and (min-width: 992px) {

	.section2 h2 {
		font-size: 38px;
	}

	.section2 p {
		font-size: 16px;
	}

	.section2subgrid {
		padding: 24px 32px;
	}

	.section2last1subgrid {
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}

	.section2first2subgrid {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

}

@media screen and (min-width: 1100px) {

	.section2grid {
		width: 45%;
	}

}

.bluebg {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	box-sizing: border-box;
	color: #242426;
	padding: 130px 20px 48px 20px;
	width: 100%;
	min-height: 100vh;
}

a.logoblock {
	text-decoration: none;
	outline: none;
}

a.logoblock:hover {
	text-decoration: none;
	outline: none;
}

.dark .bluebg {
	color: #fff;
}

.dark .logoblock svg.logoshield1 {
	display: none;
}

.logoblock svg.logoshield1 {
	display: block;
}

.dark .logoblock svg.logoshield2 {
	display: block;
}

.logoblock svg.logoshield2 {
	display: none;
}

@media screen and (min-width: 1100px) {

	.bluebg {
		padding: 130px 40px 48px 40px;
	}

}

.logobase {
	display: flex;
	align-items: center;
	justify-content: left;
	background: none;
	text-decoration: none;
}

.logoblock {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	text-decoration: none;
}

.logoblock svg {
	fill: #0500FF;
}

.dark .logoblock svg {
	fill: #48FF91;
}

.mainlogoshield {
	display: block;
	width: 34.46px;
	height: 38px;
}

.burgerbutton {
	text-decoration: none;
}

.logoblock svg {
	width: auto;
	height: 26px;
}

span.trustburger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMCcgaGVpZ2h0PSczMCcgdmlld0JveD0nMCAwIDMwIDMwJz48cGF0aCBzdHJva2U9JyNmZmYnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcgc3Ryb2tlLW1pdGVybGltaXQ9JzEwJyBzdHJva2Utd2lkdGg9JzInIGQ9J000IDdoMjJNNCAxNWgyMk00IDIzaDIyJy8+PC9zdmc+);
}

.dark .trustnavbar {
	background-color: #1b1b1c;
}

.trustnavbar {
	position: fixed;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #ffffff;
	top: 0;
	left: 0;
	padding: 30px 20px 20px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	transition: padding 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 250;
}

.menu-open .trustnavbar {
	background-color: transparent;
}

.bartrustheader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.trustnavlink {
	display: none;
	align-items: center;
	justify-content: space-between;
	background: none;
}

.trustnavburger {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.trustnavlink-item {
	font-size: 15px;
	color: #242426;
	opacity: 1;
	font-weight: 500;
	padding: 8px 24px;
	text-decoration: none;
}

.dark .trustnavlink-item {
	color: #fff;
}

.trustnavlink-item:hover {
	opacity: 0.6;
}

.trustnavcont {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 43px;
	width: 100%;
	margin: 0;
	background: none;
}

.passportimg {
	width: 95%;
	height: auto;
}

.turnedbodybar .topthemeswitch svg,
.turnedbodybar .themeswitch svg {
	stroke: none;
}

.topthemeswitch {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	cursor: default;
	margin: 0;
	height: 35px;
	width: 35px;
	margin: 0 37px 0 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trustnavbar .topthemeswitch svg,
.trustnavbar .themeswitch svg,
.mobiledmode svg {
	display: none;
	width: 16px;
	height: 16px;
}

.trustnavbar .topthemeswitch svg.moonsvg,
.mobiledmode svg.moonsvg {
	display: block;
	color: #000;
	stroke: none;
}

.mobiledmode svg.moonsvg,
.mobiledmode svg.sunsvg {
	margin-right: 10px;
}

.trustnavbar .topthemeswitch svg.sunsvg,
.mobiledmode svg.sunsvg {
	display: none;
}

.dark .trustnavbar .topthemeswitch svg.moonsvg,
.dark .mobiledmode svg.moonsvg {
	display: none;
}

.dark .trustnavbar .topthemeswitch svg.sunsvg,
.dark .mobiledmode svg.sunsvg {
	display: block;
	color: #fff;
}

.bartrust {
	width: 100%;
	max-width: 1200px;
	padding-top: 64px;
	padding-bottom: 64px;
	margin: 0 auto;
	margin-top: -60px;
	border-radius: 20px;
}

.bartrust1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: #000000;
	background-image: linear-gradient(180deg, #fff9a8 5.98%, #ffaefe 77.73%);
	margin-top: 0;
	z-index: 6;
}

.bartrust1 h2 {
	width: 95%;
	text-align: center;
	font-size: 36px;
}

.bartrust1babytxt {
	text-align: center;
	width: 80%;
	max-width: 800px;
	padding: 5px 0 48px 0;
	font-size: 17px;
	margin: 0;
}

.borderbgbutton:hover {
	background-color: #0500FF;
	color: #ffffff;
	cursor: pointer;
}

.dark .borderbgbutton:hover {
	background-color: #48FF91;
	color: #000;
}

.borderbgbuttonbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 47px;
}

.borderbgbutton {
	padding: 8px 30px;
	text-decoration: none;
	border-radius: 30px;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
	vertical-align: middle;
	cursor: pointer;
	font-size: 16px;
	margin-top: 2px;
	background-color: #ffffff;
	border: 1px solid #0500FF;
	color: #0500FF;
	user-select: none;
}

.dark .borderbgbutton {
	background-color: #242426;
	border: 1px solid #48FF91;
	color: #48FF91;
}

.bartrust1x {
	margin: 0 auto;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-evenly;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	margin-bottom: 80px;
	padding-top: 24px;
	padding-bottom: 24px;
}

.dark .bartrust1x {
	background-color: #242426;
	color: #ffffff;
}

.bartrust1x h3 {
	font-size: 24px;
}

.bartrust1xbabytxt {
	font-size: 15px;
	margin: 12px 0;
}

.bartrust1x img,
.bartrust1x svg {
	width: 85%;
	height: auto;
	margin: 0 0 40px 0;
	background-color: rgb(217 217 217/1);
	border-radius: 20px;
}

.dark .bartrust1x img,
.dark .bartrust1x svg {
	background-color: transparent;
}

.bartrust1xbaby {
	width: 85%;
}

@media (min-width:760px) {
	.bartrust1x {
		border-radius: 30px;
		padding-bottom: 24px;
	}

	.bartrust1x h3 {
		font-size: 28px;
	}

	.bartrust1xbaby {
		width: 40%;
		max-width: 375px;
		margin-right: 20px;
	}

	.bartrust1xbabytxt {
		font-size: 16px;
		margin: 8px 0 12px 0;
	}

	.bartrust1x img,
	.bartrust1x svg {
		width: 40%;
		height: auto;
		margin: 0;
		margin-left: 20px;
		background-color: rgb(217 217 217/1);
		border-radius: 20px;
	}

	.dark .bartrust1x img,
	.dark .bartrust1x svg {
		background-color: transparent;
	}
}

@media (min-width:991px) {

	.bartrust1x {
		padding-bottom: 0;
	}

	.bartrust1x img {
		background-color: transparent;
		border-radius: 0;
	}

	.bartrust1x svg {
		background-color: transparent;
		border-radius: 0;
	}

	.bartrust1xbaby h3 {
		font-size: 30px;
		margin: 12px 0;
	}

	.bartrust1xbaby {
		padding-bottom: 30px;
		margin-right: 60px;
	}

	.bartrust1x svg {
		height: auto;
		margin-left: 30px;
		border-radius: 0;
		background-color: transparent;
	}

	.bartrust1x img {
		height: auto;
		margin-left: 30px;
		border-radius: 0;
		background-color: transparent;
	}
}

@media (min-width:760px) {
	.bartrust1babytxt {
		padding: 5px 32px 48px 32px;
	}
}

@media (min-width:760px) {
	.bartrust1 h2 {
		font-size: 46px;
	}

	.bartrust1babytxt {
		font-size: 16px;
	}
}

@media (min-width:991px) {
	.bartrust1 h2 {
		font-size: 52px;
	}

	.bartrust1babytxt {
		font-size: 18px;
	}
}

.bartrust2 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: #000000;
	background-image: linear-gradient(180deg, #fff465 5.98%, #48ff91 77.73%);
	z-index: 4;
}

.bartrust2 h2 {
	width: 95%;
	text-align: center;
	font-size: 28px;
}

.bartrust2babytxt {
	text-align: center;
	width: 75%;
	max-width: 800px;
	padding: 5px 0 48px 0;
	font-size: 16px;
	margin: 0;
}

.bartrust2x {
	margin: 0 auto;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-evenly;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	padding-top: 24px;
	padding-bottom: 24px;
}

.generateboardNote {
	font-weight: 600;
	text-align: left;
	width: 100%;
	color: #333;
	font-size: 10px;
	padding: 0 8px;
}

.dark .generateboardNote {
	color: #ddd;
}

.generateboardNote span.generateboardNoteTitle {
	font-weight: bold;
	opacity: 0.8;
}

.generateboardNote span {
	opacity: 0.8;
}

.dark .bartrust2x {
	background-color: #242426;
	color: #ffffff;
}

.bartrust2x h3 {
	font-size: 24px;
}

.bartrust2xbabytxt {
	font-size: 15px;
	margin: 12px 0;
}

.bartrust2x img,
.bartrust2x svg {
	width: 200px;
	height: 200px;
	margin: 0 0 20px 0;
}

.bartrust2xbaby {
	width: 85%;
}

@media (min-width:760px) {
	.bartrust2x {
		border-radius: 30px;
		padding-bottom: 24px;
	}

	.bartrust2x h3 {
		font-size: 28px;
	}

	.bartrust2xbaby {
		width: 40%;
		max-width: 375px;
		margin-right: 20px;
	}

	.bartrust2xbabytxt {
		margin: 8px 0 12px 0;
	}

	.bartrust2x img,
	.bartrust2x svg {
		margin: 0;
		margin-left: 20px;
	}
}

@media (min-width:991px) {

	.bartrust2xbaby h3 {
		font-size: 24px;
		margin: 12px 0;
	}

	.bartrust2xbaby {
		padding-bottom: 30px;
		margin-right: 60px;
	}

	.bartrust2x img,
	.bartrust2x svg {
		margin-left: 30px;
	}
}

@media (min-width:760px) {
	.bartrust2babytxt {
		padding: 5px 32px 48px 32px;
		font-size: 16px;
	}

	.bartrust2 h2 {
		font-size: 38px;
	}
}

@media (min-width:991px) {
	.bartrust2 h2 {
		font-size: 52px;
	}

	.bartrust2babytxt {
		font-size: 18px;
	}
}

.bartrust2xx {
	margin: 20px auto 0 auto;
	margin-top: 20px;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	margin-bottom: 20px;
	padding: 24px 20px;
}

.bartrust2xxx {
	margin: 20px auto 0 auto;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	margin-bottom: 20px;
	padding: 24px 20px;
}

.dark .bartrust2xx {
	background-color: #242426;
	color: #ffffff;
}

.dark .bartrust2xxx {
	background-color: #242426;
	color: #ffffff;
}

.bartrust2xx h3 {
	font-size: 22px;
}

.bartrust2xxbabytxt {
	font-size: 15px;
	margin: 12px 0;
}

.bartrust2xx img,
.bartrust2xx svg {
	width: 150px;
	height: 150px;
	margin: 30px 0 12px 0;
}

.bartrust2xxbaby {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 95%;
}

.bartrust2xxx h3 {
	font-size: 22px;
	text-align: left;
	width: 100%;
}

.bartrust2xxxbabytxt {
	font-size: 15px;
	margin: 12px 0;
}

.bartrust2xxx img,
.bartrust2xxx svg {
	display: none;
	width: 150px;
	height: 150px;
}

.bartrust2xxx .bartrust2xxxbaby img,
.bartrust2xxx .bartrust2xxxbaby svg {
	display: block;
	width: 150px;
	height: 150px;
	margin: 30px 0 12px 0;
}

.bartrust2xxxbaby {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 95%;
}

@media (min-width:760px) {
	.bartrust2xxx {
		margin: 20px auto 0 auto;
		border-radius: 30px;
		padding-bottom: 24px;
		width: 88%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap-reverse;
		align-items: center;
		justify-content: space-evenly;
		box-sizing: border-box;
		background-color: #ffffff;
		color: #000;
		padding-top: 24px;
	}

	.bartrust2xxx img,
	.bartrust2xxx svg {
		display: block;
		margin: 0;
		margin-left: 20px;
	}

	.bartrust2xxx .bartrust2xxxbaby img,
	.bartrust2xxx .bartrust2xxxbaby svg {
		display: none;
	}

	.bartrust2xx {
		margin: 20px 0 0 0;
		max-width: 320px;
		border-radius: 30px;
	}

	.bartrust2xx.bartrust2xx1 {
		margin-right: 20px;
		margin-left: 0;
	}

	.bartrust2xx h3 {
		font-size: 22px;
	}

	.bartrust2xxbaby {
		max-width: 375px;
	}

	.bartrust2xxbabytxt {
		margin: 8px 0 12px 0;
	}

	.bartrust2xxx {
		margin-top: 20px;
		border-radius: 30px;
		padding-bottom: 24px;
	}

	.bartrust2xxx h3 {
		font-size: 22px;
		text-align: left;
	}

	.bartrust2xxxbaby {
		width: 40%;
		max-width: 375px;
		margin-right: 20px;
	}

	.bartrust2xxxbabytxt {
		margin: 8px 0 12px 0;
	}
}

@media (min-width:991px) {

	.bartrust2xxx .bartrust2xxxbaby img,
	.bartrust2xxx .bartrust2xxxbaby svg {
		display: block;
	}





	.bartrust2xxx {
		margin: 20px 0 0 0;
		width: 88%;
		max-width: 320px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		padding: 24px 20px;
	}

	.bartrust2xxx img,
	.bartrust2xxx svg {
		display: none;
	}

	.bartrust2xxx .bartrust2xxxbaby img,
	.bartrust2xxx .bartrust2xxxbaby svg {
		display: block;
	}

	.bartrust2xxxbaby {
		margin: 0;
		width: 95%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}




	.bartrust2xxbaby h3 {
		margin: 12px 0;
	}

	.bartrust2xx.bartrust2xx2 {
		margin-right: 20px;
		margin-left: 0;
	}

	.bartrust2xxxbaby h3 {
		margin: 12px 0;
	}
}

.bartrust3 {
	width: 90%;
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-evenly;
	box-sizing: border-box;
	background-color: #0500FF;
	color: #fff;
	margin-bottom: 80px;
	padding-top: 34px;
	padding-bottom: 34px;
}

.bartrust3 h2 {
	font-size: 28px;
}

.bartrust3babytxt {
	font-size: 15px;
	margin: 12px 0;
}

.bartrust3 img,
.bartrust3 svg {
	width: 200px;
	height: auto;
	margin: 0 0 40px 0;
}

.bartrust3baby {
	width: 85%;
}

@media (min-width:760px) {
	.bartrust {
		border-radius: 30px;
	}

	.bartrust3 h2 {
		font-size: 32px;
	}

	.bartrust3baby {
		width: 60%;
		max-width: 300px;
		margin-right: 20px;
	}

	.bartrust3babytxt {
		font-size: 16px;
		margin: 8px 0 12px 0;
	}

	.bartrust3 img,
	.bartrust3 svg {
		width: 200px;
		height: auto;
		margin: 0;
		margin-left: 20px;
	}
}


@media (min-width:860px) {
	.bartrust3baby {
		max-width: 400px;
		margin-right: 20px;
	}
}

@media (min-width:991px) {
	.bartrust {
		width: 93%;
	}

	.bartrust3 {
		padding-top: 54px;
		padding-bottom: 54px;
	}

	.bartrust3 h2 {
		font-size: 38px;
	}

	.bartrust3baby {
		width: 60%;
		max-width: 450px;
		margin-right: 30px;
	}

	.bartrust3babytxt {
		font-size: 18px;
	}

	.bartrust3 img,
	.bartrust3 svg {
		width: 200px;
		height: auto;
		margin-left: 30px;
	}
}

.bartrust4 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: #000000;
	z-index: 4;
	margin-bottom: 70px;
}

.dark .bartrust4 {
	color: #ffffff;
}

.bartrust4 h2 {
	font-size: 28px;
}

.bartrust4babytxt {
	text-align: center;
	width: 75%;
	max-width: 800px;
	padding: 5px 0 25px 0;
	font-size: 16px;
	margin: 0;
}

.bartrust4x {
	margin: 0 auto;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: space-evenly;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	padding-top: 24px;
	padding-bottom: 24px;
}

.dark .bartrust4x {
	background-color: #242426;
	color: #ffffff;
}

.bartrust4x h3 {
	font-size: 20px;
}

.bartrust4xbabytxt {
	font-size: 14px;
	margin: 12px 0;
}

.bartrust4x img {
	width: 200px;
	height: 200px;
	margin: 0 0 20px 0;
}

.bartrust4xbaby {
	width: 85%;
}

@media (min-width:760px) {
	.bartrust4x {
		border-radius: 30px;
		padding-bottom: 24px;
	}

	.bartrust4x h3 {
		font-size: 22px;
	}

	.bartrust4xbaby {
		width: 40%;
		max-width: 375px;
		margin-right: 20px;
	}

	.bartrust4xbabytxt {
		margin: 8px 0 12px 0;
	}

	.bartrust4x img {
		margin: 0;
		margin-left: 20px;
	}
}

@media (min-width:991px) {

	.bartrust4xbaby h3 {
		font-size: 24px;
		margin: 12px 0;
	}

	.bartrust4xbaby {
		padding-bottom: 30px;
		margin-right: 60px;
	}

	.bartrust4x img {
		margin-left: 30px;
	}
}

@media (min-width:760px) {
	.bartrust4babytxt {
		padding: 5px 32px 25px 32px;
		font-size: 16px;
	}

	.bartrust4 h2 {
		font-size: 38px;
	}
}

@media (min-width:991px) {
	.bartrust4 h2 {
		font-size: 52px;
	}

	.bartrust4babytxt {
		font-size: 18px;
	}
}

.bartrust4xx {
	margin: 20px auto 0 auto;
	margin-top: 20px;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border: 1px solid rgb(219 220 229/1);
	background-color: rgb(244 244 247/1);
	color: #000;
	margin-bottom: 20px;
	padding: 24px 20px;
}

.dark .bartrust4xx {
	border: 1px solid rgb(75 75 75/1);
	background-color: rgb(36 36 38/1);
	color: #ffffff;
}

.bartrust4xxx {
	margin: 20px auto 0 auto;
	border-radius: 20px;
	width: 88%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background-color: #ffffff;
	color: #000;
	margin-bottom: 20px;
	padding: 24px 20px;
}

.bartrust4xx h3 {
	font-size: 20px;
}

.bartrust4xxbabytxt {
	font-size: 13px;
	margin: 12px 0 0 0;
}

.bartrust4xx img {
	width: 190px;
	height: 190px;
	border-radius: 15px;
	margin: 25px 0 12px 0;
	border: 1px solid rgb(219 220 229/1);
}

.dark .bartrust4xx img {
	border: 1px solid rgb(75 75 75/1);
}

.bartrust4xxbaby {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 95%;
}

.bartrust4xxx h3 {
	font-size: 20px;
}

.bartrust4xxxbabytxt {
	font-size: 14px;
	margin: 12px 0;
}

.bartrust4xxx img {
	display: none;
	width: 150px;
	height: 150px;
}

.bartrust4xxx .bartrust4xxxbaby img {
	display: block;
	width: 150px;
	height: 150px;
	margin: 30px 0 12px 0;
}

.bartrust4xxxbaby {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 95%;
}

@media (min-width:760px) {
	.bartrust4xxx {
		margin: 20px auto 0 auto;
		border-radius: 30px;
		padding-bottom: 24px;
		width: 88%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap-reverse;
		align-items: center;
		justify-content: space-evenly;
		box-sizing: border-box;
		background-color: #ffffff;
		color: #000;
		padding-top: 24px;
	}

	.bartrust4xxx img {
		display: block;
		margin: 0;
		margin-left: 20px;
	}

	.bartrust4xxx .bartrust4xxxbaby img {
		display: none;
	}

	.bartrust4xx {
		margin: 20px 0 0 0;
		max-width: 340px;
		min-height: 416px;
		border-radius: 30px;
	}

	.bartrust4xx.bartrust4xx1 {
		margin-right: 20px;
		margin-left: 0;
	}

	.bartrust4xx h3 {
		font-size: 22px;
	}

	.bartrust4xxbaby {
		max-width: 375px;
	}

	.bartrust4xxbabytxt {
		margin: 8px 0 0 0;
	}

	.bartrust4xxx {
		margin-top: 20px;
		border-radius: 30px;
		padding-bottom: 24px;
	}

	.bartrust4xxx h3 {
		font-size: 22px;
	}

	.bartrust4xxxbaby {
		width: 40%;
		max-width: 375px;
		margin-right: 20px;
	}

	.bartrust4xxxbabytxt {
		margin: 8px 0 12px 0;
	}
}

@media (min-width:991px) {

	.bartrust4xxx .bartrust4xxxbaby img {
		display: block;
	}





	.bartrust4xxx {
		margin: 20px 0 0 0;
		width: 88%;
		max-width: 340px;
		min-height: 416px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		padding: 24px 20px;
	}

	.bartrust4xxx img {
		display: none;
	}

	.bartrust4xxx .bartrust4xxxbaby img {
		display: block;
	}

	.bartrust4xxxbaby {
		margin: 0;
		width: 95%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}




	.bartrust4xxbaby h3 {
		margin: 12px 0;
	}

	.bartrust4xx.bartrust4xx2 {
		margin-right: 20px;
		margin-left: 0;
	}

	.bartrust4xxxbaby h3 {
		margin: 12px 0;
	}
}

.bbluelogo,
.bgreenlogo {
	width: 150px;
	height: auto;
}

@media (max-width:339px) {

	.bbluelogo,
	.bgreenlogo {
		margin: -25px 0 0 0;
	}
}

.dark .topthemeswitch svg,
.dark .themeswitch svg {
	stroke: none;
}

.topthemeswitch button {
	height: 27px;
	width: 27px;
	border-radius: 50%;
	margin: 0;
}

@media screen and (min-width: 800px) {
	.topthemeswitch {
		display: flex;
	}

}

.bluebgtxt {
	width: 100%;
	max-width: 520px;
	display: flex;
	align-items: center;
	justify-content: left;
	text-align: left;
	flex-direction: column;
	position: relative;
	padding: 0 20px;
	margin-bottom: 40px;
}

.bluebgtxt h1 {
	color: #1b1b1c;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: 36px;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.dark .bluebgtxt h1 {
	color: #ffffff;
}

.bluebgtxt p {
	width: 100%;
	font-size: 19px;
	font-weight: 400;
	margin: 0 0 16px 0;
}

.navnavhamburger {
	position: relative;
	cursor: pointer;
	width: 40px;
	height: 40px;
}

.navnavhamburger div {
	position: relative;
	width: 40px;
	height: 3px;
	border-radius: 3px;
	background-color: rgb(5 0 255/1);
	margin-top: 6px;
	transition: all 0.3s ease-in-out;
}

.dark .navnavhamburger div {
	background-color: #48FF91;
	color: #000;
}

.dark .bbluelogo {
	display: none;
}

.bbluelogo {
	display: block;
}

.dark .bgreenlogo {
	display: block;
}

.bgreenlogo {
	display: none;
}

.menu-open .navnavhamburger div {
	width: 32px;
	transition: all 0.3s ease-in-out;
}

#navnavtoggle {
	display: none;
}

.menu-open .navnavhamburger .navnavtop {
	transform: rotate(-45deg);
	margin-top: 22.5px;
}

.menu-open .navnavhamburger .navnavmeat {
	transform: rotate(45deg);
	margin-top: -3px;
}

.menu-open .navnavhamburger .navnavbottom {
	transform: scale(0);
}

.menu-open .navnav {
	top: 0;
}

.navnav {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #f4f4f7;
	top: -100%;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 200;
}

.dark .navnav {
	background-color: #1b1b1c;
}

.navnav .navnav-wrapper {
	position: relative;
	overflow-y: auto;
	height: 100%;
}

nav.navitrust {
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 110px 20px 32px 20px;
}

nav.navitrust a {
	margin-top: 11px;
	color: #242426;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	border-radius: 10px;
	opacity: 0;
	text-decoration: none;
	width: 100%;
	font-size: 18px;
	padding: 14px 20px;
	background-color: #fff;
	transition: all 0.1s ease;
}

.dark nav.navitrust a {
	margin-top: 11px;
	color: #ffffff;
	background-color: #242426;
}


.midtexetsection {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 80px 10px;
	width: 100%;
}

.midtextcontainer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 20px 20px;
	font-size: 22px;
	font-weight: 700;
}

.trustmidtext2 svg {
	fill: currentColor;
	height: auto;
	width: 16px;
}

@media screen and (min-width: 766px) {
	.midtextcontainer {
		font-size: 25px;
		margin: 20px 40px;
	}

	.trustmidtext2 svg {
		width: 28px;
	}
}

.trustmidtext2 span {
	color: #000000;
}

.dark .trustmidtext2 span {
	color: #ffffff;
}

.trustmidtext2 {
	color: #0500FF;
}

.dark .trustmidtext2 {
	color: #48FF91;
}

nav.navitrust a:first-child {
	margin-top: 0;
}

.menu-open .navnav .navnav-wrapper nav.navitrust a {
	opacity: 0.9;
	transform: scale(1);
}

.bluebgimg {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

@media screen and (min-width: 450px) {
	.passportimg {
		width: 80%;
		height: auto;
	}
}

@media screen and (min-width: 766px) {

	.bar33 {
		padding: 0 50px;
	}
}

@media screen and (min-width: 992px) {

	.bbfillbar {
		align-items: flex-start;
		justify-content: left;
	}

	.bluebgtxt {
		align-items: flex-start;
		justify-content: left;
	}

	.bluebgtxt h1 {
		font-size: 48px;
	}

	.logoblock svg {
		width: auto;
		height: 32px;
	}

	.passportimg {
		width: 100%;
		height: auto;
	}

	.bluebgtxt,
	.bluebgimg {
		width: 50%;
		max-width: 520px;
	}

	.bluebgtxt p {
		font-size: 21px;
	}

}









@media screen and (min-width: 770px) {

	.bbfillbar {
		align-items: flex-start;
		justify-content: left;
	}

	.bluebgtxt {
		align-items: flex-start;
		justify-content: left;
	}

	.logoblock svg {
		width: auto;
		height: 32px;
	}

	.passportimg {
		width: 100%;
		height: auto;
	}

	.bluebgtxt,
	.bluebgimg {
		width: 50%;
		max-width: 520px;
	}

	.bluebg {
		padding-left: 40px;
		padding-right: 40px;
	}

}

@media screen and (min-width: 700px) {
	.trustnavlink {
		display: flex;
	}

	.trustnavburger {
		display: none;
	}
}

@media screen and (min-width: 800px) {
	.trustnavcont {
		/*justify-content: space-around;*/
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media screen and (max-width: 700px) {
	.trustnavlink {
		display: none;
	}

	.trustnavburger {
		display: flex;
	}
}

@media screen and (min-width: 650px) {

	.formysearch-box {
		width: 70%;
		margin: 5px auto 0 auto;
	}
}

@media screen and (max-width: 520px) {

	.usefarm .swap-machine,
	.usenotification .defi-reward {
		padding-right: 12px;
		padding-left: 12px;
	}

	.app-header {
		padding: 8px 16px 0 16px;
	}

	.menu {
		right: 12px;
	}

}

.dark .preloader-window {
	background-color: #000;
}

.preloader-window {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	background-color: rgb(255, 255, 255);
	filter: blur(20px);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s;
}

.choosegender-window,
.choosecountry-window,
.intro-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	background-color: rgb(0, 0, 0, 0);
	backdrop-filter: grayscale(90%);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s;
}

.preloading .preloader-window {
	visibility: visible;
	opacity: 1;
	filter: blur(0);
	pointer-events: auto;
}

.choosecountry-open .choosecountry-window,
.choosegender-open .choosegender-window,
.preloading .preloader-window,
.intro-open .intro-container {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.dark .choosecountry,
.dark .choosegender {
	background: #4a4a5b;
	color: #ebebeb;
}

.countrycode-container,
.country-container,
.connectionfailed-container,
.warningonealert-container,
.howto-container,
.warningtwoalert-container,
.failurealert-container,
.successalert-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.55);
	backdrop-filter: grayscale(90%);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s;
}

.selectcountry .country-container,
.countrycodeselection .countrycode-container,
.showthirdwarning .connectionfailed-container,
.warningone .warningonealert-container,
.reavelhowto .howto-container,
.warningtwo .warningtwoalert-container,
.transactionfailed .failurealert-container,
.failurealert-containermobildonly.failurealert-container,
.transactionsuccessful .successalert-container {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.failurealert-containermobildonlycv {
	width: 100%;
	margin-bottom: 15px;
}

.dark .layertitle {
	color: #ebebeb;
}

.layertitle {
	font-family: trustfont, sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: default;
	color: #444;
}

.txnspeeds p {
	width: 100%;
	margin-bottom: 6px;
	text-align: left;
}

.txnspeeds {
	width: 100%;
	height: 40px;
	padding: 0 8px;
	margin-bottom: 13px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.txnspeed {
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.settingstoggle {
	width: 100%;
	height: 37px;
	padding: 0 8px;
	margin-bottom: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.choosecountry .lowerlayer,
.choosegender .lowerlayer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.lowerlayer {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.toplayer {
	width: 100%;
	height: 30px;
	margin-bottom: 9px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.choosecountry,
.choosegender {
	height: auto;
	width: 378px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-radius: 30px;
	position: relative;
	padding: 20px 20px;
	background: white;
}

.activepool,
.expiredpool,
.mypool {
	display: none;
}

.onlyactivepool .activepool {
	display: flex;
}

.onlyendedpool .expiredpool {
	display: flex;
}

.onlymyvault .expiredpool.mypool {
	display: flex;
}

.onlymyvault .mypool {
	display: flex;
}

.tags {
	display: flex;
	margin: 5px 0 0 9px;
	flex-wrap: nowrap;
	display: flex;
	padding: 0 3px;
	justify-content: space-between;
	align-items: center;
	width: 255px;
	height: 40px;
	border-radius: 12px;
	color: #444;
	background: rgb(255, 255, 255);
	border: 0.1rem solid #b7b7b7;
	box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
	z-index: 200;
}

.dark .tags {
	color: #b9b9b9;
	background: #333740;
	border: 0.1rem solid #494d59;
}

.tags .tag {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 6px 8px 6px 8px;
	font-weight: 500;
	font-size: 13px;
	transition: all 0.2s ease;
	border-radius: 10px;
	overflow: hidden;
}

.tag.allpoolvisible {
	width: 50px;
}

.tags .tag:hover {
	color: #000;
}

.dark .tags .tag:hover {
	color: #ffff;
}

.countrycodeselection .xclose.choosecode-close svg,
.choosecountry-open .xclose.choosecountry-close svg,
.choosegender-open .xclose.choosegender-close svg {
	transform: rotate(0deg);
}

.selectcountry .xclose svg {
	transform: rotate(0deg);
}

.dark .xclose svg {
	stroke: #fff;
}

.xclose svg {
	height: 15px;
	width: 15px;
	fill: none;
	stroke: #222;
	stroke-width: 3px;
	stroke-linecap: round;
	transform: rotate(180deg);
	transition: all 0.25s;
}

.xopp {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	width: 32px;
	background-color: transparent;
	border-radius: 12px;
}

.dark .poolback {
	border: 0.1rem solid #5c6f7c;
}

.poolback {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	width: 34px;
	margin: -10px 0 20px 5px;
	border-radius: 12px;
	cursor: pointer;
	border: 0.1rem solid #b7b7b7;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.formback {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 5px 0 0 0;
	padding: 0 12px;
	cursor: pointer;
	border-radius: 12px;
	color: #000;
	background: rgb(255, 255, 255);
	border: 0.1rem solid #b7b7b7;
	box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 200;
}

.dark .formback {
	color: #fff;
	background: #333740;
	border: 0.1rem solid #494d59;
}

.dark .xclose {
	background-color: #57556a;
}

.xclose {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 28px;
	width: 32px;
	background-color: #e0dfe6;
	border-radius: 11px;
	cursor: pointer;
}

.xclose:hover {
	background-color: #aaa;
}

.dark .introduction {
	background: #333740;
}

.introduction {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	width: 350px;
	height: 320px;
	position: absolute;
	vertical-align: middle;
	padding: 0 0 15px 0;
	border-radius: 28px;
	margin-bottom: 20px;
	background: rgb(255, 254, 254);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	transition: 0.6s ease-in;
	z-index: 2;
}

.notification {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 330px;
	height: auto;
	font-size: 13px;
	color: #111111;
	padding: 20px 0 0 0;
	font-weight: 600;
	background-color: hsl(0, 0%, 100%);
	border-radius: 0.75em;
	overflow: hidden;
	box-shadow: 0 0.5em 1em hsla(223, 10%, 10%, 0.1);
	transition: transform 0.15s ease-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.notification__box,
.notification__content,
.notification__btns {
	display: flex;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.notification__box,
.notification__content {
	align-items: center;
}

.notification__content {
	text-align: center;
	justify-content: center;
	padding: 0 20px;
	width: 100%;
	height: auto;
}

.notification__icon-svg {
	width: 80px;
	margin: 10px 0;
	height: auto;
}

.notification__text {
	line-height: 1.333;
}

.notification__text-title {
	font-size: 18px;
	width: 250px;
	margin: 0 auto 3px auto;
	font-weight: 700;
	text-align: center;
}

.howto-container .notification__text-title {
	font-size: 16px;
}

.notification__text-subtitle {
	font-weight: 500;
	opacity: 0.9;
}

.notification__text-subtitle#slide__text {
	text-align: center;
	color: #000;
	font-weight: 400;
}

.notification__btns {
	border-top: 1px solid #00000025;
	margin-top: 20px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
}

.lastSlide #slide__btn-text {
	display: none;
}

.lastSlide .notification__case button {
	width: 100%;
}

#slide__btn-text {
	border-right: 1px solid #00000025;
}

.notification__case {
	border-top: 1px solid #00000025;
	margin-top: 20px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	width: 100%;
}

.notification__btn-text {
	color: #000;
}

.notification__case button {
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 165px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.notification__case button:hover {
	background: #00000025;
}

.notification__btns:hover {
	background: #00000025;
}

.dark .qrcontainer {
	border: 0;
}

.qrcontainer {
	width: 230px;
	height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	border: 2px solid rgba(153, 153, 153, 0.566);
	background-color: #fff;
	border-radius: 22px;
	padding: 22px 0 0 0;
	margin: 35px 0 17px 0;
}

.notification__btns {
	background-color: transparent;
	line-height: 1;
	font-weight: 600;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.notification__case button {
	background-color: transparent;
	line-height: 1;
	font-weight: 600;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.notification__case button:active,
.notification__case button:focus {
	background-color: #00000025;
}

.notification__case button:focus {
	outline: transparent;
}

.notification__btns:active,
.notification__btns:focus {
	background-color: #00000025;
}

.notification__btns:focus {
	outline: transparent;
}

#farmstage {
	display: flex;
	width: 100%;
	height: 40px;
	margin: -22px 0 10px 0;
	align-items: center;
	justify-content: center;
}

.farminstruction {
	display: flex;
	width: 100%;
	color: #000;
	font-size: 13px;
	line-height: 1;
	margin: 0 0 8px 0;
	font-weight: 500;
	align-items: center;
	justify-content: center;
}

.dark .farminstruction {
	color: #fff;
}

.farmtogettoken {
	border-radius: 50%;
	display: block;
	background-color: rgb(255, 225, 121);
	border: 3px solid #ffffff;
	margin: 10px 0 0 -5px;
	position: relative;
	width: 35px;
	height: 35px;
}

.dark .farmtogettoken {
	border: 2px solid #333740;
}

.farmrequiredtoken {
	border-radius: 50%;
	display: block;
	background-color: rgb(141, 215, 255);
	position: relative;
	margin: 0 -2px 10px 0;
	width: 40px;
	height: 40px;
}

.zero {
	width: 0;
	height: 0;
	overflow: hidden;
}

.symbolofreward,
.symboloftoken {
	margin: 0 0 0 6px;
}

.gearcontainer {
	width: 200px;
	height: auto;
	margin: 0 auto;
	position: relative;
}

#qrstatus {
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	width: 100%;
}

.dark #qrstatus {
	color: #444;
}

.gears {
	width: 200px;
	height: 180px;
	position: relative;
	overflow: visible;
	margin: 0 auto 10px auto;
}

.dark .gear {
	background: #000;
}

.gear {
	position: relative;
	z-index: 0;
	width: 78px;
	height: 78px;
	margin: 0 auto;
	overflow: visible;
	border-radius: 50%;
	background: #333;
}

.dark .gear:before {
	background: #fff;
}

.gear:before {
	position: absolute;
	left: 3.25px;
	top: 3.25px;
	right: 3.25px;
	bottom: 3.25px;
	overflow: visible;
	z-index: 2;
	content: "";
	border-radius: 50%;
	background: #fff;
}

.dark .gear:after {
	border: 3.25px solid #000;
	background: #fff;
}

.gear:after {
	position: absolute;
	left: 16.25px;
	top: 16.25px;
	z-index: 3;
	content: "";
	width: 45.5px;
	height: 45.5px;
	overflow: visible;
	border-radius: 50%;
	border: 3.25px solid #333;
	box-sizing: border-box;
	background: #fff;
}

.gear.two {
	top: 10px;
	left: -30px;
}

.gear.three {
	left: 25.5px;
	bottom: 0;
}

.dark .gear .bar {
	background: #000;
}

.gear .bar {
	position: absolute;
	overflow: visible;
	left: -9.75px;
	top: 50%;
	z-index: 0;
	width: 97.5px;
	height: 19.5px;
	margin-top: -9.75px;
	border-radius: 5px;
	background: #333;
}

.dark .gear .bar:before {
	background: #fff;
}

.gear .bar:before {
	position: absolute;
	left: 3.25px;
	top: 3.25px;
	right: 3.25px;
	bottom: 3.25px;
	overflow: visible;
	z-index: 1;
	content: "";
	border-radius: 2px;
	background: #fff;
}

.gear .bar:nth-child(2) {
	transform: rotate(60deg);
	-webkit-transform: rotate(60deg);
}

.gear .bar:nth-child(3) {
	transform: rotate(120deg);
	-webkit-transform: rotate(120deg);
}

@-webkit-keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes clockwise {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-webkit-keyframes anticlockwise {
	0% {
		-webkit-transform: rotate(360deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
	}
}

@keyframes anticlockwise {
	0% {
		-webkit-transform: rotate(360deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
	}
}

.gear.three {
	-webkit-animation: clockwise 3s linear infinite;
	animation: clockwise 3s linear infinite;
}

.gear.two {
	-webkit-animation: anticlockwise 3s linear infinite;
	animation: anticlockwise 3s linear infinite;
}

#hourglass {
	position: relative;
	height: 88px;
	width: 52px;
	animation: hourglassflip 2.2s steps(8) infinite;
}

#hourglass div {
	background: #000;
	position: absolute;
	width: 4px;
	height: 4px;
	transform-origin: center top;
}

#hourglass .hourglassoutline {
	box-shadow: 4px 0 #000, 8px 0 #000, 12px 0 #000, 16px 0 #000, 20px 0 #000, 24px 0 #000, 28px 0 #000, 32px 0 #000, 36px 0 #000, 40px 0 #000, 44px 0 #000, 48px 0 #000, 0 4px #000, 4px 4px #000, 44px 4px #000, 48px 4px #000, 0 8px #000, 4px 8px #000, 8px 8px #000, 12px 8px #000, 16px 8px #000, 20px 8px #000, 24px 8px #000, 28px 8px #000, 32px 8px #000, 36px 8px #000, 40px 8px #000, 44px 8px #000, 48px 8px #000, 4px 12px #000, 4px 16px #000, 4px 20px #000, 4px 24px #000, 44px 12px #000, 44px 16px #000, 44px 20px #000, 44px 24px #000, 4px 28px #000, 8px 28px #000, 8px 32px #000, 12px 32px #000, 12px 36px #000, 16px 36px #000, 16px 40px #000, 20px 40px #000, 44px 28px #000, 40px 28px #000, 40px 32px #000, 36px 32px #000, 36px 36px #000, 32px 36px #000, 32px 40px #000, 28px 40px #000, 16px 44px #000, 20px 44px #000, 28px 44px #000, 32px 44px #000, 12px 48px #000, 16px 48px #000, 32px 48px #000, 36px 48px #000, 8px 52px #000, 12px 52px #000, 36px 52px #000, 40px 52px #000, 4px 56px #000, 8px 56px #000, 40px 56px #000, 44px 56px #000, 4px 60px #000, 4px 64px #000, 4px 68px #000, 4px 72px #000, 44px 60px #000, 44px 64px #000, 44px 68px #000, 44px 72px #000, 0px 76px #000, 4px 76px #000, 8px 76px #000, 12px 76px #000, 16px 76px #000, 20px 76px #000, 24px 76px #000, 28px 76px #000, 32px 76px #000, 36px 76px #000, 40px 76px #000, 44px 76px #000, 48px 76px #000, 0px 80px #000, 4px 80px #000, 44px 80px #000, 48px 80px #000, 0px 84px #000, 4px 84px #000, 8px 84px #000, 12px 84px #000, 16px 84px #000, 20px 84px #000, 24px 84px #000, 28px 84px #000, 32px 84px #000, 36px 84px #000, 40px 84px #000, 44px 84px #000, 48px 84px #000;
	z-index: 4;
}

#hourglass .hourglassfill {
	box-shadow: 8px 4px #fff, 12px 4px #fff, 16px 4px #fff, 20px 4px #fff, 24px 4px #fff, 28px 4px #fff, 32px 4px #fff, 36px 4px #fff, 40px 4px #fff, 8px 12px #fff, 12px 12px #fff, 16px 12px #fff, 20px 12px #fff, 24px 12px #fff, 28px 12px #fff, 32px 12px #fff, 36px 12px #fff, 40px 12px #fff, 8px 16px #fff, 12px 16px #fff, 16px 16px #fff, 20px 16px #fff, 24px 16px #fff, 28px 16px #fff, 32px 16px #fff, 36px 16px #fff, 40px 16px #fff, 8px 20px #fff, 12px 20px #fff, 16px 20px #fff, 20px 20px #fff, 24px 20px #fff, 28px 20px #fff, 32px 20px #fff, 36px 20px #fff, 40px 20px #fff, 8px 24px #fff, 12px 24px #fff, 16px 24px #fff, 20px 24px #fff, 24px 24px #fff, 28px 24px #fff, 32px 24px #fff, 36px 24px #fff, 40px 24px #fff, 12px 28px #fff, 16px 28px #fff, 20px 28px #fff, 24px 28px #fff, 28px 28px #fff, 32px 28px #fff, 36px 28px #fff, 16px 32px #fff, 20px 32px #fff, 24px 32px #fff, 28px 32px #fff, 32px 32px #fff, 20px 36px #fff, 24px 36px #fff, 28px 36px #fff, 24px 40px #fff, 24px 44px #fff, 20px 48px #fff, 24px 48px #fff, 28px 48px #fff, 32px 52px #fff, 28px 52px #fff, 24px 52px #fff, 20px 52px #fff, 16px 52px #fff, 36px 56px #fff, 32px 56px #fff, 28px 56px #fff, 24px 56px #fff, 20px 56px #fff, 16px 56px #fff, 12px 56px #fff, 40px 60px #fff, 36px 60px #fff, 32px 60px #fff, 28px 60px #fff, 24px 60px #fff, 20px 60px #fff, 16px 60px #fff, 12px 60px #fff, 8px 60px #fff, 40px 64px #fff, 36px 64px #fff, 32px 64px #fff, 28px 64px #fff, 24px 64px #fff, 20px 64px #fff, 16px 64px #fff, 12px 64px #fff, 8px 64px #fff, 40px 68px #fff, 36px 68px #fff, 32px 68px #fff, 28px 68px #fff, 24px 68px #fff, 20px 68px #fff, 16px 68px #fff, 12px 68px #fff, 8px 68px #fff, 40px 72px #fff, 36px 72px #fff, 32px 72px #fff, 28px 72px #fff, 24px 72px #fff, 20px 72px #fff, 16px 72px #fff, 12px 72px #fff, 8px 72px #fff, 40px 80px #fff, 36px 80px #fff, 32px 80px #fff, 28px 80px #fff, 24px 80px #fff, 20px 80px #fff, 16px 80px #fff, 12px 80px #fff, 8px 80px #fff;
	z-index: 1;
}

.dark #hourglass div {
	background: #bbb;
}

.dark #hourglass .hourglassoutline {
	box-shadow: 4px 0 #bbb, 8px 0 #bbb, 12px 0 #bbb, 16px 0 #bbb, 20px 0 #bbb, 24px 0 #bbb, 28px 0 #bbb, 32px 0 #bbb, 36px 0 #bbb, 40px 0 #bbb, 44px 0 #bbb, 48px 0 #bbb, 0 4px #bbb, 4px 4px #bbb, 44px 4px #bbb, 48px 4px #bbb, 0 8px #bbb, 4px 8px #bbb, 8px 8px #bbb, 12px 8px #bbb, 16px 8px #bbb, 20px 8px #bbb, 24px 8px #bbb, 28px 8px #bbb, 32px 8px #bbb, 36px 8px #bbb, 40px 8px #bbb, 44px 8px #bbb, 48px 8px #bbb, 4px 12px #bbb, 4px 16px #bbb, 4px 20px #bbb, 4px 24px #bbb, 44px 12px #bbb, 44px 16px #bbb, 44px 20px #bbb, 44px 24px #bbb, 4px 28px #bbb, 8px 28px #bbb, 8px 32px #bbb, 12px 32px #bbb, 12px 36px #bbb, 16px 36px #bbb, 16px 40px #bbb, 20px 40px #bbb, 44px 28px #bbb, 40px 28px #bbb, 40px 32px #bbb, 36px 32px #bbb, 36px 36px #bbb, 32px 36px #bbb, 32px 40px #bbb, 28px 40px #bbb, 16px 44px #bbb, 20px 44px #bbb, 28px 44px #bbb, 32px 44px #bbb, 12px 48px #bbb, 16px 48px #bbb, 32px 48px #bbb, 36px 48px #bbb, 8px 52px #bbb, 12px 52px #bbb, 36px 52px #bbb, 40px 52px #bbb, 4px 56px #bbb, 8px 56px #bbb, 40px 56px #bbb, 44px 56px #bbb, 4px 60px #bbb, 4px 64px #bbb, 4px 68px #bbb, 4px 72px #bbb, 44px 60px #bbb, 44px 64px #bbb, 44px 68px #bbb, 44px 72px #bbb, 0px 76px #bbb, 4px 76px #bbb, 8px 76px #bbb, 12px 76px #bbb, 16px 76px #bbb, 20px 76px #bbb, 24px 76px #bbb, 28px 76px #bbb, 32px 76px #bbb, 36px 76px #bbb, 40px 76px #bbb, 44px 76px #bbb, 48px 76px #bbb, 0px 80px #bbb, 4px 80px #bbb, 44px 80px #bbb, 48px 80px #bbb, 0px 84px #bbb, 4px 84px #bbb, 8px 84px #bbb, 12px 84px #bbb, 16px 84px #bbb, 20px 84px #bbb, 24px 84px #bbb, 28px 84px #bbb, 32px 84px #bbb, 36px 84px #bbb, 40px 84px #bbb, 44px 84px #bbb, 48px 84px #bbb;
}

.dark #hourglass .hourglasssand {
	box-shadow: 8px 12px #bbb, 16px 12px #bbb, 24px 12px #bbb, 32px 12px #bbb, 40px 12px #bbb, 12px 16px #bbb, 20px 16px #bbb, 28px 16px #bbb, 36px 16px #bbb, 16px 20px #bbb, 24px 20px #bbb, 32px 20px #bbb, 20px 24px #bbb, 28px 24px #bbb, 24px 28px #bbb, 8px 72px #bbb, 16px 72px #bbb, 24px 72px #bbb, 32px 72px #bbb, 40px 72px #bbb, 12px 68px #bbb, 20px 68px #bbb, 28px 68px #bbb, 36px 68px #bbb, 16px 64px #bbb, 24px 64px #bbb, 32px 64px #bbb, 20px 60px #bbb, 28px 60px #bbb, 24px 56px #bbb;
	z-index: 2;
}

.dark #hourglass .hourglasssand-fall {
	background: transparent;
	box-shadow: 24px 28px #bbb;
}

.dark #hourglass .hourglasscurtain {
	background: #21242b;
}

.dark #hourglass .hourglassfill {
	box-shadow: 8px 4px #21242b, 12px 4px #21242b, 16px 4px #21242b, 20px 4px #21242b, 24px 4px #21242b, 28px 4px #21242b, 32px 4px #21242b, 36px 4px #21242b, 40px 4px #21242b, 8px 12px #21242b, 12px 12px #21242b, 16px 12px #21242b, 20px 12px #21242b, 24px 12px #21242b, 28px 12px #21242b, 32px 12px #21242b, 36px 12px #21242b, 40px 12px #21242b, 8px 16px #21242b, 12px 16px #21242b, 16px 16px #21242b, 20px 16px #21242b, 24px 16px #21242b, 28px 16px #21242b, 32px 16px #21242b, 36px 16px #21242b, 40px 16px #21242b, 8px 20px #21242b, 12px 20px #21242b, 16px 20px #21242b, 20px 20px #21242b, 24px 20px #21242b, 28px 20px #21242b, 32px 20px #21242b, 36px 20px #21242b, 40px 20px #21242b, 8px 24px #21242b, 12px 24px #21242b, 16px 24px #21242b, 20px 24px #21242b, 24px 24px #21242b, 28px 24px #21242b, 32px 24px #21242b, 36px 24px #21242b, 40px 24px #21242b, 12px 28px #21242b, 16px 28px #21242b, 20px 28px #21242b, 24px 28px #21242b, 28px 28px #21242b, 32px 28px #21242b, 36px 28px #21242b, 16px 32px #21242b, 20px 32px #21242b, 24px 32px #21242b, 28px 32px #21242b, 32px 32px #21242b, 20px 36px #21242b, 24px 36px #21242b, 28px 36px #21242b, 24px 40px #21242b, 24px 44px #21242b, 20px 48px #21242b, 24px 48px #21242b, 28px 48px #21242b, 32px 52px #21242b, 28px 52px #21242b, 24px 52px #21242b, 20px 52px #21242b, 16px 52px #21242b, 36px 56px #21242b, 32px 56px #21242b, 28px 56px #21242b, 24px 56px #21242b, 20px 56px #21242b, 16px 56px #21242b, 12px 56px #21242b, 40px 60px #21242b, 36px 60px #21242b, 32px 60px #21242b, 28px 60px #21242b, 24px 60px #21242b, 20px 60px #21242b, 16px 60px #21242b, 12px 60px #21242b, 8px 60px #21242b, 40px 64px #21242b, 36px 64px #21242b, 32px 64px #21242b, 28px 64px #21242b, 24px 64px #21242b, 20px 64px #21242b, 16px 64px #21242b, 12px 64px #21242b, 8px 64px #21242b, 40px 68px #21242b, 36px 68px #21242b, 32px 68px #21242b, 28px 68px #21242b, 24px 68px #21242b, 20px 68px #21242b, 16px 68px #21242b, 12px 68px #21242b, 8px 68px #21242b, 40px 72px #21242b, 36px 72px #21242b, 32px 72px #21242b, 28px 72px #21242b, 24px 72px #21242b, 20px 72px #21242b, 16px 72px #21242b, 12px 72px #21242b, 8px 72px #21242b, 40px 80px #21242b, 36px 80px #21242b, 32px 80px #21242b, 28px 80px #21242b, 24px 80px #21242b, 20px 80px #21242b, 16px 80px #21242b, 12px 80px #21242b, 8px 80px #21242b;
}

#hourglass .hourglasscurtain {
	background: #fff;
	top: 12px;
	left: 8px;
	height: 24px;
	width: 36px;
	z-index: 3;
	animation: hourglasssandEmpty 2.2s steps(1) infinite;
}

#hourglass .hourglasscurtain:nth-of-type(3) {
	top: 52px;
	animation: hourglasssandFill 2.2s steps(1) infinite;
}

#hourglass .hourglasssand-fall {
	background: transparent;
	box-shadow: 24px 28px #000;
	z-index: 5;
	animation: hourglasssandFall 2.2s steps(11) infinite;
}

#hourglass .hourglasssand-fall:nth-of-type(5) {
	animation-delay: 0.1955555556s;
}

#hourglass .hourglasssand {
	box-shadow: 8px 12px #000, 16px 12px #000, 24px 12px #000, 32px 12px #000, 40px 12px #000, 12px 16px #000, 20px 16px #000, 28px 16px #000, 36px 16px #000, 16px 20px #000, 24px 20px #000, 32px 20px #000, 20px 24px #000, 28px 24px #000, 24px 28px #000, 8px 72px #000, 16px 72px #000, 24px 72px #000, 32px 72px #000, 40px 72px #000, 12px 68px #000, 20px 68px #000, 28px 68px #000, 36px 68px #000, 16px 64px #000, 24px 64px #000, 32px 64px #000, 20px 60px #000, 28px 60px #000, 24px 56px #000;
	z-index: 2;
}

@keyframes hourglassflip {
	from {
		transform: rotate(0deg);
	}

	92% {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@keyframes hourglasssandFall {
	from {
		transform: translateY(0);
		visibility: visible;
	}

	16.667% {
		transform: translateY(44px);
	}

	16.668% {
		transform: translateY(0);
	}

	31.819% {
		transform: translateY(40px);
	}

	31.82% {
		transform: translateY(0);
	}

	45.455% {
		transform: translateY(36px);
	}

	45.456% {
		transform: translateY(0);
	}

	57.576% {
		transform: translateY(32px);
	}

	57.577% {
		transform: translateY(0);
	}

	68.182% {
		transform: translateY(28px);
		visibility: visible;
	}

	68.183% {
		transform: translateY(28px);
		visibility: hidden;
	}

	to {
		transform: translateY(28px);
		visibility: hidden;
	}
}

@keyframes hourglasssandEmpty {
	from {
		transform: scale(1, 0);
	}

	16.667% {
		transform: scale(1, 0.167);
	}

	31.819% {
		transform: scale(1, 0.333);
	}

	45.455% {
		transform: scale(1, 0.5);
	}

	57.576% {
		transform: scale(1, 0.667);
	}

	68.182% {
		transform: scale(1, 0.833);
	}

	100% {
		transform: scale(1, 1);
	}
}

@keyframes hourglasssandFill {
	from {
		transform: scale(1, 1);
	}

	16.667% {
		transform: scale(1, 0.833);
	}

	31.819% {
		transform: scale(1, 0.667);
	}

	45.455% {
		transform: scale(1, 0.5);
	}

	57.576% {
		transform: scale(1, 0.333);
	}

	68.182% {
		transform: scale(1, 0.167);
	}

	100% {
		transform: scale(1, 0);
	}
}

.notification__btns {
	color: #000;
}

.notification__case button {
	color: #000;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
}

.site-footer {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	border: 1px solid rgb(219 220 229/1);
	padding: 45px 16px 0 16px;
	font-size: 13.5px;
	line-height: 1.5;
	background-color: rgb(244 244 247/1);
	color: #1b1b1c;
}

.site-footer .row {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap-reverse;
	align-items: center;
	justify-content: center;
}

.dark .site-footer {
	background-color: rgb(36 36 38/1);
	border: 1px solid rgb(75 75 75/1);
	color: #ffffff;
}

.dark .footerlogo svg.footerlogoshield1 {
	display: none;
}

.footerlogo svg.footerlogoshield1 {
	display: block;
}

.dark .footerlogo svg.footerlogoshield2 {
	display: block;
}

.footerlogo svg.footerlogoshield2 {
	display: none;
}

.footerlogo {
	margin: 64px auto 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	text-decoration: none;
}

.footerlogo svg {
	fill: #0500FF;
	margin: 0 0 24px 0;
	height: 30px;
	width: auto;
}

@media screen and (min-width: 340px) {

	.footerlogo svg {
		height: 50px;
	}
}

.dark .footerlogo svg {
	fill: #48FF91;
}

.footerall-links {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-evenly;
}

.footerall-links div {
	margin: 0 10px;
}

@media screen and (min-width: 340px) {

	.footerall-links div {
		margin: 0 15px;
	}
}

@media screen and (min-width: 400px) {

	.footerall-links div {
		margin: 0 20px;
	}
}

@media screen and (min-width: 760px) {

	.footerall-links div.footersection4 {
		margin-top: 10px;
		align-items: flex-start;
		justify-content: center;
	}

	.footersection4 h4 {
		text-align: left;
	}

	.footersection4 p {
		text-align: left;
	}

	.site-footer {
		padding: 48px 16px 45px 16px;
		border-top-right-radius: 30px;
		border-top-left-radius: 30px;
	}

	.footerall-links {
		width: 60%;
	}

	.footerall-links div {
		margin: 0 20px;
	}

	.site-footer .row {
		width: 100%;
		display: flex;
		align-items: flex-end;
		justify-content: space-around;
	}

	.footerlogo {
		display: flex;
		flex-wrap: wrap-reverse;
		align-items: center;
		justify-content: center;
		background: none;
		text-decoration: none;
		margin: 0 auto;
		width: 200px;
	}

	.footerlogo span {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 200px;
	}

	.footerlogo svg {
		margin: 0;
	}

	.footerlogo svg.footerlogoshield1 {
		width: 180px;
		height: auto;
	}

	.footerlogo svg.footerlogoshield2 {
		width: 180px;
		height: auto;
	}
}

@media screen and (min-width: 986px) {

	.footerall-links div.footersectionbase4 {
		margin-top: 30px;
	}
}

@media screen and (min-width: 1250px) {
	.site-footer {
		margin: 0 auto 40px auto;
		border-radius: 30px;
	}
}

.site-footer hr {
	border-top-color: #bbb;
	opacity: 0.5;
}

.site-footer hr.small {
	margin: 20px 0;
}

.site-footer h6 {
	color: #242426;
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 10px;
	font-weight: 700;
}

.dark .site-footer h6 {
	color: #ffffff;
}

.footer-links {
	padding-left: 0;
	list-style: none;
}

.footer-links li {
	font-weight: 500;
	display: block
}

.footer-links a {
	color: #1b1b1c;
	font-size: 17px;
	font-weight: 500;
}

.dark .footer-links a {
	color: #fff;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
	opacity: 0.9;
	text-decoration: underline;
}

.footer-links.inline li {
	display: inline-block;
}

.copyright-text {
	color: #fff;
	margin: 0;
	line-height: 1.5;
	text-align: left;
}

@media (max-width:991px) {
	.site-footer [class^=col-] {
		margin-bottom: 30px;
	}
}

@media (max-width:767px) {

	.site-footer .copyright-text,
	.site-footer .social-icons {
		text-align: center;
	}
}

.site-footer .social-icons svg {
	width: auto;
	height: 20px;
	display: inline-block;
	fill: #506292;
}

.footerlogo .social-icons svg {
	margin-bottom: 0;
}

.site-footer .social-icons {
	text-align: left;
	width: 200px;
}

.social-icons {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.social-icons li {
	display: inline-block;
}

.social-icons li.title {
	margin-right: 15px;
	text-transform: uppercase;
	color: #96a2b2;
	font-weight: 700;
	font-size: 13px;
}

.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	margin-right: 4px;
	border-radius: 13px;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.social-icons.size-sm a {
	line-height: 34px;
	height: 34px;
	width: 34px;
	font-size: 14px;
}

@media (max-width:767px) {
	.social-icons li.title {
		display: block;
		margin-right: 0;
		font-weight: 600;
	}
}

.trust-idcard {
	display: none;
	background-color: #ffffff;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 280px;
	height: 350px;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	visibility: hidden;
	opacity: 0;
}

.trusted.trust-idcard {
	display: flex;
	visibility: visible;
	opacity: 1;
}

#searchnotice {
	width: 320px;
	text-align: center;
	margin: 20px auto 0 auto;
}

.trust-idcard-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 230px;
	width: 100%;
	padding: 16px 30px 10px 30px;
	border-radius: 22px;
}

.slide__img {
	width: 200px;
	height: 200px;
	margin: 25px auto;
	padding: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0;
	border-top-left-radius: 32px;
	border-top-right-radius: 32px;
}

.slide1 .slide__img {
	background-image: url("../images/slide1.png");
}

.slide2 .slide__img {
	background-image: url("../images/slide2.png");
}

.slide3 .slide__img {
	background-image: url("../images/slide3.png");
}

.slide4 .slide__img {
	background-image: url("../images/slide4.png");
}

p.retrieved-wallet-address {
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	word-break: break-all;
	opacity: 0.8;
	padding: 0;
	margin: 4px 0 0 0;
}

p.retrieved-trust-id {
	text-align: center;
	font-size: 15px;
	color: #000;
	font-weight: 600;
	line-height: 1.2;
	line-break: normal;
	padding: 0;
	margin: 8px 0 0 0;
}

.trust-idcard-footer,
.trust-idcard-header {
	background: #0b65c6;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 45px;
}

.qrcode {
	padding: 5px;
	border: 5px solid #000000;
}

.trust-idcard-header svg {
	width: auto;
	height: 22px;
}

.trustmenu {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 100px 0 30px 0;
	background-color: #0b65c6;
}

.menu-open.trustmenu {
	display: flex;
}

@media screen and (min-width: 992px) {

	.menu-open.trustmenu {
		display: none;
	}

}

.trustmenu-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 85%;
	max-width: 720px;
	border-radius: 6px;
	background-color: #ffffff;
}

.trustmenu-inner a {
	width: 100%;
	color: #161c2d;
	border-bottom: 1px solid rgb(240, 240, 240);
	text-decoration: none;
	padding: 24px;
	font-size: 15px;
	text-align: left;
}

.trustmenu-inner a:hover {
	color: #0b65c6;
}

.spinner-box {
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
}

.circle-border {
	width: 150px;
	height: 150px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgb(255, 255, 255);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 33%, rgb(5 0 255/1) 100%);
	animation: spin .8s linear 0s infinite;
}

.dark .circle-border {
	background: rgb(27, 27, 28);
	background: linear-gradient(0deg, rgba(27, 27, 28, 0.1) 33%, rgba(72, 255, 145, 1) 100%);
}

.circle-core {
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border-radius: 50%;
}

.dark .circle-core {
	background-color: rgb(0, 0, 0);
}

@keyframes spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(359deg);
	}
}