/* [project]/src/app/navbar.module.css [app-client] (css) */
.navbar-module__tF4lJa__navbar {
  transition: transform .3s ease-in-out;
  -webkit-backdrop-filter: none !important;
  background-color: var(--nav-bg) !important;
}

@media (width <= 768px) {
  .navbar-module__tF4lJa__navbar {
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    position: fixed !important;
  }
}

@media (width >= 769px) {
  .navbar-module__tF4lJa__navbar {
    position: relative !important;
    transform: none !important;
  }
}


/* [project]/node_modules/react-toastify/dist/ReactToastify.css [app-client] (css) */
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74d3c;
  --toastify-color-transparent: #ffffffb3;
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px #0000001a;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: .2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  display: flex;
  position: fixed;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  z-index: 0;
  word-break: break-word;
  flex: auto;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}

@media only screen and (width <= 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }

  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }

  .Toastify__toast {
    --toastify-toast-width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }
}

.Toastify__toast-container[data-stacked="true"] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform .3s;
  position: absolute;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity .1s;
}

.Toastify__toast--stacked[data-collapsed="false"] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: "";
  height: calc(var(--g) * 1px);
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}

.Toastify__toast--stacked[data-pos="top"] {
  top: 0;
}

.Toastify__toast--stacked[data-pos="bot"] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(3);
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  flex-shrink: 0;
  width: 22px;
  margin-inline-end: 10px;
  display: flex;
}

.Toastify--animate {
  animation-duration: .5s;
  animation-fill-mode: both;
}

