@import url(https://fonts.googleapis.com/css2?family=Poppins&family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* make overflow auto when height changes to < 600px */
  @media screen and (max-height: 700px) {
    overflow-y: auto;
  }
}

.welcome-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  @media screen and (max-height: 700px) {
    overflow-y: auto;
  }
}

.welcome-box-container {
  /* border: 1px solid red; */
  width: 20%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
  margin-top: 0px !important;
}

.welcome-gradient {
  position: absolute;
  left: 0;
  height: 100%;
}

.welcome-box {
  background-color: #f7f7f7;
  padding: 30px 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  min-width: 350px;
}

.welcome-box:hover {
  background-color: #121420;
  transition: background-color 0.3s ease;
}

.welcome-box:hover > div > div > p {
  color: white;
  transition: color 0.3s ease;
}

.welcome-box:hover > div > h6 {
  color: white;
  opacity: 0.5;
  transition: color 0.3s ease;
}

.auth-header {
  margin: 60px 0px 0px 100px;
  z-index: 1;
}

.auth-header > img {
  height: 50px;
  cursor: pointer;
}

.create-account-container {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}

.create-account-box {
  display: flex;
  flex-direction: column;
  margin-top: 5%;
  align-items: center;
}

.download-recovery-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
}

.recover-account-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
}

.main-wrapper {
  position: relative;
}

.referral-right-section {
  position: absolute;
  right: 100px;
  /* left: 0; */
  top: 180px;
}

.stashed-globe {
  position: absolute;
  bottom: -5px;
  left: 0px;
}
.text-input-box {
  border: 0.5px solid rgba(26, 28, 32, 0.5);
  border-radius: 10px;
  background-color: rgba(247, 247, 247, 1);
  padding: 5px 10px;
  margin: 10px 0px;
}

.text-input-box .referral-code-input {
  font-weight: 500;
  font-size: 12px;
  line-height: 15.31px;
}
.btn-box {
  background-color: rgba(26, 28, 32, 1);
  border-radius: 10px;
  padding: 10px;
  margin: 40px 0px;
  cursor: pointer;
}





html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* make overflow auto when height changes to < 600px */
  @media screen and (max-height: 700px) {
    overflow-y: auto;
  }
}

.signin-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  @media screen and (max-height: 700px) {
    overflow-y: auto;
  }
}

.signin-gradient {
  position: absolute;
  top: -10%;
  left: 0%;
  z-index: -10;
}

.box-main {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Define the common styles for both boxes */
.box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60%;
}

/* Define the animation for the top box */
.top-box {
  bottom: -100px; /* Initially, position it above the viewport */
  animation: slideFromTop 1s ease forwards;
}

/* Define the animation for the bottom box */
.bottom-box {
  top: -100px; /* Initially, position it below the viewport */
  animation: slideFromBottom 1s ease forwards;
  padding-top: 40px;
}

/* Define the keyframes for the top box animation */
@keyframes slideFromTop {
  0% {
    bottom: -100px; /* Start position above the viewport */
    opacity: 0; /* Start with no opacity */
  }
  100% {
    bottom: -10px; /* End position at the top of the viewport */
    opacity: 1; /* Fully visible */
  }
}

/* Define the keyframes for the bottom box animation */
@keyframes slideFromBottom {
  0% {
    top: -100px; /* Start position below the viewport */
    opacity: 0; /* Start with no opacity */
  }
  100% {
    top: -10px; /* End position at the bottom of the viewport */
    opacity: 1; /* Fully visible */
  }
}

.create-account-box {
  height: 100%;
}

.welcome-box-container {
  width: 100%;
  top: 0;
  position: relative;
}




.recover-container {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}

.recover-img-box {
  position: absolute;
  bottom: 0;
  right: 0;
}

.recover-img {
}

.recover-box-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: max-content;
  margin: 0;
}

.recover-box {
  width: 100%;
  margin: 30px 0; /* Adjust as needed */
}

.recover-middle-box {
}

/* Define the keyframes for the top box animation */
@keyframes recoverSlideFromTop {
  0% {
    transform: translateY(-100%); /* Start position above the viewport */
    opacity: 0; /* Start with no opacity */
  }
  100% {
    transform: translateY(0); /* End position at the top of the viewport */
    opacity: 1; /* Fully visible */
  }
}

/* Define the keyframes for the bottom box animation */
@keyframes recoverSlideFromBottom {
  0% {
    transform: translateY(100%); /* Start position below the viewport */
    opacity: 0; /* Start with no opacity */
  }
  100% {
    transform: translateY(0); /* End position at the bottom of the viewport */
    opacity: 1; /* Fully visible */
  }
}

/* Define the animation for the top box */
.recover-top-box {
  top: 0; /* Initially, position it at the top of the viewport */
  animation: recoverSlideFromTop 1s ease forwards;
}

/* Define the animation for the bottom box */
.recover-bottom-box {
  bottom: 0; /* Initially, position it at the bottom of the viewport */
  animation: recoverSlideFromBottom 1s ease forwards;
}

.recover-box-container {
  /* margin-top: 80px !important; */
  width: 20%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}


.words-tab-box {
  background-color: #f7f7f7;

  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 29.5%;
  margin: 20px 0px 20px 0px;
  cursor: pointer;
}

.word-tab {
  padding: 30px 40px;
  border-radius: 10px;
}

.active-word-tab {
  background-color: black;
}

.active-word-tab > h6 {
  color: white;
}

.seed-phrase-main-container {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* border: 1px solid red; */
}

.seed-phrase-box {
  width: 23%;
  margin: 0px 5px;
}

.seed-input-box {
  border: 0.5px solid rgba(26, 28, 32, 0.2);
  border-radius: 10px;
  background-color: rgba(247, 247, 247, 1);
  padding: 10px 15px;
  margin: 5px 0px;
}

@keyframes swing {
  0%,
  30%,
  50%,
  70%,
  100% {
    transform: rotate(0deg); }
  10% {
    transform: rotate(10deg); }
  40% {
    transform: rotate(-10deg); }
  60% {
    transform: rotate(5deg); }
  80% {
    transform: rotate(-5deg); } }

.pro-sidebar {
  color: #adadad;
  height: 100%;
  width: 270px;
  min-width: 270px;
  text-align: left;
  transition: width, left, right, 0.3s;
  position: relative;
  z-index: 1009; }
  .pro-sidebar > .pro-sidebar-inner {
    background: #1d1d1d;
    height: 100%;
    position: relative;
    z-index: 101; }
    .pro-sidebar > .pro-sidebar-inner > img.sidebar-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: absolute;
      opacity: 0.3;
      left: 0;
      top: 0;
      z-index: 100; }
    .pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout {
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      z-index: 101; }
      .pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout .pro-sidebar-header {
        border-bottom: 1px solid rgba(173, 173, 173, 0.2); }
      .pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout .pro-sidebar-content {
        flex-grow: 1; }
      .pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout .pro-sidebar-footer {
        border-top: 1px solid rgba(173, 173, 173, 0.2); }
      .pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout ul {
        list-style-type: none;
        padding: 0;
        margin: 0; }
  .pro-sidebar .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: none; }
  .pro-sidebar.collapsed {
    width: 80px;
    min-width: 80px; }
  .pro-sidebar.rtl {
    text-align: right;
    direction: rtl; }
  @media (max-width: 480px) {
    .pro-sidebar.xs {
      position: fixed;
      left: -270px; }
      .pro-sidebar.xs.collapsed {
        left: -80px; }
      .pro-sidebar.xs.toggled {
        left: 0; }
        .pro-sidebar.xs.toggled .overlay {
          display: block; }
      .pro-sidebar.xs.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.xs.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.xs.rtl.toggled {
          left: auto;
          right: 0; } }
  @media (max-width: 576px) {
    .pro-sidebar.sm {
      position: fixed;
      left: -270px; }
      .pro-sidebar.sm.collapsed {
        left: -80px; }
      .pro-sidebar.sm.toggled {
        left: 0; }
        .pro-sidebar.sm.toggled .overlay {
          display: block; }
      .pro-sidebar.sm.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.sm.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.sm.rtl.toggled {
          left: auto;
          right: 0; } }
  @media (max-width: 768px) {
    .pro-sidebar.md {
      position: fixed;
      left: -270px; }
      .pro-sidebar.md.collapsed {
        left: -80px; }
      .pro-sidebar.md.toggled {
        left: 0; }
        .pro-sidebar.md.toggled .overlay {
          display: block; }
      .pro-sidebar.md.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.md.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.md.rtl.toggled {
          left: auto;
          right: 0; } }
  @media (max-width: 992px) {
    .pro-sidebar.lg {
      position: fixed;
      left: -270px; }
      .pro-sidebar.lg.collapsed {
        left: -80px; }
      .pro-sidebar.lg.toggled {
        left: 0; }
        .pro-sidebar.lg.toggled .overlay {
          display: block; }
      .pro-sidebar.lg.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.lg.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.lg.rtl.toggled {
          left: auto;
          right: 0; } }
  @media (max-width: 1200px) {
    .pro-sidebar.xl {
      position: fixed;
      left: -270px; }
      .pro-sidebar.xl.collapsed {
        left: -80px; }
      .pro-sidebar.xl.toggled {
        left: 0; }
        .pro-sidebar.xl.toggled .overlay {
          display: block; }
      .pro-sidebar.xl.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.xl.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.xl.rtl.toggled {
          left: auto;
          right: 0; } }
  @media (max-width: 1600px) {
    .pro-sidebar.xxl {
      position: fixed;
      left: -270px; }
      .pro-sidebar.xxl.collapsed {
        left: -80px; }
      .pro-sidebar.xxl.toggled {
        left: 0; }
        .pro-sidebar.xxl.toggled .overlay {
          display: block; }
      .pro-sidebar.xxl.rtl {
        left: auto;
        right: -270px; }
        .pro-sidebar.xxl.rtl.collapsed {
          left: auto;
          right: -80px; }
        .pro-sidebar.xxl.rtl.toggled {
          left: auto;
          right: 0; } }

