.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  background-color: #1b1b1b;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #c3c3c3;
  font-size: 24px;
  line-height: 130%;
  font-weight: 300;
  text-transform: none;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #727272;
  font-size: 16px;
  line-height: 130%;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #727272;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  text-transform: uppercase;
}

h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

h5 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

h6 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

a {
  color: #3f3f3f;
  font-weight: 400;
  text-decoration: none;
}

img {
  max-width: 100%;
}

blockquote {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-left: 5px solid #b6c5d4;
  font-size: 18px;
  line-height: 22px;
}

.button {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-color: #3bfc14;
  border-radius: 20px;
  background-color: transparent;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  background-color: #3bfc14;
  color: #282828;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f8f9fb;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.text-field {
  padding: 20px 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #e1e6f0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.text-field::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 20px;
}

.text-field:-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
}

.text-field::-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
}

.text-field::placeholder {
  font-size: 14px;
  line-height: 20px;
}

._2-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

._2-grid.margin200 {
  margin-bottom: 0px;
}

.dashboard {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dashboard-sidebar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: none;
  width: auto;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #1b1b1b;
}

.sidebar-content {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  z-index: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: 250px;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.nav-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
  padding: 10px 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid transparent;
  opacity: 0.25;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-link:hover {
  border-left-color: #95fdff;
  opacity: 1;
  color: #95fdff;
}

.nav-link:focus {
  border-left-color: #95fdff;
  opacity: 1;
}

.nav-link.w--current {
  border-left: 2px solid #95fdff;
  opacity: 1;
  color: #95fdff;
}

.sidebar-logo-wrapper {
  padding: 30px 24px 60px;
}

.sidebar-logo {
  max-height: 40px;
  max-width: 100%;
}

.nav-icon {
  margin-right: 20px;
}

.nav-divider {
  height: 1px;
  margin: 24px;
  background-color: rgba(255, 255, 255, 0.09);
}

.nav-divider.neongreen {
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.dropdown {
  margin-right: 1px;
  margin-left: 0px;
}

.mobile-bar {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 600;
  display: none;
  padding: 16px 24px;
  border-top: 1px solid #e1e6f0;
}

.mobile-bar-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.lottie-menu-icon {
  width: 32px;
  height: 32px;
  margin-top: -3px;
}

.caption {
  margin-bottom: 2px;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.caption.neongreen {
  color: #fff;
}

.caption.neongreen.blue {
  color: #6ea7fd;
}

.caption.neongreen.cyan {
  color: #6efdfd;
}

.module {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 10px;
  background-color: transparent;
  color: #66d4f9;
  text-align: center;
}

.module.black {
  padding-top: 20px;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, hsla(0, 0%, 100%, 0.05), transparent), radial-gradient(circle farthest-corner at 100% 100%, rgba(255, 255, 255, 0.06), hsla(0, 0%, 100%, 0)), radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.06), hsla(0, 0%, 100%, 0.02)), -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.8)), to(rgba(17, 17, 17, 0.8)));
  background-image: radial-gradient(circle farthest-corner at 0% 0%, hsla(0, 0%, 100%, 0.05), transparent), radial-gradient(circle farthest-corner at 100% 100%, rgba(255, 255, 255, 0.06), hsla(0, 0%, 100%, 0)), radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.06), hsla(0, 0%, 100%, 0.02)), linear-gradient(180deg, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8));
  color: #fff;
}

.content-chart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.numbers-container {
  position: relative;
  width: 100%;
}