.Toastify--animate-icon {
  animation-duration: .3s;
  animation-fill-mode: both;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light, .Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  transition: all .3s;
  position: absolute;
  top: 6px;
  right: 6px;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: .3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  width: 14px;
  height: 16px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  z-index: 1;
  opacity: .7;
  transform-origin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.Toastify__progress-bar--animated {
  animation: linear forwards Toastify__trackProgress;
}

.Toastify__progress-bar--controlled {
  transition: transform .2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: 100%;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.Toastify__progress-bar--wrp[data-hidden="true"] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  box-sizing: border-box;
  border: 2px solid;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  animation: .65s linear infinite Toastify__spin;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y)  - 10px), 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y)  + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y)  - 10px), 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y)  + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, 10deg);
  }

  80% {
    transform: perspective(400px)rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }

  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    visibility: visible;
    transform: translate3d(110%, 0, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    visibility: visible;
    transform: translate3d(-110%, 0, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    visibility: visible;
    transform: translate3d(0, 110%, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    visibility: visible;
    transform: translate3d(0, -110%, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

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

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


/* [project]/src/app/globals.css [app-client] (css) */
h1, h2, h3, h4, h5, h6, p, label, ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, a[href], input[type="button"], input[type="submit"], input[type="reset"], [role="button"], label[for], summary {
  cursor: pointer;
}

button:disabled, [disabled], [aria-disabled="true"] {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer !important;
}

.status-blocked {
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  color: #f75376 !important;
}

.points-text.blocked, .table-mobile-pending.blocked, .table-mobile-pts.blocked, .table-mobile-total12.blocked {
  color: #f75376 !important;
}

body body {
  font-family: Inter, DM Sans, Archivo, sans-serif;
  background: #ebf1ff !important;
}

.custom-header .navbar.navbar-expand-lg {
  border-bottom: 1px solid #e4e4e7;
}

.custom-header .navbar-brand img {
  width: 40px;
  height: auto;
}

.custom-header .right-side-bt {
  display: flex;
}

.custom-header button.navbar-toggler {
  border: none;
}

img.profile-img {
  width: 100%;
  max-width: 40px;
  height: 40px;
  margin: 0 16px 0 0;
}

.custom-header .nav-link {
  color: #757e89;
  border-radius: 8px;
  margin: 0 5px 0 0;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  opacity: 1 !important;
  padding: 10px 7px !important;
}

.custom-header .nav-link:hover, .custom-header .nav-link.active {
  background: #dee4f5 !important;
}

.custom-header .navbar-brand {
  margin: 0 30px 0 0;
}

.top-section-11 {
  background: #dee4f5;
  border-radius: 8px;
  padding: 12px;
}

.token-line.total-point-11 {
  justify-content: space-between;
  margin: 0 0 20px;
  display: flex;
}

.total-point-12 {
  width: 50%;
}

.custom-header .right-side-bt li a, .custom-header .right-side-bt li p {
  color: #71717a;
  border-radius: 6px;
  height: 40px;
  margin-bottom: 0;
  padding: 0 15px;
  font-family: Archivo, sans-serif;
  font-weight: 500;
  line-height: 40px;
  text-decoration: none;
  display: block;
}

.custom-header .bt-1 {
  border: 1px solid #0f0f10;
}

.custom-header .bt-2 {
  background: #18181b;
  margin: 0 0 0 15px;
  color: #fff !important;
}

.Welcome_safty {
  letter-spacing: -.4px;
  color: #09090b;
  padding: 30px 0;
  font-family: DM Sans;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

.welcome-sub-hed {
  color: #757e89;
  letter-spacing: 0%;
  padding: 25px 0 0;
  font-family: Archivo;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: block;
}

.img_banner {
  width: 100%;
  max-width: 142px;
  height: auto;
  margin: auto;
  display: block;
}

.inner-content {
  background: #e9eefe;
  border: 1px solid #dce1ec;
  border-radius: 38px;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 330px);
  padding: 80px 30px;
  display: flex;
}

.dash-p {
  letter-spacing: -.4px;
  text-align: center;
  color: #1a202e;
  padding: 40px 0 0;
  font-family: DM Sans, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.dash-p1 {
  color: #757e89;
  text-align: center;
  margin: 15px 0 0;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.login_bt {
  color: #fff;
  text-align: center;
  background: linear-gradient(260deg, #177347 0%, #36cf85 50%);
  border: none;
  align-items: center;
  min-width: 100px;
  max-width: max-content;
  height: 40px;
  margin: 24px auto auto;
  padding: 0 15px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  display: flex;
  border-color: #0000 !important;
  border-radius: 80px !important;
}

a.login_bt img {
  margin: 0 0 0 5px;
}

.footer-left-p {
  color: #757e89;
  margin: 0;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.footer-ul li a {
  color: #1a202e;
  margin: 0 0 0 30px;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
}

.footer-ul {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  display: flex;
}

.footer-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-custom {
  border-top: 1px solid #dce1ec;
  margin: 30px 0 0;
  padding: 40px 0;
}

.custom-modal .modal-dialog.modal-dialog-centered {
  max-width: 460px;
}

.custom-modal .modal-header {
  border: none;
  padding: 25px 25px 0 22px;
}

.Log_in {
  color: #1a202e;
  text-align: center;
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

.label-all {
  color: #757e89;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  display: block;
}

.input_place {
  color: #1a202e;
  width: 100%;
  height: 44x;
  background: none;
  border: 1px solid #93a5bb;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
}

.convert-safety-line {
  color: #757e89;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.custom-modal .common-input {
  margin: 0 0 22px;
}

.Continue {
  color: #fff;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.ContinueClaim {
  color: #fff;
  background: linear-gradient(274.16deg, #177347 -24.64% 95.24%);
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.ImageAirop {
  width: 80% !important;
  height: 70% !important;
}

.ContinueClaimed {
  color: #fff;
  border: 1px solid #bccada;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  background: none !important;
}

.gift_img {
  width: 167px;
  margin: auto;
  display: block;
}

.icon_width {
  margin: auto;
  display: block;
  width: auto !important;
  min-height: auto !important;
}

.Continue.view-explorer.green-bt-only {
  color: #fff !important;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%) !important;
  border: none !important;
}

.assets-head-Announcement {
  color: #757e89;
  background: #dee4f5;
  border-radius: 90px;
  height: 36px;
  margin: 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
}

.assets-text-Announcement {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.ass-p1 {
  color: #2a65fd;
  background: #dee4f5;
  border-radius: 90px;
  height: 36px;
  margin: 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
}

.assets-head-Update {
  color: #0a0e19;
  background: #7ba0ff;
  border-radius: 90px;
  height: 36px;
  margin: 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
}

.assets-text-Update {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.ass-p2 {
  color: #1a202e;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}

.loresum-ul {
  margin: 22px 0 0;
  padding: 22px 0 0;
  list-style: none;
  position: relative;
}

.loresum-ul li {
  align-items: flex-start;
  display: flex;
}

.loresum-ul li img {
  width: 22px;
  margin: 0 10px 0 0;
  position: relative;
  top: 1px;
}

.loresum-ul li p {
  color: #757e89;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.loresum-ul:after {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.welcome-section.notifications-help {
  min-height: calc(100vh - 220px);
}

.OR_p {
  color: #71717a;
  text-align: center;
  z-index: 999;
  background: #fff;
  margin: auto;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  position: relative;
}

.bt-2.disabled {
  cursor: not-allowed;
  opacity: .5;
  pointer-events: none;
}

.bor-45 {
  text-align: center;
  position: relative;
}

.bor-45:after {
  content: "";
  background: #dce1ec;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
}

.social-link li a img {
  width: 16px;
  height: auto;
  margin: auto;
  display: block;
}

.social-link {
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  display: flex;
}

.social-link li {
  width: 48%;
}

.social-link li a {
  border: 1px solid #93a5bb;
  border-radius: 6px;
  width: 100%;
  height: 40px;
  line-height: 20px;
  display: flex;
}

.dont-p {
  color: #757e89;
  text-align: center;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.MuiStack-root.css-drko86-JoyStack-root {
  align-items: center;
  display: flex;
}

.custom-header .right-side-bt li .MuiStack-root.css-drko86-JoyStack-root a.both-bt {
  margin: 0 0 0 15px !important;
}

.custom-header .right-side-bt li a.both-bt img {
  width: 20px;
  height: auto;
  margin: 0 5px 0 0;
  position: relative;
  bottom: 1px;
}

.dont-p.text-center button {
  color: #1a202e;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.dont-p a {
  color: #1a202e;
  margin: 0 0 0 6px;
  font-weight: 600;
  text-decoration: none;
}

.custom-modal .modal-body {
  padding: 30px;
}

.custom-modal .btn-close {
  opacity: 1;
  z-index: 99;
  background: none;
  position: relative;
  right: 10px;
  padding: 0 !important;
}

.custom-modal .btn-close img {
  width: 24px;
  height: 24px;
}

.custom-modal .btn-close:focus {
  box-shadow: none !important;
}

.wallet-modal-section {
  background: #ebf1ff;
  border-radius: 38px !important;
}

.custom-modal .modal-content {
  background: #ebf1ff;
  border: 1px solid #dce1ec;
  border-radius: 38px;
}

.meta-mask li a {
  color: #09090b;
  border: 1px solid #93a5bb;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.meta-mask li a:hover, .meta-mask li a:active {
  background: #dee4f5;
}

.meta-mask {
  margin: 0;
  padding: 0;
}

.meta-mask li a img {
  width: 40px;
  height: auto;
  margin: 0 10px 0 0;
}

.meta-mask li {
  margin: 0 0 15px;
}

.check-label {
  color: #09090b;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.check-label input[type="checkbox"] {
  margin: 0 10px 0 0;
}

.Log_in_1 {
  color: #757e89;
  text-align: center;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.dont-p_1 {
  color: #757e89;
  text-align: center;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.custom-modal .modal-dialog.modal-dialog-centered.width-519 {
  max-width: 519px;
}

.input_90 {
  text-align: center;
  color: #bccada;
  background: none;
  border: 1px solid #93a5bb;
  border-radius: 8px;
  width: 100%;
  max-width: 80px;
  height: 80px;
  font-family: Inter;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  box-shadow: 0 1px 2px #0a0d120d;
}

.meta-mask-90 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 0 15px;
  padding: 0;
  display: flex;
}

.meta-mask-90 li {
  width: 14%;
  margin: 0 5px;
}

.eye-div {
  position: relative;
}

.eye-div input.input_place {
  padding-right: 30px;
}

.eye-div i {
  color: #71717a;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.must-div {
  border-top: 1px solid #dce1ec;
  margin: 0;
  padding: 0;
}

.Forgot_your.btn.btn-link.p-0 {
  color: #757e89;
  font-size: 14px;
  font-weight: 600;
}

.info-img {
  width: 24px;
  height: auto;
  margin: 0 10px 0 0;
}

.info-p90 {
  color: #757e89;
  text-align: center;
  margin: 0;
  padding: 22px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.width-520 {
  max-width: 520px !important;
}

.Forgot_your {
  color: #71717a;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.text-right {
  justify-content: flex-end;
  margin: 6px 0 0;
  display: flex;
}

.welcome {
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  display: flex;
}

.welcome h1 {
  color: #1a202e;
  letter-spacing: -.4px;
  margin: 0;
  font-family: DM Sans, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

ul.welcome-btns {
  align-items: center;
  padding: 0;
  list-style: none;
  display: flex;
}

.joinairdrop {
  color: #1a202e;
  text-align: center;
  border: 1px solid #93a5bb;
  min-width: 100px;
  max-width: 114px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  border-radius: 80px !important;
}

.convertpoint {
  text-align: center;
  color: #fff;
  background: linear-gradient(260deg, #177347 0%, #36cf85 50%);
  border: none;
  min-width: 100px;
  margin: 0 0 0 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  border-radius: 80px !important;
}

.Assets-box {
  background: #e9eefe;
  border: 1px solid #dce1ec;
  border-radius: 38px;
  margin: 0 0 30px;
  padding: 22px;
  box-shadow: 0 1px 2px #0000000d;
}

.your-points.accum-box {
  margin: 0;
}

.your-assets {
  justify-content: space-between;
  align-items: center;
  margin: 0 0 22px;
  display: flex;
}

.assets-title {
  align-items: center;
  gap: 8px;
  display: flex;
}

.assets-information {
  width: 20px;
  height: 20px;
}

.tooltip-container {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.tooltip-panel {
  z-index: 1000;
  color: #1a202e;
  backdrop-filter: blur(10px);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #dfe9ff;
  border: 1px solid #d5d5d5;
  border-radius: 18px;
  width: auto;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0 8px 24px #7ba0ff2e, 0 2px 8px #0000000f;
}

.tooltip--right-bottom {
  border-radius: 18px !important;
}

.tooltip--top-right {
  border-radius: 18px 18px 18px 0 !important;
}

.tooltip--top-left {
  border-radius: 18px 18px 0 !important;
}

.tooltip--bottom-left {
  border-radius: 18px 0 18px 18px !important;
}

.tooltip--bottom-right {
  border-radius: 0 18px 18px !important;
}

.dark .tooltip-panel {
  background: #b7cffdb2;
  border-color: #b7cffd52;
  box-shadow: 0 18px 54px #7ba0ff3d, 0 14px 40px #00000059;
}

.tooltip-title {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.tooltip-desc {
  color: #1a202e;
  opacity: .8;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-bottom: 8px;
  font-family: Archivo;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.tooltip-list {
  margin: 0;
  padding: 0 0 0 16px;
}

.tooltip-li {
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 500;
}

.footer-social {
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-left: 16px;
  display: inline-flex;
}

.footer-social li {
  list-style: none;
}

.suppot_input_email {
  min-height: 50px;
}

.suppot_input {
  min-height: 150px;
}

.footer-social a img {
  opacity: .9;
  width: 22px;
  height: 22px;
  transition: transform .15s, opacity .15s;
}

.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-1px)scale(1.06);
}

.footer-left {
  align-items: center;
  gap: 12px;
  display: flex;
}

.footer-left-p {
  margin: 0;
}

.tooltip-address {
  color: #132148;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-weight: 600;
}

.tooltip-arrow {
  content: "";
  background: inherit;
  border-top: 1px solid #c9d9ff;
  border-left: 1px solid #c9d9ff;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -6px;
  left: 14px;
  transform: rotate(45deg);
}

.tt-bottom-right .tooltip-panel {
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: auto !important;
  right: 0 !important;
}

.tt-bottom-right .tooltip-arrow {
  left: auto !important;
  right: 2px !important;
}

.tt-bottom-left .tooltip-panel {
  border-radius: 18px 0 18px 18px !important;
}

.tt-bottom-right .tooltip-panel {
  border-radius: 0 18px 18px !important;
}

.tt-right-bottom .tooltip-panel {
  border-radius: 18px !important;
}

.tt-bottom-left .tooltip-panel {
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 0 !important;
  right: auto !important;
}

.tt-bottom-left .tooltip-arrow {
  left: 14px !important;
  right: auto !important;
}

.tt-top-right .tooltip-panel {
  border-radius: 18px 18px 18px 0 !important;
  position: absolute !important;
  inset: auto 0 calc(100% + 2px) auto !important;
}

.tt-top-right .tooltip-arrow {
  border: 1px solid #c9d9ff !important;
  border-top: none !important;
  border-left: none !important;
  inset: auto 5px -6px auto !important;
}

.tt-right .tooltip-panel {
  transform: translateY(-50%);
  top: 50% !important;
  left: calc(100% + 12px) !important;
  right: auto !important;
}

.tt-right .tooltip-arrow {
  transform: translateY(-50%)rotate(45deg);
  top: 50% !important;
  left: -6px !important;
  right: auto !important;
}

.tt-right-bottom .tooltip-panel {
  width: 445px;
  top: 100% !important;
  left: 100% !important;
  right: auto !important;
  transform: none !important;
}

.tt-right-bottom .tooltip-arrow {
  top: 10px !important;
  left: -6px !important;
  right: auto !important;
  transform: rotate(45deg) !important;
}

@media (width <= 767px) {
  .tooltip-panel {
    box-sizing: border-box;
    width: auto !important;
    min-width: 260px !important;
    max-width: calc(100vw - 82px) !important;
  }

  .tooltip-arrow {
    left: 24px !important;
    right: auto !important;
  }
}

.p_tag_welcome {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.assets-head {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.assets-btn {
  color: #757e89;
  background: #dee4f5;
  border-radius: 90px;
  justify-content: center;
  align-items: center;
  height: 32px;
  display: flex;
  padding: 6px !important;
}

.Airdropsuccessful {
  color: #1f8c57;
  background: #dee4f5;
  border: 1px solid #1f8c57;
  border-radius: 8px;
  width: 100%;
  min-height: 52px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.drop-div-ul {
  background: #dee4f5;
  border-radius: 12px;
  margin: 0;
  padding: 15px;
  list-style: none;
}

.drop-div-ul-p1 {
  color: #757e89;
  align-items: center;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.assets-copy-drop, .assets-wifi-drop {
  margin: 0 10px 0 0;
}

.drop-div-ul-p2 {
  color: #1a202e;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.drop-div-ul li {
  border-bottom: 2px solid #dce1ec;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px;
  padding: 0 0 15px;
  display: flex;
}

.drop-div-ul-p2-bt {
  color: #757e89;
  background: #ebf1ff;
  border-radius: 50px;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}

.border-space {
  background: #dce1ec;
  height: 1px;
  margin: 22px 0;
}

.assets-air-drp {
  color: #2a65fd;
  background: #dee4f5;
  border-radius: 50px;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.assets-air-drp-1 {
  color: #0a0e19;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.Lorem_Ipsum {
  color: #0a0e19;
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
}

.Lorem_Ipsum_1 {
  color: #757e89;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
}

.check-box-ul {
  margin: 0;
  padding: 0;
}

.check-box-ul li {
  align-items: center;
  display: flex;
}

.checkbox-p {
  color: #757e89;
  margin: 0 0 0 10px;
}

.check-box-ul li {
  margin: 0 0 10px;
}

.check-box-ul li:last-child {
  margin: 0;
}

.first-transfer.tramsfer-bottom .transfer-img11 {
  margin: 0 10px 0 0;
}

.check-bx {
  appearance: none;
  background: url("/check.svg") 0 0 / cover no-repeat;
  width: 22px;
  height: 22px;
}

.check-bx:checked {
  appearance: none;
  background: url("/uncheck.svg") 0 0 / cover no-repeat;
  width: 22px;
  height: 22px;
}

.assets-btn.Referral-Link img.assets-copy {
  margin: 0 7px 0 0;
}

.only-recent-activity .transfer-img {
  margin: 0 10px 0 0;
}

.points-text {
  color: #1a202e !important;
  font-weight: 600 !important;
}

.height-auto {
  height: auto !important;
}

.drop-div-ul-p2-bt span {
  color: #1a202e;
  font-weight: 600;
}

.billi {
  width: 26px;
  height: 26px;
  margin: 0 8px 0 0;
}

.drop-copy {
  width: 20px;
  height: 20px;
  margin: 0 0 0 8px;
}

.drop-div-ul li:last-child {
  border: none;
  margin: 0;
}

.assets-btn-sec {
  align-items: start;
  margin: 0;
  display: flex;
}

.assets-copy {
  width: 100%;
  max-width: 18px;
  height: auto;
  margin: 0 5px 0 0;
}

.assets-text span {
  color: #1a202e;
  font-weight: bold;
}

.assets-text {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #757e89 !important;
}

.token-line {
  margin: 20px 0 0;
}

.token-bal {
  color: #757e89;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.token-amount {
  letter-spacing: -.4px;
  color: #09090b;
  border-bottom: 1px solid #e4e4e7;
  padding: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.top-section-11 .first-transfer.receive img.transfer-img {
  margin: 0 10px 0 0;
}

.total-point {
  color: #757e89;
  letter-spacing: 0%;
  text-align: left;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.total-amount {
  letter-spacing: -.4px;
  color: #1a202e;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}

.view-wallet {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100px;
  max-width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  text-decoration: none;
  display: flex;
  border: 1px solid #87a6ef !important;
  border-radius: 80px !important;
}

.light .view-wallet {
  color: #1a202e;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100px;
  max-width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  text-decoration: none;
  display: flex;
  border: 1px solid #a8abb1 !important;
  border-radius: 80px !important;
}

.daily-points.swap-safety.boost-sec .Continue.Invite_Friends_bt {
  color: #1a202e;
  text-align: center;
  background: #fff;
  border: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100px;
  max-width: 100%;
  height: 44px;
  margin: 24px auto auto;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  text-decoration: none;
  display: flex;
  border-color: #0000 !important;
  border-radius: 80px !important;
}

.assets-list {
  justify-content: start;
  align-items: center;
  display: flex;
}

.assets-btn.boost {
  color: #1a202e;
  background: none;
  border: 1px solid #7ba0ff;
  margin: 0 0 0 8px;
}

.assets-btn.boost p {
  color: #1a202e;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.progress-bar.point-mined-bar {
  letter-spacing: -.4px;
  color: #fff;
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  background: linear-gradient(90deg, #fff 0%, #2a65fd 100%) !important;
}

.progress.point-mined {
  background: #ebf1ff;
  border-radius: 8px;
  height: 56px;
}

.time-sec {
  padding: 15px 0 0;
}

.progress-section {
  border-bottom: 1px solid #000;
  margin: 0 0 12px;
}

.progress-border {
  border-bottom: 1px solid #b7cffd;
  padding-bottom: 15px;
  position: relative !important;
}

.assets-btn.arrow-right {
  background: none;
  height: 0;
}

.pagination {
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.page-btn {
  cursor: pointer;
  color: #757e89;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
}

.page-btn.active {
  color: #1a202e;
  background-color: #dee4f5;
  font-weight: bold;
}

.page-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.today {
  color: #1a202e;
  letter-spacing: -.4px;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.first-transfer {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.daily-points.swap-safety11 .safety-section {
  text-align: left;
}

.Assets-box.Mining-status-only {
  background: #e9eefe url("../media/Subtract.04417f84.png") bottom / cover;
  border-top: 1px solid #dce1ec;
  box-shadow: 0 4px 4px #00000040;
}

.trans-1 {
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: 50%;
  display: flex;
}

.transfer-img {
  width: 100%;
  max-width: 24px;
  height: auto;
}

.trans-text1 {
  color: #1a202e;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.trans-text2 {
  color: #757e89;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.airdrop-11 {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.Assets-box.recent11 ul.assets-btn-sec {
  margin: 0;
  padding: 0;
}

.Assets-box.recent11 ul.assets-btn-sec li.assets-btn.arrow-right {
  padding: 0;
}

.saf {
  color: #757e89;
  text-align: right;
  width: 50%;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.first-transfer {
  border-bottom: 1px solid #e4e4e7;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.view-wallet.mining {
  margin: 40px 0 0;
  transition: transform .15s, box-shadow .2s, filter .2s, color .15s;
}

.view-wallet.mining.mining-enabled, .dark .view-wallet.mining.mining-enabled {
  color: #1a202e !important;
  background: #fff !important;
  border: 1px solid #e4e4e7 !important;
}

.view-wallet.mining.mining-disabled {
  color: #ffffff80 !important;
  background: linear-gradient(90deg, #ffffff1a 0%, #ffffff0d 100%) !important;
  border: 1px solid #87a6ef4d !important;
}

.dark .view-wallet.mining.mining-disabled {
  color: gray !important;
  background: #ebf1ff !important;
  border: 1px solid #87a6ef40 !important;
}

.light .view-wallet.mining.mining-disabled {
  color: gray !important;
  background: #ebf1ff !important;
  border: 1px solid #a8abb14d !important;
}

.view-wallet.mining:hover {
  color: #7ba0ff;
  transform: translateY(-1px)scale(1.02);
  box-shadow: 0 10px 30px #7ba0ff59, 0 0 0 4px #7ba0ff26;
}

.view-wallet.mining:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #7ba0ff73, 0 10px 30px #7ba0ff59;
}

.first-transfer.refer, .first-transfer.receive {
  margin: 12px 0 0;
}

.token-line .first-transfer:last-child {
  border: none;
  padding-bottom: 12px;
}

.select-wrapper select.form-select {
  appearance: none;
  color: #333;
  background-color: #dee4f5;
  background-image: url("../media/arrow-down.b8835646.png");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 90px !important;
}

img.chart {
  width: 100%;
  height: auto;
  margin: 38px 0 0;
}

.safety-section {
  text-align: center;
  width: 100%;
}

.daily-points.swap-safety.boost-sec .safety-section p {
  text-align: center;
  color: #757e89;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.safety-section h3 {
  color: #1a202e;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
}

.safety-section h3 p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.exchange-box {
  margin: 16px 0 0;
}

.swap-icon {
  text-align: center;
  margin: 12px 0;
}

.swap-icon img {
  width: 100%;
  max-width: 20px;
  height: auto;
}

.transaction {
  border: 1px solid #93a5bb;
  border-radius: 6px;
  align-items: center;
  min-height: 51px;
  padding: 0 10px;
  display: flex;
}

.transaction select.form-select, .transaction input.form-control {
  border: none;
  height: 40px;
}

.view-wallet.swap-now {
  margin: 22px 0 0;
}

.welcome-section {
  padding: 0 0 40px;
}

.transaction input.form-control.ETH {
  color: #757e89;
  background: none;
}

.scanner-section {
  margin: 31px 0 0;
}

span.bep-20 {
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 400;
}

.transfer-img11 {
  width: 100%;
  max-width: 22px;
  height: auto;
}

.first-transfer.tramsfer-bottom {
  margin: 0 0 12px;
}

.common-input-new.scanner-btn {
  margin: 20px 0 0;
}

.Assets-box.assets-11 {
  height: auto;
}

.scanner-placeholder {
  color: #757e89;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.send_bt {
  color: #fff;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.Assets-box.scanner-box {
  text-align: center;
  height: auto;
  box-shadow: none;
  background: #dee4f5;
  border: none;
  border-radius: 16px;
  align-items: center;
  margin: 30px 0 0;
}

.scanner-section .first-transfer.tramsfer-bottom:last-child {
  border: none;
}

.assets-btn-sec.scanner-time {
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.scanner-img {
  width: 100%;
  max-width: 141px;
  height: auto;
  margin-bottom: 15px;
}

.Assets-box.recent11 {
  height: auto;
  margin: 25px 0 0;
}

.assets-icon {
  width: 100%;
  max-width: 20px;
  height: auto;
  margin: 0 0 0 8px;
}

li.wallet-token {
  background-color: #f0f0f0;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.token-img {
  width: 44px;
  height: 44px;
}

.token-amount span {
  color: #868686;
  font-weight: 400;
}

.contract-wrapper {
  background: linear-gradient(90.48deg, #87a6ef -2.02%, #3255af 102.84%);
  border: none;
  border-radius: 9px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 15px;
  font-family: Arial, sans-serif;
  display: flex;
}

.contract-label {
  color: #ebf1ff;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
}

.contract-address-box {
  color: #333;
  cursor: pointer;
  background: #eaeaea;
  border-radius: 16px;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  display: flex;
}

.copy-icon {
  background-image: url("../media/copy.967eaa95.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.Continue.view-explorer {
  color: #1a202e;
  background: none !important;
  border: 1px solid #93a5bb !important;
}

.point-test {
  color: #757e89;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
}

.point-amount {
  letter-spacing: 0;
  color: #1a202e;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 100%;
}

.ex-ready {
  background: #dee4f5;
  border: none;
  border-radius: 16px;
  padding: 22px;
}

.your-points {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 22px;
  display: flex;
}

img.today-img {
  width: 100%;
  max-width: 28px;
  height: auto;
  margin: 0 10px 0 0;
}

.token-line.airdrop-box.mar-top-15-cus {
  margin: 0;
}

.airdrop {
  color: #1a202e;
  letter-spacing: -.4px;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.airdrop-section {
  margin: 0 0 16px;
}

.token-line.airdrop-box {
  border-bottom: 1px solid #dce1ec;
  margin: 22px 0 0;
  padding: 0 0 22px;
}

.scan-div {
  position: relative;
}

.Assets-box .token-line.airdrop-box:last-child {
  border: none;
  padding: 0;
}

.scan-div img {
  color: #71717a;
  width: 100%;
  max-width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.transfer-section .common-input {
  margin: 0 0 16px;
}

.transfer-section {
  margin: 0 0 15px;
}

.welcome.mine-safety {
  display: block;
}

.welcome.mine-safety p {
  color: #71717a;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.token-amount.mining-time {
  border: none;
}

.contract-wrapper.mining-wrapper {
  margin: 0 0 65px;
}

.token-amount.mining-time {
  border: none;
  padding: 0 0 12px;
}

.checkbx {
  appearance: none;
  background-image: url("../media/uncheck.6bde9009.png");
  background-size: 20px;
  border: 1.5px solid #292d32;
  border-radius: 5px;
  width: 20px;
  min-width: 18px;
  height: 20px;
}

.checkbx:checked {
  appearance: none;
  background-image: url("../media/Vector.50b89dc9.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1.5px solid #292d32;
  border-radius: 5px;
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.common-select-label {
  color: #18181b;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  display: block;
}

.input-select {
  letter-spacing: 0;
  color: #71717a;
  background-color: #0000;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.assets-copy-new {
  width: 44px;
  height: 44px;
}

.input-select.back-input {
  appearance: none;
  background-image: url("../media/Chevrondown.92080165.png");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 22px;
}

.referral-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 700px;
  margin: 30px 0;
}

.referral-header th {
  text-align: left;
  color: #757e89;
  border-bottom: 1px solid #dce1ec;
  height: 48px;
  padding: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.align-right {
  text-align: right !important;
}

.referral-row td {
  vertical-align: middle;
  color: #1a202e;
  border-bottom: 1px solid #dce1ec;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.SAFETY-flx {
  align-items: center;
  display: flex;
}

.SAFETY-flx img {
  margin: 0 10px 0 0;
}

.user-details {
  align-items: center;
  display: flex;
}

.user-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.assets-copy.marright56 {
  margin-right: 10px;
}

.Token_Balance_ul {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  display: flex;
}

.back-bt {
  width: 24px;
  height: 24px;
  margin: 0 15px 0 0;
  position: relative;
  top: 3px;
}

.top-table-content {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 0;
  display: flex;
}

.Token_Balance {
  color: #1a202e;
  align-items: center;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  display: flex;
}

.BNB_Chain {
  color: #fff;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.Disconnect_Wallet {
  color: #f75376;
  background: none;
  border: 1px solid #f75376;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.Token_Balance_ul p.drop-div-ul-p2-bt {
  background: #dee4f5;
  height: 44px;
}

.Token_Balance_ul li {
  margin: 0 0 0 15px;
}

.status-badge {
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.status-pending {
  color: #7ba0ff;
  font-size: 12px;
  font-weight: 400;
}

.token-line.mineing_only img.trans_img {
  margin: 0 10px 0 0;
}

.status-completed {
  color: #36cc83;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}

.status-failed {
  color: #f44336;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 9px;
}

.points-text {
  font-weight: 600;
}

.daily-points.swap-safety.boost-sec img.token-img {
  width: 80px;
  height: 80px;
  margin: 0 0 15px;
}

.daily-points.swap-safety.boost-sec {
  background: #e9eefe url("../media/Subtract.04417f84.png") bottom / cover;
  border: 1px solid #dce1ec;
  border-radius: 38px;
  align-items: center;
  height: auto;
  margin: 0 0 30px;
  padding: 22px;
  display: flex;
  box-shadow: 0 4px 4px #00000040;
}

.common-input-new.active-now {
  margin: 24px 0 0;
}

.common-input-new.active-now .Continue {
  width: 100%;
  max-width: 122px;
  margin: auto;
}

.assets-box-div {
  height: 100%;
}

.modal-open {
  overflow: hidden;
}

.modal.fade.show.d-block {
  background: #18181b66 !important;
}

.modal-open .custom-header {
  filter: blur(7px);
}

.modal-open .welcome-section {
  filter: blur(7px);
  z-index: -1;
  position: relative;
}

.modal-open .dashboard-banner {
  filter: blur(7px);
}

.daily-points.swap-safety11 h3 {
  text-align: left;
}

.modal-open .footer-custom {
  filter: blur(7px);
}

.top-section-11 ul.assets-btn-sec {
  margin: 0;
}

.top-section-11 .first-transfer.receive {
  border-bottom: none;
  margin: 0;
}

.your-points .point-list {
  width: 50%;
}

.assets-copy-op-1 {
  width: 56px;
  height: auto;
  margin: auto auto 15px;
  display: block;
}

.bor-none {
  border: none !important;
}

.max-bt {
  background: none;
  border: 1px solid #93a5bb;
  border-radius: 50px;
  align-items: center;
  height: 25px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
}

.max-right {
  justify-content: flex-end;
  display: flex;
}

.dark .custom-header .right-side-bt .Log-In-bt.both-bt {
  box-shadow: 0 3px 18.9px #21583e8a;
  color: #fff !important;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%) !important;
  border: 1px solid #fff3 !important;
}

.custom-header .right-side-bt .Log-In-bt.both-bt {
  color: #fff;
  text-align: center;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  align-items: center;
  min-width: 100px;
  max-width: max-content;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  border: #0000 !important;
  border-radius: 80px !important;
}

.first-transfer.recent-transfer-section.receive:after {
  display: none;
}

.first-transfer.recent-transfer-section.receive {
  padding: 10px 0;
  margin: 0 !important;
}

@media (width >= 991px) {
  .display_mobile_hide {
    display: none !important;
  }
}

@media (width <= 767px) {
  .swiper-horizontal {
    height: 70vh !important;
  }
}

@media (width >= 991px) {
  .display_mobile_hide {
    display: none !important;
  }
}

@media (width <= 1024px) {
  .your-assets.your-assets11 {
    display: block;
  }

  .your-assets.assets-btn-sec {
    margin: 12px 0 0;
  }

  .token-amount.safety-usd {
    font-size: 20px;
  }

  .Assets-box {
    height: 100%;
  }

  .your-points {
    margin: 15px 0;
  }

  .your-assets.mining-status {
    min-width: 380px !important;
  }

  .your-assets-align {
    overflow: auto !important;
  }

  .custom-header .navbar-brand {
    margin: 0 15px 0 0;
  }

  .custom-header .nav-link {
    font-size: 12px;
  }

  .custom-header .right-side-bt .Log-In-bt.both-bt {
    padding: 0 10px;
    font-size: 12px;
  }

  .daily-points.Assets-box {
    margin: 30px 0 0;
  }

  .airdrop-section11 {
    margin: 30px 0;
  }

  .check-bx:checked, .check-bx {
    width: 40px;
    height: 24px;
  }

  .drop-div-ul-p2-bt {
    margin: 0 0 0 2px;
    padding: 0 8px;
  }
}

@media (width <= 991px) {
  .Assets-box.assets-box16 {
    margin: 22px 0 !important;
  }

  button.Disconnect_Wallet, label.lbl-srch {
    display: none;
  }

  .your-points {
    align-items: start;
  }

  ul.footer-ul {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .swap-text {
    font-size: 28px !important;
  }

  .Assets-box {
    padding: 15px;
  }

  .check-bx:checked {
    width: 28px;
    height: 28px;
  }

  .check-bx {
    width: 35px;
    height: 24px;
  }

  .total-point-12 {
    width: 100%;
  }

  .welcome {
    display: block;
  }

  .welcome h1 {
    margin: 0 0 15px;
    display: block;
  }

  .footer-ul li a {
    margin: 0 0 0 15px;
  }

  .custom-header .nav-link {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    padding: 15px 0 0 !important;
  }

  .custom-header .right-side-bt {
    margin: 10px 0;
  }

  .custom-header .nav-link {
    padding: 15px 0 0 !important;
  }

  .assets-box-bottom {
    margin: 0 0 15px;
  }

  .daily-points {
    margin: 0;
  }

  .welcome-section {
    padding: 0;
  }

  .custom-header .nav-link:hover, .custom-header .nav-link.active {
    color: #1a202e !important;
    background: none !important;
  }

  .right-side-bt.d-flex.align-items-center.gap-2 {
    margin: 10px 0 15px !important;
    padding: 0 !important;
  }

  .welcome {
    margin: 30px 0 22px;
  }

  .welcome h1 {
    font-size: 28px;
  }

  .safety-section h3 {
    font-size: 18px;
  }

  .Assets-box {
    height: auto !important;
    margin: 0 0 22px !important;
  }

  .contract-wrapper.mining-wrapper {
    margin: 0 0 22px;
  }

  .referral-table {
    margin: 15px 0;
  }

  .over-flow-table {
    min-height: auto !important;
  }

  .dark .custom-header .nav-link:hover, .dark .custom-header .nav-link.active {
    color: #36cf85 !important;
    background: none !important;
  }

  .mining-section-search {
    margin: 0 0 15px;
  }

  p.table-mobile-total12.panding-status {
    color: #2a65fd;
    font-family: Archivo;
    font-size: 12px;
    line-height: 135%;
  }

  .dark p.table-mobile-total12.panding-status {
    color: #7ba0ff;
  }
}

@media (width <= 767px) {
  .footer-ul li a {
    margin: 0;
  }

  .footer-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-ul li {
    margin: 10px 0 0;
  }

  .footer-custom {
    padding: 30px 0;
  }

  .inner-content {
    padding: 40px 15px;
  }

  .Welcome_safty {
    margin: 0;
    font-size: 28px;
  }

  .img_banner {
    max-width: 120px;
  }

  .login_bt {
    justify-content: center;
    min-width: 100%;
  }
}

.saf12 {
  width: 100%;
  max-width: 24px;
  height: auto;
  margin: 0 5px;
}

.saf11 {
  color: #1a202e;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.king-img {
  width: 80px;
  margin: 0 0 15px;
}

.Continue.activate-only {
  color: #1a202e;
  background: #fff;
  border: none;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  text-decoration: none;
  display: flex;
  border-color: #0000 !important;
  border-radius: 80px !important;
  max-width: 100% !important;
}

.common-input.conver-form {
  position: relative;
}

.color_1 {
  color: #36cc83;
}

.color_2 {
  color: #f75376;
}

.color_3 {
  color: #2a65fd;
}

.common-input-text {
  color: #757e89;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: absolute;
  top: 35px;
  right: 10px;
}

.assets-text13 {
  color: #ebf1ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.contract-address-box.safety230 {
  background-color: #0000;
  padding: 0;
}

.contract-wrapper.safety229 {
  margin: 0 0 15px;
}

.safety240 {
  color: #8a8a8a;
  border-top: 1px solid #dce1ec;
  margin: 0 0 16px;
  padding: 15px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.Assets-box.assets-box15 {
  height: auto;
}

li.balance-item {
  justify-content: space-between;
  align-items: center;
  padding: 0 0 21px;
  display: flex;
}

.balance-name {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.balance-list {
  margin: 0;
  padding: 0;
}

.balance-quantity {
  color: #1a202e;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.balance-list li:last-child {
  padding: 0;
}

.balance-span {
  color: #757e89;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.ops {
  opacity: .5;
}

.Assets-box.assets-box16 {
  height: auto;
}

.safety-balance-section {
  margin: 23px 0 0;
}

.check-copy {
  width: 100%;
  max-width: 10px;
  height: auto;
  margin: 0 8px 0 0;
}

.daily-points.swap-safety11 {
  background: #e9eefe;
  border: 1px solid #dce1ec;
  border-radius: 38px;
  height: calc(100% - 30px);
  margin: 0 0 30px;
  padding: 22px;
  box-shadow: 0 1px 2px #0000000d;
}

.assets-text b {
  color: #1a202e;
}

.chain-support11.chain-bottom {
  border-bottom: 1px solid #dce1ec;
  padding-bottom: 12px;
}

.chain-support {
  padding: 15px 0 0;
}

.chain-support .chain-support11.chain-bottom:last-child {
  border: none;
}

.chanin-text1 {
  color: #757e89;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.chanin-text1 strong {
  color: #1a202e;
}

.chain-1 {
  justify-content: start;
  align-items: start;
  display: flex;
}

.chain-1.chain-2 {
  margin: 12px 0 0;
}

.your-assets.your-assets11 li.assets-btn img.assets-copy {
  margin: 0 5px 0 0;
}

.ethereum-section button.btn.btn-light.dropdown-toggle.w-100.d-flex.align-items-center {
  appearance: none;
  background-color: #0000;
  background-image: url("../media/arrow-down.b8835646.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.dark .ethereum-section button.btn.btn-light.dropdown-toggle.w-100.d-flex.align-items-center {
  background-image: url("../media/ChevronDown.646e7a63.svg");
}

.ethereum-section-img {
  width: 100%;
  max-width: 20px;
  height: auto;
  margin-right: 5px;
}

.ethereum-section-confirm {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}

.ethereum-section .dropdown-toggle:after {
  display: none;
}

img.ethereum-safety {
  width: 100%;
  max-width: 20px;
  height: auto;
  margin: 0 0 0 10px;
}

.form-control.me-2 {
  color: #1a202e;
  background: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.bnb-bottom {
  text-align: center;
  color: #757e89;
  margin: 12px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.etherum-11 {
  color: #818181;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
}

.etherum-12 {
  color: #818181;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
}

.daily-points.airdrop-section {
  margin: 0;
}

.contract-wrapper.share-links {
  margin: 20px 0;
}

.Assets-box.recent12 {
  margin: 25px 0 0;
}

.user-details11 {
  color: #1a202e;
  text-align: left;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.table-title {
  text-align: left;
}

span.user-details12 {
  color: #757e89;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

span.status-badge.status-pending.yes {
  color: #36cc83;
  font-size: 12px;
  font-weight: 400;
}

span.status-badge.status-pending.no, .status-archived {
  color: #f75376;
  font-size: 12px;
  font-weight: 400;
}

span.arrow-circle-right img {
  width: 100%;
  max-width: 20px;
  height: auto;
  margin: 0 0 0 17px;
}

.Assets-box.assets-quest {
  background: #efefef;
  border: 1px solid #c3c3c3;
  height: auto;
}

.quest-section img {
  width: 100%;
  height: auto;
  margin: 0 0 12px;
}

p.quest-twitter {
  letter-spacing: -.4px;
  color: #09090b;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.assets-till-btn {
  letter-spacing: 0%;
  color: #333;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.assets-btn.quest-btn11 {
  background: #fff;
}

p.quest-text12 {
  color: #333;
  margin: 12px 0 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.contract-wrapper.reward-inputs {
  border: 0;
  border-radius: 0;
  margin: 0;
}

.contract-wrapper.reward-inputs.top-reward {
  border-bottom: 1px solid #e8e8e8;
}

.reward-sec {
  background: #fbfbfb;
  border: 1px solid #dadada;
  border-radius: 9px;
  padding: 10px;
}

.common-input-new.claim-join-btn {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 20px 0 0;
  display: flex;
}

.contract-address-box.copy-btn {
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}

.welcome-subhed {
  color: #757e89;
  margin: 15px 0 0;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: block;
}

.daily-points.swap-safety.boost-sec.zero-state {
  height: auto;
  min-height: 240px;
}

.common-input-new.connect-wallet {
  margin: 24px 0 0;
}

.common-input-new.connect-wallet .Continue {
  width: 100%;
  max-width: 100%;
  margin: auto;
}

.notifications-help .nav-tabs .nav-link {
  color: #757e89;
  border: none;
  border-radius: 12px;
  width: 100%;
  max-width: 180px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.notifications-help .nav-item {
  width: 100%;
  max-width: 180px;
}

.notifications-help .nav-tabs .nav-link.active {
  color: #1a202e;
  background: #dee4f5;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
}

.notifications-help .nav-tabs {
  background-color: #0000;
  border: none;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: flex;
}

img.event-calculator {
  width: 100%;
  max-width: 24px;
  margin: 0 8px 0 0;
}

.tab-content.notifications-help-11 {
  margin: 24px 0 0;
}

.your-assets a.Continue.view-explorer {
  margin: 0;
}

.custom-line {
  color: #757e89;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.FQ-section {
  color: #1a202e;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.accordion.notification-accordion {
  margin: 20px 0 0;
  box-shadow: none !important;
  background: none !important;
  border: none !important;
}

.dark .accordion.notification-accordion .accordion-item {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #757e89 !important;
  border-radius: 0 !important;
}

.light .accordion.notification-accordion .accordion-item {
  background: none !important;
  border: none !important;
  border-bottom: 3px solid #dde2e9 !important;
  border-radius: 0 !important;
}

.accordion.notification-accordion button.accordion-button {
  color: #1a202e;
  box-shadow: none;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.accordion.notification-accordion .accordion-body p {
  color: #757e89;
  margin: 0 0 15px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.accordion.notification-accordion .accordion-body {
  padding: 0;
}

.accordion-button:not(.collapsed) {
  background-color: #0000;
}

.accordion-button:after {
  content: "";
  flex-shrink: 0;
  margin-left: auto;
  background-image: url("../media/down-arrow.c03bdcfe.svg") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 24px !important;
  height: 24px !important;
  transition: transform .2s ease-in-out !important;
}

.accordion-button:not(.collapsed):after {
  background-image: url("../media/up-arrow.a075fcbe.svg") !important;
  transform: rotate(0) !important;
}

.dark .accordion-button:after {
  background-image: url("../media/up-arrow-dark.2a184644.svg") !important;
}

.dark .accordion-button:not(.collapsed):after {
  background-image: url("../media/down-arrow-dark.5cbd908a.svg") !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.parent-noti .card-body.p-3.custop-h13 {
  padding: 0 !important;
}

.parent-noti .card.shadow.custop-h12 {
  z-index: 1000;
  border-radius: 6px;
  width: 400px;
  min-width: 420px;
  padding: 22px;
  position: absolute;
  top: 100%;
  right: -60px;
  background: #ebf1ff !important;
  border: 1px solid #dce1ec !important;
  box-shadow: 5px 10px 40px #090d1826 !important;
}

.parent-noti .custop-h14 strong {
  color: #1a202e;
  font-size: 18px;
  font-weight: 600;
}

.parent-noti .btn.btn-link.p-0 {
  color: #1a202e;
  border: 1px solid #93a5bb;
  border-radius: 90px;
  min-width: 80px;
  height: 27px;
  min-height: 36px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  display: block;
}

.parent-noti .custop-h14 {
  justify-content: space-between;
  align-items: center;
  margin: 0 0 22px;
  display: flex;
}

.parent-noti #notif-tabs {
  border-radius: 0;
  display: flex;
  margin: 0 0 12px !important;
}

.parent-noti .nav-pills .nav-link {
  text-align: center;
  border-radius: 4px;
  min-width: 60px;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  padding: 5px 15px !important;
}

.right-side-bt.d-flex.align-items-center.gap-3 {
  margin: 0;
  padding: 0;
}

.parent-noti #notif-tabs li, .parent-noti #notif-tabs li:last-child {
  margin: 0 5px 0 0;
}

.parent-noti .nav-pills .nav-link.active, .parent-noti .nav-pills .show > .nav-link, .parent-noti .nav-pills .nav-link:hover {
  color: #1a202e;
  background: #dee4f5;
  font-weight: 500;
}

.parent-noti .list-unstyled.mb-0 li {
  background: #dee4f5;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  padding: 15px;
  margin: 0 0 12px !important;
}

.parent-noti .list-unstyled.mb-0 li strong {
  color: #1a202e;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: block;
  margin: 0 0 5px !important;
}

.parent-noti .list-unstyled.mb-0 li p.mb-0 {
  color: #757e89;
  height: auto;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.parent-noti {
  position: relative;
}

.parent-noti .list-unstyled.mb-0 li:last-child {
  margin: 0 !important;
}

.icon-div {
  align-items: flex-start;
  padding: 0 25px 0 0;
  display: flex;
  position: relative;
}

.icon-div-1 img {
  width: 20px;
  margin: 0 15px 0 0;
  position: relative;
  top: 2px;
  height: auto !important;
}

.icon-div-3 {
  cursor: pointer;
  border: 1.5px solid #292d32;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.icon-div-3 img {
  width: 6px !important;
  height: auto !important;
}

.parent-noti .list-unstyled.mb-0 li:hover {
  background: #f4f4f5;
}

.custom-header .right-side-bt li a.both-bt {
  color: #1a202e;
  text-align: center;
  border: 1px solid #93a5bb;
  min-width: 100px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  border-radius: 80px !important;
}

.custom-header .right-side-bt li a.log-in-bt.both-bt {
  background: linear-gradient(260deg, #177347 0%, #36cf85 50%);
  border: none !important;
}

.toggle-outer {
  background: #dee4f5;
  border-radius: 100px;
  align-items: center;
  display: flex;
}

.light .toggle-outer a.activeToggle {
  border: 1px solid #2a65fd !important;
}

.toggle-outer a {
  width: 34px;
  border: 1px solid #0000 !important;
  border-radius: 50px !important;
  justify-content: center !important;
  align-items: center !important;
  height: 34px !important;
  padding: 0 !important;
  display: flex !important;
}

.toggle-outer a img {
  width: 18px;
}

.token-line.today-swap img.transfer-img {
  margin: 0 10px 0 0;
}

.activity-history-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.chain-support .chain-support11.chain-bottom img.transfer-img11 {
  margin: 0 10px 0 0;
}

.activity-history-modal {
  background-color: #f5f7fa;
  min-height: 100vh;
  padding: 20px;
}

.activity-back-button {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
}

.activity-history-header h2 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.activity-header-right {
  align-items: center;
  gap: 10px;
  display: flex;
}

.activity-address {
  color: #666;
  font-size: 14px;
}

.activity-network-btn {
  cursor: pointer;
  background-color: #ffcc80;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.activity-disconnect-btn {
  color: #fff;
  cursor: pointer;
  background-color: #f66;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.activity-tabs {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin: 30px 0;
  display: flex;
}

.activity-tab {
  color: #757e89;
  background: none;
  border: none;
  border-radius: 12px;
  width: 32%;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.activity-tab.active {
  color: #1a202e;
  background-color: #dee4f5;
}

.activity-filter-section {
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.activity-search-bar {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1;
  align-items: center;
  padding: 5px;
  display: flex;
}

.activity-search-bar input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
}

.activity-search-btn {
  color: #fff;
  cursor: pointer;
  background-color: #4caf50;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.activity-filter {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
}

.activity-table {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px #0000001a;
}

.activity-table-header, .activity-table-row {
  border-bottom: 1px solid #eee;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 10px;
  display: grid;
}

.activity-table-header {
  color: #666;
  background-color: #f8fafc;
  font-weight: bold;
}

.activity-table-row span {
  align-items: center;
  gap: 5px;
  display: flex;
}

.activity-status {
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
}

.activity-status-pending {
  color: #333;
  background-color: #ffeb3b;
}

.activity-status-completed {
  color: #fff;
  background-color: #4caf50;
}

.activity-status-failed {
  color: #fff;
  background-color: #f44336;
}

.activity-pagination {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.activity-pagination button {
  color: #fff;
  cursor: pointer;
  background-color: #3b82f6;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.activity-pagination span {
  padding: 5px 10px;
  font-size: 14px;
}

.activity-active {
  color: #fff;
  background-color: #3b82f6;
  border-radius: 5px;
}

.reward-history-modal {
  background-color: #f5f8ff;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px #0000001a;
}

.reward-history-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.reward-history-header h2 {
  color: #1a1a1a;
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.reward-back-button {
  cursor: pointer;
  color: #1a1a1a;
  background: none;
  border: none;
  font-size: 24px;
}

.reward-header-right {
  align-items: center;
  gap: 10px;
  display: flex;
}

.reward-address {
  color: #666;
  font-size: 14px;
}

.reward-network-btn {
  color: #1a73e8;
  cursor: pointer;
  background-color: #e6f0ff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.reward-disconnect-btn {
  color: #e63946;
  cursor: pointer;
  background-color: #ffe6e6;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.reward-tabs {
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.reward-tab {
  cursor: pointer;
  color: #666;
  background-color: #e6e6e6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  transition: background-color .3s;
}

.reward-tab.active {
  color: #fff;
  background-color: #1a73e8;
}

.reward-tab:hover {
  background-color: #d1d1d1;
}

.reward-filter-section {
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.reward-search-bar {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  flex: 1;
  align-items: center;
  padding: 5px;
  display: flex;
}

.reward-search-bar input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  font-size: 14px;
}

.reward-search-btn {
  color: #fff;
  cursor: pointer;
  background-color: #28a745;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.reward-filter {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
}

.reward-table {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.reward-table-header {
  color: #666;
  background-color: #f1f4ff;
  border-bottom: 1px solid #ddd;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  padding: 10px;
  font-weight: bold;
  display: grid;
}

.reward-table-header span {
  text-align: left;
}

.reward-table-row {
  border-bottom: 1px solid #ddd;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  align-items: center;
  padding: 10px;
  display: grid;
}

.reward-table-row:last-child {
  border-bottom: none;
}

.reward-table-row span {
  text-align: left;
  color: #333;
  font-size: 14px;
}

.reward-status {
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
}

.reward-status-pending {
  color: #1a73e8;
  background-color: #e6f0ff;
}

.reward-status-completed {
  color: #28a745;
  background-color: #e6ffed;
}

.reward-status-failed {
  color: #e63946;
  background-color: #ffe6e6;
}

.reward-status-expired {
  color: #666;
  background-color: #f0f0f0;
}

.reward-status-unclaimed {
  color: #856404;
  background-color: #fff3cd;
}

.reward-status-claimed {
  color: #28a745;
  background-color: #e6ffed;
}

.reward-action-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.reward-pagination {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.reward-pagination button {
  cursor: pointer;
  background-color: #e6e6e6;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.reward-pagination span {
  color: #666;
  font-size: 14px;
}

.reward-pagination .reward-active {
  color: #fff;
  background-color: #1a73e8;
  border-radius: 5px;
  padding: 5px 10px;
}

.account-settings-modal {
  z-index: 1000;
  background: #ebf1ff;
  border: 1px solid #dce1ec;
  border-radius: 6px;
  width: 400px;
  padding: 22px;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 5px 10px 40px #090d1826;
}

.account-settings-header {
  margin-bottom: 22px;
}

.account-settings-header h2 {
  color: #1a202e;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  margin: 0 !important;
}

.account-settings-tabs {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  display: flex;
}

.account-tab {
  color: #757e89;
  letter-spacing: 0;
  text-align: center;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  transition: color .3s;
}

.account-tab.active {
  color: #1a202e;
  background: #dee4f5;
  font-weight: 500;
}

.account-tab:hover {
  color: #1a73e8;
}

.account-settings-content {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.email-section {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.email-label {
  color: #757e89;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 400;
}

.email-info {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.email-address {
  color: #1a202e;
  font-size: 14px;
  font-weight: 400;
}

.authenticated-badge {
  color: #1f8c57;
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: flex;
}

.tab-content.new-tab-con p {
  color: #1a202e !important;
  margin: 0 0 15px !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.tab-content-ptag {
  border-bottom: 1px solid #dce1ec;
}

.logout-section {
  justify-content: center;
  display: flex;
}

.logout-btn {
  color: #f75376;
  cursor: pointer;
  background: none;
  border: 1px solid #f75376;
  border-radius: 20px;
  width: 100%;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: bold;
  transition: background .3s;
}

.assets-btn-sec.mar-6753 img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}

.over-flow-table {
  overflow: auto;
}

.Transactions-90 {
  color: #1a202e;
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
}

.flex-trans-ul-p {
  color: #757e89;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.flex-trans-ul {
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.all-902 {
  background: none;
  border: 1px solid #dce1ec;
  border-radius: 100px;
  min-height: 48px;
  margin: 0 0 0 15px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
}

.all-902.Pending {
  color: #2a65fd;
  border-color: #2a65fd;
}

.all-902.Completed {
  color: #36cc83;
}

.all-902.Failed {
  color: #f75376;
}

.lbl-srch {
  color: #757e89;
  margin: 0 10px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.serhbrt {
  background: #dee4f5;
  border-radius: 4px;
  align-items: center;
  padding: 5px 15px;
  display: flex;
}

.btn.btn-secondary.dropdown-toggle {
  color: #1a202e;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.Type_here {
  color: #757e89;
  background: none;
  border: none;
  min-width: 210px;
  margin: 0 0 0 15px;
  font-size: 14px;
}

.butt-search {
  color: #ebf1ff;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  border: none;
  border-radius: 100px;
  min-height: 48px;
  margin: 0 0 0 15px;
  padding: 0 15px;
}

.flex-trans-left {
  align-items: center;
  width: 48%;
  display: flex;
}

.flex-trans-12 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flex-trans-right {
  width: 48%;
}

.search-by-12 {
  border: 1px solid #93a5bb;
  border-radius: 4px;
  align-items: center;
  padding: 5px;
  display: flex;
}

.flex-trans-12 .dropdown {
  line-height: 20px;
}

.flex-trans-12 .dropdown-menu.show {
  background: #ebf1ff !important;
  border: 1px solid #dce1ec !important;
  box-shadow: 5px 10px 40px #090d1826 !important;
}

.flex-trans-12 .dropdown-item {
  color: #757e89;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}

.drop-div-ul li:last-child {
  border: none;
}

.over0990 {
  overflow: auto;
}

.wallet-11 {
  background: #dee4f5;
  border-radius: 8px;
  justify-content: start;
  align-items: center;
  height: 53px;
  padding: 0 10px;
  display: flex;
}

.tab-content.new-tab-con .wallet-text {
  color: #757e89;
  align-items: center;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  margin-bottom: 0 !important;
}

.wallet-box {
  background: #dee4f5;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 20px;
  padding: 16px;
  display: flex;
}

.wallet-info {
  color: #757e89;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  display: flex;
}

.wallet-info img {
  width: 24px;
  height: 24px;
}

.wallet-status {
  color: #757e89;
  background: #ebf1ff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

.wallet-actions {
  justify-content: space-between;
  gap: 10px;
  display: flex;
}

.logout-btn, .connect-btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: bold;
}

.logout-btn {
  color: #f75376;
  background: none;
  border: 2px solid #f75376;
}

.connect-btn {
  color: #fff;
  background: linear-gradient(90deg, #23d067 0%, #15803d 100%);
}

.wallet-box12 {
  background-color: #e9eefe;
  border-radius: 8px;
  margin: 10px 0 20px;
  padding: 0 10px;
}

.wallet-box13 {
  border-bottom: 1px solid #dddd;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  display: flex;
}

.wallet-status11 {
  color: #757e89;
  background: #dee4f5;
  border-radius: 999px;
  padding: 6px 5px;
  font-size: 12px;
}

span.copy-address {
  margin: 0 10px;
}

.wallet-name {
  color: #1a202e;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.copy-address strong {
  color: #1a202e;
}

.wallet-status11.copy-address11 {
  background: none;
}

select.form-select.setting-language {
  background: #dee4f5;
  width: 100%;
  max-width: 80px;
  font-size: 12px;
}

.setting-address {
  color: #757e89;
  font-size: 14px;
  font-weight: 500;
}

.email-info.setting-info {
  margin: 10px 0;
}

.custom-toggle {
  width: 36px;
  height: 20px;
  position: relative;
}

.custom-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-toggle-slider {
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  transition: all .4s;
  position: absolute;
  inset: 0;
}

.custom-toggle-slider:before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  transition: all .4s;
  position: absolute;
  top: 0;
  bottom: 4px;
  left: 0;
}

.custom-toggle-input:checked + .custom-toggle-slider {
  background-color: #36cc83;
}

.custom-toggle-input:checked + .custom-toggle-slider:before {
  transform: translateX(16px);
}

.wallet-box13.wallet-box14 {
  border-bottom: none;
}

.security11 {
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  display: flex;
}

.wallet-status11.security12 {
  z-index: 1;
  background: linear-gradient(90.48deg, #87a6ef -2.02%, #3255af 102.84%);
  border-radius: 99px;
  max-width: 205px;
  padding: 6px 5px;
  font-size: 12px;
  position: relative;
}

.wallet-status11.security12:before {
  content: "";
  z-index: -1;
  background: #ebf1ff;
  border-radius: 99px;
  position: absolute;
  inset: 1px;
}

.wallet-status11.security12 .copy-address {
  z-index: 2;
  color: #757e89;
  position: relative;
}

.wallet-box13.wallet-16 {
  border-bottom: 0;
}

.email-info .select-wrapper select.form-select {
  appearance: none;
  background-image: url("../media/icon.f3c01366.svg");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 90px !important;
}

.email-info select.form-select.setting-language {
  width: 100%;
  max-width: 100px;
}

.wallet-heading {
  text-align: center;
  color: #1a202e;
}

.mining-modal-overlay {
  z-index: 1000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.mining-modal-content {
  text-align: center;
  background: #ebf1ff;
  border-radius: 38px;
  width: 519px;
  padding: 20px;
  position: relative;
}

.mining-modal-close-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 20px;
  position: absolute;
  top: 15px;
  right: 14px;
}

.mining-modal-icon {
  margin-bottom: 10px;
  font-size: 24px;
}

.mining-modal-link-container {
  border-bottom: 1px solid #dce1ec;
  gap: 10px;
  margin: 20px 0;
  padding: 0 0 20px;
  display: flex;
  position: relative;
}

.mining-modal-link-input {
  background: #e9eefe;
  border: none;
  border-radius: 5px;
  flex: 1;
  height: 60px;
  padding: 0 15px;
}

@media (width <= 767px) {
  nav.navbar.navbar-expand-lg.bg-body-tertiary.dark\:bg-gray-900.notification {
    overflow: visible;
  }

  .dark .account-settings-modal, .dark .parent-noti .card.shadow.custop-h12 {
    z-index: 1000;
    border-radius: 6px;
    max-width: 325px;
    padding: 22px;
    position: absolute;
    box-shadow: 396px 684px 221px #090d1803;
    background: #0f1420 !important;
    border: 1px solid #ffffff1a !important;
    left: -242px !important;
  }

  .parent-noti .nav-pills .nav-link {
    text-align: center;
    border-radius: 4px;
    min-width: 35px;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    padding: 5px !important;
  }
}

.custom_toaster_safety {
  background: #1a202e;
  border-radius: 6px;
  width: 100%;
  max-width: 370px;
  display: flex;
  position: fixed;
  bottom: 23px;
  right: 35px;
  border: none !important;
}

@media (width <= 667px) {
  .custom_toaster_safety {
    background: #1a202e;
    border-radius: 6px;
    width: 100%;
    max-width: 370px;
    display: flex;
    position: fixed;
    bottom: 15px;
    left: 2px;
    right: 0;
    border: none !important;
  }

  .mining-modal-link-input {
    background: #e9eefe;
    border: none;
    border-radius: 5px;
    flex: 1;
    height: 60px;
    padding: 0 15px;
    font-size: 10px;
  }

  .all-902 .active {
    color: #fff;
    background-color: #007bff;
    border: 1px solid #007bff;
  }

  .mining-modal-copy-btn {
    color: #1a202e;
    cursor: pointer;
    background: none;
    border: 1px solid #93a5bb;
    border-radius: 90px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 11px !important;
  }
}

.mining-modal-copy-btn {
  color: #1a202e;
  cursor: pointer;
  background: none;
  border: 1px solid #93a5bb;
  border-radius: 90px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: absolute;
  top: 12px;
  right: 15px;
}

.mining-modal-share-options {
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
  display: flex;
}

button.mining-modal-share-btn.sharebtn-11 {
  text-align: center;
  width: 100%;
  max-width: 239px;
  letter-spacing: 0%;
  border: 1px solid #93a5bb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

.share-device {
  margin: 0 10px 0 0;
}

.mining-modal-share-btn {
  cursor: pointer;
  background: none;
  border: none;
}

.mining-modal-share-via-device {
  color: #007bff;
  cursor: pointer;
}

.mining-modal-boost-details {
  color: #555;
  justify-content: space-between;
  margin: 10px 0;
  display: flex;
}

.mining-modal-boost-status {
  color: #28a745;
  margin: 10px 0;
}

.mining-modal-boost-actions {
  justify-content: center;
  gap: 10px;
  display: flex;
}

.mining-modal-activate-btn {
  cursor: pointer;
  background: #ccc;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
}

.mining-modal-use-now-btn {
  color: #fff;
  cursor: pointer;
  background: #28a745;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
}

.mining-container-fluid {
  padding: 0;
}

.mining-welcome.mining-mine-safety {
  text-align: center;
  padding: 20px;
}

.mining-welcome.mining-mine-safety h1 {
  margin: 0;
}

.mining-welcome.mining-mine-safety p {
  margin: 5px 0;
}

.mining-assets-box-bottom {
  padding: 15px;
}

.mining-Assets-box {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}

.mining-your-assets {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mining-assets-head {
  font-weight: bold;
}

.mining-token-line {
  margin: 15px 0;
}

.mining-mining-time {
  font-size: 1.2em;
  font-weight: bold;
}

.mining-common-input-new a {
  color: #fff;
  background: #007bff;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}

.mining-daily-points {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}

.mining-referral-table {
  border-collapse: collapse;
  width: 100%;
}

.mining-referral-header th {
  text-align: left;
  background: #f5f5f5;
  padding: 10px;
}

.mining-referral-row td {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.mining-status-badge {
  border-radius: 5px;
  padding: 2px 8px;
}

.mining-status-completed {
  color: #fff;
  background: #28a745;
}

.metamask_oruse {
  position: relative;
}

.metamask_oruse:before {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  max-width: 200px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: 0;
}

.light .metamask_oruse {
  color: gray;
  font-size: 14px;
}

.dark .metamask_oruse {
  color: #fff;
  font-size: 14px;
}

.copy_contract {
  justify-content: start;
  align-items: center;
  display: flex;
}

.copy_contract p {
  margin-bottom: 0;
  margin-right: 10px;
}

.metamask_oruse:after {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  max-width: 200px;
  height: 1px;
  position: absolute;
  top: 12px;
  right: 0;
}

.mining-safety-section {
  text-align: center;
}

.mining-safety-section h3 {
  margin: 10px 0;
}

.mining-safety-section p {
  margin: 5px 0;
}

.wallet-modal-overlay {
  z-index: 1000;
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.wallet-modal-content {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 6px #0000001a;
}

.wallet-modal-close-btn {
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.wallet-modal-close-btn:hover {
  color: #000;
}

.wallet-modal-icon {
  margin-bottom: 10px;
}

.wallet-modal-icon img {
  width: 24px;
  height: 24px;
}

.wallet-modal-next-btn {
  color: #fff;
  cursor: pointer;
  background: #007bff;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 14px;
}

.wallet-modal-next-btn:hover {
  background: #0056b3;
}

.share-ref {
  letter-spacing: 0;
  text-align: center;
  color: #1a202e;
  margin: 10px 0 0;
  font-family: DM Sans;
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
}

.speed-mining-box {
  background-color: #dee4f5;
  border-radius: 9px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 47px;
  margin: 20px 0;
  padding: 0 15px;
  display: flex;
}

.boost-rule {
  color: #1a202e;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.points {
  color: #1a202e;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.mining-list {
  border-top: 1px solid #dce1ec;
  padding: 10px 0 0;
}

.mining-list-11 {
  color: #757e89;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.mining-list-12 {
  color: #1a202e;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.mining-list-12.active-status {
  color: #1f8c57;
}

button.logout-btn.active-boost-12 {
  color: #1a202e;
  border: 1px solid #93a5bb;
  font-size: 14px;
}

.wallet-actions.active-boost-11 {
  margin: 20px 0 0;
}

.wallet-modal-overlay.wallet-modal-1 {
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(8px);
  background: #00000080;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.mining-modal-content.wallet-modal-text {
  text-align: start;
}

label.token-label {
  color: #757e89;
  width: 100%;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

select.form-select.wallet-options {
  color: #1a202e;
  background: url("../media/arrow-down.b8835646.png") right 12px center / 20px no-repeat;
  border: 1px solid #93a5bb;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px !important;
}

.dark select.form-select.wallet-options {
  color: #1a202e;
  background: url("../media/dark-down-arrow-icon.508e0142.svg") right 12px center / 20px no-repeat;
  border: 1px solid #93a5bb;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px !important;
}

.token-input {
  margin: 0 0 15px;
}

span.max-btn {
  float: inline-end;
  border: 1px solid #7ba0ff;
  border-radius: 90px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
}

.balance-line {
  letter-spacing: 0;
  text-align: center;
  color: #6a7a9a;
  margin-bottom: 0;
  font-family: Archivo;
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
}

.input_place.token-input {
  color: #1a202e;
  border: 1px solid #93a5bb;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px !important;
}

.input_place.token-input::placeholder {
  color: #1a202e;
  font-size: 16px;
  font-weight: 500;
}

video {
  border: none !important;
  outline: none !important;
}

p.share-ref1 {
  text-align: center;
  color: #757e89;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.input-place-section {
  position: relative;
}

span.input-place-img {
  position: absolute;
  top: 35px;
  right: 15px;
}

select.form-select.transfer-options {
  color: #1a202e;
  background: url("../media/blue-down-icon.42e5a6e0.svg") right 12px center / 20px no-repeat;
  border: 1px solid #93a5bb;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px !important;
}

.dark select.form-select.transfer-options {
  color: #1a202e;
  background: url("../media/white-arrow-down.cd362a74.svg") right 12px center / 20px no-repeat;
  border: 1px solid #93a5bb;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px !important;
}

span.optional {
  float: inline-end;
  color: #7ba0ff;
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.common-input-new.connect-wallet.Transfer-wallet-btn {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.Continue.back-btn {
  color: #1a202e;
  background: none;
  border: 1px solid #93a5bb;
}

.mining-list.transfer-list {
  border-top: none;
  border-bottom: 1px solid #dce1ec;
  padding: 10px 0;
}

.mining-modal-boost-details.transfer-note {
  display: block;
}

.mining-list-11.transfer-note1 {
  padding: 0 0 8px;
}

.matamask-section {
  text-align: center;
  background: #dee4f5;
  border-radius: 12px;
  margin: 20px 0;
  padding: 30px 0;
}

.metamask-line {
  color: #1a202e;
  margin: 15px 0 0;
  font-family: DM Sans;
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
}

.spinner-section {
  margin: 30px 0;
}

.circle-spinner {
  border: 8px solid #42b6e61a;
  border-radius: 100%;
  width: 120px;
  height: 120px;
  margin: auto;
  position: relative;
}

.circle-spinner:after {
  content: "";
  border: 8px solid #8a4fff;
  border-color: #8a4fff #2e8fff #0000 #0000;
  border-radius: 50%;
  animation: 5s linear infinite rotate-arc;
  position: absolute;
  inset: -8px;
  -webkit-mask-image: conic-gradient(#0000 270deg, #000 270deg);
  mask-image: conic-gradient(#0000 270deg, #000 270deg);
}

@keyframes spin-loader {
  0% {
    transform: rotate(0);
  }

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

@keyframes rotate-arc {
  0% {
    transform: rotate(0);
  }

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

.transfer-img-box {
  text-align: center;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.assets-head.swap-safety-assets {
  margin: 0 0 25px;
}

.btn-max11 {
  border: 1px solid #93a5bb;
  border-radius: 90px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
}

.max-btn-section {
  text-align: end;
  margin: 10px 0;
}

.balance-section.safety-balance {
  margin: 10px 0 0;
}

.chain-support.chain-support-section {
  background: #ebf1ff;
  padding: 20px 10px;
}

.assets-btn.kyc-verified {
  background-color: #36cc83;
}

.assets-btn.kyc-verified .assets-text {
  color: #fff;
}

.form-control:focus {
  box-shadow: none !important;
  background-color: #0000 !important;
  border: none !important;
}

.time-sec.count-down-section {
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 0;
  display: flex;
}

.referral-table.airdrop-table {
  margin: 0 0 30px;
}

.nav.nav-tabs.notification-help-tab {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
  flex-wrap: nowrap !important;
}

.nav.nav-tabs.notification-help-tab::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.input_place.convt-input {
  font-size: 16px;
  font-weight: 500;
}

.min-asset-box {
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 350px;
  max-height: 370px;
  overflow-y: scroll;
}

.min-asset-box::-webkit-scrollbar {
  display: none;
}

.setting-section, .mobile-dashboar-section {
  display: none;
}

.crypto-convert-box {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  display: flex;
}

.crypto-input, .crypto-output {
  color: #757e89;
  background-color: #e9eefe;
  border: 1px solid #dce1ec;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 20px;
  font-size: 16px;
  display: flex;
}

.dark .crypto-input, .dark .crypto-output {
  color: #bccada;
  background-color: #1a202e;
}

.dark .crypto-output {
  background-color: #1b2132;
  border: 1px solid #3e4b6d;
}

.crypto-left {
  align-items: center;
  gap: 8px;
  display: flex;
}

.crypto-icon {
  width: 20px;
  height: 20px;
}

.crypto-value {
  font-weight: 600;
}

.crypto-label {
  color: #757e89;
  font-size: 14px;
  font-weight: 500;
}

.crypto-arrow {
  color: #627eea;
  font-size: 20px;
}

.swap-details-list {
  margin: 24px 0;
  padding: 0;
  font-family: Inter, sans-serif;
  list-style: none;
}

.swap-detail-item {
  color: #fff;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 12px;
  display: flex;
}

.span.detail-label {
  color: #757e89;
}

.swap-detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #c4c4c4;
}

.dark .detail-label {
  color: #bccada;
}

.detail-value {
  color: #1a202e;
  font-weight: 500;
}

.dark .detail-value {
  color: #ebf1ff;
  font-weight: 500;
}

.accept-btn {
  background: #dee4f5;
  border: 1px solid #fff;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
  padding: 20px 10px;
  display: flex;
}

.accept-btn p {
  color: #1a202e;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.dark .accept-btn p {
  color: #b7cffd;
}

.dark .accept-btn {
  background: #0a0e19;
  border: 1px solid #3e4b6d;
}

a.accept-button {
  cursor: pointer;
  border-radius: 90px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #1a202e !important;
  border: 1px solid #93a5bb !important;
}

.dark a.accept-button {
  border-radius: 90px;
  padding: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #ebf1ff !important;
  border: 1px solid #87a6ef !important;
}

a.Continue {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  align-items: center;
  min-width: 100px;
  height: 40px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  border: #0000 !important;
  border-radius: 80px !important;
}

.confirmation_div {
  text-align: center !important;
}

.table-mobile-card {
  display: none;
}

button.sign-up-link {
  color: #1a202e;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
}

.dark button.sign-up-link {
  color: #b7cffd;
}

.top-yrn.top-yrn12 {
  display: none;
}

.top-yrn.top-yrn11 {
  display: block;
}

.common-input-new.mobile-contact-btn-bottom {
  display: none;
}

body.dark {
  background: #0a0e19 !important;
}

body.light {
  background: #ebf1ff !important;
}

.dark li.wallet-token {
  background: none;
}

.dark .custom-line, .dark .loresum-ul li p, .dark .assets-text-Announcement, .dark .assets-text-Update {
  color: #bccada;
}

.dark .FQ-section {
  color: #b7cffd;
}

.dark .accordion.notification-accordion button.accordion-button, .dark .accordion.notification-accordion .accordion-body p {
  color: #ebf1ff;
}

.dark .ass-p1 {
  color: #7ba0ff;
  background: #0a0e19;
}

.dark .assets-head-Announcement {
  color: #bccada;
  background: #0a0e19;
}

.dark .notifications-help .nav-tabs .nav-link.active {
  background: #1a202e;
}

.dark .custom-header .nav-link, .dark .footer-left-p, .dark .notifications-help .nav-tabs .nav-link {
  color: #bccada;
}

.dark .Airdropsuccessful {
  color: #36cc83;
  background: none;
  border: 1px solid #87a6ef !important;
}

.dark .drop-div-ul-p1 {
  color: #93a5bb;
}

.body.dark .navbar-nav .nav-link.active, body.dark .Welcome_safty {
  color: #ebf1ff !important;
}

.dark .inner-content {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border: 1px solid #9ea9bd00;
}

.dark .custom-header .bt-1 {
  border: 1px solid #0000;
  border-image: initial;
  background: linear-gradient(#000, #000) padding-box padding-box, linear-gradient(90.48deg, #87a6ef -2.02%, #3255af 102.84%) border-box;
  border-radius: 12px;
  color: #fff !important;
}

.dark .assets-btn.kyc-verified .assets-text {
  color: #0a0e19;
}

.dark .dash-p {
  color: #b7cffd;
}

.dark .dash-p1 {
  color: #bccada;
}

.dark .login_bt {
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
}

.dark .navbar-nav .nav-link.active, .dark .welcome h1 {
  color: #ebf1ff;
}

.dark .darkInactiveWallet {
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
}

.dark .modal-content {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border: 1px solid;
}

.dark .Log_in {
  color: #ebf1ff;
}

.dark .label-all {
  color: #bccada;
}

.dark .Continue {
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
}

.dark .OR_p {
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
}

.dark .input_place {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border: 1px solid #809fe961;
  color: #bccada !important;
}

.dark .social-link li a .dont-p {
  border: 1px solid #809fe961;
}

.dark .dont-p, .dark .dont-p a {
  color: #bccada;
}

.dark .darknav_btn {
  color: #bccada !important;
}

.dark .Assets-box, .dark .daily-points.swap-safety.boost-sec {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border: 1px solid;
}

.dark .safety-section h3 {
  color: #b7cffd;
}

.dark .safety-section p {
  color: #bccada;
}

.dark .daily-points.swap-safety11, .dark .daily-points, .dark .inner-content.inner-only {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border: 1px solid;
}

.dark a.login_bt {
  color: #ebf1ff;
  background: linear-gradient(274.16deg, #177347 -24.64%, #36cf85 95.24%);
  border: 1px solid #fff3;
  border-radius: 90px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: max-content;
  height: 40px;
  padding: 12px 15px;
  display: flex;
  box-shadow: 0 3px 18.9px #21583e8a;
}

.dark .custom-header .nav-link:hover, .dark .custom-header .nav-link.active {
  background: #111623 !important;
}

.dark .welcome-subhed {
  color: #bccada;
}

.dark .assets-btn.boost p {
  color: #ebf1ff !important;
}

.dark .Assets-box.Mining-status-only, .dark .daily-points.swap-safety.boost-sec.mineing-back, .dark .daily-points.swap-safety.boost-sec.mining-speed {
  background: #1b2130 url("../media/gradient-dark.a7e802d7.png") bottom / cover;
  border: none;
  box-shadow: 0 4px 4px #00000040;
}

.dark .token-bal {
  color: #bccada;
}

.dark .progress-bar.point-mined-bar span {
  color: #bccada !important;
}

.dark .progress.point-mined {
  background: #0a0e19;
}

.dark .custom-header .right-side-bt li a.both-bt, .dark .joinairdrop, .dark .assets-btn.boost, .dark .Continue.view-explorer {
  color: #ebf1ff !important;
  border: 1px solid #87a6ef !important;
}

.dark .assets-btn {
  color: #bccada;
  background: #0a0e19;
}

.dark .ethereum-section button.btn.btn-light.dropdown-toggle.w-100.d-flex.align-items-center, .dark .form-control.me-2, .dark .assets-text, .dark .assets-head, .dark .scanner-placeholder, .dark .point-test, .dark .trans-text2, .dark .airdrop-11, .dark .transaction input.form-control.ETH, .dark .balance-name, .dark .balance-quantity, .dark .balance-span, .dark .referral-header th {
  color: #bccada;
}

.dark .assets-text b, .dark .assets-text span, .dark .point-amount, .dark .today, .dark .airdrop, .dark .token-amount {
  color: #b7cffd;
}

.dark li.assets-btn.arrow-right.pad-090 {
  padding: 0;
}

.dark .view-wallet, .dark .daily-points.swap-safety.boost-sec .Continue.Invite_Friends_bt {
  color: whiate;
}

.dark .total-point, .dark .bnb-bottom, .dark .footer-left-p, .dark .safety240 {
  background: linear-gradient(90deg, #6d7c97 0%, #b7cffd 50%, #6d7c97 100%);
  -webkit-text-fill-color: transparent;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.dark .progress-bar.point-mined-bar {
  background: linear-gradient(90deg, #131c35 0%, #6484d4 100%) !important;
}

.dark .chain-support {
  background: #0a0e19;
  border-radius: 12px;
}

.dark .chain-support11.chain-bottom {
  border-bottom: 1px solid #b7cffd2b;
  padding: 10px 15px 20px;
}

.dark .chanin-text1 {
  color: #93a5bb;
}

.dark .chanin-text1 strong {
  color: #adc4ef;
}

.dark .Assets-box.scanner-box, .dark .ex-ready {
  background: #0a0e19;
  border: none;
}

.dark .trans-text1, .dark .saf, .dark .saf11 {
  color: #ebf1ff;
}

.dark .assets-air-drp {
  color: #7ba0ff;
  background: #0a0e19;
}

.dark .referral-row td, .dark .user-details11 {
  color: #ebf1ff !important;
}

.dark span.user-details12 {
  color: #bccada !important;
}

.dark .referral-row td, .dark .referral-header th {
  border-bottom: 1px solid #b7cffd2b;
}

.saf.red-color {
  color: #f75376;
}

.saf.green-color {
  color: #36cc83;
}

.dark tr.referral-row:hover td {
  background: #0a0e19;
}

.gift-img-78 {
  justify-content: center;
  display: flex;
}

.gift-img-78 img {
  width: 167px;
  height: auto;
}

tr.referral-row td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

tr.referral-row td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.dark .first-transfer, .dark .token-line.airdrop-box, .dark .drop-div-ul li, .dark .chain-support11.chain-bottom, .dark .accordion.notification-accordion .accordion-item {
  border-bottom: 0;
  position: relative;
}

.dark .first-transfer:after, .dark .token-line.airdrop-box:after, .dark .drop-div-ul li:after, .dark .chain-support11.chain-bottom:after, .dark .accordion.notification-accordion .accordion-item:after {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dark .drop-div-ul li:last-child:after, .dark .chain-support11.chain-bottom:last-child:after {
  display: none;
}

.dark .accordion.notification-accordion .accordion-item {
  border-bottom: none !important;
}

.dark .social-link li a {
  cursor: pointer;
  border: 1px solid #809fe961;
}

.dark .bor-45:after, .dark .border-space {
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
}

.dark .drop-div-ul {
  background: #0a0e19;
}

.dark .safety240 {
  border-top: 1px solid #b7cffd2b;
}

.dark .Continue.view-explorer.green-bt-only {
  border: none !important;
}

.dark .footer-custom {
  border-top: 1px solid #323c54;
}

.dark .must-div {
  border-top: 0 solid #b7cffd2b;
  position: relative;
}

.dark .must-div:after {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.dark .footer-ul li a {
  color: #b6cdea;
}

.dark .toggle-outer {
  background: #1a202e;
}

.dark .Log_in_1 {
  color: #bccada;
}

.dark .toggle-outer a.activeToggle {
  border: 1px solid #ebf1ff !important;
}

.dark .Forgot_your.btn.btn-link.p-0 {
  color: #ebf1ff;
}

.dark .daily-points.airdrop-section.radius-7643 {
  border-radius: 8px;
  margin: 0 0 30px;
  padding: 15px;
}

.dark .assets-air-drp-1 {
  color: #ebf1ff;
}

.dark .Lorem_Ipsum {
  color: #b7cffd;
}

.dark .Lorem_Ipsum_1, .dark .checkbox-p, .dark .info-p90 {
  color: #bccada;
}

.dark .input_place::placeholder {
  color: #b7cffd;
  opacity: 1;
}

.dark .input_place::-moz-placeholder {
  color: #b7cffd;
}

.input_place.token-input.suppot_input::placeholder {
  color: #93a5bb;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.input_place.token-input.suppot_input::placeholder {
  color: #93a5bb;
  font-size: 14px;
  font-weight: 400;
}

.input_place.token-input.suppot_input::-moz-placeholder {
  color: #93a5bb;
  font-size: 14px;
  font-weight: 400;
}

.input_place.token-input.suppot_input_email::placeholder {
  color: #93a5bb;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.input_place.token-input.suppot_input_email::placeholder {
  color: #93a5bb;
  font-size: 14px;
  font-weight: 400;
}

.input_place.token-input.suppot_input_email::-moz-placeholder {
  color: #93a5bb;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input::placeholder {
  color: #afc2e6;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input::placeholder {
  color: #afc2e6;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input::-moz-placeholder {
  color: #afc2e6;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input_email::placeholder {
  color: #afc2e6;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input_email::placeholder {
  color: #afc2e6;
  font-size: 14px;
  font-weight: 400;
}

.dark .input_place.token-input.suppot_input_email::-moz-placeholder {
  color: #afc2e6;
  font-size: 14px;
  font-weight: 400;
}

input#contact-email.input_place.token-input {
  height: 44px;
}

.contract-wrapper-new {
  background: #dee4f5;
  border-radius: 16px;
  padding: 22px;
}

.contract-wrapper-point {
  color: #757e89;
}

.contract-wrapper-new-span {
  color: #757e89;
  margin: 0 0 3px;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.dark .contract-wrapper-new-span {
  color: #bccada;
}

.wrapper-new-p {
  color: #1a202e;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.dark .wrapper-new-p {
  color: #b7cffd;
}

.dark .contract-wrapper-new {
  background: #0a0e19;
}

.d {
  display: none;
}

.dark .d {
  display: block;
}

.dark .h {
  display: none;
}

.dark .token-img.back-23 {
  background: #191f2d;
}

.dark .account-settings-modal, .dark .parent-noti .card.shadow.custop-h12 {
  z-index: 1000;
  border-radius: 6px;
  padding: 22px;
  box-shadow: 396px 684px 221px #090d1803;
  background: #0f1420 !important;
  border: 1px solid #ffffff1a !important;
}

.dark .parent-noti .nav-pills .nav-link {
  color: #ebf1ff !important;
}

.dark .parent-noti .custop-h14 strong, .dark .account-settings-header h2 {
  color: #ebf1ff;
}

.dark .account-tab {
  color: #bccada;
}

.dark .account-tab.active {
  color: #b7cffd;
  background: #1a202e;
}

.dark .email-label {
  color: #bccada;
}

.dark .email-address {
  color: #ebf1ff;
}

.dark .tab-content.new-tab-con p {
  border-radius: 0;
  color: #ebf1ff !important;
}

.dark .tab-content-ptag {
  border-bottom: 1px solid #b7cffd2b;
}

.dark .parent-noti .btn.btn-link.p-0 {
  color: #ebf1ff;
  border: 1px solid #87a6ef;
}

.dark .parent-noti .list-unstyled.mb-0 li {
  background: #1a202e;
  border: 0 solid #e4e4e7;
  margin: 0 0 12px !important;
}

.diplay_nonen_wallet {
  display: none;
}

.dark .parent-noti .list-unstyled.mb-0 li strong {
  color: #b7cffd;
}

.dark .parent-noti .list-unstyled.mb-0 li p.mb-0 {
  color: #bccada;
}

.dark .custom-header .parent-noti .nav-pills .nav-link:hover, .dark .custom-header .parent-noti .nav-pills .nav-link.active {
  background: #1a202e !important;
}

.dark .parent-noti .list-unstyled.mb-0 li:last-child {
  margin: 0 !important;
}

.dark .top-section-11 {
  background: #1a202e;
}

.dark .total-amount {
  color: #b7cffd;
}

.dark .Token_Balance {
  color: #ebf1ff;
}

.dark .page-btn {
  color: #bccada;
}

.dark .page-btn.active {
  color: #ebf1ff;
  background-color: #323c54;
}

.dark .pagination.pagination-custom span {
  color: #ebf1ff;
}

.dark .pagination.pagination-custom .page-btn {
  border: 1px solid #323c54;
}

.dark .pagination.pagination-custom .page-btn:first-child, .dark .pagination.pagination-custom .page-btn:last-child {
  border: none;
}

.dark .activity-tab {
  color: #bccada;
}

.dark .activity-tab.active {
  color: #b7cffd;
  background-color: #1a202e;
}

.dark .Transactions-90 {
  color: #ebf1ff;
}

.dark .all-902, .dark .search-by-12 {
  border: 1px solid #323c54;
}

.dark .serhbrt {
  background: #1a202e;
}

.dark .lbl-srch, .dark .btn.btn-secondary.dropdown-toggle, .dark .Type_here, .dark .flex-trans-12 .dropdown-item {
  color: #bccada;
}

.dark .flex-trans-12 .dropdown-menu.show {
  background: #1a202e !important;
  border: none !important;
}

.dark .wallet-box {
  background: #1a202e;
}

.dark .wallet-status {
  color: #bccada;
  background: #0a0e19;
}

.dark .wallet-box12 {
  background-color: #1a202e;
}

.dark .wallet-status11 {
  background: #0a0e19;
}

.dark span.copy-address {
  color: #bccada;
}

.dark .copy-address strong {
  color: #b7cffd;
}

.dark .bnb-chain {
  color: #bf1fff;
}

.dark .wallet-status11.copy-address11 {
  background-color: #0000 !important;
}

.dark select.form-select.setting-language {
  color: #bccada;
  background-color: #1a202e;
  border: none;
}

.dark .setting-address {
  color: #93a5bb;
}

.dark .wallet-status11.security12:before {
  background-color: #0000;
}

.dark .wallet-name {
  color: #ebf1ff;
}

.dark .wallet-modal-section {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
}

.dark .meta-mask li a {
  color: #ebf1ff;
}

.dark .wallet-heading {
  text-align: center;
  color: #ebf1ff;
}

.dark .meta-mask li a:hover, .dark .meta-mask li a:active {
  background: #1a202e;
  border: 1px solid #87a6ef !important;
}

.dark .mining-modal-content {
  background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
  border-top: 1px solid #9ea9bd;
  min-height: 350px !important;
}

.dark .share-ref {
  color: #ebf1ff;
}

.dark .mining-modal-link-input {
  color: #fff;
  background-color: #1a202e;
}

.dark button.mining-modal-share-btn.sharebtn-11 {
  color: #ebf1ff;
}

.dark .mining-modal-copy-btn {
  color: #ebf1ff;
  border: 1px solid #87a6ef !important;
}

.dark .speed-mining-box {
  background-color: #1a202e;
  border: 1px solid #93a5bb;
}

.dark .boost-rule, .dark .points {
  color: #ebf1ff;
}

.dark .mining-list-11 {
  color: #bccada;
}

.dark .mining-list-12 {
  color: #ebf1ff;
}

.dark button.logout-btn.active-boost-12 {
  color: #ebf1ff;
  border: 1px solid #87a6ef !important;
}

.dark .share-ref1, .dark select.form-select.wallet-options {
  color: #bccada;
}

.dark span.max-btn {
  color: #ebf1ff;
}

.dark label.token-label, .dark .dark select.form-select.transfer-options {
  color: #bccada;
}

.next-btns {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.dark .Continue.back-btn {
  color: #ebf1ff;
  background: none;
  border: 1px solid #87a6ef !important;
}

.dark .matamask-section {
  background-color: #0a0e19;
}

.dark .metamask-line {
  color: #ebf1ff;
}

.dark a.Continue.close-wallet {
  color: #ebf1ff;
  background: none;
  border: 1px solid #87a6ef !important;
}

.dark .select-wrapper.daily-points-source select.form-select {
  color: #fff;
  background-color: #0a0e19;
  background-image: url("../media/dark-down-arrow-icon.508e0142.svg");
  border: none;
}

.dark .btn-max11 {
  color: #ebf1ff;
  border: 1px solid #7ba0ff;
}

.dark .mining-list:before {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 185px;
  left: 0;
  right: 0;
}

.dark .mining-list {
  border-top: none !important;
}

.dark .mining-modal-link-container:before {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.dark .mining-modal-link-container {
  border-bottom: none !important;
}

.dark .Continue.activate-only {
  color: #1a202e;
  background: #ebf1ff;
}

.dark .resent_button {
  color: #b7cffd !important;
}

.dark .assets-btn.kyc-verified {
  background-color: #36cc83;
}

.dark .icon-div-3 {
  border: 1.5px solid #f75376;
}

.dark .drop-div-ul-p2-bt {
  color: #757e89;
  background: #1a202e;
}

.dark .drop-div-ul-p2 {
  color: #ebf1ff;
}

.dark .progress-border {
  border-bottom: none !important;
}

ul.right-side-bt.d-flex.align-items-center.gap-2.flex-wrap.notification_big_screen_none {
  position: absolute;
  top: 8px;
  right: 65px;
}

.dark .progress-border:after {
  content: "";
  background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (width >= 1025px) {
  .container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

@media (width <= 991px) {
  .notification_big_screen_none {
    display: none !important;
  }
}

.dark .Assets-box.Mining-status-only, .dark .daily-points.swap-safety.boost-sec.mineing-back, .dark .daily-points.swap-safety.boost-sec.mining-speed {
  min-height: 353px;
}

.Assets-box.Mining-status-only, .dark .Assets-box.Mining-status-only, .Assets-box.demo-mode, .dark .Assets-box.demo-mode {
  min-height: 352px;
}

@media (width <= 667px) {
  .dark .Assets-box {
    background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
    border: 1px solid;
  }

  .dark .Assets-box.Mining-status-only, .dark .daily-points.swap-safety.boost-sec.mineing-back, .dark .daily-points.swap-safety.boost-sec.mining-speed {
    background: #1b2130 url("../media/gradient-dark.a7e802d7.png") bottom / cover;
    border: none;
    box-shadow: 0 4px 4px #00000040;
    min-height: 352px !important;
  }
}

@media (width >= 667px) {
  .mobile_notifiacation {
    display: none;
  }
}

@media (width <= 1024px) {
  .notifications-help .nav-item {
    width: 100%;
    max-width: 190px;
  }

  .your-assets.your-assets11 {
    display: block;
  }

  .your-assets.assets-btn-sec {
    margin: 12px 0 0;
  }

  .token-amount.safety-usd {
    font-size: 20px;
  }

  .Assets-box {
    height: 100%;
  }

  .your-points {
    margin: 15px 0;
  }
}

@media (width <= 991px) {
  .top-table-content.active-history-table {
    margin: 0;
  }

  .top-table-content.active-history-table .Token_Balance {
    margin: 68px 0 10px;
  }

  .top-table-content.active-history-table .Token_Balance_ul li {
    margin: 25px 15px 0 0;
  }

  .top-yrn.top-yrn12 {
    display: none;
  }

  .flex-trans-12, .flex-trans-left {
    width: 100%;
    display: block;
  }

  .search-by-12 {
    width: 100%;
  }

  .butt-search {
    width: 100%;
    margin: 10px 0 0;
  }

  .top-yrn.top-yrn12 {
    margin: 20px 0 0;
    display: block;
  }

  .top-yrn.top-yrn11 {
    display: none;
  }

  .activity-tab {
    width: 30%;
  }

  ul.flex-trans-ul, .referral-table.table-referral-11, table.referral-table.activity-history-table, table.referral-table.airdrop-table {
    display: none;
  }

  .table-mobile-card {
    background: #dee4f5;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px;
    display: block;
  }

  .dark .table-mobile-card {
    background: #0a0e19;
    border: 1px solid #323c54;
  }

  span.profile-name {
    color: #1a202e;
    font-family: Archivo;
    font-size: 14px;
    line-height: 20px;
  }

  p.table-mobile-date {
    color: #1a202e;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
  }

  span.table-mobile-pending.copy-code {
    color: #1a202e;
    font-family: Archivo;
    font-size: 12px;
    line-height: 135%;
  }

  span.table-mobile-pending {
    color: #2a65fd;
    font-family: Archivo;
    font-size: 12px;
    line-height: 135%;
  }

  .table-mobile-1st-row {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }

  span.active-dot {
    color: #1a202e;
    padding: 0 5px;
    font-size: 14px;
    line-height: 20px;
  }

  p.table-mobile-pts {
    color: #1a202e;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
  }

  .table-mobile-total {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  p.table-mobile-total11 {
    color: #757e89;
    margin-bottom: 0;
    font-family: Archivo;
    font-size: 12px;
    font-weight: 500;
    line-height: 135%;
  }

  p.table-mobile-total12 {
    color: #0a0e19;
    margin-bottom: 0;
    font-family: Archivo;
    font-size: 12px;
    font-weight: 600;
    line-height: 100%;
  }

  .table-mobile-card.activity-history {
    background: #ebf1ff;
    border: 1px solid #dce1ec;
    border-radius: 24px;
    margin: 15px 0 0;
  }

  .table-mobile-card.activity-history .first-transfer.receive {
    border-bottom: 0;
  }

  .common-input-new.mobile-contact-btn-bottom {
    display: block !important;
  }

  .common-input-new.mobile-contact-btn-top {
    display: none;
  }

  .table-mobile-card.activity-history .saf.green-color {
    color: #f75376;
  }

  .mobile-see-details img, .activity-table-img {
    margin: 0 10px 0 0;
  }

  .dark .table-mobile-card.activity-history {
    background-color: #0a0e19;
    border: 1px solid #323c54;
  }

  .dark .table-mobile-card.activity-history .first-transfer:after {
    display: none;
  }

  .dark span.profile-name, .dark p.table-mobile-date, .dark span.table-mobile-pending.copy-code, .dark span.active-dot {
    color: #ebf1ff;
  }

  .dark span.table-mobile-pending {
    color: #7ba0ff;
  }

  .dark p.table-mobile-pts {
    color: #ebf1ff;
  }

  .dark p.table-mobile-total11 {
    color: #93a5bb;
  }

  .dark p.table-mobile-total12 {
    color: #ebf1ff;
  }

  .dark .total-point-12 {
    position: relative;
  }

  .dark .balance-extra-bottom:after {
    content: "";
    background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
  }

  .total-point-12.balance-extra-div {
    margin-bottom: 25px;
  }

  .total-amount {
    font-size: 28px;
  }

  ul.welcome-btns {
    justify-content: space-between;
  }

  .joinairdrop {
    padding: 8px 20px !important;
  }

  .convertpoint {
    padding: 8px 25px;
  }

  .token-line.total-point-11 {
    display: block;
  }

  button.logout-btn.first-button.mobile-sign-button {
    color: #1a202e;
    border: 1px solid #93a5bb;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    display: flex;
  }

  .mobile-dashboar-section {
    display: block !important;
  }

  .setting-section {
    margin: 30px 0 0;
    display: block;
  }

  form.d-flex.d-right-flex.nav-form-section {
    display: none !important;
  }

  .setting-text {
    color: #757e89;
    letter-spacing: 0%;
    font-family: Archivo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .Account.Setting {
    color: #1a202e;
    font-family: DM Sans;
    font-size: 24px;
    font-weight: 700;
  }

  .email-sec11 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .email-text {
    color: #757e89;
    margin-bottom: 0;
    font-family: DM Sans;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .email-sec12 span {
    color: #1f8c57;
    align-items: center;
    margin: 0 0 0 5px;
    font-size: 12px;
    font-weight: 400;
  }

  p.email-13 {
    color: #1a202e;
    margin: 15px 0;
    font-family: Archivo;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  ul.setting-list {
    padding: 0;
    position: relative;
  }

  .notification-11 {
    background-color: #dee4f5;
    border-radius: 8px;
    padding: 0 20px;
  }

  .mobile-bottom-section {
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 0 0 190px;
    display: flex;
  }

  .email-info.setting-info.theme-bottom.line {
    padding: 2px 0;
  }

  .security11.kyc-border-line, .email-info.language-bottom-line {
    padding: 15px 0;
  }

  li.setting-list-detail.borderbottom-line:after {
    content: "";
    background: #dce1ec;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
  }

  .mobile-dashboar-section {
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: 0;
  }

  .mobile-bottom-section.mobile-login-btn {
    margin: 40px 0 0 !important;
  }

  .logout-btn.mobile-log-in {
    color: #fff;
    text-align: center;
    text-align: center;
    background: linear-gradient(260deg, #177347 0%, #36cf85 50%);
    border: none;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 15px;
    font-family: DM Sans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    border-color: #0000 !important;
    border-radius: 80px !important;
  }

  .top-wallet-button {
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    display: flex;
  }

  .dark button.logout-btn.first-button.mobile-sign-button {
    color: #fff;
    text-align: center;
    text-align: center;
    border: 1px solid #93a5bb;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 15px;
    font-family: DM Sans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    color: #ebf1ff !important;
    background-color: #0000 !important;
    border: 1px solid #87a6ef !important;
    border-radius: 80px !important;
  }

  .dark .setting-text {
    color: #bccada;
  }

  .dark .Account.Setting {
    color: #ebf1ff;
  }

  .dark .email-text, .dark p.email-13 {
    color: #bccada;
  }

  .dark span.wallet-name.wallet-kyc {
    color: #93a5bb;
  }

  .dark .notification-11 {
    background-color: #1a202e;
    position: relative;
  }

  .dark .notification-11 .wallet-box13.wallet-box14:after, .dark .notification-11 .wallet-box.mobile-wallet-box:after {
    content: "";
    background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
    height: 1px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
  }

  .dark li.setting-list-detail.borderbottom-line:after {
    content: "";
    background: linear-gradient(270deg, #4d5b8100 0%, #4d5b81 50%, #4d5b8100 100%);
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
  }

  nav.navbar.bg-body-tertiary.dark\:bg-gray-900 {
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    overflow: auto;
    z-index: 9 !important;
    backdrop-filter: blur(30px) !important;
  }

  .assets-box-bottom.your-point-section {
    flex-direction: column;
    display: flex;
  }

  .Assets-box.assets-11.your-point-section11 {
    order: 2;
  }

  .footer-right {
    width: 100%;
  }

  .dark .custom-header .nav-link:hover, .dark .custom-header .nav-link.active {
    background: none !important;
  }

  .nav-form-section {
    justify-content: start;
    align-items: center;
    display: flex !important;
  }

  nav.navbar.bg-body-tertiary.dark\:bg-gray-900 {
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    z-index: 9 !important;
    backdrop-filter: blur(30px) !important;
  }

  .navbar-collapse.collapse.show {
    height: calc(100vh - 60px);
    position: relative;
    overflow: hidden auto;
  }

  .dash-p {
    line-height: 30px;
  }

  .inner-content.inner-only {
    padding: 60px 15px;
  }

  .custom-header .navbar.navbar-expand-lg.bg-body-tertiary {
    border-bottom: none;
  }

  .daily-points {
    margin: 0 0 22px !important;
  }

  .total-point {
    text-align: start;
    margin: 0 0 5px;
    font-size: 14px;
  }

  .notifications-help .nav-tabs .nav-link, .notifications-help .nav-item {
    width: 100%;
    max-width: 100%;
  }

  .welcome {
    display: block;
  }

  .assets-box-bottom, .daily-points {
    margin: 0;
  }

  .notifications-help .nav-tabs .nav-link, .notifications-help .nav-item {
    width: 100%;
    max-width: 100%;
  }

  .welcome {
    margin-top: 82px;
    display: block;
  }

  .welcome h1 {
    margin: 0 0 15px;
    display: block;
  }

  .footer-ul li a {
    margin: 0 0 0 15px;
  }

  .custom-header .right-side-bt {
    margin: 10px 0;
  }

  .custom-header .nav-link {
    padding: 15px 0 0 !important;
  }

  .assets-box-bottom, .daily-points {
    margin: 0;
  }

  .welcome-section {
    padding: 0;
  }

  .parent-noti .card.shadow.custop-h12 {
    left: 0;
    right: auto;
  }

  .daily-points.swap-safety11 {
    padding: 15px;
    height: auto !important;
    margin: 0 !important;
  }

  .dark .view-wallet.view-btn-wallet {
    color: #fff;
    background-color: #0000 !important;
    border: 1px solid #93a5bb !important;
  }
}

@media (width <= 767px) {
  .your-assets.mining-status {
    min-width: 0 !important;
  }

  .custom-modal.open-bottom-modal .modal.fade .modal-dialog {
    transition: transform .8s cubic-bezier(.22, 1, .36, 1) .1s !important;
    transform: translateY(100%) !important;
  }

  .custom-modal.open-bottom-modal .modal.fade.show .modal-dialog {
    transform: translateY(0) !important;
  }

  .custom-modal.open-bottom-modal .modal-content {
    border-radius: 38px 38px 0 0 !important;
  }

  .meta-mask-90 li {
    width: 14%;
    margin: 5px;
  }

  .custom-modal.open-bottom-modal .modal-dialog-centered {
    margin: 0;
    align-items: flex-end !important;
    min-height: 100% !important;
  }

  .custom-modal.open-bottom-modal .modal-dialog.modal-dialog-centered {
    margin: 0;
    padding: 0;
  }

  .dark .custom-header .nav-link:hover, .dark .custom-header .nav-link.active {
    background: none !important;
  }

  .nav-form-section {
    justify-content: start;
    align-items: center;
    display: flex !important;
  }

  nav.navbar.bg-body-tertiary.dark\:bg-gray-900 {
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    overflow: auto;
    z-index: 9 !important;
    backdrop-filter: blur(30px) !important;
  }

  .logout-section.mobile-logout {
    margin: 15px 0 25px;
  }

  .wallet-box.mobile-wallet-box {
    padding: 16px 0 0;
  }

  .navbar-collapse.collapse.show {
    height: calc(100vh - 60px);
    margin-top: 14px;
    position: relative;
    overflow: hidden auto;
  }

  .parent-noti .card.shadow.custop-h12 {
    width: 100%;
    min-width: 40vh;
    right: 10px;
    left: -251px !important;
  }

  .footer-ul li a {
    margin: 0;
  }

  .footer-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-ul li {
    margin: 10px 0 0;
  }

  .footer-custom {
    padding: 30px 0;
  }

  .inner-content {
    padding: 40px 15px;
  }

  .assets-btn-sec {
    margin: 0;
    padding: 0;
  }

  .point-list {
    margin: 0 0 22px -3px;
  }

  .your-points, .your-points.accum-box .point-list:last-child {
    margin: 0;
  }

  .Assets-box.recent11.only-recent-activity {
    margin: 0 0 22px;
  }
}

.loader-overlay {
  z-index: 50;
  background: #0009;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.loader {
  width: 80px;
  height: 80px;
  position: relative;
}

.loader-ring {
  border: 5px solid #0000;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.2s ease-in-out infinite spin;
  position: absolute;
  top: 0;
  left: 0;
}

.ring-1 {
  border-top-color: #fff;
  border-bottom-color: #0000;
  box-shadow: 0 0 10px #ffffff80;
}

.ring-2 {
  border-top-color: #ccc;
  border-bottom-color: #0000;
  animation-delay: .3s;
  transform: scale(.85);
  box-shadow: 0 0 8px #ffffff4d;
}

.ring-3 {
  border-top-color: #999;
  border-bottom-color: #0000;
  animation-delay: .6s;
  transform: scale(.7);
  box-shadow: 0 0 6px #fff3;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

.goog-te-banner-frame.skiptranslate, .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link, .goog-te-gadget-icon {
  display: none !important;
}

.common-input-new.update-modal {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.popupmodal_div {
  padding: 20px;
}

.image_main_div {
  width: 100%;
  margin: auto;
}

.popup_image {
  color: #0000;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-height: 250px;
}

.common-input-new.update-modal a.Continue.view-explorer {
  width: 100% !important;
  max-width: 100% !important;
}

.common-input-new.update-modal .common-input-new.connect-wallet {
  width: 100%;
}

.modal-open .banner_welcome {
  filter: blur(7px);
}

.bottom-sheet {
  transition: transform .3s ease-in-out;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
}

.centered-close {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 769px) {
  .bottom-sheet {
    display: none;
  }
}

@media (width <= 767px) {
  .custom_drop {
    justify-content: end !important;
    align-items: end !important;
    min-height: 300px !important;
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
  }

  .custom_border_drop {
    border-radius: 50px 50px 0 0;
    padding: 50px 20px;
  }
}

@media (width <= 768px) {
  .mobile-overlay-animation {
    animation: .3s ease-out mobile-fade-in;
  }

  .mobile-overlay-animation.mobile-closing {
    animation: .3s ease-out mobile-fade-out;
  }

  .mobile-modal-animation {
    transform-origin: bottom;
    animation: .3s cubic-bezier(.4, 0, .2, 1) mobile-slide-up;
  }

  .mobile-modal-animation.mobile-closing {
    animation: .3s cubic-bezier(.4, 0, .2, 1) mobile-slide-down;
  }

  .wallet-modal-overlay.mobile-overlay-animation {
    justify-content: center;
    align-items: flex-end;
  }

  .mining-modal-content.mobile-modal-animation {
    background: radial-gradient(140.21% 140.21% at 50% -30.42%, #222838 0%, #0a0e19 100%);
    border-radius: 40px 40px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    margin: 0;
    overflow-y: auto;
  }
}

@keyframes mobile-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mobile-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mobile-slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-slide-down {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@media (width <= 768px) {
  .mobile-overlay-animation {
    -webkit-backdrop-filter: blur(4px);
  }
}

.barcode-scanner video {
  object-fit: cover !important;
  width: 120% !important;
  height: 120% !important;
  margin-top: -10% !important;
  margin-bottom: -10% !important;
  margin-left: -10% !important;
}

.modal-open-booster {
  overflow: hidden !important;
}

@media (width <= 767px) {
  .mobile_scroll_update {
    min-height: 300px;
    max-height: 500px;
    overflow: auto;
  }

  .swap_input {
    max-width: 200px;
  }
}


/*# sourceMappingURL=_53edc429._.css.map*/