.pro-sidebar .pro-menu.submenu-bullets .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item:before {
  content: '';
  display: inline-block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  box-shadow: 1px 0px 0px #adadad, 0px -1px 0px #adadad, 0px 1px 0px #adadad, -1px 0px 0px #adadad; }

.pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-item-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.pro-sidebar .pro-menu {
  padding-top: 10px;
  padding-bottom: 10px; }
  .pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item {
    position: relative;
    background-color: #2b2b2b; }
    .pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item > div > ul {
      padding-top: 15px;
      padding-bottom: 15px; }
  .pro-sidebar .pro-menu a {
    text-decoration: none;
    color: #adadad; }
    .pro-sidebar .pro-menu a:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: transparent; }
    .pro-sidebar .pro-menu a:hover {
      color: #d8d8d8; }
  .pro-sidebar .pro-menu .pro-menu-item {
    font-size: 15px; }
    .pro-sidebar .pro-menu .pro-menu-item.active {
      color: #d8d8d8; }
    .pro-sidebar .pro-menu .pro-menu-item .suffix-wrapper {
      opacity: 1;
      transition: opacity 0.2s; }
    .pro-sidebar .pro-menu .pro-menu-item .prefix-wrapper {
      display: flex;
      margin-right: 5px;
      opacity: 1;
      transition: opacity 0.2s; }
    .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item {
      position: relative;
      display: flex;
      align-items: center;
      padding: 8px 35px 8px 20px;
      cursor: pointer; }
      .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:focus {
        outline: none;
        color: #d8d8d8; }
      .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
        margin-right: 10px;
        font-size: 14px;
        width: 35px;
        min-width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        display: inline-block; }
        .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper .pro-icon {
          display: flex;
          height: 100%;
          align-items: center;
          justify-content: center; }
      .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item > .pro-item-content {
        flex-grow: 1;
        flex-shrink: 1; }
      .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:hover {
        color: #d8d8d8; }
        .pro-sidebar .pro-menu .pro-menu-item > .pro-inner-item:hover .pro-icon-wrapper .pro-icon {
          animation: swing ease-in-out 0.5s 1 alternate; }
    .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item:before {
      background: #adadad; }
    .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%); }
      .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
        display: inline-block;
        border-style: solid;
        border-color: #adadad;
        border-width: 0 2px 2px 0;
        padding: 2.5px;
        vertical-align: middle;
        transition: transform 0.3s;
        transform: rotate(-45deg); }
    .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item:before {
      background: transparent !important; }
    .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
      transform: rotate(45deg); }
    .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item {
      padding-left: 24px; }
      .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
        padding: 8px 30px 8px 15px; }
        .pro-sidebar .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item > .pro-icon-wrapper {
          background: none;
          width: auto;
          min-width: auto;
          height: auto;
          line-height: auto; }
  .pro-sidebar .pro-menu:not(.inner-submenu-arrows) .pro-inner-list-item .pro-menu-item.pro-sub-menu .pro-inner-item .pro-arrow-wrapper {
    display: none; }
  .pro-sidebar .pro-menu.shaped .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    background-color: #2b2b2b; }
  .pro-sidebar .pro-menu.square .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    border-radius: 0; }
  .pro-sidebar .pro-menu.round .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    border-radius: 4px; }
  .pro-sidebar .pro-menu.circle .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    border-radius: 50%; }

.pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item {
  position: relative; }
  .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-item > .suffix-wrapper,
  .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-item > .prefix-wrapper {
    opacity: 0; }
  .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item > .pro-inner-list-item {
    background-color: #2b2b2b;
    z-index: 111; }
  .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer; }
  .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu {
    position: relative; }
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-item {
      pointer-events: none; }
      .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
        display: none; }
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item {
      height: auto !important;
      position: fixed;
      visibility: hidden;
      min-width: 220px;
      max-width: 270px;
      background-color: transparent;
      max-height: 100%;
      padding-left: 3px; }
      .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item.has-arrow {
        padding-left: 10px; }
      .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item > .popper-inner {
        max-height: 100vh;
        overflow-y: auto;
        background-color: #2b2b2b;
        padding-left: 20px;
        border-radius: 4px; }
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu:hover > .pro-inner-list-item {
      transition: visibility, transform 0.3s;
      visibility: visible; }
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu:hover .pro-icon-wrapper .pro-icon {
      animation: swing ease-in-out 0.5s 1 alternate; }
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-sub-menu-item,
    .pro-sidebar.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
      padding: 8px 30px 8px 5px; }

.pro-sidebar.rtl .pro-menu .pro-menu-item .prefix-wrapper {
  margin-right: 0;
  margin-left: 5px; }

.pro-sidebar.rtl .pro-menu .pro-menu-item > .pro-inner-item {
  padding: 8px 20px 8px 35px; }
  .pro-sidebar.rtl .pro-menu .pro-menu-item > .pro-inner-item > .pro-icon-wrapper {
    margin-right: 0;
    margin-left: 10px; }

.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper {
  right: auto;
  left: 20px; }
  .pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
    transform: rotate(135deg); }

.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu.open > .pro-inner-item > .pro-arrow-wrapper .pro-arrow {
  transform: rotate(45deg); }

.pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item {
  padding-left: 0;
  padding-right: 24px; }
  .pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
    padding: 8px 15px 8px 30px; }
    .pro-sidebar.rtl .pro-menu .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item:before {
      margin-right: 0;
      margin-left: 15px; }

.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item {
  padding-left: 0;
  padding-right: 3px; }
  .pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item.has-arrow {
    padding-right: 10px; }
  .pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu > .pro-inner-list-item > .popper-inner {
    padding-left: 0;
    padding-right: 20px; }

.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-sub-menu-item,
.pro-sidebar.rtl.collapsed .pro-menu > ul > .pro-menu-item.pro-sub-menu .pro-inner-list-item .pro-inner-item {
  padding: 8px 5px 8px 30px; }

.popper-arrow {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent; }

.popper-element[data-popper-placement^='left'] > .popper-arrow {
  right: 0;
  border-right: 7px solid #2b2b2b; }

.popper-element[data-popper-placement^='right'] > .popper-arrow {
  left: 0;
  border-left: 7px solid #2b2b2b; }

.react-slidedown {
  height: 0;
  transition-property: none;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out; }

.react-slidedown.transitioning {
  overflow-y: hidden; }

.react-slidedown.closed {
  display: none; }

.sidebar-box {
  width: 20%;
  height: calc(100vh - 120px);
  padding: 60px;
}

.menu-items-list {
  margin: 50px 0px;
}

.menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px 0px;
  cursor: pointer;
}
.network-btns {
  display: flex;
  justify-content: space-between;
}

.network-btn {
  width: 80px !important;
  padding: 10px;
  margin-left: 20px;
}

.active-network-btn {
  background-color: rgba(0, 229, 153, 1) !important;
  color: white !important;
}

.tab-chip-box {
  /* border-radius: 90px;
  background-color: rgba(26, 28, 32, 1);
  cursor: pointer;
  width: fit-content;
  padding: 10px;
  display: flex;
  align-items: center ; */
  border-radius: 90px;
  background-color: rgba(26, 28, 32, 1);
  cursor: pointer;
  /* width: 68px; */
  /* height: 33px; */
  padding: 9px 15px 9px 15px;
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: space-around;
  justify-content: space-around;
}

.tab-chip-text {
  border-radius: 90px;
  cursor: pointer;
  width: fit-content;
  padding: 10px 20px;
}
.receive-container {
  width: 40%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.receive-box {
  border: 1px solid #6ea8ff;
  background-color: #d1e4ff26;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
}

.receive-address-box {
  border: 1px solid #e8ecf5;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.account-info {
  display: flex;
}

.copy {
  width: 65px !important;
  background-color: rgba(0, 229, 153, 1) !important;
  border-radius: 40px !important;
  color: white !important;
  padding: 5px !important;
  margin: 0 !important;
  margin-left: 20px !important;
}

.qr-box {
  border: 1px solid #e8ecf5;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #6da8ff 94.79%);

  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
}

.info-icon {
  width: 25px;
  height: 25px;
  background-color: #15121d;
  border-radius: 12px;
  margin-right: 10px;

  color: white;
  text-align: center;
}

.info {
  display: flex;
  justify-content: center;
}

.qr {
  padding: 20px;
  width: fit-content;
  background-color: white;
  margin: 10px auto;
  border-radius: 10px;
  position: relative;
}

.qr-container {
  display: flex;
}

.qr-container img {
  align-self: flex-end;
}

.qr-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
}
.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 30px;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}