.numbers-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.number {
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #66d4f9;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}

.number.big {
  color: #fff;
  font-size: 50px;
}

.number.big.white {
  color: #fff;
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
}

.number.big.white.blue {
  color: #6ea7fd;
  font-size: 20px;
}

.number.big.white.cyan {
  color: #6efdfd;
  font-size: 20px;
}

.main-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.table-module {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.table-title {
  display: inline;
  color: #fff;
  font-weight: 300;
  text-align: left;
}

.table-title.tab-title {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.text-primary-blue {
  color: #763ff9;
}

.dashboard-container {
  position: relative;
  margin: 40px 20px 40px 200px;
}

.table-content {
  position: relative;
  display: inline-block;
  width: 300px;
}

.back-to-home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.back-to-home.text-primary-blue {
  color: #763ff9;
}

.alert-module-link {
  margin-left: 48px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.presentation-module {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 1px 1px 0 rgba(118, 135, 154, 0.24), 0 3px 8px 0 rgba(118, 135, 154, 0.08);
  -webkit-transition: box-shadow 200ms ease;
  transition: box-shadow 200ms ease;
}

.presentation-module:hover {
  box-shadow: 0 1px 1px 0 rgba(118, 135, 154, 0.24), 0 8px 15px 0 rgba(118, 135, 154, 0.2);
}

.footer {
  margin-top: 24px;
  color: #c3c3c3;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  text-align: center;
}

.footer-link-123 {
  color: #b6c5d4;
  font-weight: 500;
}

.banner-avatar-name {
  margin-bottom: 0px;
  line-height: 20px;
}

.banner-avatar-caption {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #627183;
  font-size: 14px;
  line-height: 22px;
}

.banner-avatar-image {
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-avatar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.positiv {
  color: #3bfc14;
}

.text-block-3 {
  text-transform: uppercase;
}

.tab-graph {
  position: relative;
  width: 100%;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.tab-graph.margintop {
  display: block;
  margin-top: 40px;
}

.table-list-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.table-row-tab {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 2.25fr 1.25fr 1.25fr;
  grid-template-columns: 2.25fr 1.25fr 1.25fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  font-size: 14px;
}

.tab-price {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  text-align: right;
}

.tab-positiv {
  color: #01dda5;
  font-size: 12px;
}

.certik-logo {
  width: 100px;
  margin-right: 10px;
  padding-top: 6px;
  padding-bottom: 8px;
}

.faq-item-basic {
  left: auto;
  right: auto;
  display: block;
  padding: 10px;
  border-radius: 12px;
  background-color: rgba(243, 245, 251, 0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.milestone-circle {
  position: absolute;
  top: auto;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  min-height: 50px;
  min-width: 50px;
  margin: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.46);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: #111;
}

.social-icon:hover {
  background-color: #fff;
  opacity: 1;
  color: #191c53;
}

.social-icon.small {
  width: 30px;
  height: 30px;
  min-height: 30px;
  min-width: 30px;
  background-color: transparent;
  opacity: 0.5;
  color: #fff;
}

.social-icon.small:hover {
  opacity: 1;
}

.icon-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-app {
  width: 100%;
  height: 80px;
  background-color: transparent;
}

.container-3 {
  position: relative;
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.dropdown-2 {
  width: 100%;
  max-width: 238px;
}

.image-4 {
  height: 33px;
}

.app-logo-link {
  position: fixed;
  left: 20px;
  top: 20px;
  width: 160px;
  height: 34px;
}

.select-coin-from {
  position: relative;
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: hsla(0, 0%, 100%, 0.06);
  border-radius: 20px;
  background-color: #111;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.06), transparent);
  color: #727272;
  cursor: pointer;
}

.select-coin-from:hover {
  border-color: #e03efd;
}

.connect-wallet {
  position: absolute;
  top: 20px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 20px;
  background-image: linear-gradient(120deg, #95fdff, #66d4f9);
  color: #191c53;
  cursor: pointer;
}

.connect-wallet:hover {
  border-style: solid;
  border-color: #95fdff;
  background-image: none;
  color: #95fdff;
}

.connect-wallet.neongreen {
  border-width: 2px;
  border-color: #18161a;
  background-image: linear-gradient(135deg, #3bfc14, #1ba300);
  color: #000;
}

.connect-wallet.neongreen:hover {
  border-width: 2px;
  border-color: #3bfc14;
  background-image: none;
  color: #3bfc14;
}

.text-block-9 {
  position: relative;
  display: inline-block;
  height: 34px;
  padding-right: 10px;
  font-size: 14px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.icon-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 32px;
}

.div-block-327 {
  display: block;
  overflow: hidden;
  width: 34px;
  height: 32px;
  padding-right: 5px;
  padding-left: 10px;
  line-height: 32px;
}

.app-sidebar {
  position: fixed;
  left: 0%;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.app-sidebar-content {
  position: fixed;
  left: 0%;
  top: 120px;
  right: auto;
  bottom: auto;
  z-index: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 180px;
  padding-top: 20px;
  padding-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: hsla(0, 0%, 6%, 0.38);
  background-image: none;
  box-shadow: 0 0 3px 0 rgba(255, 255, 255, 0.14);
}

.nav-link-app {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 5px;
  padding: 5px 10px 5px 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid transparent;
  opacity: 0.25;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link-app:hover {
  border-left-color: #3bfc14;
  opacity: 1;
  color: #3bfc14;
}

.nav-link-app:focus {
  border-left-color: #3bfc14;
  opacity: 1;
}

.nav-link-app.w--current {
  border-left: 2px solid #3bfc14;
  opacity: 1;
  color: #3bfc14;
}

.nav-link-app.w--current:hover {
  color: #3bfc14;
}

.nav-link-app.w--current:active {
  color: #3bfc14;
}

.nav-link-app.w--current:focus {
  color: #3bfc14;
}

.nav-link-app.w--current:focus-visible {
  color: #3bfc14;
}

.nav-link-app.w--current[data-wf-focus-visible] {
  color: #3bfc14;
}

.app-nav-icon {
  overflow: hidden;
  margin-right: 15px;
}

.icon-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-13 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-14 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-15 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-18 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-19 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-328-copy {
  display: block;
  width: 100%;
  height: 32px;
  padding-left: 5px;
  line-height: 32px;
}

.connect-wallet-copy {
  position: absolute;
  top: 20px;
  right: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 20px;
  background-image: linear-gradient(120deg, #95fdff, #66d4f9);
  color: #191c53;
  cursor: pointer;
}

.connect-wallet-copy:hover {
  border-style: solid;
  border-color: #95fdff;
  background-image: none;
  color: #95fdff;
}

.connect-wallet-copy.neongreen {
  right: 20px;
  width: 120px;
  border-width: 2px;
  border-color: #18161a;
  background-image: linear-gradient(135deg, #3bfc14, #1ba300);
  color: #000;
}

.connect-wallet-copy.neongreen:hover {
  border-width: 2px;
  border-color: #3bfc14;
  background-image: none;
  color: #3bfc14;
}

.page-wrapper {
  overflow: hidden;
  min-height: 100vh;
  background-image: radial-gradient(circle closest-corner at 0% 50%, hsla(0, 0%, 47.8%, 0.06), hsla(0, 0%, 100%, 0)), linear-gradient(135deg, #111114, #1b1b1f);
}

.body-standard {
  min-height: 100vh;
  background-color: #000;
  background-image: radial-gradient(circle closest-corner at 70% 70%, hsla(0, 0%, 47.8%, 0.22), hsla(0, 0%, 100%, 0)), radial-gradient(circle closest-corner at 30% 20%, rgba(122, 122, 122, 0.18), rgba(255, 255, 255, 0)), linear-gradient(135deg, #111114, #1b1b1f 95%);
}

.certik-link {
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.certik-link:hover {
  opacity: 0.41;
}

.header-center {
  position: relative;
  height: 40px;
  margin-top: 20px;
  margin-right: 160px;
  margin-left: 200px;
  text-align: right;
}

.btn-link-app {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 20px;
  padding: 2px 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 20px;
  opacity: 0.25;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-link-app:hover {
  border-color: #3bfc14;
  opacity: 1;
  color: #3bfc14;
}

.btn-link-app:focus {
  border-color: #3bfc14;
  opacity: 1;
}

.btn-link-app.w--current {
  border-left: 2px solid #3bfc14;
  opacity: 1;
  color: #3bfc14;
}

.btn-link-app.w--current:hover {
  color: #3bfc14;
}

.btn-link-app.w--current:active {
  color: #3bfc14;
}

.btn-link-app.w--current:focus {
  color: #3bfc14;
}

.btn-link-app.w--current:focus-visible {
  color: #3bfc14;
}

.btn-link-app.w--current[data-wf-focus-visible] {
  color: #3bfc14;
}

.div-load {
  position: fixed;
  z-index: 10000;
  display: none;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.08), transparent), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.89)), to(rgba(0, 0, 0, 0.89)));
  background-image: radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.08), transparent), linear-gradient(180deg, rgba(0, 0, 0, 0.89), rgba(0, 0, 0, 0.89));
}

.load-logo {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-link-app {
  opacity: 0.5;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link-app:hover {
  opacity: 1;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-line-small {
  width: 1px;
  height: 16px;
  margin-right: 24px;
  margin-left: 24px;
  background-color: #e4e6f1;
  opacity: 0.5;
}

.container-large-2 {
  position: relative;
  z-index: 5;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.footer-app {
  position: relative;
  padding: 20px;
}

.text-block-22 {
  line-height: 18px;
}

.burger {
  display: none;
}

.graph-section {
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

.range-menu {
  height: 25px;
  margin-bottom: 10px;
  text-align: center;
}

.range {
  padding: 3px 10px;
  border-radius: 100px;
  background-color: transparent;
  color: #191c53;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.range:hover {
  color: #95fdff;
}

.range.w--current {
  padding: 3px 10px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #95fdff;
  font-size: 12px;
}

.range.neongreen {
  color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.range.neongreen:hover {
  color: #fff;
}

.range.neongreen.w--current {
  background-color: #000;
  color: #3bfc14;
}

.range.neongreen.active {
  background-color: #111;
  color: #3bfc14;
  cursor: pointer;
}

.graph-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
}

.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #160042;
}

.numbers-wrapper-right {
  position: absolute;
  right: 90px;
  width: 70px;
}

.numbers-wrapper-right-2 {
  position: absolute;
  right: 20px;
  width: 70px;
}

@media screen and (min-width: 1280px) {
  .button:hover {
    opacity: 1;
  }

  .dashboard-container {
    max-width: none;
  }
}

@media screen and (min-width: 1440px) {
  img {
    display: block;
  }

  .dashboard {
    min-height: 100vh;
  }

  .sidebar-content {
    width: 325px;
  }

  .nav-link.w--current {
    color: #8affff;
  }

  .sidebar-logo-wrapper {
    padding-bottom: 30px;
  }

  .sidebar-logo {
    max-height: 40px;
    max-width: 100%;
  }

  .dashboard-container {
    max-width: 1400px;
  }

  .nav-link-app.w--current {
    color: #3bfc14;
  }

  .btn-link-app.w--current {
    color: #3bfc14;
  }

  .graph-wrapper {
    height: 350px;
  }
}

@media screen and (min-width: 1920px) {
  .numbers-wrapper {
    text-align: center;
  }

  .number {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }

  .dashboard-container {
    width: 1400px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-menu {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-content-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .graph-wrapper {
    height: 370px;
  }
}

@media screen and (max-width: 991px) {
  ._2-grid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-sidebar {
    z-index: 500;
  }

  .sidebar-content {
    -webkit-transform: translate(-250px, 0px);
    -ms-transform: translate(-250px, 0px);
    transform: translate(-250px, 0px);
  }

  .sidebar-logo-wrapper {
    padding-bottom: 24px;
  }

  .mobile-bar {
    display: block;
    border-top-style: none;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(17, 17, 17, 0.04), #191c53);
  }

  .number.big.white {
    font-size: 22px;
  }

  .number.big.white.blue {
    font-size: 14px;
  }

  .number.big.white.cyan {
    font-size: 14px;
  }

  .dashboard-container {
    margin-left: 20px;
  }

  .navbar-app {
    height: 65px;
  }

  .app-logo-link {
    position: absolute;
  }

  .connect-wallet.neongreen {
    right: 20px;
  }

  .app-sidebar {
    top: 0px;
    z-index: 999;
    display: block;
    width: 100%;
    -webkit-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }

  .app-sidebar-content {
    top: 0px;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background-color: #0f0f0f;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  .nav-link-app {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .btn-link-app {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-app {
    margin-bottom: 60px;
  }

  .burger {
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 20px 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(17, 17, 17, 0.82);
    box-shadow: 0 0 11px -3px rgba(255, 255, 255, 0.55);
    text-align: center;
    cursor: pointer;
  }

  .burger-line {
    position: absolute;
    top: 2px;
    display: block;
    width: 18px;
    height: 2px;
    padding-right: 0px;
    padding-bottom: 0px;
    background-color: #fff;
  }

  .burger-line-2 {
    position: absolute;
    left: 0px;
    bottom: 2px;
    width: 18px;
    height: 2px;
    padding-right: 0px;
    padding-bottom: 0px;
    background-color: #fff;
  }

  .text-block-23 {
    display: block;
    margin-left: 10px;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
  }

  .burger-lines {
    position: relative;
    display: block;
    width: 18px;
    height: 12px;
  }

  .graph-wrapper {
    height: 250px;
  }

  .numbers-wrapper-right {
    right: 64px;
    width: 50px;
  }

  .numbers-wrapper-right-2 {
    right: 10px;
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  ._2-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-link {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .sidebar-logo {
    max-height: 24px;
  }

  .nav-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .table-content {
    width: 400px;
  }

  .alert-module-link {
    margin-left: 16px;
  }

  .table-row-tab {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .faq-item-basic {
    padding: 14px 0px;
  }

  .connect-wallet.neongreen {
    right: 20px;
  }

  .nav-link-app {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .btn-link-app {
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }

  .footer-link-app {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    margin-top: 0px;
    margin-bottom: 18px;
  }

  ._2-grid {
    display: block;
    margin-bottom: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .module.black {
    margin-bottom: 20px;
  }

  .main-grid {
    display: block;
    margin-bottom: 20px;
    justify-items: stretch;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    grid-auto-flow: row;
    grid-column-gap: 0px;
    grid-row-gap: 10px;
  }

  .dashboard-container {
    position: relative;
    overflow: visible;
  }

  .table-content {
    width: 100%;
  }

  .banner-avatar-wrapper {
    margin-bottom: 20px;
  }

  .table-row-tab {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .app-logo-link {
    width: 90px;
  }

  .connect-wallet.neongreen {
    right: 20px;
    width: 136px;
    height: 32px;
  }

  .text-block-9 {
    height: 28px;
    padding-right: 0px;
    font-size: 12px;
    line-height: 28px;
  }

  .icon-8 {
    height: 28px;
    line-height: 28px;
  }

  .div-block-327 {
    height: 28px;
    line-height: 28px;
  }

  .div-block-328-copy {
    height: 28px;
    line-height: 28px;
  }

  .footer-menu {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-link-app {
    line-height: 32px;
  }

  .footer-line-small {
    display: none;
  }

  .graph-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .range-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .numbers-wrapper-right {
    left: 10px;
    right: auto;
  }
}

#w-node-_9542b14e-eaa9-c67d-cc07-5d84160369e6-160369d9 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

@media screen and (max-width: 479px) {
  #BNB_BUSD-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b7a-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #BTCB_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b81-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #ETH_BTCB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b88-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #ETH_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b8f-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #ETH_USDT-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b96-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #USDT_BTCB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25b9d-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #ATOM_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25ba4-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #AVAX_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bab-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #BNB_MATIC-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bb2-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #ADA_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bb9-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #SOL_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bc0-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #XRP_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bc7-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }

  #DOT_BNB-TAB-7D-Tab-Price.w-node-_260da989-6111-f51e-0845-0a4621b25bce-00368666 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEobdNZUSdy4Q.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9QPFUew.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYobdNZUSdy4Q.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZGCQYb9lecyU.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQk6YvM.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meGCQYb9lecyU.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}