html.with_nav,
html.with_nav body {
	width: 100%;
	height: 100%;
	overflow:hidden;
}

html.with_nav iframe {
	width: 100%;
	height: 100%;
	padding-bottom: 65px;
	box-sizing: border-box;
}

html.with_nav .footer {
	display: none;
}

html.with_nav body:before {
	content: "";
	display: block;
	height: 5px;
	background: #52ae30;
}

body {
 margin:0;
 font-family: sans-serif !important;
 background-color: #ECEFF6 !important;
 color:rgb(51, 51, 51);
 font-size: 14px;
 line-height: 150%;
}

body > h1 {
	margin-left: 45px;
	margin-top: 15px;
	font-size: 160%;
	margin-bottom: -10px;
	background: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	color: transparent;
	height: 25px !important;
}

body > h1 ~ h1 {
	background: none;
	color: #006648;
}

body > .logout {
	float: right;
	margin: -10px 30px;
}

code, pre {
 font-family:"Courier New",monospace;
 font-size: 12px;
}

pre .fa {
	padding: 0 !important;
	font-size: 12px !important;
	margin: 0 10px !important;
}

hr {
	clear: both;
	border: 0;
	border-top: 1px solid #666;
	margin: 0;
}

a:not(.MuiButton-root) {
	color: #52ae30;
	text-decoration: none;
}

a:not(.MuiButton-root):hover {
	text-decoration: underline;
}

label {
	white-space: nowrap;
}

.labels .error,
.labels .headsup,
.labels .warn,
.labels .info,
.labels .success,
.labels .detail {
	display: inline-block;
	color: rgb(250, 179, 174);
	border: 1px solid #f44336;
	font-weight: normal;
	font-size: 11px;
	padding: 1px 10px;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 25px;
  background: #f44336;
  color: #fff;
}

.labels .headsup {
  color: rgb(255, 213, 153);
  border: 1px solid #b340b3;
  background: #b340b3;
  color: #fff;
}

.labels .warn {
  color: rgb(255, 213, 153);
  border: 1px solid #ff9800;
  background: #ff9800;
  color: #fff;
}

.labels .info {
  color: rgb(166, 213, 250);
  border: 1px solid #2196f3;
  background: #2196f3;
  color: #fff;
}

.labels .success {
  color: rgb(183, 223, 185);
  border: 1px solid #52ae30;
  background: #52ae30;
  color: #fff;
}

.labels .detail {
  border: 1px solid #555;
  background: #555;
  color: #ddd;
}

.form,
.section,
.MuiDialog-paper {
	transition: transform .5s, opacity .5s, max-height .5s, padding .5s;
	transform: scale(1);
	transform-origin: bottom center;
	opacity: 1;
	max-height: 10000px;
	overflow: hidden;
}

.anim .form.in,
.anim .section.in,
.anim .MuiDialog-paper.in {
	transform: scale(0.5);
	opacity: 0 !important;
	overflow: hidden;
	border-bottom: 0;
}