.modal {
  background-color: white;
  border: none !important;
  border-radius: 6px;
  width: 40%;
  position: absolute;
  padding: 20px;
}

.modal-header-icon {
  align-self: flex-start;
  justify-self: flex-start;
  position: absolute;
  left: 5%;
  cursor: pointer;
}

.modal-close-icon {
  align-self: flex-start;
  justify-self: flex-start;
  position: absolute;
  right: 5%;
}

.modal-buttons {
  display: flex;
  margin-left: -20px;
}

.modal-content {
  margin-top: 20px;
}

.account-item {
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.account-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}

.name p {
  margin: 0px;
  color: #1a1c20;
  font-family: 'Helvetica Neue';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 10px;
}

.balance p {
  color: #1a1c20;
  text-align: right;
  font-family: 'Helvetica Neue';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.account-bg-image {
  height: 37px;
  width: 37px;
  background-image: url(images/03ce9fe0d9983156f11c.svg);
  border-radius: 50%;
  vertical-align: middle;
}

.all-accounts {
  background-color: #00e599;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAyMCAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggaWQ9IjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NTcxMyAwLjEwNjA4NUM3Ljk5OTc3IDAuMTU5OTczIDguNTU3NSAwLjI4MDY3NiA4Ljg5NjQ4IDAuMzc0Mjc5QzkuMjM1NTQgMC40Njc4ODMgOS43NTU0OSAwLjY2NjIyNiAxMC4wNTIxIDAuODE1MDQxQzEwLjM0ODcgMC45NjM5MzQgMTAuNzE3IDEuMTgxNDMgMTAuODcwNyAxLjI5ODQ4QzExLjAyNDQgMS40MTU1MiAxMS4yNDkgMS42NjcxMyAxMS4zNyAxLjg1NzUzQzExLjU2NTggMi4xNjYxNCAxMS41ODk3IDIuMjc0MyAxMS41ODk3IDIuODUzNTJDMTEuNTg5NyAzLjM0NTc2IDExLjU1MjYgMy41NzU5NSAxMS40MzY2IDMuODAzMjZDMTEuMzUyNCAzLjk2ODI4IDExLjE0MDYgNC4yMjU3MiAxMC45NjU5IDQuMzc1MzJDMTAuNzkxMSA0LjUyNDgzIDEwLjQ0NzcgNC43NTQwOSAxMC4yMDI3IDQuODg0NjFDOS45NTc4MSA1LjAxNTIgOS40OTMwNiA1LjIwODMyIDkuMTcwMDQgNS4zMTM3NkM4Ljg0NzExIDUuNDE5MiA4LjIzNDMyIDUuNTY3MTYgNy44MDg0MyA1LjY0MjYyQzcuMjgyMDkgNS43MzU4NCA2LjYzNTIgNS43Nzk2IDUuNzg4MTcgNS43NzkyMUM0Ljk2MjAyIDUuNzc4ODIgNC4yOTk4NyA1LjczNDU5IDMuODIyODkgNS42NDhDMy40MjczIDUuNTc2MTIgMi44NjY2MSA1LjQ0NDc1IDIuNTc2OTIgNS4zNTYwNUMyLjI4NzI0IDUuMjY3MjcgMS43NzgxOCA1LjA1MzkgMS40NDU2NiA0Ljg4MTczQzEuMDUzOTYgNC42NzkwMiAwLjcxODQwNSA0LjQzMjQgMC40OTI3MjkgNC4xODE0MUMwLjI5MTUwNiAzLjk1NzYxIDAuMTA3NDkyIDMuNjU3NDEgMC4wNTY4NzUyIDMuNDcwMzVDMC4wMDg3NDkwMSAzLjI5MjM0IC0wLjAxMzEzMjEgMi45NTEzMyAwLjAwODI4MzYyIDIuNzEyNzNDMC4wMjk2OTkzIDIuNDc0MDUgMC4xMTkxNzEgMi4xMzc3OSAwLjIwNzAxMiAxLjk2NTU0QzAuMjk0OTMxIDEuNzkzMjggMC40OTAxNiAxLjU0NDAxIDAuNjQwODQ0IDEuNDExN0MwLjc5MTYwNyAxLjI3OTMyIDEuMDcgMS4wODAyIDEuMjU5NTUgMC45NjkwNzRDMS40NDkxNyAwLjg1ODAyNyAxLjg5MzUxIDAuNjYxNTUyIDIuMjQ3MTMgMC41MzI0MzlDMi42MDA2OCAwLjQwMzQwMyAzLjI5MTQ5IDAuMjI5MjAyIDMuNzgyMjQgMC4xNDUzMzJDNC40MjIyOCAwLjAzNTkyMDkgNS4wMDc5NiAtMC4wMDUwNDAzNCA1Ljg1NDI5IDAuMDAwNDg4NjRDNi41MDMyIDAuMDA0NjkzNzggNy4zMTQ0OSAwLjA1MjI3NDQgNy42NTcxMyAwLjEwNjA4NVpNMTUuNzYxNCAyLjI1NDY4QzE2LjAyMTMgMi4yODg2MyAxNi41NDI2IDIuMzg5NzkgMTYuOTE5OCAyLjQ3OTM0QzE3LjI5NzEgMi41Njg5NyAxNy45MDEyIDIuNzgwNzEgMTguMjYyMyAyLjk0OTkzQzE4LjYyMzUgMy4xMTkyMiAxOS4wNTc2IDMuMzY3NDEgMTkuMjI2OSAzLjUwMTVDMTkuMzk2MyAzLjYzNTY4IDE5LjYyNTMgMy44OTk3NSAxOS43MzU5IDQuMDg4NDNDMTkuODYyNiA0LjMwNDY5IDE5Ljk1MTcgNC41OTY5NCAxOS45NzcxIDQuODc5MzFDMTkuOTk5MiA1LjEyNTU1IDE5Ljk3NjIgNS40NzkxNyAxOS45MjU5IDUuNjY1MTNDMTkuODcyOCA1Ljg2MTYgMTkuNzAzNiA2LjE0NTA2IDE5LjUyMTkgNi4zNDIyM0MxOS4zNSA2LjUyODY2IDE5LjA0MTEgNi43ODkyMiAxOC44MzU2IDYuOTIxMDZDMTguNjMwMSA3LjA1Mjk4IDE4LjE3OSA3LjI2NDE3IDE3LjgzMzMgNy4zOTAzM0MxNy40ODc2IDcuNTE2NDggMTYuODQzNyA3LjY5NjYgMTYuNDAyNCA3Ljc5MDU5QzE1Ljc0OTggNy45Mjk2IDE1LjMzMTQgNy45NjI1NCAxNC4xNTk1IDcuOTY3MjFDMTMuMzY3MiA3Ljk3MDMzIDEyLjY3NSA3Ljk0NTAxIDEyLjYyMTUgNy45MTA4M0MxMi41NDY2IDcuODYzMDkgMTIuNTI0MiA3LjIwNjA4IDEyLjUyNDIgNS4wNjA1MkMxMi41MjQyIDIuMjcyMjggMTIuNTI0MiAyLjI3MjI4IDEyLjg4NTUgMi4yMjI3NUMxMy4wODQyIDIuMTk1NSAxMy43MDYyIDIuMTc3NjYgMTQuMjY3OCAyLjE4MzExQzE0LjgyOTIgMi4xODg1NiAxNS41MDE0IDIuMjIwNzMgMTUuNzYxNCAyLjI1NDY4Wk0xMS41NDc0IDUuMTE2MDRDMTEuNTcwNiA1LjEzOTMzIDExLjU4OTcgNS40NjE4OCAxMS41ODk3IDUuODMyODdDMTEuNTg5NyA2LjQ1MDMyIDExLjU3MDIgNi41MzY5MiAxMS4zNTg3IDYuODU2MDRDMTEuMjMxNyA3LjA0Nzg0IDEwLjk2ODUgNy4zMTkxNSAxMC43NzM4IDcuNDU4OTNDMTAuNTc5MiA3LjU5ODc5IDEwLjE2NjIgNy44MzAzOSA5Ljg1NjExIDcuOTczNTlDOS41NDYwOSA4LjExNjg4IDkuMDEyMDQgOC4zMDQ4NyA4LjY2OTQgOC4zOTEzMUM4LjMyNjgzIDguNDc3ODIgNy43NzIzOCA4LjU4NTkxIDcuNDM3MzcgOC42MzE1NEM3LjEwMjI4IDguNjc3MTggNi4zNzA5IDguNzE0NTYgNS44MTIgOC43MTQ1NkM1LjI1MzExIDguNzE0NTYgNC40Mjk4MyA4LjY2MDIgMy45ODI1MyA4LjU5Mzc4QzMuNTM1MzEgOC41MjczNSAyLjg0NzQ1IDguMzY3ODcgMi40NTQwNCA4LjIzOTNDMi4wNjA2MyA4LjExMDgxIDEuNTgxMDggNy45MTQ4OCAxLjM4ODM1IDcuODAzOTFDMS4xOTU2MSA3LjY5Mjk0IDAuODg4MTcgNy40ODE1MSAwLjcwNTA5MSA3LjMzMzk1QzAuNTIyMDg5IDcuMTg2NDUgMC4yOTQ4NTMgNi45MTk5IDAuMjAwMzE1IDYuNzQxNTdDMC4wNjM4MDQ2IDYuNDg0MzUgMC4wMjc5ODQ2IDYuMjg1NzcgMC4wMjY4OTM2IDUuNzgxMzFDMC4wMjYxOTM2IDUuNDMxNTkgMC4wNDgwMDAzIDUuMTIyOTcgMC4wNzU0MTA4IDUuMDk1NTZDMC4xMDI4MjEgNS4wNjgxNSAwLjMxMTkwOSA1LjI0MzEzIDAuNTQwMTU1IDUuNDg0MzhDMC44MzczMTggNS43OTg2IDEuMTM1MzQgNi4wMTAzNCAxLjU5MDUxIDYuMjMwNjRDMS45NCA2LjM5OTg2IDIuNTYwODEgNi42MjMyIDIuOTcwMTEgNi43MjdDMy4zNzk0MSA2LjgzMDg5IDQuMDkzMjcgNi45NTcwNCA0LjU1NjUzIDcuMDA3NDJDNS4wMzUyMiA3LjA1OTUyIDUuODAyMTkgNy4wNzk2MSA2LjMzMzI4IDcuMDUzOTJDNi44NDcyNSA3LjAyOTA3IDcuNTY1NjMgNi45NTU2NCA3LjkyOTY4IDYuODkwODVDOC4yOTM3NCA2LjgyNTk4IDguODE5MzggNi42OTg1OCA5LjA5Nzc4IDYuNjA3N0M5LjM3NjE3IDYuNTE2ODIgOS44MzE3MyA2LjMzNDUyIDEwLjExMDEgNi4yMDI1M0MxMC40MjE4IDYuMDU0NzMgMTAuNzg3MSA1Ljc5MTY3IDExLjA2MDcgNS41MTgxQzExLjMwNTEgNS4yNzM3NCAxMS41MjQxIDUuMDkyNzYgMTEuNTQ3NCA1LjExNjA0Wk0xMS41NDI0IDguMDU4ODZDMTEuNTY4NSA4LjEyNjY5IDExLjU4OTcgOC40NDU1OCAxMS41ODk3IDguNzY3NTlDMTEuNTg5NyA5LjE0NjEzIDExLjU0NTEgOS40NDY5NSAxMS40NjM0IDkuNjE5MTNDMTEuMzkzOSA5Ljc2NTUzIDExLjE2MTIgMTAuMDQzNSAxMC45NDYxIDEwLjIzNjhDMTAuNzMxMSAxMC40MzAyIDEwLjI5OTIgMTAuNzExNSA5Ljk4NjM5IDEwLjg2MTlDOS42NzM1NyAxMS4wMTI0IDkuMDg4MzUgMTEuMjE5IDguNjg1OTEgMTEuMzIxMUM4LjI4MzQ2IDExLjQyMzEgNy42MTcxOCAxMS41NDQzIDcuMjA1MjMgMTEuNTkwM0M2Ljc5MzI4IDExLjYzNjEgNi4xNDgyNiAxMS42NzM3IDUuNzcxNzQgMTEuNjczNUM1LjM5NTMxIDExLjY3MzQgNC43NzE5MyAxMS42MzQ4IDQuMzg2NDYgMTEuNTg3OEM0LjAwMDk5IDExLjU0MDcgMy4zNTcyMSAxMS40MTkxIDIuOTU1NzggMTEuMzE3NUMyLjU1NDQyIDExLjIxNTkgMS45NDExNyAxMC45OTQzIDEuNTkzIDEwLjgyNUMxLjI0NDkgMTAuNjU1OCAwLjgxMTU0MyAxMC4zNzM2IDAuNjMwMDk4IDEwLjE5OEMwLjQ0ODU3NiAxMC4wMjI0IDAuMjM4ODY1IDkuNzY1NzYgMC4xNjM5NTIgOS42Mjc2MkMwLjA2NjIyMTIgOS40NDc1IDAuMDI3NDM5MSA5LjE5Njc1IDAuMDI2NjYwOSA4Ljc0MDQ5QzAuMDI2MDM3MiA4LjM5MDc2IDAuMDUwODc2NiA4LjA3OTI3IDAuMDgxNzkyOCA4LjA0ODI3QzAuMTEyNzg3IDguMDE3MzYgMC4yOTU0NzkgOC4xNjcxMSAwLjQ4NzkwNCA4LjM4MTE4QzAuNjk2MzY5IDguNjEzMDEgMS4wNTEyNCA4Ljg4MjE0IDEuMzY2MTUgOS4wNDcxNUMxLjY1Njc4IDkuMTk5NDcgMi4xMTQ0NCA5LjM5Nzg5IDIuMzgzMTcgOS40ODc5OUMyLjY1MTkxIDkuNTc4MTcgMy4xMTk4NSA5LjcwNDE3IDMuNDIzMDkgOS43Njc5NUMzLjcyNjMzIDkuODMxNzIgNC4zOTEyOSA5LjkyMDExIDQuOTAwNzMgOS45NjQzNEM1LjU0NTgzIDEwLjAyMDQgNi4xMTY4IDEwLjAxOTYgNi43ODEwNiA5Ljk2MjAxQzcuMzA1NzYgOS45MTY0NSA4LjAzMjg2IDkuODA4OTggOC4zOTY5MiA5LjcyMzI1QzguNzYwOTggOS42Mzc0MyA5LjI5MzcxIDkuNDc4MSA5LjU4MDc1IDkuMzY5MTZDOS44Njc3OSA5LjI2MDIxIDEwLjMxMzEgOS4wMzUgMTAuNTcwNCA4Ljg2ODc1QzEwLjgyNzYgOC43MDI0MSAxMS4xNDA5IDguNDI0NDggMTEuMjY2NiA4LjI1MDk4QzExLjQ0MjUgOC4wMDgyNSAxMS41MDYgNy45NjQwMiAxMS41NDI0IDguMDU4ODZaTTE5Ljk1MTMgNy40NzgzMkMxOS45NzgxIDcuNjEyMTkgMjAgNy44NDE5MSAyMCA3Ljk4ODk0QzIwIDguMTM1OTYgMTkuOTYwNCA4LjQxMzU4IDE5LjkxMTkgOC42MDU5MkMxOS44NTYzIDguODI2ODUgMTkuNzA1OCA5LjA4Mjk3IDE5LjUwMzEgOS4zMDE0OEMxOS4zMjY3IDkuNDkxNjUgMTguOTcyNCA5Ljc3MTQ1IDE4LjcxNTcgOS45MjMxNUMxOC40NTkxIDEwLjA3NDggMTcuOTI0OCAxMC4zMDI4IDE3LjUyODQgMTAuNDI5OEMxNy4xMzE5IDEwLjU1NjggMTYuNDgzMyAxMC43MTMyIDE2LjA4NyAxMC43Nzc1QzE1LjY3NSAxMC44NDQzIDE0Ljg2MjIgMTAuODk0NSAxNC4xODg3IDEwLjg5NDdDMTMuNTQwOSAxMC44OTQ4IDEyLjkwMTQgMTAuODczMSAxMi43Njc1IDEwLjg0NjNDMTIuNTI0MiAxMC43OTc3IDEyLjUyNDIgMTAuNzk3NyAxMi41MjQyIDEwLjAwOTJDMTIuNTI0MiA5LjIyMDczIDEyLjUyNDIgOS4yMjA3MyAxNC4xMDExIDkuMjIwNTdDMTUuMzE3OCA5LjIyMDUgMTUuODI5MyA5LjE4ODU3IDE2LjM0IDkuMDgwOTVDMTYuNzA0IDkuMDA0MjQgMTcuMjI5NyA4Ljg2ODA0IDE3LjUwODEgOC43NzgyNkMxNy43ODY1IDguNjg4NDcgMTguMTg5NSA4LjUyNzk3IDE4LjQwMzYgOC40MjE2QzE4LjYxNzggOC4zMTUxNSAxOC45NTkxIDguMTA3MDcgMTkuMTYyIDcuOTU5MTlDMTkuMzY0OSA3LjgxMTIzIDE5LjU5MTYgNy41ODc3MyAxOS42NjU1IDcuNDYyNTlDMTkuNzM5NCA3LjMzNzM3IDE5LjgyMzEgNy4yMzQ5NyAxOS44NTEzIDcuMjM0OTdDMTkuODc5NSA3LjIzNDk3IDE5LjkyNDUgNy4zNDQ0NiAxOS45NTEzIDcuNDc4MzJaIiBmaWxsPSIjMUExQzIwIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-position: center;
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 30px;
  box-shadow: 0px 8px 24px 10px rgb(24 39 75 / 5%), 0px 6px 12px 4px rgb(24 39 75 / 1%);
  border-radius: 10px;
  padding: 5px;
}

.accounts-list-exchange {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 30px;
  border-radius: 10px;
  padding: 5px;
}

.modal-footer-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.network-item {
  border: 1px solid rgba(0, 229, 153, 1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}
.card-box {
  box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  border-radius: 15px;
}
.history {
  margin: 50px 0px;
  width: 100%;
}

.history-btn {
  width: 20% !important;
  margin-right: 40px;
}

.active-btn {
  background-color: rgba(0, 229, 153, 1) !important;
  color: white !important;
}

.view {
  border: 1px solid #f3f3f3;
  padding: 5px 0px;
  color: #717c94 !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 12px;
}

.view a {
  color: #717c94 !important;
  text-decoration: none !important;
}

.primary-text {
  font-size: 14px !important;
}

.secondary-text {
  font-size: 12px !important;
  color: #798ba3 !important;
}

.table-box {
  height: 500px;
  overflow-y: auto;
}

.nft-count {
  display: flex;
  position: absolute;
  top: 90%;
  left: 80%;
  margin-left: 20px;
}

body {
  text-align: left !important;
}

.nft-image {
  box-shadow: 0px 15px 30px 0px #76767633;
}

.card-box {
  box-shadow: 0px 8px 24px -4px rgba(24, 39, 75, 0.08), 0px 6px 12px -6px rgba(24, 39, 75, 0.12);
  border-radius: 15px;
}
.accounts-box {
  width: 94%;
  margin: 40px 20px 0px 50px;
  border-radius: 16px;
  /* border: 2px solid red; */
  box-shadow: rgba(118, 118, 118, 0.2);
  offset: 0px, 15px rgba(118, 118, 118, 0.2);
  padding: 20px 0px;
  box-shadow: 0px 15px 30px 0px #76767633;
  background-color: white;
  overflow: auto;
}

.accounts {
  max-height: 200px;
  overflow-y: scroll;
}

.header {
  display: flex;
  /* justify-content: space-between; */
  margin: 30px;

  height: 20px;
}

.buttons {
  display: flex;
  margin: 30px 30px 0px 30px;
}

.account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 30px;
  padding: 10px;
}

.active-account {
  background-color: rgba(0, 229, 153, 0.1);

  border-radius: 10px;
}

.account-address-image {
  display: flex;
  align-items: center;
}

.account-image-box {
  height: 35.58333206176758px;
  width: 36.166664123535156px;
  background-image: url(images/03ce9fe0d9983156f11c.svg);
  border-radius: 2.9166665077209473px;
}

.account-image {
  margin-top: 20%;
}

.side1 {
  width: 32%;
}

.side2 {
  width: 35%;
}

.side3 {
  width: 33%;
}

.side4 {
  width: 5%;
}

.head-text {
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}

.text {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.see-all {
  font-size: 14px;
  font-weight: 500;
  color: #5e636a;
  cursor: pointer;
}

.active-account-item {
  background: #F7F7F7;
}

.account-created-box {
  border: 1px solid rgba(0, 229, 153, 1);
  width: 90%;
  border-radius: 6px;
  padding: 20px;
  display: flex;
}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  width: 165px !important;
  color: rgba(0, 229, 153, 1) !important;
  margin-right: 20px;
}

.custom-file-upload:hover {
  color: white !important;
}
.btn-chip-box {
  border-radius: 90px;
  /* background-color: rgba(235, 236, 238, 1); */
  cursor: pointer;
  width: fit-content;
  /* padding: 10px 20px; */
  padding-inline: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  max-height: '40px';
  /* margin-right: 10px; */
  /* margin-left: 30px; */
}

.accounts-box {
  width: 94%;
  margin: 40px 20px 0px 50px;
  border-radius: 16px;
  /* border: 2px solid red; */
  box-shadow: rgba(118, 118, 118, 0.2);
  offset: 0px, 15px rgba(118, 118, 118, 0.2);
  padding: 20px 0px;
  box-shadow: 0px 15px 30px 0px #76767633;
  background-color: white;
  overflow: auto;
}

.accounts {
  max-height: 200px;
  overflow-y: scroll;
}

.header {
  display: flex;
  /* justify-content: space-between; */
  margin: 30px;

  height: 20px;
}

.buttons {
  display: flex;
  margin: 30px 30px 0px 30px;
}

.account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 30px;
  padding: 10px;
}

.active-account {
  background-color: rgba(0, 229, 153, 0.1);

  border-radius: 10px;
}

.account-address-image {
  display: flex;
  align-items: center;
}

.account-image-box {
  height: 35.58333206176758px;
  width: 36.166664123535156px;
  background-image: url(images/03ce9fe0d9983156f11c.svg);
  border-radius: 2.9166665077209473px;
}

.account-image {
  margin-top: 20%;
}

.side1 {
  width: 32%;
}

.side2 {
  width: 35%;
}

.side3 {
  width: 33%;
}

.side4 {
  width: 5%;
}

.head-text {
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}

.text {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.see-all {
  font-size: 14px;
  font-weight: 500;
  color: #5e636a;
  cursor: pointer;
}

.active-account-item {
  background: #E7E7E8;
}

.account-created-box {
  border: 1px solid rgba(0, 229, 153, 1);
  width: 90%;
  border-radius: 6px;
  padding: 20px;
  display: flex;
}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  width: 165px !important;
  color: rgba(0, 229, 153, 1) !important;
  margin-right: 20px;
}

.custom-file-upload:hover {
  color: white !important;
}
.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 30px;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}
.receive-container {
  width: 40%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.receive-box {
  border: 1px solid #6ea8ff;
  background-color: #d1e4ff26;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
}

.receive-address-box {
  border: 1px solid #e8ecf5;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.account-info {
  display: flex;
}

.copy {
  width: 65px !important;
  background-color: rgba(0, 229, 153, 1) !important;
  border-radius: 40px !important;
  color: white !important;
  padding: 5px !important;
  margin: 0 !important;
  margin-left: 20px !important;
}

.qr-box {
  border: 1px solid #e8ecf5;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #6da8ff 94.79%);

  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
}

.info-icon {
  width: 25px;
  height: 25px;
  background-color: #15121d;
  border-radius: 12px;
  margin-right: 10px;

  color: white;
  text-align: center;
}

.info {
  display: flex;
  justify-content: center;
}

.qr {
  padding: 20px;
  width: fit-content;
  background-color: white;
  margin: 10px auto;
  border-radius: 10px;
  position: relative;
}

.qr-container {
  display: flex;
}

.qr-container img {
  align-self: flex-end;
}

.qr-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  height: 65px;
  width: 65px;
}
.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 0px !important;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}