.anim .section.out,
.anim .MuiDialog-paper.out {
	transform: scale(0.5);
	opacity: 0 !important;
	max-height: 0;
	padding: 0;
	overflow: hidden;
	transform-origin: top center;
	border-bottom: 0;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blink-outline { 
	50% { outline-color: transparent ; }
}

.form,
.section {
	border-radius: 25px;
	margin: 30px;
	overflow: hidden;
	font-weight: normal;
	padding: 30px;
	box-sizing: border-box;
	background: #fff;
	border-left: 5px solid #52ae30;
	word-wrap: break-word;
	box-shadow: 0 16px 48px rgb(73 92 136 / 15%);
}

.section.orange {
	border-color: #ff9800;
}

.section.blue {
	border-color: #3999cc;
}

.form h1 {
	color: #fff;
    padding-top: 10px;
    font-size: 30px;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    text-transform: uppercase;
}

.form p {
    margin-bottom: 20px;
    font-weight: normal;
    margin-top: 0;
}

.form.connect {
	max-width: 450px;
	position: absolute;
	left: 50%;
	left: calc(50% - 10px);
	top: 50%;
	top: calc(50% - 15px);
	transform: translateX(-50%) translateY(-50%);
	text-align: center;
}

.form.connect h2 {
	background: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	color: transparent;
	min-height: 50px;
	background-position: 50% 0;
}

.form .MuiButtonBase-root {
	margin-top: 20px;
}

input,
select,
textarea {
    border: solid 1px #c5c5c5;
    padding: 10px 15px;
	background: #fff;
	color: #4a4a4a;
	border-radius: 5px;
	transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

input:active,
input:focus,
select:active,
select:focus,
textarea:active,
textarea:focus {
	border-color: #52ae30;
	outline: none;
	position: relative;
	z-index: 1;
	color: #212529;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

select,
input[type=checkbox],
input[type=radio] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	-o-appearance: none !important;
	appearance: none !important;
}

select,
select:hover,
select:active,
select:focus {
	background-image: url('../images/down.png');
	background-repeat: no-repeat;
	background-position: calc(100% - 9px) 50%;
	padding-right: 25px;
}

input[type=checkbox],
input[type=radio] {
	vertical-align: middle;
	padding: 0;
	width: 24px;
	height: 24px;
	margin-top: 0;
	margin-left: 0;
}

input[type=radio] {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
	background-color: #52ae30;
	background-image: url("../images/check.png");
	background-size: 10px;
	background-position: 50% -44px;
	background-repeat: no-repeat;
}

input[type=radio]:checked {
	background-image: url("../images/bullet.png");
	background-size: auto;
	background-position: 50% -77px;
}

.combo input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	max-width: calc(100% - 55px) !important;
}

.combo input+select {
	width: 0px;
	padding-right: 20px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
	text-indent: 999px;
}

body .fab {
	position: fixed !important;
	bottom: 30px;
	right: 30px;
	max-width: 50px;
}

body .fab a {
	border-radius: 50% !important;
	width: 20px !important;
	height: 20px !important;
	padding: 15px !important;
	min-width: auto !important;
	box-sizing: content-box !important;
	padding: 15px !important;
	font-family: "Font Awesome 6 Pro" !important;
	font-weight: bold;
	text-align: center;
	background: #fff !important;
	border: 1px solid #fff !important;
	color: #52ae30 !important;
	box-shadow: 0 4px 8px rgba(73,92,136,.15);
}

body .fab a:hover {
	background: #fff !important;
	border-color: #52ae30 !important;
	color: #000 !important;
	box-shadow: 0 4px 8px rgba(73,92,136,.15) !important;
}

body .fab a:not(:last-child) {
	margin-bottom: 10px;
	scale: 0.2;
	transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	position: fixed;
}

body .fab:hover a:not(:last-child) {
	scale: 1;
	opacity: 1;
	position: static;
}

.tabs {
	white-space: nowrap;
	clear: both;
	position: static;
	background: none;
	box-shadow: none;
	margin-top: 30px;
	overflow: hidden;
	text-align: left;
}

.tabs .tab {
	display: inline-block;
	border-right: 1px solid #390;
}

.tabs .tab a {
	display: inline-block;
	padding: 10px 20px;
	color: #777;
	text-decoration: none;
}

.tabs .tab a.on,
.tabs .tab a:hover {
	color: #000;
}

.tabs .tab:last-child {
	border-right-width: 0;
}

.tabs .tab:first-child a {
	padding-left: 25px;
}

.tabs .tab:last-child a {
	padding-right: 25px;
}

.tabs .tab i {
	border-radius: 10px;
	background: #555;
	padding: 2px 7px;
	margin-right: 10px;
	margin-left: -10px;
	font-size: 11px;
	font-style: normal;
}

.tabs .tab span {
	display: none;
}

.tabs .tab_title {
	overflow: auto hidden;
	scrollbar-width: none;
	position: relative;
	z-index: 2;
}

.tabs .tab_title::-webkit-scrollbar {
	display: none;
}

.tabs .tab_title label {
	float: right;
	margin-right: 10px;
	margin-top: 10px;
}

.tabs .tab_title + .tab_content {
	top: -1px;
	border-top: 1px solid #eff2f9;
}

.tabs .tab_content .tab_title {
	display: block;
	width: auto;
	white-space: nowrap;
	overflow: auto hidden !important;
}

.tabs .tab_content .tab_title .tab {
	border: 1px solid #eff2f9;
	background: #fff;
	border-right-width: 0;
}

.tabs .tab_content .tab_title .tab a {
	padding: 3px 15px;
	font-size: 12px;
	cursor: pointer;
}

.tabs .tab_content .tab_title .tab:first-child {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

.tabs .tab_content .tab_title .tab:last-child {
	border-right-width: 1px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.tabs .tab_content .tab_title .tab.open {
	background: #390;
	border-color: #390;
}

.tabs .tab.open {
	background: #000;
	border-right-width: 1px;
}

.tabs .tab.open span {
	display: inline;
}

.tabs .tab.open a {
	color: #fff;
	font-weight: normal;
	text-transform: none;
}

.tabs .tab_content {
	background: #fff;
	position: relative;
	z-index: 1;
}

.tabs .tab_content label {
	margin-right: 20px;
}

.tabs .tab_content > div {
	max-height: 135px;
	overflow: hidden auto;
	display: none;
	white-space: normal;
}

.tabs .tab_content .filters,
.tabs .tab_content > div.open {
	display: block;
}

.tabs .tab_content .graph_wrapper {
	height: 200px;
	display: block;
	overflow: hidden;
	margin-top: 10px;
}

.tabs .tab_content .loadingbg {
	background-image: url(../images/loading.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
}

.navigation {
	padding: 5px;
	width: 100%;
	position: absolute;
	display: flex;
	flex-direction: row;
	overflow: hidden auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	box-sizing: border-box;
	bottom: 0;
	align-items: center;
	justify-content: center;
	background: #390;
}

.navigation .menu {
	height: 50px;
}

.navigation::-webkit-scrollbar {
	display: none;
}

.navigation .MuiButton-root {
	padding: 3px 15px !important;
	margin: 10px 10px 0 0;
	float: right;
}

.navigation a:not(.MuiButton-root) {
	color: rgba(255, 255, 255, .9);
	text-align: center;
	margin: 0 10px;
	border-radius: 50%;
}

.navigation a.on,
.navigation button.on {
	color: #fff;
}

.navigation a:hover {
	color: #fff !important;
}

.navigation form {
	display: inline-block;
	vertical-align: super;
}

.navigation .bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
}

.navigation .logo {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	height: 120px;
	line-height: 21px;
	padding: 15px;
	transform: rotate(-90deg);
	width: 120px;
	pointer-events:none;
	margin-right: -100px;
}

.navigation .logo i {
	font-style: normal;
	font-size: 11px;
	position: relative;
	top: -10px;
	font-weight: normal;
}

.navigation .submenu {
	position: relative;
	background: #000;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	white-space: nowrap;
	padding: 10px 15px;
	margin-top: -50px;
	margin-left: 45px;
	display: none;
}

.navigation form .submenu {
	margin-top: -55px;
}

.navigation .submenu a {
	text-decoration: none;
	display: inline-block;
	padding: 0 10px;
}

.navigation .search input {
	margin: 5px 0 5px 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.navigation .search select {
	margin: 5px 0 5px -1px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.navigation .search select[value=""] {
	color: #999;
}

.navigation .search input + select {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.navigation .submenu:hover,
.navigation .submenu:focus-within,
.navigation a:hover+.submenu,
.navigation button:hover+.submenu {
	display: block;
}

.navigation button {
	height: 50px !important;
	box-sizing: border-box !important;
}

.navigation form button,
.collection form button {
	line-height: 0px;
	background: transparent;
	width: 50px;
}

.hilight,
a.hilight {
	color: #390;
	text-decoration: none;
}

a.hilight:hover {
	color: #000;
}

.gray,
a.gray {
	color: #767676;
	text-decoration: none;
}

a.gray:hover {
	color: #000;
}

.small {
	font-size: 90%;
}

.table {
	display: flex;
}

.table .col {
	margin-left: 20px;
}

.table .col:first-child {
	margin-left: 0;
}

.table .col input,
.table .col select,
.table .col textarea {
	max-width: 100%;
}

.table > .col._100 {
	width: 100%;
}

.table > .col._77 {
	width: 77%;
}

.table > .col._75 {
	width: 75%;
}

.table > .col._66 {
	width: 66.666%;
}

.table > .col._50 {
	width: 50%;
}

.table > .col._33 {
	width: 33.333%;
}

.table > .col._25 {
	width: 25%;
}

.table > .col._20 {
	width: 20%;
}

.table > .col._10 {
	width: 10%;
}

.section {
	text-align: left;
}

.section hr {
	border-color: #555;
	margin: 25px -30px 40px -30px;
}

.section h2 {
	font-weight: bold;
	margin: 0;
	word-break: break-word;
}

.section .disabled {
	opacity: 0.7;
}

.section .disabled input,
.section .disabled select,
.section .disabled textarea,
.section .disabled button {
	pointer-events: none;
}

.section > .actions {
	float: right;
	margin-top: -20px;
	margin-right: -15px;
}

.section > .info {
	margin: 5px 0 0 0;
}

.section > .info a {
	color: rgb(51,51,51);
	width: auto;
	padding: 0;
	margin-right: 15px;
	font-family: sans-serif !important;
	font-size: 90%;
}

.section > .info a:before {
	margin-right: 10px;
	font-family: "Font Awesome 6 Pro" !important;
}

.section > .info a:hover {
	color: #000;
}

.section > .summary {
	margin-top: 10px;
}

.section > .summary p {
	margin: 0;
	display: inline-block;
	margin-right: 15px;
}

.section.cont .table .fa {
	float: left;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 28px;
	background: #390;
	text-align: center;
	line-height: 60px;
	margin: 0 20px 0px 0;
	color: #fff;
}

.section.cont .table .fa-money-bill-trend-up {
	background: #3999cc;
}

.section.cont .table .fa-money-bills {
	background: #ff9800;
}

.section.cont p,
.section.cont h2 {
	margin-top: 5px;
	margin-bottom: 5px;
}

a.fa,
a.far,
button.fa {
	width: 20px;
	height: 20px;
	display: inline-block;
	text-decoration: none;
	color: #454545;
	padding: 15px;
	font-size: 20px;
	border: 0;
	background: transparent;
	box-sizing: content-box;
}

a.fa.load_more {
	margin: 0 auto;
	display: block;
}

a.fa span,
a.far span,
button.fa span {
	display: none;
}

a.fa:hover,
a.far:hover,
button.fa:hover {
	color: #390;
	cursor: pointer;
	text-decoration: none;
}

.MuiDialog-container {
	padding: 30px !important;
	box-sizing: border-box !important;
}

@media (max-width: 780px) {
	body > h1 {
		margin-bottom: 0;
		margin-left: 25px;
	}

	body > .logout {
		margin: -15px 15px;
	}

	body .fab {
		bottom: 15px;
		right: 12px;
	}

	.section > a.fa,
	.section > a.far {
		padding: 10px 15px;
	}

	.section .summary p {
		display: flex;
		gap: 5px;
		margin: 0;
		white-space: nowrap;
	}

	.section .summary p b {
		width: 100% !important;
		float: none;
		text-align: right;
		margin-right: 0;
	}

	.section .summary p > span {
		margin-left: 0;
	}

	.navigation > .fa-ban {
		clear: both;
	}

	.navigation form input {
		width: 100px;
	}

	.navigation .bottom {
		height: 315px;
	}

	.section,
	.form {
		margin: 15px 10px;
	}

	.tabs .tab_title label {
		float: none;
		display: block;
		margin: 0 0 10px 0;
	}

	.table {
		display: block;
	}

	.table > .col {
		margin-top: 30px;
		margin-left: 0;
		width: auto !important;
	}

	.table > .col:after {
		content: "";
		clear: both;
		display: block;
	}

	.table .col:first-child {
		margin-top: 0;
	}

	.MuiDialog-container {
		padding: 10px 0 !important;
		box-sizing: border-box !important;
	}

	.MuiDialogContent-root .rarity {
		float: none;
		margin: 5px 0 15px -15px;
	}

	.MuiDialogContent-root .MuiButton-root {
		margin-bottom: 5px;
	}

	body .MuiSnackbar-anchorOriginBottomCenter {
		bottom: 25px;
	}
}

.MuiContent-root form p input:not([type="checkbox"]):not([type="radio"]),
.MuiContent-root form p textarea,
.MuiContent-root form p select {
	width: 100%;
	box-sizing: border-box;
}

.MuiTypography-root {
	margin: 0;
}

.App {
 text-align:center
}

.MuiPaper-rounded {
	border-radius: 25px !important;
}

.MuiTouchRipple-root {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.MuiTouchRipple-ripple {
  opacity: 0;
  position: absolute;
}
.MuiTouchRipple-rippleVisible {
  opacity: 0.3;
  animation: MuiTouchRipple-keyframes-enter 550ms cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}
.MuiTouchRipple-ripplePulsate {
  animation-duration: 200ms;
}
.MuiTouchRipple-child {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  border-radius: 50%;
  background-color: currentColor;
}
.MuiTouchRipple-childLeaving {
  opacity: 0;
  animation: MuiTouchRipple-keyframes-exit 550ms cubic-bezier(0.4, 0, 0.2, 1);
}
.MuiTouchRipple-childPulsate {
  top: 0;
  left: 0;
  position: absolute;
  animation: MuiTouchRipple-keyframes-pulsate 2500ms cubic-bezier(0.4, 0, 0.2, 1) 200ms infinite;
}
@-moz-keyframes MuiTouchRipple-keyframes-enter {
  0% {
    opacity: 0.1;
    transform: scale(0);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}
@-moz-keyframes MuiTouchRipple-keyframes-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes MuiTouchRipple-keyframes-pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}


.MuiButtonBase-root {
  color: inherit;
  border: 0;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  outline: 0;
  padding: 0;
  position: relative;
  align-items: center;
  border-radius: 0;
  vertical-align: middle;
  -moz-appearance: none;
  justify-content: flex-start;
  text-decoration: none;
  -moz-user-select: none;
  background-color: transparent;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.MuiButtonBase-root::-moz-focus-inner {
  border-style: none;
}
.MuiButtonBase-root.Mui-disabled {
  cursor: default;
  pointer-events: none;
}
@media print {
  .MuiButtonBase-root {
    color-adjust: exact;
  }
}


.MuiButton-root:not(.fa) {
  color: #fff !important;
  padding: 10px 25px !important;
  font-size: 0.875rem;
  min-width: 64px !important;
  box-sizing: border-box;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  font-weight: 700 !important;
  line-height: 1.75;
  border-radius: 25px !important;
  letter-spacing: normal !important;
  border: 0 !important;
  text-transform: none;
  font-family: sans-serif !important;
  width: auto !important;
  cursor: pointer;
}
.MuiButton-root:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
}
.MuiButton-root.Mui-disabled {
  color: rgba(255, 255, 255, 0.3);
}
@media (hover: none) {
  .MuiButton-root:hover {
    background-color: transparent;
  }
}
.MuiButton-root:hover.Mui-disabled {
  background-color: transparent;
}
.MuiButton-label {
  width: 100%;
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  text-transform: none !important;
  font-family: sans-serif !important;
}
.MuiButton-text {
  padding: 6px 8px;
}
.MuiButton-textPrimary {
  color: #3f51b5;
}
.MuiButton-textPrimary:hover {
  background-color: rgba(63, 81, 181, 0.08);
}
@media (hover: none) {
  .MuiButton-textPrimary:hover {
    background-color: transparent;
  }
}
.MuiButton-textSecondary {
  color: #f50057;
}
.MuiButton-textSecondary:hover {
  background-color: rgba(245, 0, 87, 0.08);
}
@media (hover: none) {
  .MuiButton-textSecondary:hover {
    background-color: transparent;
  }
}
.MuiButton-outlined {
  border: 1px solid rgba(255, 255, 255, 0.23);
  padding: 5px 15px;
}
.MuiButton-outlined.Mui-disabled {
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.MuiButton-outlinedPrimary {
  color: #3f51b5;
  border: 1px solid rgba(63, 81, 181, 0.5);
}
.MuiButton-outlinedPrimary:hover {
  border: 1px solid #3f51b5;
  background-color: rgba(63, 81, 181, 0.08);
}
@media (hover: none) {
  .MuiButton-outlinedPrimary:hover {
    background-color: transparent;
  }
}
.MuiButton-outlinedSecondary {
  color: #f50057;
  border: 1px solid rgba(245, 0, 87, 0.5);
}
.MuiButton-outlinedSecondary:hover {
  border: 1px solid #f50057;
  background-color: rgba(245, 0, 87, 0.08);
}
.MuiButton-outlinedSecondary.Mui-disabled {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (hover: none) {
  .MuiButton-outlinedSecondary:hover {
    background-color: transparent;
  }
}
.MuiButton-contained {
  color: rgba(0, 0, 0, 0.87);
  box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
  background: #3f51b5 !important;
  color: #fff !important;
  box-shadow: none;
}
.MuiButton-contained:hover {
  box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
  background-color: #d5d5d5;
  background: #303f9f !important;
  box-shadow: none;
}
.MuiButton-contained.Mui-focusVisible {
  box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);
  box-shadow: none;
}
.MuiButton-contained:active {
  box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
  box-shadow: none;
}
.MuiButton-contained.Mui-disabled {
  color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.12);
  background: #303030 !important;
}
@media (hover: none) {
  .MuiButton-contained:hover {
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
    background-color: #e0e0e0;
    background: #303f9f !important;
    box-shadow: none;
  }
}
.MuiButton-contained:hover.Mui-disabled {
  background-color: rgba(255, 255, 255, 0.12) !important;
}
.MuiButton-containedPrimary {
  color: #fff;
  background: #52ae30 !important;
}
.MuiButton-containedPrimary:hover {
  background-color: #303f9f;
  background: #4ba12c !important;
}
@media (hover: none) {
  .MuiButton-containedPrimary:hover {
    background-color: #3f51b5;
    background: #4ba12c !important;
  }
}
.MuiButton-containedSecondary {
  color: #fff;
  background-color: #f50057;
}
.MuiButton-containedSecondary:hover {
  background-color: #c51162;
}
@media (hover: none) {
  .MuiButton-containedSecondary:hover {
    background-color: #f50057;
  }
}
.MuiButton-disableElevation {
  box-shadow: none;
}
.MuiButton-disableElevation:hover {
  box-shadow: none;
}
.MuiButton-disableElevation.Mui-focusVisible {
  box-shadow: none;
}
.MuiButton-disableElevation:active {
  box-shadow: none;
}
.MuiButton-disableElevation.Mui-disabled {
  box-shadow: none;
}
.MuiButton-colorInherit {
  color: inherit;
  border-color: currentColor;
}
.MuiButton-textSizeSmall {
  padding: 4px 5px;
  font-size: 0.8125rem;
}
.MuiButton-textSizeLarge {
  padding: 8px 11px;
  font-size: 0.9375rem;
}
.MuiButton-outlinedSizeSmall {
  padding: 3px 9px;
  font-size: 0.8125rem;
}
.MuiButton-outlinedSizeLarge {
  padding: 7px 21px;
  font-size: 0.9375rem;
}
.MuiButton-containedSizeSmall {
  padding: 4px 10px;
  font-size: 0.8125rem;
}
.MuiButton-containedSizeLarge {
  padding: 8px 22px;
  font-size: 0.9375rem;
}
.MuiButton-fullWidth {
  width: 100%;
}
.MuiButton-startIcon {
  display: inherit;
  margin-left: -4px;
  margin-right: 8px;
}
.MuiButton-startIcon.MuiButton-iconSizeSmall {
  margin-left: -2px;
}
.MuiButton-endIcon {
  display: inherit;
  margin-left: 8px;
  margin-right: -4px;
}
.MuiButton-endIcon.MuiButton-iconSizeSmall {
  margin-right: -2px;
}
.MuiButton-iconSizeSmall > *:first-child {
  font-size: 18px;
}
.MuiButton-iconSizeMedium > *:first-child {
  font-size: 20px;
}
.MuiButton-iconSizeLarge > *:first-child {
  font-size: 22px;
}


.MuiSnackbar-root {
  left: 25px;
  right: 25px;
  display: flex;
  z-index: 1400;
  position: fixed;
  align-items: center;
  justify-content: center;
  white-space: pre-wrap;
  word-break: break-word;
}
.MuiSnackbar-anchorOriginTopCenter {
  top: 8px;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginTopCenter {
    top: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.MuiSnackbar-anchorOriginBottomCenter {
  bottom: 30px;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginBottomCenter {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.MuiSnackbar-anchorOriginTopRight {
  top: 8px;
  justify-content: flex-end;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginTopRight {
    top: 24px;
    left: auto;
    right: 24px;
  }
}
.MuiSnackbar-anchorOriginBottomRight {
  bottom: 8px;
  justify-content: flex-end;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginBottomRight {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}
.MuiSnackbar-anchorOriginTopLeft {
  top: 8px;
  justify-content: flex-start;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginTopLeft {
    top: 24px;
    left: 24px;
    right: auto;
  }
}
.MuiSnackbar-anchorOriginBottomLeft {
  bottom: 8px;
  justify-content: flex-start;
}
@media (min-width:600px) {
  .MuiSnackbar-anchorOriginBottomLeft {
    left: 24px;
    right: auto;
    bottom: 24px;
  }
}


@media print {
  .MuiDialog-root,
  .wallet-adapter-modal {
    position: absolute !important;
  }
}
.MuiDialog-scrollPaper,
.wallet-adapter-modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.MuiDialog-scrollBody {
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}
.MuiDialog-scrollBody:after {
  width: 0;
  height: 100%;
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.MuiDialog-container {
  height: 100%;
  outline: 0;
  opacity: 1;
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
@media print {
  .MuiDialog-container {
    height: auto;
  }
}
.MuiDialog-paper {
  margin: 32px;
  position: relative;
  overflow-y: auto;
  transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
@media print {
  .MuiDialog-paper {
    box-shadow: none;
    overflow-y: visible;
  }
}
.MuiDialog-paperScrollPaper {
  display: flex;
  max-height: calc(100% - 64px);
  flex-direction: column;
}
.MuiDialog-paperScrollBody {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.MuiDialog-paperWidthFalse {
  max-width: calc(100% - 64px);
}
.MuiDialog-paperWidthXs {
  max-width: 444px;
}
@media (max-width:507.95px) {
  .MuiDialog-paperWidthXs.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}
.MuiDialog-paperWidthSm {
  max-width: 600px;
}
@media (max-width:663.95px) {
  .MuiDialog-paperWidthSm.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}
.MuiDialog-paperWidthMd {
  max-width: 960px;
}
@media (max-width:1023.95px) {
  .MuiDialog-paperWidthMd.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}
.MuiDialog-paperWidthLg {
  max-width: 1280px;
}
@media (max-width:1343.95px) {
  .MuiDialog-paperWidthLg.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}
.MuiDialog-paperWidthXl {
  max-width: 1920px;
}
@media (max-width:1983.95px) {
  .MuiDialog-paperWidthXl.MuiDialog-paperScrollBody {
    max-width: calc(100% - 64px);
  }
}
.MuiDialog-paperFullWidth {
  width: calc(100% - 64px);
}
.MuiDialog-paperFullScreen {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  max-height: none;
  border-radius: 0;
}
.MuiDialog-paperFullScreen.MuiDialog-paperScrollBody {
  margin: 0;
  max-width: 100%;
}


.jssS .MuiDialog-paper {
  margin: 10px;
  max-height: 100%;
  box-shadow: 0 16px 48px rgb(73 92 136 / 15%);
}
.jssS .MuiDialog-paper img {
	display: block;
}
.jssS .MuiDialogTitle-root {
  background-color: #1b82e3;
  color: #fff;
}
.jssS .MuiDialogContent-root {
  padding: 0;
  background: #fff;
}
.jssS .MuiDialogContent-root .MuiContent-root {
  padding: 30px;
}
.jssS .MuiDialogContent-root .MuiList-root {
  padding: 0;
  background: #212121;
}
.jssS .MuiDialogContent-root .MuiListItem-root {
  padding: 0 !important;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}
.jssS .MuiDialogContent-root .MuiListItem-root:hover {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1), 0 1px 0 0 rgba(255, 255, 255, 0.05);
}
.jssS .MuiDialogContent-root .MuiListItem-root .MuiButton-endIcon {
  margin: 0;
}
.jssS .MuiDialogContent-root .MuiListItem-root .MuiButton-root {
  padding: 8px 24px;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  justify-content: space-between;
  background: transparent;
}
.jssS .MuiDialogContent-root .MuiListItem-root .MuiButton-root:hover {
	background-color: rgba(255, 255, 255, 0.08);
}
.jssS .MuiDialogContent-root .MuiListItem-root .MuiSvgIcon-root {
  color: #fff;
}
.jssS .MuiDialogContent-root .MuiCollapse-root .MuiList-root {
	background: #212121;
}
.jssS .MuiDialogTitle-root .MuiTypography-root {
  display: flex;
  line-height: 40px;
  justify-content: space-between;
  word-break: break-word;
}
.jssS .MuiDialogTitle-root .MuiIconButton-root {
  color: #fff;
  padding: 8px;
  flex-shrink: 1;
  margin-right: -8px;
}

.MuiDialogTitle-root .MuiIconButton-root svg path {
	fill: #fff;
}

.MuiSvgIcon-root {
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 1.5rem;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  flex-shrink: 0;
  -moz-user-select: none;
}
.MuiSvgIcon-colorPrimary {
  color: #3f51b5;
}
.MuiSvgIcon-colorSecondary {
  color: #f50057;
}
.MuiSvgIcon-colorAction {
  color: #fff;
}
.MuiSvgIcon-colorError {
  color: #f44336;
}
.MuiSvgIcon-colorDisabled {
  color: rgba(255, 255, 255, 0.3);
}
.MuiSvgIcon-fontSizeInherit {
  font-size: inherit;
}
.MuiSvgIcon-fontSizeSmall {
  font-size: 1.25rem;
}
.MuiSvgIcon-fontSizeLarge {
  font-size: 2.1875rem;
}

.MuiDialog-root {
	position: fixed;
	z-index: 1300;
	inset: 0px;
}

.MuiBackdrop-root {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: -1;
  position: fixed;
  align-items: center;
  justify-content: center;
  background-color: rgba(236, 239, 246, 0.7);
  -webkit-tap-highlight-color: transparent;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiBackdrop-invisible {
  background-color: transparent;
}


.MuiIconButton-root {
  flex: 0 0 auto;
  color: #fff;
  padding: 12px;
  overflow: visible;
  font-size: 1.5rem;
  text-align: center;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 50% !important;
  cursor: pointer;
}
.MuiIconButton-root:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.MuiIconButton-root.Mui-disabled {
  color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
@media (hover: none) {
  .MuiIconButton-root:hover {
    background-color: transparent;
  }
}
.MuiIconButton-edgeStart {
  margin-left: -12px;
}
.MuiIconButton-sizeSmall.MuiIconButton-edgeStart {
  margin-left: -3px;
}
.MuiIconButton-edgeEnd {
  margin-right: -12px;
}
.MuiIconButton-sizeSmall.MuiIconButton-edgeEnd {
  margin-right: -3px;
}
.MuiIconButton-colorInherit {
  color: inherit;
}
.MuiIconButton-colorPrimary {
  color: #3f51b5;
}
.MuiIconButton-colorPrimary:hover {
  background-color: rgba(63, 81, 181, 0.08);
}
@media (hover: none) {
  .MuiIconButton-colorPrimary:hover {
    background-color: transparent;
  }
}
.MuiIconButton-colorSecondary {
  color: #f50057;
}
.MuiIconButton-colorSecondary:hover {
  background-color: rgba(245, 0, 87, 0.08);
}
@media (hover: none) {
  .MuiIconButton-colorSecondary:hover {
    background-color: transparent;
  }
}
.MuiIconButton-sizeSmall {
  padding: 3px;
  font-size: 1.125rem;
}
.MuiIconButton-label {
  width: 100%;
  display: flex;
  align-items: inherit;
  justify-content: inherit;
}


.MuiDialogTitle-root {
  flex: 0 0 auto;
  margin: 0;
  padding: 15px 30px;
}


.MuiDialogContent-root {
  flex: 1 1 auto;
  padding: 8px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.MuiDialogContent-root:first-child {
  padding-top: 20px;
}
.MuiDialogContent-dividers {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.MuiDialogContent-root .MuiButton-root {
	white-space: pre;
}


.MuiList-root {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}
.MuiList-padding {
  padding-top: 8px;
  padding-bottom: 8px;
}
.MuiList-subheader {
  padding-top: 0;
}


.MuiCollapse-root {
  height: 0;
  overflow: hidden;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiCollapse-entered {
  height: auto;
  overflow: visible;
}
.MuiCollapse-hidden {
  visibility: hidden;
}
.MuiCollapse-wrapper {
  display: flex;
}
.MuiCollapse-wrapperInner {
  width: 100%;
}


.MuiListItem-root {
  width: 100%;
  display: flex;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  justify-content: flex-start;
  text-decoration: none;
}
.MuiListItem-root.Mui-focusVisible {
  background-color: rgba(255, 255, 255, 0.16);
}
.MuiListItem-root.Mui-selected, .MuiListItem-root.Mui-selected:hover {
  background-color: rgba(255, 255, 255, 0.16);
}
.MuiListItem-root.Mui-disabled {
  opacity: 0.5;
}
.MuiListItem-container {
  position: relative;
}
.MuiListItem-dense {
  padding-top: 4px;
  padding-bottom: 4px;
}
.MuiListItem-alignItemsFlexStart {
  align-items: flex-start;
}
.MuiListItem-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-clip: padding-box;
}
.MuiListItem-gutters {
  padding-left: 16px;
  padding-right: 16px;
}
.MuiListItem-button {
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.MuiListItem-button:hover {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
}
@media (hover: none) {
  .MuiListItem-button:hover {
    background-color: transparent;
  }
}
.MuiListItem-secondaryAction {
  padding-right: 48px;
}


.MuiAlert-root {
  display: flex;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  border-radius: 25px !important;
  background-color: transparent;
}
.MuiAlert-standardSuccess {
  color: #fff !important;
  background-color: #52ae30 !important;
}
.MuiAlert-standardSuccess .MuiAlert-icon,
.MuiAlert-standardSuccess a {
  color: #fff !important;
}
.MuiAlert-standardInfo {
  color: #fff !important;
  background-color: #2196f3 !important;
}
.MuiAlert-standardInfo .MuiAlert-icon,
.MuiAlert-standardInfo a {
  color: #fff !important;
}
.MuiAlert-standardWarning {
  color: #fff !important;
  background-color: #ff9800 !important;
}
.MuiAlert-standardWarning .MuiAlert-icon,
.MuiAlert-standardWarning a {
  color: #fff !important;
}
.MuiAlert-standardError {
  color: #fff !important;
  background-color: #f44336 !important;
}
.MuiAlert-standardError .MuiAlert-icon,
.MuiAlert-standardError a {
  color: #fff !important;
}
.MuiAlert-outlinedSuccess {
  color: rgb(183, 223, 185);
  border: 1px solid #52ae30;
}
.MuiAlert-outlinedSuccess .MuiAlert-icon {
  color: #52ae30;
}
.MuiAlert-outlinedInfo {
  color: rgb(166, 213, 250);
  border: 1px solid #2196f3;
}
.MuiAlert-outlinedInfo .MuiAlert-icon {
  color: #2196f3;
}
.MuiAlert-outlinedWarning {
  color: rgb(255, 213, 153);
  border: 1px solid #ff9800;
}
.MuiAlert-outlinedWarning .MuiAlert-icon {
  color: #ff9800;
}
.MuiAlert-outlinedError {
  color: rgb(250, 179, 174);
  border: 1px solid #f44336;
}
.MuiAlert-outlinedError .MuiAlert-icon {
  color: #f44336;
}
.MuiAlert-filledSuccess {
  color: #fff;
  font-weight: 500;
  background-color: #52ae30;
}
.MuiAlert-filledInfo {
  color: #fff;
  font-weight: 500;
  background-color: #2196f3;
}
.MuiAlert-filledWarning {
  color: #fff;
  font-weight: 500;
  background-color: #ff9800;
}
.MuiAlert-filledError {
  color: #fff;
  font-weight: 500;
  background-color: #f44336;
}
.MuiAlert-icon {
  display: flex;
  opacity: 0.9;
  padding: 7px 0;
  font-size: 22px;
  margin-right: 12px;
}
.MuiAlert-message {
  margin: 8px 0;
  overflow-y: auto;
  max-height: 150px;
  scrollbar-width: none;
}
.MuiAlert-message::-webkit-scrollbar {
	display: none;
}
.MuiAlert-action {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: -8px;
  padding-left: 16px;
}

.tipsy {
	padding: 5px;
	font-size: 12px; 
	position: absolute;
	z-index: 98;
}

.tipsy .MuiButton-root {
	padding: 0 !important;
	background: transparent !important;
	font-weight: normal !important;
	font-size: 11px !important;
	margin: -10px 0 0 0 !important;
}

.tipsy .MuiButton-root b {
	display: none;
}

.tipsy.ontop {
	z-index: 9999;
}

.tipsy-outer { 
	padding: 10px 15px; 
	max-width: 250px; 
	word-wrap: break-word;
	border-radius: 16px;
	color: #fff;
	background-color: #1b82e3;
	cursor: pointer;
	box-shadow: 0 5px 20px 0 rgba(0,0,0,.08);
}

.tipsy-inner b + i.right,
.MuiContent-root b + i.right {
	margin-left: 10px;
}
.tipsy-inner b + i.right+br,
.MuiContent-root b + i.right+br {
	clear: both;
}

.tipsy-close-button {
	position: absolute;
	width: 100%;
	height: 1px;
}

.tipsy-close-button a {
	display: block;
	width: 30px;
	height: 30px;
	margin: -42px 25px 0 auto;
}

.tipsy-close-button span {
	display: none;
}

.tipsy-arrow {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #1b82e3;
	transform: rotate(45deg);
}

.tipsy-big {
	font-size: 13px;
}

.tipsy-big .tipsy-outer {
	max-width: none;
	padding: 30px 30px;
	text-align: left;
	background: #000;
	-webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}

.tipsy-n .tipsy-arrow {
	top: 0; 
	left: 50%; 
	margin-left: -4px;
}

.tipsy-nw .tipsy-arrow {
	top: 0; 
	left: 10px;
}

.tipsy-ne .tipsy-arrow {
	top: 0; right: 10px;
}

.tipsy-s .tipsy-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -4px;
	background-position: bottom left;
}

.tipsy-sw .tipsy-arrow {
	bottom: 0;
	left: 10px;
	background-position: bottom left;
}

.tipsy-se .tipsy-arrow {
	bottom: 0;
	right: 10px;
	background-position: bottom left;
}

.tipsy-e .tipsy-arrow {
	top: 50%; 
	margin-top: -4px; 
	right: 0; 
	width: 10px; 
	height: 10px; 
	background-position: top right;
}

.tipsy-w .tipsy-outer {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.tipsy-w .tipsy-arrow {
	top: 50%;
	margin-top: -4px;
	left: 0;
	width: 5px;
	height: 9px;
}