.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 0px !important;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}

.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 0px !important;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}

.continue-button {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transition: bottom 0.5s ease-out;
}

.continue-button.show {
  bottom: 50px;
  width: 25%;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translate(0, 100%);
  }
  to {
    transform: translate(0, 0);
  }
}

.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 30px;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}
.send-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.MuiInput-root:before {
  border: none !important;
}

.MuiInput-root::after {
  border: none !important;
}

#input-with-icon-adornment {
  font-size: 40px;
  width: 250px;

  text-align: center;
}

.adornment {
  margin-top: -40px;
}

.adornment p {
  color: black !important;
}

.send-input-box {
  display: flex;
  width: 100%;
}

.input-convert {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.input {
  margin: 0 auto;
}

.send-btns {
  display: flex;
  margin-top: 50px;
  width: 100%;
}

.send-input-btn {
  width: 25% !important;
  margin-right: 20px;
}

.send-token-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  width: 94%;
  display: flex;
  margin-top: 20px;
}

.token-details {
  display: flex;
}

#swap-amount-box {
  margin-left: 10px;
}

#swap-amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

#amount-box {
  margin-left: 20px;
}

#amount-box::placeholder {
  color: #a4b4cb !important;
  font-weight: 500;
}

.transfer-btn {
  width: 96% !important;
  margin-top: 30px;
}

.active-token-item {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f1eaff;
  border-radius: 6px;
}

.assets-box {
  max-height: 400px;
  overflow-y: auto;
}

.token-item {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 94%;
}

.token-name {
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5px;
  flex: 1;
}

.name p {
  font-size: 10px;
  color: #15121d;
  margin: 0px;
}

.address p {
  margin: 0px;
  font-size: 14px;
  color: #15121d;
  font-weight: 600;
  margin-top: 3px;
}

.token-balance p {
  align-self: flex-end;
  margin-right: 10px;
  /* font-size: 16px; */
}

.accounts-list {
  max-height: 350px;
  overflow-y: auto;
}

.active-btn {
  background-color: 1px solid rgba(0, 229, 153, 1);
  color: white;
}
.transaction-box {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    align-items: center;
}

.transaction-wrapper {
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
    width: 44%;
    margin: 20px 0px 20px 0px;
}
.receive-container {
  width: 40%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.receive-box {
  border: 1px solid #6ea8ff;
  background-color: #d1e4ff26;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
}

.receive-address-box {
  border: 1px solid #e8ecf5;
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.account-info {
  display: flex;
}

.copy {
  width: 65px !important;
  background-color: rgba(0, 229, 153, 1) !important;
  border-radius: 40px !important;
  color: white !important;
  padding: 5px !important;
  margin: 0 !important;
  margin-left: 20px !important;
}

.qr-box {
  border: 1px solid #e8ecf5;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #6da8ff 94.79%);

  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
}

.info-icon {
  width: 25px;
  height: 25px;
  background-color: #15121d;
  border-radius: 12px;
  margin-right: 10px;

  color: white;
  text-align: center;
}

.info {
  display: flex;
  justify-content: center;
}

.qr {
  padding: 20px;
  width: fit-content;
  background-color: white;
  margin: 10px auto;
  border-radius: 10px;
  position: relative;
}

.qr-container {
  display: flex;
}

.qr-container img {
  align-self: flex-end;
}

.qr-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  height: 65px;
  width: 65px;
}
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"); */

@font-face {
  src: url(images/64ab5024acf8e1619abc.ttf);
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-family: 'Space Grotesk', sans-serif;
}

/* ::-webkit-scrollbar {
  opacity: 0;
  width: 0px;
  height: 0px;
}
* {
  -webkit-tap-highlight-color: transparent;
} */
iframe {
  display: none;
}

.react-pattern-lock__point-inner {
  background: #D1D2D2 !important;
}

.react-pattern-lock__point {
  /* background: #020202; */
  width: 32px;
  height: 33px;
  border: 3px solid black;
  border-radius: 50%;
}


@viewport {
  width: 380px;
  height: 600px;
}

#root {
  width: 100vw;
}

body {
  margin: 0;
  text-align: center;
  height: 100%;
  width: 100%;
  /* font-family: 'Space Grotesk'; */
  padding-right: 0px !important;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif; */
  /* font-family: 'Outfit', sans-serif; */
  font-family: 'Space Grotesk', sans-serif;
  font-family: 'Helvetica Neue', sans-serif;
  overflow: scroll;
  overflow-x: hidden;
  position: relative;
  background-color: #fff;
  color: #15121d;
}

.auth-container {}

.swal2-title,.swal2-html-container,.swal2-footer {
    font-family: 'Space Grotesk', sans-serif !important;
  
}

.coverForTopBar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 94%;
  margin: 0px 20px 0px 50px;
}

.app-container {
  display: flex;
  justify-content: flex-start !important;
}

.full-height {
  height: 100vh;
}

.mgt-sm {
  margin-top: 10px;
}

.mgt-md {
  margin-top: 15px;
}

.mgt-xl {
  margin-top: 25px;
}

.mgt-lg {
  margin-top: 20px;
}

.mgb-lg {
  margin-bottom: 20px;
}

.mgr-lg {
  margin-right: 20px;
}

.mgl-sm {
  margin-left: 10px;
}

.mgl-md {
  margin-left: 15px;
}

.mgr-sm {
  margin-right: 10px;
}

.mgb-sm {
  margin-bottom: 10px;
}

.mgr-xs {
  margin-right: 4px;
}

.mgl-xs {
  margin-left: 4px;
}

.pd {
  padding: 16px 24px;
}

.pd-md {
  padding: 12px;
}

.pdt-sm {
  padding-top: 8px;
}

.pdb-sm {
  padding-bottom: 8px;
}

.pdl-sm {
  padding-left: 8px;
}

.pdb-md {
  padding-bottom: 12px;
}

/* Font Styles */

.f-display {
  font-style: normal;
  font-weight: 500;
  font-size: 46px !important;
  /* line-height: 56px; */
  color: #ffffff;
}

.f-title-lg {
  font-style: normal;
  font-weight: 400;
  font-size: 30px !important;
  /* line-height: 44px; */
  color: #ffffff;
}

.f-title-md {
  font-style: normal;
  font-weight: 400;
  font-size: 22px !important;
  /* line-height: 32px; */
  color: #ffffff;
}

.f-title-sm {
  font-style: normal;
  font-weight: 400;
  font-size: 20px !important;
  /* line-height: 28px; */
  color: #ffffff;
}

.f-body-lg {
  font-style: normal;
  font-weight: 400;
  font-size: 18px !important;
  /* line-height: 28px; */
  color: #ffffff;
}

.f-body-md {
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  /* line-height: 28px; */
  color: #ffffff;
}

.f-body {
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  /* line-height: 24px; */
  color: #ffffff;
}

.f-body-sm {
  font-style: normal;
  font-weight: 400;
  font-size: 12px !important;
  /* line-height: 16px; */
}

.f-label {
  font-style: normal;
  font-weight: 400;
  font-size: 12px !important;
  /* line-height: 18px; */
  color: #ffffff;
}

.f-label-sm {
  font-style: normal;
  font-weight: 400;
  font-size: 10px !important;
  /* line-height: 16px; */
  color: #ffffff;
}

.f-label-md {
  font-weight: 500;
  font-size: 12px !important;
  /* line-height: 18px; */
}

.f-bold {
  font-weight: 600;
}

.border {
  border: 1px solid red;
}

.f-dim-100 {
  opacity: 0.7;
}

.f-dim-200 {
  opacity: 0.4;
}

.f-link-in {
  color: #3df2bc;
  background: rgba(61, 242, 188, 0.1);
  border-radius: 4px;
  padding: 0px 4px;
}

.f-link-out {
  color: #3df2bc;
  text-decoration-line: underline;
}

.f-highlight {
  color: #0d0f19;
  background: #3df2bc;
  padding: 2px 4px;
}

.btn-spacing {
  padding: 15px;
  flex: 1;
  border-radius: 10px;
  background: #1a1c20;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-border {
  border: 0.5px solid rgba(26, 28, 32, 0.5);
}

.btn-spacing:hover {
  /* background-color: rgba(0, 229, 153, 1); */
  color: white;
}

.disable:hover {
  /* background-color: white; */
  cursor: not-allowed;
  /* color: #a4b4cb; */
}

.img-spacing {
  height: 90vh;
  width: 100%;
  margin: 20px 0px;
}

.spacing {
  margin-bottom: 30px;
}

.vertical-spacing {
  margin-top: 40px;
}

.center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container {
  margin-top: 100px;
  width: 30%;
}

.auth-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100vw;
  height: 35vh;
  margin-top: 10px;
}

.auth-footer-1 {
  /* position: absolute;
  left: 0px; */
}

.auth-footer-3 {
  /* position: absolute;
  right: 0px; */
}

.welcome-bg-img {
  background-image: url(images/95fd1a0929d577796b94.svg);
  height: 100vh;
  background-repeat: no-repeat;
}

.input-container {
  display: flex;
  margin-bottom: 20px;
}

.text-input {
  width: 100%;
  border-radius: 10px !important;
  background-color: #fff;
  /* border: 1px solid #e8ecf5 !important; */
  height: 75px !important;
  color: black !important;
  /* color: black !important; */
}

.question-input {
  border: 1px solid rgba(0, 229, 153, 1) !important;
  color: rgba(0, 229, 153, 1) !important;
}

.question-input label {
  color: rgba(0, 229, 153, 1) !important;
}

.security-questions {
  margin-top: 20px;
}

label {
  color: #a4b4cb !important;
  font-weight: 400 !important;
}

.form-validation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
  margin-left: 5px;
}

.validation {
  display: flex;
  margin-bottom: 10px;
}

.validation-message {
  margin-left: 4px;
  color: #15121d;
}

.security-question-box {
  color: rgba(0, 229, 153, 1);
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 12px;
}

.seed-phrase-container {
  width: 25%;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.seed-phrase-input {
  background: #f9f8fd;
  border: 0.5px solid rgba(0, 229, 153, 1);
  backdrop-filter: blur(22px);
  width: 90%;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  border-radius: 7px;
}

ul li {
  color: #15121d !important;
  padding: 10px !important;
}

/* ul li.Mui-selected {
  background-color: transparent !important;
  color: rgba(0, 229, 153, 1) !important;
} */

@media screen and (min-width: 600px) {
  .f-display {
    font-weight: 400;
    font-size: 64px;
    line-height: 80px;
  }

  .f-title-lg {
    font-weight: 400;
    font-size: 40px;
    line-height: 52px;
  }

  .f-title-md {
    font-weight: 400;
    font-size: 32px;
    line-height: 48px;
  }

  .f-title-sm {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }

  .f-body-lg {
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 28px;
  }

  .f-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }

  .f-body-sm {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
  }

  .f-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
  }

  .f-label-sm {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
}

/* Animation  */
.trans-default {
  transition-duration: 0.3s;
}

.trans-medium {
  transition-duration: 0.5s;
}

.trans-slow {
  transition-duration: 0.8s;
}

/* default option */
.bezier-out {
  transition-timing-function: cubic-bezier(0, 0.45, 0.36, 1);
}

.bezier-in-out {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

.fade-enter {
  opacity: 0;
}

.fade-enter-active {
  opacity: 1;
}

.fade-exit {
  opacity: 1;
}

.fade-exit-active {
  opacity: 0;
}

.fade-enter-active,
.fade-exit-active {
  transition: opacity 800ms cubic-bezier(0, 0.45, 0.36, 1);
}

.editable-div::-webkit-scrollbar {
  height: 0px;
}

.hud-chart {
  flex: 1;
  width: 100%;
}

.apexcharts-canvas {
  position: relative;
  user-select: none;
  z-index: -1 !important;
}

.dashboard-upper-layout {
  padding: 0px 15px;
  width: 100%;
}

.bottom-chart-container {
  min-height: 50px;
  width: 100%;
  position: relative;
}

.below-hud-container {
  height: 554px;
  overflow: hidden;
}

.landing-sonar-logo {
  position: absolute;
  width: 100%;
  top: 10px;
  z-index: 2;
}

.sonar-img {
  /* margin-left: 10px; */
  margin-top: 50px;
  width: 60px;
  height: 60px;
}

.password-steps-wrapper {
  position: absolute;
  bottom: 4pc;
  width: 100%;
  z-index: 1;
}

.animatebtn-icon {
  width: 25px;
  height: 25px;
}

.animatebtn-text {
  font-weight: 500;
  font-style: normal;
  font-size: 13;
  margin-top: 3;
  overflow: hidden;
  white-space: nowrap;
}

.connection-badge-circle {
  background-color: black;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-size: cover;
  background-position: center;
}

.connection-badge-loading {
  background-color: rgba(0, 0, 0, 0.5);
  width: 70%;
  height: 70%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.screen-header-backdrop {
  position: absolute;
  width: 380px;
  height: 200px;
  top: 0;
  right: 0;
  z-index: 1;
}

.screen-header-back {
  cursor: pointer;
  opacity: 0.6;
  z-index: 3;
}

.token-balance-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 5px;
  width: 230px;
}

.token-figure {
  margin-left: 3px;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.token-balance-2 {
  margin: 0px 0px 0px 0px;
  display: flex;
  align-items: center;
}

.mainview-container {
  margin-top: 12%;
}

.AnimationGroup-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.password-input-icon {
  margin-right: 10px;
}

.editable-div {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.navigators {
  display: flex;
  margin-top: 17px;
  margin-bottom: 6px;
  align-self: flex-start;
}

.switch-tabs-wrapper {
  border-radius: 0px;
  background-color: #dedede;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 370px;
  margin-top: 6px;
}

.tokens-section {
  height: 100%;
}

.caret-down-accordian {
  margin-top: 5px;
}

.accordian-thumb-image {
  background-position: center;
  background-size: cover;
  height: 20px;
  width: 20px;
  border-radius: 26px;
  margin-right: 7px;
  border: '2px solid red';
}

.network-selector-close-btn {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.network-selector-close-svg {
  cursor: pointer;
  margin-right: 10px;
}

.network-selectorBody {
  margin-top: 5;
  overflow-y: scroll;
  height: 450px;
  width: 100%;
}

.IconBorder {
  border: 5px solid #29252e;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 6px;
}

.recentTabTitle {
  margin-left: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.tokenAmountStyle {
  width: 42%;
  margin-left: auto;
}

.content {
  height: 100%;
}

.marginLeft {
  margin-left: 10px;
}

.addressBookStyle {
  text-align: start;
  width: 95%;
  margin: auto;
  padding-left: 8px;
  margin-top: 20px;
}

.center {
  width: 95%;
  margin: auto;
}

.endAdornment {
  font-size: 10px;
  margin-right: 10px;
}

.panelBox {
  width: 100%;
  padding: 4px 8px;
}

.slippage {
  margin-top: 15px;
}

.white {
  color: #fcf6ff;
}

.TokenSelectionWrapper {
  width: 100%;
}

.statsIconWrapper {
  box-sizing: border-box;
  width: 40px;
}

.editGasIcon {
  color: #0e0e0e;
  font-size: 18px;
}

.editCodeIcon {
  color: #ffffff;
  font-size: 14px;
}

.activity-date {
  margin: 0px 0px 5px 15px;
}

.statsIcon {
  color: #7b7a7f;
  font-size: 18px;
  margin-right: 10px;
  margin-left: 10px;
}

.infoIconTxFail {
  color: #7b7a7f;
  font-size: 14px;
  margin-right: 10px;
}

.AllIconsInTxFailModal {
  font-size: 14px;
  margin-right: 10px;
}

.lightGray {
  color: rgba(255, 255, 255, 0.5);
}

.sortDownIcon {
  font-size: 14px;
  margin-left: 6px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.animated {
  animation-name: pulsate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes pulsate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.chainName {
  width: 90%;
  opacity: 0.5;
  margin: auto;

  text-align: start;
  line-height: 17px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.width {
  width: 95%;
  margin: auto;
  margin-top: 5px;
}

.step3Icon {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: -12px;
  margin-left: 10px;
  cursor: pointer;
}

.genericBox {
  width: 95% !important;
  margin: auto;
  padding-left: 10px;
}

.walletHeading {
  margin-left: 15px;
}

.detail {
  margin-right: auto;
  padding-left: 10px;
}

.dimUnderline {
  opacity: 0.7 !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  margin: 5px;
}

.onHold-loading {
  height: 100%;
  position: absolute;
  left: 0;
  width: 0%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.padLeft {
  text-align: start;
  width: 90%;
  margin: auto;
}

.margin {
  margin-top: 5px;
  margin-bottom: 5px;
}

.dapp-layout-parent {
  height: 100vh;
  padding: 15px 0px;
}

.network-logo {
  border-radius: 12px;
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.network-verify-logo {
  border-radius: 12px;
  width: 18px;
  height: 18px;
  margin-left: 12px;
}

.dapp-err-box {
  border: 2px solid rgba(255, 55, 94, 0.2);
  width: 100%;
  border-radius: 12px;
  padding: 16px;
}

.dapp-account-list {
  margin-bottom: 20px;
  max-height: 274px;
  overflow-y: scroll;
}

.dapp-connect-box {
  width: 100%;
  margin-bottom: 25px;
  padding: 0px 25px;
}

.dapp-connect-terms {
  padding: 12px 20px 20px;
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.dapp-terms-seperator {
  width: 100%;
  margin: 12px 0px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.QRcode {
  border-radius: 12px;
  width: 90%;
  margin: 25px 0px 14px 0px;
}

.account-qrcode {
  border-radius: 12px;
  width: 75%;
  margin: 25px 0px 14px 0px;
}

.swap-seperator-line {
  background-color: white;
  opacity: 0.1;
  height: 2px;
  flex: 1;
}

.tile-avatar {
  width: 30px !important;
  height: 30px !important;
  margin-right: 12px;
}

.network-list-box {
  overflow-y: scroll;
  height: 400px;
}

.tokenSearch-loading {
  color: white;
  text-align: end;
  padding: 0px 20px;
}

.tokenSearch-list {
  height: 435px;
  overflow-y: scroll;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 1s linear infinite;
  -moz-animation: rotating 1s linear infinite;
  -ms-animation: rotating 1s linear infinite;
  -o-animation: rotating 1s linear infinite;
  animation: rotating 1s linear infinite;
  overflow: hidden;
}

.editlist-tokenslist-box {
  /* height: 474px; */
  padding-top: 10px;
  /* padding-bottom: 20px; */
  overflow-y: scroll;
}

.account-tile-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 7px;
  border-radius: 12px;
  box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.1);
}

.my-tokens-list {
  height: 474px;
  /* padding-bottom: 20px; */
  overflow-y: scroll;
  width: 100%;
}

.transparent {
  background: transparent !important;
}

.input-header {
  margin: 15px 0px 7px 0px;
  padding: 0px 5px;
}

.activtyBoxImage {
  border-radius: 50%;
  width: 18px !important;
  height: 18px !important;
}

.top-layout-rainbow {
  position: absolute;
  width: 100%;
  z-index: -1;
  margin-left: -15px;
  margin-top: -120px;
}

/* --------------------------------------------------------- */
.r-c-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.r-c-sb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.r-c-sa {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.r-c-se {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.r-c-fs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.r-c-fe {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.r-fs-c {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.r-fs-sb {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.r-fs-sa {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.r-fs-se {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}

.r-fs-fs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.r-fs-fe {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.r-fe-c {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.r-fe-sb {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.r-fe-sa {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.r-fe-se {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
}

.r-fe-fs {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.r-fe-fe {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.r-st-c {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.r-st-sb {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.r-st-sa {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
}

.r-st-se {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}

.r-st-fs {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.r-st-fe {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.c-c-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-c-sb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.c-c-sa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.c-c-se {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.c-c-fs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.c-c-fe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.c-fs-c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.c-fs-sb {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.c-fs-sa {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}

.c-fs-se {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}

.c-fs-fs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.c-fs-fe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.c-fe-c {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.c-fe-sb {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.c-fe-sa {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
}

.c-fe-se {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
}

.c-fe-fs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.c-fe-fe {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.c-st-c {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.c-st-sb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.c-st-sa {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-around;
}

.c-st-se {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-evenly;
}

.c-st-fs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.c-st-fe {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
}

.listbox {
  width: 95%;
  margin: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

.chevronRight {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.qrAddress {
  border-radius: 16px;
  margin: auto;
  margin-top: 15px;
}

.pencilIcon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 800;
  margin-left: 10px;
  cursor: pointer;
}

.buttonBoxStyled {
  border-radius: 12px;
  padding: 8px;
  background: #242424;

  margin: 5px;
  margin-top: 0px;
  cursor: pointer;
}

.icon {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 5px;
  font-weight: 600;
  font-size: 18px;
}

.buttonWrapper {
  margin-top: 10px;
}

.addressLabel {
  opacity: 0.7;
  margin-top: 10px;
  word-wrap: break-word;
  width: 100%;
}

.full-width {
  width: 100%;
}

.walletItem {
  background: #242424;
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px;
}

.generic {
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 500;
  margin: 10px !important;
}

.listItemIcon {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 15px;
}

.preferencesListTitle {
  margin-left: 12px;
  margin-top: 3px;
}

.boxStyleOverride {
  flex-direction: column;
  height: auto !important;
}

.snackbarTextBox {
  cursor: pointer;
}

.snackbarText {
  transform: translateY(0px);
  transition: all 0.5s;
  opacity: 0.7 !important;
}

.snackbarTextExpandedState {
  transform: translateY(0px);
  transition: all 0.5s;
  opacity: 0.7 !important;
}

.chevronDown {
  font-size: 17px;
  transition: all 0.5s;
}

.snackbarHeaderWrapper .chevronDown {
  opacity: 0.7;
}

/* dont delete */
/* .snackbarHeaderWrapper:hover .chevronDown {
  opacity: 0.7;
} */
.snackbarHeaderWrapper:hover .snackbarText {
  transform: translateY(0px);
}

.snackbarHeaderWrapper:hover .snackbarTextExpandedState {
  transform: translateY(0px);
}

.boxContent {
  text-align: left;
  margin-left: 2px;
  margin-right: 5px;
}

.userIcon {
  margin-right: 10px;
  font-size: 16px;
}

.marginBottom {
  margin-bottom: 5px;
}

.tokenBoxContentWrapper {
  width: 50%;
  padding: 10px 0px;
}

.snackbarHeaderWrapper {
  padding-bottom: 10px;
  cursor: pointer;
}

.faCheck {
  position: absolute;
  top: 24px;
  left: 21px;
}

.alignCenter {
  margin-left: 15px;
}

.buttonIcon {
  font-size: 16px !important;

  color: #ffffff;
  opacity: 0.4;
  cursor: pointer;
}

.rainbowLoaderImage {
  width: 40px !important;
  height: 40px !important;
  position: absolute;
  top: -4px;
  left: -7px;
  z-index: 1;
  cursor: pointer;
}

.paddingTop {
  padding-top: 15px;
}

.transactionLoader {
  position: absolute;
  z-index: 1000;
  right: 15px;
  top: 8px;
}

.amountBoxSignImage {
  width: 12px !important;
  height: 12px !important;
  margin-top: auto;
  margin-bottom: auto;
}

.amountBoxTokenImage {
  width: 30px !important;
  height: 30px !important;
  margin-left: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.transactionFeeBoxTitle {
  height: 75%;
  width: 30%;

  box-sizing: border-box;
}

.showTransactionFeeComponent {
  position: absolute;
  bottom: 0px;
}

.hideTransactionFeeComponent {
  position: absolute;
  bottom: -250px;
}

.expandedSearchBoxWrapper {
  width: 90%;
  margin: auto;
}

.alignContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start !important;
  max-width: 260px !important;
}

.dimOpacity {
  color: rgba(255, 255, 255, 0.7);
}

.scrollHost {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-color: transparent transparent;
  /*just hides the scrollbar for firefox */
}

.scrollHost::-webkit-scrollbar {
  display: none;
}

.scrollHost ::-moz-scrollbar {
  display: none;
}

.rainbowGlobalDiv {
  width: 100%;
  height: 210px;
  position: absolute;
  bottom: 0px;
  z-index: 0;
}

.neverDisclose {
  margin: 0px 15px;
  background: #ff375e;
  border-radius: 8px;
  padding: 10px;
  position: absolute;
  bottom: 0px;
  color: #fff;
  font-family: 'PPMori', sans-serif;
  /* transform: translateY(30px); */
}

.clipboard {
  position: absolute;
  bottom: 50px;
  right: 5px;
  opacity: 0.7;
}

.textAreaWrapper {
  width: 100%;
  position: relative;
}

.riskButton {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
}

.bg-44ACFF {
  background-color: #44acff;
}

.bg-44ACFF:hover {
  background-color: #44acff !important;
}

.bg-020202 {
  background-color: #020202;
}

.bg-020202:hover {
  background-color: #020202 !important;
}

.bg-FF6DB3 {
  background-color: #ff6db3;
}

.bg-FF6DB3:hover {
  background-color: #ff6db3 !important;
}

.bg-FDD25D {
  background-color: #fdd25d;
}

.bg-FDD25D:hover {
  background-color: #fdd25d !important;
}

.bg-50AF95 {
  background-color: #50af95;
}

.bg-50AF95:hover {
  background-color: #50af95 !important;
}

.bg-ffffff {
  background-color: #ffffff;
}

.bg-ffffff:hover {
  background-color: #ffffff !important;
}

::-webkit-scrollbar {
  width: 2px;
  margin: 20px !important;
}

::-webkit-scrollbar-track {
  background: #e8ecf5;
  margin: 20px !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 153, 1);
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.custom-btn {
  width: 100px;
  margin-left: 20px;
}

.custom-graph-btn {
  width: 64px;
  color: black;
  border-radius: 25px;
  margin-left: 20px;
  padding: 5px;
}

.apexcharts-canvas {
  z-index: 0 !important;
}

.pro-sidebar {
  position: fixed !important;
}

.send-header {
  display: flex;
  /* flex-direction: column; */
}

.main-view {
  padding: 30px 50px;
}

.main-view2 {
  padding: 30px 0px;
}

.send-btn {
  width: 145px;
  margin-right: 30px;
}

.active-send-btn {
  background-color: rgba(0, 229, 153, 1);
  color: white;
}

.swap-box {
  width: 50%;
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  margin-top: 80px;
}

.swap-details {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: #f9f8fd;
  padding: 20px;
  width: 80%;
  margin-top: 10px;
  border-radius: 6px;
}

.swap-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.swap-price {
  display: flex;
  justify-content: space-between;

  width: 80%;
  margin: 20px 0px;
}

.swap-token-box {
  border: 1px solid #e8ecf5;
  border-radius: 6px;
  display: flex;
  padding: 20px;
  width: 80%;
  justify-content: space-between;
  margin: 30px 0px;
}

.token-info {
  display: flex;
  justify-content: space-between;
}

.swap-btn {
  margin-top: 40px;
  width: 80%;
}

.convert-icon {
  position: relative;
  top: 25px;
  z-index: 2;
  cursor: pointer;
}

.swal2-title {
  text-align: center !important;
}

.settings-header {
  padding: 30px 50px;
  border-bottom: 1px solid #e8ecf5;
}

.settings-box {
  display: flex;
  height: 100vh;
}

.settings-tabs {
  width: 20%;
}

.settings-content {
  width: 80%;
  border-left: 1px solid #e8ecf5;
}

.settings-tab {
  padding: 20px 50px;
  border-bottom: 1px solid #e8ecf5;
  /* border-right: 1px solid #e8ecf5; */
  display: flex;
  cursor: pointer;
}

.settings-tab p {
  margin: 0px !important;
  margin-left: 5px !important;
}

.active-settings-tab {
  color: rgba(0, 229, 153, 1) !important;
}

.password-box {
  margin-top: 100px;
}

.networks-box {
  display: flex;
}

.networks-list {
  width: 30%;
  padding: 20px 30px;
  border-right: 1px solid #e8ecf5;
  height: 100vh;
}

.network-box {
  display: flex;
  margin-bottom: 50px;
  cursor: pointer;
}

.network-symbol {
  margin: 0px 10px;
  height: 30px;
}

.network-details {
  padding: 30px 50px;
  width: 70%;
}

.market-place-container {
  background-image: url(images/aeae6c175060dee2bcca.png);
  height: 100vh;
  background-size: cover;
  filter: blur(8px);
}

.earn-container {
  background-image: url(images/a78c40fe56fc5fd73316.png);
  height: 100vh;
  background-size: cover;
  filter: blur(8px);
}

.buy-container {
  background-image: url(images/7b380de4b3380b66ce57.png);
  height: 100vh;
  background-size: cover;
  filter: blur(8px);
}

.referral-container {}

.referral-header {
  border-bottom: 1px solid #e8ecf5;
  padding: 30px 20px 10px 30px;
}

.referral-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 20px 20px 20px 30px;
}

.referral-rewards-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 46%;
}

.referral-share-box {
  border: 1px solid #e8ecf5;
  padding: 20px;
  display: flex;
  flex-direction: column;

  width: 46%;
}

.referral-view-box {
  border: 1px solid rgba(0, 229, 153, 1);
  background-color: rgba(0, 229, 153, 0.1);
  border-radius: 3px;
  margin: 30px 0px 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  height: 30px;
}

.referral-list-box {
  margin: 20px 40px;
}

.referral-list-item {
  border-bottom: 1px solid #e8ecf5;
  display: flex;
  flex-direction: row;
  padding: 20px 0px;
  align-items: center;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-row-center-space-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-row-center-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  overflow: hidden;
  /* Prevent scrolling */
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Optional: Add padding above the logo/header */
.center-content Logo {
  margin-top: 20px;
}

/* .auth-header-with-steps {
  display: flex;
  flex-flow: row;
  place-content: space-around flex-start;
  align-items: center;
} */

.auth-header-with-steps .auth-header-steps {
  /* width: 50%; */
  /* text-align: center; */
  /* align-content: center; */
  /* margin-left: 80px; */
}

/* custom pattern lock  */
.react-pattern-lock__connector {
  background: #808080 !important;
  height: 1000%;
  border-width: 20px;

}

#filter__chains__checkbox {
  accent-color: #15121d;
}
