:root {
  --bg-surface: #202331c9;
}

body {
  background-color: #070a1a !important;
  touch-action: none !important;
  color: #fff;
  overflow: hidden;
}
* {
  font-family: "Poppins", sans-serif;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-around;
  bottom: -3px;
  align-items: center;
  padding: 0px 0rem;
  box-sizing: border-box;
  /* background: red; */
  height: 5rem;
  background: #3f51b54a;
  /* border-radius: 13px; */
  /* left: 0.5rem; */
  backdrop-filter: blur(2rem);
  border-radius: 15px 15px 0 0;
  border-top: 2px solid #3f4cb5;
}

.nav-icon {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 17px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
}

.nav-icon svg {
  height: 16pt;
}
.nav-item-selected {
  opacity: 1;
}

.nav-item-selected .nav-icon {
}

.nav-item-selected .nav-label {
  font-weight: 500;
}

.content-space {
  position: fixed;
  height: 100dvh;
  top: 0;
  width: 100%;
  overflow-y: auto;
  padding-bottom: 5rem;
}
.panda-logo-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

img.panda-logo {
  height: 5rem;
}
.com-join-card {
  background: var(--bg-surface);
  padding: 1.5rem 10px;
  border-radius: 11px;
  width: 88%;
}
button.btn {
  background: #fff;
  color: #fff;
  padding: 9px 17px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.15s;
  height: 3.4rem;
}
button.btn:active {
  scale: 0.95;
}
.nav-icon img {
  height: 20px;
  filter: invert(1);
}

.reward-ic-bg {
  background: #00000061;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reward-ic-bg svg {
}

.btn-effect {
  transition: 0.1s;
}

.btn-effect:active {
  scale: 0.9;
  outline: none;
}
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  height: 70px;
  width: 70px;
  text-transform: uppercase;
  font-weight: bold;
}
.bg-surface {
  background: var(--bg-surface);
}
.btn-block {
  width: 100%;
}

.btn-blue {
  background: #3b1dd4 !important;
  padding: 13px 0px !important;
  margin-bottom: 1rem;
  border: none;
  text-align: center;
  border-radius: 10px;
}
.signup-page-container {
  height: 100dvh;
  width: 100%;
}

.bg-primary {
  background: #0077ff;
}
.bg-track {
  background-color: rgb(189, 189, 189);
}

img.sign-disp-img {
  height: 13rem;
  margin: auto;
  margin-bottom: 3rem;
}
.signup-reward-container {
  /* background: red; */
  height: calc(100dvh - 4rem);
  margin-top: 4rem;
}
.text-xxxxlg {
  font-weight: 900;
  font-size: 97pt;
}
.loader {
  width: 48px;
  height: 48px;
  border: 5px dotted #000;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.spin {
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fscreen-loader {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-loader {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 15px 0 #fff, 15px 0 #fff;
  position: relative;
  animation: flash 0.5s ease-out infinite alternate;
}

@keyframes flash {
  0% {
    background-color: #ffffff4f;
    box-shadow: 15px 0 #ffffff4f, -15px 0 #fff;
  }
  50% {
    background-color: #fff;
    box-shadow: 15px 0 #ffffff4f, -15px 0 #ffffff4f;
  }
  100% {
    background-color: #ffffff4f;
    box-shadow: 15px 0 #fff, -15px 0 #ffffff4f;
  }
}
.btn-loader-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-tomato {
  background: #ffc107 !important;
  color: #3f2500 !important;
}
.btn-sub {
  width: 15rem;
  height: 3rem !important;
}
.bg-tomato .btn-loader {
  filter: invert(1);
}

.lb-loader-wrapper .btn-loader {
  margin-right: 1rem;
}
.toast-container {
  width: 90%;
  position: fixed;
  bottom: 8rem;
  border-radius: 11px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 16px 12px;
  gap: 1rem;
  left: 5%;
  z-index: 95;
  backdrop-filter: blur(1rem);
  font-weight: 500;
}

button.toast-close-btn svg {
  font-size: 14pt;
}
table.ref-count-table {
  border: 1px solid #9c9c9c;
  border-collapse: collapse;
}

table.ref-count-table tr {
  t: 1px solid #ddd;
}

table.ref-count-table td {
  border: 1px solid #bcbcbcdd;
  padding: 8px;
  text-align: center;
}
img.panda-logoxx {
  width: 7rem;
  margin: auto;
}
.apps-container {
  /* Add margin to both sides of the container */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-item-wrapper {
  flex: 0 0 calc(33.333333333% - 10px); /* Adjusting for margin */
  /* margin: 5px; */
  background-color: var(--bg-surface);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  transition: 0.15s;
  box-sizing: border-box;
}

img.app-ic {
  width: 50px;
}
.apps-container-wrapper {
  margin: 0px 12px;
  transform: translateX(5px);
  margin-top: 1rem;
}

.app-item-wrapper:active {
  scale: 0.95;
}

.app_title {
  font-size: 11pt;
}
.kefh {
  color: #7319fa;
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    93deg,
    color(display-p3 0.37 0.03 1),
    color(display-p3 1 0.06 0.66),
    color(display-p3 1 0.43 0.07)
  );
  background-image: -webkit-linear-gradient(
    98deg,
    color(display-p3 0.37 0.03 1),
    color(display-p3 1 0.06 0.66),
    color(display-p3 1 0.43 0.07)
  );
}
.layout {
  height: 100vh;
}
.home-title {
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 1rem;
}

.task-list-container {
  padding: 6px 0px;
}

.task-item-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  background: #b76eff24;
  border-radius: 13px;
  padding: 15px 8px;
}

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

.tli-ic {
  background: var(--bg-base);
  background: #7427b066;
  height: 35px;
  width: 35px;
  display: flex;
  border: 1px solid #8b27b0;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
}

button.btn-task-start {
  background: #7427b066;
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
  border: 1px solid #8b27b0;
}

.tli-ic svg {
  height: 20px;
}
.tli-title {
  font-weight: bold;
}

.tli-reward.text-secondary {
  opacity: 0.8;
}
.wallet-connect-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-connect {
  padding: 3px 12px;
  align-items: center;
  gap: 9px;
  border-radius: 7px;
}

.btn-connect svg {
  width: 16px;
  transform: translateY(-1px);
}

.home-score-banner-wrapper {
  position: fixed;
  width: 100%;
  height: 7rem;
  top: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(15%, #1e89d6),
    color-stop(70%, #046ae2)
  );
  background: -webkit-linear-gradient(bottom, #1e89d6 15%, #046ae2 70%);
  background: -moz-linear-gradient(bottom, #1e89d6 15%, #046ae2 70%);
  background: linear-gradient(0deg, #1e89d6 15%, #046ae2 70%);
  z-index: 100;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hsb-button {
  display: flex;
  gap: 5px;
  transform: translateY(-6px);
}

.hmc-edge {
  border-radius: 30px 30px 0px 0px;
  position: absolute;
  height: 0px;
  width: 100%;
  padding: 13px;
  background: #000000;
  bottom: -1px;
  box-sizing: border-box;
}

.hmcs-txt {
  font-weight: bold;
  font-size: 14pt;
}
.splash-screen {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

img.splash-screen-img {
  height: 13rem;
}

.shootingStar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

@keyframes animateBg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.shootingStar span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
  animation: animateShootingStar 3s linear infinite;
}
.shootingStar span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
}
@keyframes animateShootingStar {
  0% {
    transform: rotate(315deg) translateX(0);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: rotate(315deg) translateX(-1000px);
    opacity: 0;
  }
}
.shootingStar span:nth-child(1) {
  top: 0;
  right: 0;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1s;
}
.shootingStar span:nth-child(2) {
  top: 0;
  right: 80px;
  left: initial;
  animation-delay: 0.2s;
  animation-duration: 3s;
}
.shootingStar span:nth-child(3) {
  top: 80;
  right: 0px;
  left: initial;
  animation-delay: 0.4s;
  animation-duration: 2s;
}
.shootingStar span:nth-child(4) {
  top: 0;
  right: 180px;
  left: initial;
  animation-delay: 0.6s;
  animation-duration: 1.5s;
}
.shootingStar span:nth-child(5) {
  top: 0;
  right: 400px;
  left: initial;
  animation-delay: 0.8s;
  animation-duration: 2.5s;
}
.shootingStar span:nth-child(6) {
  top: 0;
  right: 600px;
  left: initial;
  animation-delay: 1s;
  animation-duration: 3s;
}
.shootingStar span:nth-child(7) {
  top: 300px;
  right: 0px;
  left: initial;
  animation-delay: 1.2s;
  animation-duration: 1.75s;
}
.shootingStar span:nth-child(8) {
  top: 0px;
  right: 700px;
  left: initial;
  animation-delay: 1.4s;
  animation-duration: 1.25s;
}
.shootingStar span:nth-child(9) {
  top: 0px;
  right: 1000px;
  left: initial;
  animation-delay: 0.75s;
  animation-duration: 2.25s;
}
.shootingStar span:nth-child(9) {
  top: 0px;
  right: 450px;
  left: initial;
  animation-delay: 2.75s;
  animation-duration: 2.75s;
}
img.premium-logo {
  width: 18rem;
}

.premium-logo-wrapper {
  margin: auto;
}
button.btn-task-pending {
  background: #fff;
  padding: 4px 0px;
  border-radius: 32px;
  color: #000;
  font-weight: 600;
  width: 4.1rem;
  height: 2rem;
}
.btn-spinner-sm {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
.btn-spinner-sm::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid #000;
  animation: prixClipFix 2s linear infinite;
}

.loader-circular {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
.loader-circular::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.button-spinner-sm {
  display: flex;
  justify-content: center;
  align-items: center;
}
button.btn-task-complete {
  background: #fff;
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
  color: #000;
  opacity: 0.5;
}

html {
  scroll-behavior: smooth;
}
.heartbeat {
  animation: heartbeat 0.7s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}
.ref-user-list {
  padding: 0px 1rem;
}
.ref-user-list {
  padding: 1rem 1rem;
  margin-top: 2rem;
  background: #7d6eff24;
  border-radius: 1rem;
}

.ref-btn-container {
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  min-width: 18rem;
}
.ref-usr-container {
}
.text-secondary {
  opacity: 0.7;
}
.widhiuwhd {
  font-size: 15pt;
}

.widhiuwhd svg {
  height: 20px;
}

.task_reward_container {
  padding: 5px 7px;
}

.bdnfhjcb {
  white-space: nowrap;
}
.daily-checkin-wrapper {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: black;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.check-in-bottom {
  width: 100%;
  box-sizing: border-box;
  padding: 0px 1rem;
}

.daily-checkin-top {
  margin-top: 2rem;
  font-size: 20pt;
  font-weight: bold;
  padding: 0px 2rem;
  text-align: center;
}

.check-in-mid {
  text-align: center;
}

.-eidfhjri {
  font-size: 33px;
  font-weight: bold;
  animation-name: glow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes glow {
  from {
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #614ad3;
  }
  to {
    text-shadow: 0px 0px 20px #fff, 0px 0px 20px #614ad3;
  }
}
img.dwd {
  width: 11rem;
  margin: auto;
  margin-bottom: 1rem;
}
h3 {
  font-weight: bold !important;
  font-size: 20pt !important;
}
.dialog-base {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1d0e38bf;
  width: 20rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.db-header {
  padding: 8px 9px;
  display: flex;
  justify-content: space-between;
}

button.db-close {
  background: transparent;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button.db-close svg {
  font-size: 16pt;
}

.dialog-body {
  padding: 7px 10px;
  position: relative;
  max-height: 70vh;
  overflow: auto;
}

.opt-dlg-wrapper {
  text-align: center;
}

input#uid-input {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  padding: 12px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  margin: 13px 0px;
}

input#uid-input:focus {
  outline: 1px solid #0077ff;
}
#dlg-wrapper-lay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: #00000038;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.error-log {
  color: #ff5722;
  margin-bottom: 1rem;
  font-weight: bold;
}
img#tonIc {
  height: 4rem;
}

.tdh {
  display: flex;
  gap: 1rem;
  /* align-items: center; */
  border-bottom: 1px solid #ffffff3b;
  padding: 11px 0px;
  padding-left: 5px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.ton-deposit-wrapper {
  padding: 10px 7px;
  border-radius: 11px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0rem 1rem;
  margin-top: 1rem;
  /* box-shadow: 0px 0px 15px 0px #00000030; */
}

.tdh-text {
  font-size: 14pt;
  font-weight: bold;
}

.tdb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
  position: relative;
  z-index: 2;
}

.btn-deposit {
  padding: 8px 14px !important;
  height: auto !important;
  border-radius: 25px !important;
  margin-bottom: 0 !important;
}

.tbh-reward {
  font-weight: bold;
  color: #ffc107;
}

.chip-hot-container {
  display: flex;
  justify-content: end;
}

.chip-hot {
  display: flex;
  font-size: 11pt;
  background: #f403034f;
  padding: 6px 12px;
  border-radius: 25px;
  color: #ff7676;
  font-weight: bold;
}

.chip-hot svg {
  font-size: 11pt;
  height: 19px;
}

.tdh-ic {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h1 {
  font-size: 25pt;
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.tasks-container {
  padding: 1rem 1rem;
}

.bloom {
  position: absolute;
  height: 7rem;
  width: 10rem;
  top: 2rem;
  right: -5rem;
  border-radius: 50%;
  z-index: -2;
  filter: blur(2rem);
  /* background: #ff5722; */
  opacity: 0.8;
}
.task-tab-container {
  background: #ffffff26;
  margin: 1.5rem auto;
  height: 3rem;
  /* display: inline-block; */
  width: 17rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-radius: 15px;
}

button.ttc-btn-l {
  position: relative;
  z-index: 2;
  width: 8rem;
  margin-left: 5px;
}

button.ttc-btn-r {
  position: relative;
  z-index: 2;
  width: 8rem;
  margin-right: 5px;
}

.ttc-selected {
  background: #fff;
  position: absolute;
  height: 80%;
  width: 8rem;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 11px;
  /* transition: all 0.1s ease-in-out; */
  left: 5px;
}

.tts-l {
  left: 5px;
}

.tts-r {
  left: calc(100% - 8rem - 5px);
}
div#pTaskAccordWrapper {
  background: var(--bg-surface);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

img.pacc-logo {
  width: 4rem;
  border-radius: 12px;
}

.pacc-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 11px 9px;
}

.pacc-left {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.pacc-ttl {
  font-size: 15pt;
  font-weight: normal;
}

.pacc-content {
  max-height: 0;
  transition: max-height 0.1s ease-out;
  overflow: hidden;
}

.pcc-open {
  max-height: 500px;
}
.plist-item-container {
  display: flex;
  justify-content: space-between;
  padding: 11px 13px;
  align-items: center;
  background: #0f0f0f;
  margin: 0px 8px;
  margin-bottom: 12px;
  border-radius: 11px;
}

.ptl-l {
  display: flex;
  gap: 12px;
  align-items: center;
}

button.plt-start-btn {
  background: #fff;
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
  color: #000;
}

.ptl-ttl {
  font-weight: 600;
}

.ptl-reward {
  color: #fff;
  opacity: 0.7;
}
button.plt-verify-btn {
  background: #ffeb3b;
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
  color: #000;
  height: 2rem;
  width: 4.5rem;
}
button.plt-done-btn {
  background: #00ff0a3b;
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
  color: #00ff35;
}
@keyframes rotate-gradient {
  0% {
    background: linear-gradient(0, var(--bg-surface) 18%, #2196f3 100%);
  }
  100% {
    background: linear-gradient(360deg, var(--bg-surface) 18%, #2196f3 100%);
  }
}

.pcdfkf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pcdfkf .loader {
  border-color: white;
}
.sign-logo-wrapper {
  height: 14rem;
  position: relative;
}
.signup-lottie-wrapper {
  position: relative;
}

.signup-bloom {
  height: 9rem;
  width: 9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(5rem);
  opacity: 0.7;
  background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
}
.SignUpLoaderLottie {
  width: 100%;
}

.btn-block {
  width: 100%;
  display: block;
}

.signup-loader-btn-wrapper {
  width: 100%;
  height: 4rem;
  padding: 0rem 1.25rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.bloom-2 {
  height: 10rem;
  width: 10rem;
  position: fixed;
  z-index: -1;
  left: -5rem;
  bottom: 10%;
  border-radius: 50%;
  background: #2178f3;
  filter: blur(6rem);
}
.bloom-3 {
  height: 10rem;
  width: 10rem;
  position: fixed;
  z-index: -1;

  right: -5rem;
  top: 10%;
  border-radius: 50%;
  background: #7421f3;
  filter: blur(6rem);
}
.jb-center-anim {
  width: 15rem;
}

.join-bon-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kodeijeid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-header-wrapper {
  position: relative;
}

.h-cover {
  position: absolute;
  z-index: -1;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* mask-image: linear-gradient(to bottom, rgb(7 10 26), rgb(255 10 10 / 0%)); */
  /* -webkit-mask-image: linear-gradient(to bottom, rgb(7 10 26), rgb(255 10 10 / 0%)); */
  filter: blur(27px);
}

img.bcr-main-logo {
  height: 2.5rem;
}

img.bcr-ton-logo {
  height: 3rem;
}

.balance-card-container {
  background: #ffffff14;
  /* width: 100%; */
  margin: 0rem 1rem;
  border-radius: 16px;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.bcc-cur-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

.bcrm-h {
  font-weight: bold;
  font-size: 29pt;
}

.bcr-sub {
  opacity: 0.7;
  font-weight: 600;
}

/* div#ton-connect-button {
  width: 100% !important;
  display: block !important;
}

div#ton-connect-button button {
  display: flex;
  width: 87% !important;
  margin: 0rem auto !important;
  justify-content: center !important;
  border-radius: 11px !important;
  background: #0072cd !important;
  margin-bottom: 0.5rem !important;
} */

.bcc-cur-row {
}

.bcr-l {
}

.fader {
  /* position: absolute; */
  /* height: 4rem; */
  bottom: -10px;
  background: #070a1a;
  filter: blur(7px);
  width: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.bct-l {
  display: flex;
  gap: 0.6rem;
}

.brt-w-btn {
  height: 3rem;
  width: 3rem;
  background: #2fb794;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brt-w-btn svg {
  font-size: 15pt;
  color: #003724;
  font-weight: bold;
  stroke-width: 41px;
}

.h-cover svg {
  width: 100%;
}
.car-bloom {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ff3d00;
  border-radius: 50%;
  bottom: 2rem;
  right: 3rem;
  z-index: -1;
  filter: blur(2rem);
}
.home-bg-layer {
  position: absolute;
  z-index: -2;
  top: 12rem;
  height: calc(100% - 12rem);
  width: 100%;
  overflow: hidden;
  filter: blur(9rem);
}
path.navbar-ic-path {
  fill: #ffffff;
}
.nvc-ic {
  height: 3.5rem;
  width: 3.5rem;
  background: #ff0089;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nvc-w {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0px 10px;
  height: 100%;
  /* border-radius: 0 0 50% 50%; */
}

.nav-item-selected .nav-icon {
  background: #634fc86b;
  border: 2px solid #6450ca;
}
.nvc-ic-active {
  outline: 3px solid #ff0089;
  outline-offset: 3px;
}
.active-down {
  scale: 1;
  transition: scale 0.1s;
}

.active-down:active {
  scale: 0.9;
}
.th-l1 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0rem 2rem;
  margin-top: 1rem;
}

.thbtn-lottie {
  width: 5rem;
}

button.th-btn {
  background: #2c314a7a;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding-right: 1rem;
  border-radius: 11px;
  padding-left: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 13px;
}

.thbtn-lab {
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 12pt;
}

svg#tap {
  height: 2rem;
}

.th-l2 {
  display: flex;
  justify-content: center;
  margin: 1rem 0rem;
  font-size: 10pt;
  gap: 7px;
  align-items: center;
}

.th-l3 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
}

.th-l3 svg {
}

.th-l3 svg {
  height: 2rem;
}

.coin-text {
  font-size: 24pt;
  font-weight: bold;
}

.tap-page {
  height: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tap-circle {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 11px solid #1f2b71;
  /* background: radial-gradient(50% 50% at 50% 50%, #1f2b71 50%, #0d122e 110%); */
  /* perspective: 1000px; */
}

.tap-footer {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 11px 24px;
}

.energy-bar-track {
  background: #ffffff30;
  flex: 1;
  height: 8px;
  border-radius: 25px;
  overflow: hidden;
  transition: width 0.12 ease;
}

.energy-meta {
  display: flex;
  gap: 8px;
}

.eb-level {
  background: #ff9f00;
  height: 100%;
  border-radius: 15px;
}
img.thbtn-ic {
  width: 32px;
}

.tap-header {
  margin-top: 2rem;
}

.tap-container {
  position: relative;
  margin-top: -2rem;
}
.djkj {
  font-weight: 600;
}

.bloom-4 {
  height: 20rem;
  width: 20rem;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: #1f2b71cf;
  filter: blur(2rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
img.nvc-icon {
  height: 4rem;
}

.energy-label {
  font-size: 11pt;
  width: 85px;
}
.tapped {
  transform: rotate(10deg) scale(1.05); /* Slight rotate and scale on tap */
  box-shadow: 0 0 30px 10px rgba(255, 223, 0, 0.9); /* Stronger glow on tap */
}
.animating {
  transition: transform 0.1s ease-in; /* Faster transition when animating */
}

.plus-one {
  position: absolute;
  font-size: 16pt;
  font-weight: bold;
  color: #fff;
  animation: fly-up 1s forwards, fade-out 1s forwards;
}

/* Animation to move +1 element upwards */
@keyframes fly-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60px);
  }
}

/* Animation to fade the element out */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
img.tap-logo {
  filter: drop-shadow(2px 5px 0px black);
  height: 8rem;
}
.bloom-5 {
  height: 10rem;
  width: 10rem;
  position: fixed;
  z-index: -1;
  right: -5rem;
  bottom: 10%;
  border-radius: 50%;
  background: #2178f3;
  filter: blur(6rem);
}

.bloom-6 {
  height: 16rem;
  width: 16rem;
  position: fixed;
  z-index: -1;
  left: calc(50% - 8rem);
  top: -8rem;
  border-radius: 50%;
  background: #7421f3;
  filter: blur(6rem);
}
.spin-smooth {
  animation: spinAndStop 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.wheel-container {
  height: 320px;
  position: relative;
  margin-top: 2rem;
}

img.wheel-base {
  position: absolute;
  z-index: 1;
  left: calc(50% - 133.5px);
}

img.wheel-spinner {
  position: absolute;
  left: calc(50% - 108px);
  z-index: 2;
  top: calc(50% - 108px);
  filter: drop-shadow(0px 0px 5px black);
}
.spin-smooth {
  animation: spinAndStop 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes spinAndStop {
  0% {
    transform: rotate(1080deg);
  }

  100% {
    transform: rotate(0deg); /* Stop at 75 degrees */
  }
}
.lwhl-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.lh-hl1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.lh-hl1 img {
  height: 24px;
}

.spin-btn-area {
  padding: 0rem 2rem;
  margin-top: 4rem;
}

button.btn-spin {
  background: #634fc86b;
  font-weight: bold;
  display: block;
  width: 14rem;
  height: 3rem;
  display: flex;
  margin: auto;
  color: #ffffff;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: 2px solid #6450ca;
  box-shadow: 0px 0px 46px 0px #4e14b4;
}
.tpage-lottie-task {
  width: 11rem;
  margin: 4rem auto;
}
.tpage-lottie-task {
  width: 11rem;
  margin: 4rem auto;
}

.tpttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}

.h-line {
  height: 2px;
  background: #ffffff30;
  flex: 1;
}

.tpttl .h1 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
button.btn-reward {
  background: #b76eff24;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #9c27b087;
  /* box-shadow: 0px 0px 5px 0px #9c27b087; */
}
.lb-anim {
  width: 16rem;
  margin: auto;
  margin-top: -2rem;
}
.glow-1 {
  position: absolute;
  height: 100%;
  width: 11rem;
  background: #5900ff;
  right: 0;
  /* border-radius: 50%; */
  z-index: -1;
  filter: blur(3rem);
  opacity: 0.7;
}

.efref {
  background: #2a12606b;
  border: 2px solid #673ab7bd;
  overflow: hidden;
}

.text-bold {
}

.ei3jeij {
  font-weight: bold;
  font-size: 13pt;
}

.fr3tf {
  opacity: 0.7;
}
.frensAnim {
  width: 13rem;
  margin: auto;
}

.rca-sub {
  width: 80%;
  margin: auto;
  text-align: center;
  margin-top: -12px;
  font-size: 10pt;
  opacity: 90%;
}

.lref-h {
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
  border-bottom: 1px dashed #3f51b5;
  width: max-content;
  margin: auto;
  margin-top: 2rem;
  padding: 0rem 3rem;
  color: #a0afff;
}

.no-frens-wrapper {
  text-align: center;
  margin-top: 1rem;
}

.nf-title {
  font-size: 14pt;
  font-weight: bold;
}

.nf-title2 {
  margin: 0 1rem;
  margin-top: 6px;
  font-size: 11pt;
}
.refer-user-item {
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
button.btn-invite {
  background: #3900ffa3;
  display: flex;
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
}
.splash-lottie {
  width: 100%;
}
button.btn-spin:disabled {
  opacity: 0.5;
}

button.btn-earn-spin {
  background: #634fc86b;
  font-weight: bold;
  display: block;
  width: 14rem;
  height: 3rem;
  display: flex;
  margin: auto;
  color: #ffffff;
  border-radius: 9px;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: 2px solid #6450ca;
  box-shadow: 0px 0px 46px 0px #4e14b4;
}
.spin2Ton {
  animation: spin2TonAnim 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes spin2TonAnim {
  0% {
    transform: rotate(1980deg);
  }

  100% {
    transform: rotate(250deg); /* Stop at 75 degrees */
  }
}
.rotate-ton {
  transform: rotate(250deg);
}
.spin2Local {
  animation: spin2LocalAnim 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes spin2LocalAnim {
  0% {
    transform: rotate(1980deg);
  }

  100% {
    transform: rotate(25deg); /* Stop at 75 degrees */
  }
}
.rotate-local {
  transform: rotate(25deg);
}
.btn-claim-spin {
  background: #673ab7c2;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: 14rem;
  height: 2.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 10px;
}
.btn-claim-spin {
  background: #673ab7c2;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  width: 14rem;
  height: 2.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 10px;
  position: relative;
  z-index: 8;
}
img.dci-curr-ic {
  height: 16px;
}

.dci-list-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 8px;
  margin-top: 2rem;
}

.dci-item-container {
  flex: 1 1 23%; /* Each box will take approximately 23% of the row width */
  margin: 1%; /* Adds space between boxes */
  position: relative; /* Required for the padding trick */
  padding-top: 23%; /* Makes the height equal to the width (keeping it square) */
  background-color: #b9ade626; /* Background color for visibility */
  border-radius: 11px;
  text-align: center; /* Centers the text */
  box-sizing: border-box;
  overflow: hidden;
}

.dri-content {
  position: absolute; /* Position it within the box */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between; /* Centers the content horizontally */
  flex-direction: column;
  align-items: center; /* Centers the content vertically */
  padding: 8px 0;
}

.dri-day {
  font-size: 9pt;
  font-weight: 600;
}

.glow-2 {
  height: 30px;
  width: 30px;
  background: #4caf50;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(26px);
}

.dri-coin-ic {
  position: relative;
  z-index: 2;
}

.dri-amount {
  font-weight: bold;
}

svg.ic-tiny {
  font-size: 8pt;
}

.op-1 {
  opacity: 1 !important;
}
.spin-confetti {
  position: absolute;
  /* background: red; */
  top: 0;
  z-index: 7;
}
.dri-done {
  background: #0020cf3d;
}

.dri-avail {
  background: #0e2ac7;
}
.dri-csp {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
.next-rwrd {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.next-rwrd .cli-cd-wrapper {
  font-size: 18pt;
  font-weight: 600;
}

.nr-ttl {
  font-weight: 600;
  font-size: 11pt;
}
.range {
  width: 100%;
  height: 30px;
  -webkit-appearance: none;
  background: #ffffff29;
  outline: none;
  border-radius: 30px;
  overflow: hidden;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #591dd4;
  cursor: pointer;
  border: 4px solid #ab9bff;
  box-shadow: -407px 0 0 400px #591dd4;
}
img.ton_ej3rhuh {
  height: 2rem;
}

.heading {
  font-size: 24pt;
  font-weight: bold;
  margin: 1.5rem 8px;
  text-align: center;
}

.ton-av-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tbal {
  font-size: 12pt;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 27pt;
}

.amount-select-area {
  margin: 0px 2rem;
  /* margin-top: 1rem; */
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

input.ton-amount-input {
  background: #634fc86b;
  font-weight: 600;
  height: 3rem;
  color: #ffffff;
  border-radius: 9px;
  outline: 2px solid #6450ca;
  box-shadow: 0px 0px 26px 0px #4e14b4;
  text-align: center;
  font-size: 14pt;
  width: 100%;
  box-sizing: border-box;
}

h2.tttl-sec {
  text-align: center;
  font-size: 17pt;
  font-weight: 600;
}

button.btn-fund-withdraw {
  background: #3b1dd4;
  font-weight: bold;
  height: 3rem;
  color: #ffffff;
  border-radius: 9px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.withdraw-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  gap: 3rem;
}

.btn-wit-area {
  margin: 0 1rem;
}
a.link-history {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 12pt;
  font-weight: 600;
}

button.btn-fund-withdraw:disabled {
  opacity: 0.7;
}
/* div#ton-connect-button div {
  width: 100%;
} */
div.wallet-con-bhome div {
  width: 90%;
  margin: auto;
}

div.wallet-con-bhome div button {
  width: 100%;
}
tc-root {
  left: 6rem !important;
}
.live-ind-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.live-dot-around {
  background: #ffffff;
}

.live-dot {
  background: #ffffff;
}

.lind-container {
  background: #f4035282;
  border-radius: 10px;
  width: 6rem;
  justify-content: center;
  height: 2.5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.buy-tick-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  border-radius: 22px;
  margin-top: 2rem;
  /* background: #3e3dad45; */
  padding: 2rem 0rem;
  gap: 1rem;
  position: relative;
}

button.bts-btn {
  height: 3rem;
  width: 3rem;
  background: #3b1dd4;
  border-radius: 50%;
  font-size: 28pt;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bt-selector-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bts-count {
  background: #28282800;
  width: 6rem;
  font-size: 24pt;
  font-weight: 600;
}

.bt-ttl {
  font-weight: bold;
  font-size: 15pt;
}

button.btn-buy-ticket {
  background: #3b1dd4;
  font-weight: bold;
  height: 3rem;
  color: #ffffff;
  border-radius: 44px;
  text-align: center;
  width: 15rem;
  box-sizing: border-box;
  margin: auto;
}
.li-prize img {
  height: 1.3rem;
}

.li-prize-disp {
  text-align: center;
}

.li-prize {
  display: flex;
  justify-content: center;
  font-size: 12pt;
  flex-direction: column;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  border-radius: 22px;
  margin-top: 2rem;
  background: #3e3dad45;
  padding: 2rem 0rem;
  gap: 1rem;
  position: relative;
}

.glow-4 {
  position: absolute;
  height: 8rem;
  width: 8rem;
  background: #96006c;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(3rem);
  z-index: -1;
}

.ntf-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  opacity: 0.8;
  margin-top: 2rem;
}

.tick-stat-bar {
  background: #3e3dad45;
  position: fixed;
  width: 100%;
  height: 6.5rem;
  bottom: 0;
  backdrop-filter: blur(11px);
  border-radius: 25px 25px 0px 0px;
  border: 2px solid #5164ca;
  border-bottom: none;
}

.status-bar-track {
  background: #00000094;
  width: 80%;
  margin: auto;
  overflow: hidden;
  margin-top: 1rem;
  height: 36px;
  border-radius: 8px;
  position: relative;
}

.ticket-status-bar-level {
  background: #4635fe;
  height: 100%;
}

.dfiewjnjdfn {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.prize-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.ld-wrapper {
  padding-bottom: 8rem;
  position: relative;
}

.prize-item:nth-child(2) {
  font-size: 19pt;
}
.tick-wrapper {
  background: #ffbf00;
  height: 2rem;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
}

.tick-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 0 1rem;
}

.ticket-num {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 9pt;
  font-weight: 600;
  text-transform: uppercase;
}

svg.ic_barcode {
  font-size: 21pt;
  rotate: -90deg;
  color: black;
}

.ticket-barcode-wrapper {
  display: flex;
  justify-content: center;
  background: #ffffff;
  align-items: center;
}

.ticket-list-wrapper {
  margin-top: 2rem;
}
.tick-outer {
  flex-basis: calc(25% - 10px);
  position: relative;
  height: 2rem;
}

.tick-djwm {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ff2247;
  z-index: -1;
  rotate: -12deg;
  border-radius: 7px;
}
button.btn-archives {
  background: #45249a;
  width: 6rem;
  height: 2.5rem;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: 600;
}
.prev-dlg .dialog-base {
  background: #121526;
  width: 89%;
}

.prev-dlg {
  background: #000000bd !important;
}
.dlg-ttl {
  font-weight: 600;
  font-size: 15pt;
}
.session-item {
  background: #00000059;
  margin-bottom: 1rem;
  border-radius: 13px;
  padding-bottom: 0.3rem;
}

.sess-id {
  font-weight: bold;
  font-size: 14pt;
  padding: 10px 13px;
  padding-bottom: 1px;
}

.sww {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  background: #3f51b536;
  border-radius: 9px;
  margin: 7px 6px;
}

.sww-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw-badge {
  font-size: 20pt;
}
.sw-name {
  font-weight: 600;
}

.sess-end {
  font-size: 10pt;
  margin-left: 13px;
  margin-bottom: 13px;
}

span.defhdfhn {
  text-transform: uppercase;
  font-weight: bold;
}

.sw-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sw-prize {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11pt;
  font-weight: 500;
}

img.eu3hrj {
  width: 18px;
  transform: translateY(-1px);
}

.sess-end {
  font-weight: 500;
}
.nav-icon {
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nvc-c {
  transform: translateY(-33px);
}

.nvc-w.nvc-selected {
  background: linear-gradient(180deg, #3f52b5, transparent);
}
.dlg-task-list .dialog-base {
  background: #00000061;
  backdrop-filter: none;
  width: 100%;
  background: none;
  top: 0;
  transform: none;
  left: 0;
}

.dlg-task-list {
  background: linear-gradient(180deg, #2e10cb, #14007c) !important;
}
.task-reward-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  gap: 5px;
}
.flex.gap--xxxx {
  gap: 10px;
  justify-content: center !important;
  align-items: center;
}

.ins-container {
  margin: 1rem 1rem;
}

.dew3kdn {
  text-align: center;
  font-size: 16pt;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-weight: bold;
  color: #f2a4ff;
}

.sec-ins {
  padding: 11px 0px;
}

.content-space-no-nav {
  /* height: 100dvh; */
  padding-bottom: 0;
}
.rdm-ttle {
  text-align: center;
  font-size: 16pt;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-weight: bold;
  color: #f2a4ff;
}

.rdm-pair-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.rdmp-status {
  background: #7c006a;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdm-title {
  background: #ffffff1f;
  width: 10rem;
  text-align: center;
  border-radius: 9px;
  padding: 5px 13px;
}

.rdm-l {
  margin: 0rem 1rem;
  margin-right: 2rem;
}

.rdm-ttle {
  text-align: center;
  font-size: 16pt;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #b6a7ff;
}

.rdm-pair {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.5rem 0.5rem;
}

.rdm-pair-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.rdmp-status {
  background: #3b1dd4;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1rem;
}

.rdm-title {
  background: #3b1dd447;
  font-weight: 600;
  width: 7rem;
  text-align: center;
  border-radius: 9px;
  padding: 5px 13px;
  font-size: 9pt;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rdm-l {
  margin: 0rem 0.2rem;
}

.rdm-pair {
  border: 5px solid #3b1dd4;
}

.rdm-pair:nth-child(2n-1) {
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  width: calc(100% - 15px);
  margin-left: auto;
}

.rdm-pair:nth-child(2n) {
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  width: calc(100% - 15px);
}
.corner-br {
  position: absolute;
  height: 50px;
  width: 50px;
  background: none;
  right: -5px;
  bottom: -5px;
  border: 5px solid #3b1dd4;
  border-bottom-right-radius: 15px;
  border-top: none;
  border-left: none;
}
.corner-bl {
  position: absolute;
  height: 50px;
  width: 50px;
  background: none;
  left: -5px;
  bottom: -5px;
  border: 5px solid #3b1dd4;
  border-bottom-left-radius: 15px;
  border-top: none;
  border-right: none;
}
.whl-foot {
  padding: 0 1rem;
  padding-bottom: 1rem;
  font-size: 10pt;
  text-align: center;
}
.whi {
  background: #673ab729;
  margin: 0 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: HIDDEN;
}

.whi-head {
  background: #673ab75c;
  font-size: 10pt;
  padding: 7px 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.whi-main {
}

span.cdotx {
  height: 4px;
  width: 4px;
  background: #ffffff;
  border-radius: 50%;
}

.whi-status {
  text-transform: capitalize;
}

.ws-p {
  font-style: italic;
}
.efijwdhfn {
  text-align: center;
  margin: 0 2rem;
}

.ws-c {
  color: #00ff57;
  font-weight: bold;
}

.ws-f {
  font-weight: bold;
  color: #ff3760;
}

img.flb-icon {
  height: 32px;
}

button.floating-btn-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  transform: translate(-14px, 28px);
}

.flb-frame {
  background: #673ab7ab;
  height: 3.5rem;
  width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #9c27b0;
  border-radius: 50%;
}

.flb-text {
  background: #9c27b0;
  width: 100%;
  border-radius: 25px;
  padding: 3px 8px;
  font-size: 10pt;
  font-weight: bold;
}

button.floating-btn-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  transform: translate(14px, 28px);
}
.app-sheet-container {
  position: fixed;
  background: #040924;
  border-radius: 20px 20px 0 0;
  bottom: 0;
  z-index: 99;
  height: 25rem;
  width: 100%;
  border-top: 2px solid #ffffff66;
  overflow: hidden;
}

.sheet-content {
  max-height: calc(100% - 6rem);
}

.as-handle {
  height: 3px;
  width: 4rem;
  background: #fff;
  border-radius: 5px;
}

.app-sheet-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.app-sheet-overlay {
  height: 100vh;
  width: 100vw;
  z-index: 90;
  background: #00000052;
  position: fixed;
}
.sec-ins li {
  list-style-type: disc;
}

.sec-ins ul {
  margin-left: 2rem;
}

.ld-i:nth-child(1) {
  background: #b3d31242;
  margin-top: 1rem;
  border-radius: 10px;
  border: 2px solid gold;
}

.ld-i {
  display: flex;
  padding: 10px 8px;
  justify-content: space-between;
  align-items: center;
}

.ld-i:nth-child(1) .text-gray-500 {
  color: gold;
}

.ld-i:nth-child(1) .font-bold {
  color: gold;
  font-size: 15pt;
}

.ld-i:nth-child(2) {
  background: #0098003b;
  margin-top: 1rem;
  border-radius: 10px;
  border: 2px solid #00ff00;
}
.ld-i:nth-child(2) .text-gray-500 {
  color: #01ff0b;
}

.ld-i:nth-child(2) .font-bold {
  color: #01ff0b;
}

.ld-i:nth-child(3) {
  background: #2196f32e;
  margin-top: 1rem;
  border-radius: 10px;
  border: 2px solid #03a9f4;
}
.ld-i:nth-child(3) .text-gray-500 {
  color: #018eff;
}

.ld-i:nth-child(3) .font-bold {
  color: #2196f3;
}
img.tl-3-ic {
  height: 2rem;
}
.adsWrapper {
  position: fixed;
  z-index: 10000000;
  background: #1b10a9;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20pt;
  font-weight: 600;
}
.arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #3b1dd447; /* Arrow color */
  margin-bottom: 10px;
  position: absolute;
  top: -10px;
}

.arrow-up::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.rdm-start {
  background: #00915f;
  height: 24px;
  width: 24px;
  position: absolute;
  border-radius: 50%;
  top: -14px;
  left: 0;
}

.rdm-pair:last-child {
  border-right: none;
  border-radius: inherit;
  justify-content: end;
}

.rdm-pair:last-child .corner-br {
  border: none;
}
.cdn-wrapper {
  width: 3.7rem;
}
.cdn-wrapper {
  width: 3.7rem;
}

.flb-frame-wrapper {
  height: 3.5rem;
  width: 3.5rem;
  position: relative;
}

.flb-pulse {
  position: absolute;
  height: 70%;
  width: 70%;
  background: #2a4aff;
  border-radius: 50%;
  top: 15%;
  left: 15%;
  z-index: -1;
}
.wit-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17pt;
}
.rdm-pair:nth-child(1) {
  border-color: #00915f;
}
.rdm-pair:nth-child(2) {
  border-color: #00915f;
}
.rdm-pair:nth-child(1) .corner-br {
  border-color: #00915f;
}
.ad-498nfkld {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.dlg-ad .dialog-body {
  overflow: hidden;
}
.withdrawal-bal-low {
  text-align: center;
  margin-top: 1.5rem;
  color: #ff1909;
  font-size: 10pt;
  font-weight: bold;
  margin-bottom: -1rem;
}
.whi-main-sec {
  display: flex;
  justify-content: space-between;
  font-size: 10pt;
  padding: 12px 10px;
  width: 100%;
}

.tr-f-msg {
  color: #ff3760;
  font-size: 10pt;
  font-weight: bold;
  padding: 9px 8px;
  border-top: 1px solid #622fcb;
}
circle.mine-arc {
  stroke: #2196f3;
}

button.btn-claim-mine {
  background: #3b1dd4;
  font-weight: 500;
  height: 3rem;
  color: #ffffff;
  border-radius: 9px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
  font-size: 11pt;
}

.mining-footer {
  display: flex;
  justify-content: center;
}
.mining-stat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.mined-amount {
  font-size: 10pt;
  display: flex;
  align-items: center;
  gap: 0px;
}

.mined-amount span {
  display: block;
  width: 4.2rem;
  overflow: hidden;
  text-align: center;
}
.tli-labels {
  flex: 1;
}
.df2 {
  background: #673ab752;
  padding: 10px;
  font-size: 10pt;
  border-radius: 12px;
  margin-bottom: 11px;
}

.df2 a {
  font-weight: bold;
  color: #9336ff;
  text-decoration: underline;
}

.df2 button {
  font-weight: bold;
  font-family: monospace;
}
.ttl-3 {
  font-size: 15pt;
  font-weight: bold;
  padding: 0.7rem 0rem;
}
.ltd-task-wrapper {
  display: flex;
  background: #c2c1ff24;
  margin-bottom: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem;
  gap: 1rem;
  border-radius: 1rem;
  position: relative;
}

.lt-ic {
  background: #7427b066;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  border: 2px solid #9c27b0;
}

.ltt-data {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ltt-title {
  font-weight: bold;
  font-size: 13pt;
}

.ltd-task-wrapper:last-child {
  margin-bottom: 0rem;
}
.ltt-timer {
  position: absolute;
  background: #9c27b0;
  top: -8px;
  right: 12px;
  font-size: 9pt;
  font-weight: 600;
  padding: 0 7px;
  border-radius: 1rem;
}
.invite-task-wrapper {
  background: #c2c1ff24;
  border-radius: 1rem;
  padding: 1rem;
}

.it-task-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 2rem;
}

.it-ico {
  background: #7427b066;
  height: 4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  border: 2px solid #9c27b0;
}
.it-data {
  flex: 1;
}

.it-invite-count {
  color: #f3afff;
}

.total-invite-dis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}

.it-bonus-chip {
  background: #ffffff17;
  padding: 6px 9px;
  border-radius: 2rem;
  font-size: 11pt;
  font-weight: 500;
}

.task-item-container {
}

.it-total-invites {
  font-weight: 600;
}
.refer-central-area {
  padding: 1rem;
}

.ref-link {
  overflow: hidden;
  white-space: nowrap;
  font-size: 10pt;
  opacity: 0.8;
  flex: 1;
}

.ref-link-container {
  display: flex;
  align-items: center;
  background: #ffffff17;
  padding: 0.9rem 0.7rem;
  gap: 1rem;
  border-radius: 8px;
}

.ref-cp-btn {
  background: #ffffff36;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14pt;
}

button.btn-open-lbox {
  background: #ffffff1a;
  display: flex;
  padding: 10px 14px;
  border-radius: 8px;
  justify-content: center;
  gap: 7px;
  font-weight: 600;
  border: 2px solid #4c02b3;
  align-items: center;
  position: relative;
}
.ob-badge {
  position: absolute;
  background: red;
  top: -10px;
  right: -8px;
  font-size: 10pt;
  padding: 0px 5px;
  border-radius: 12px;
}
img.lbx-hero-img {
  height: 6rem;
  filter: drop-shadow(0px 0px 56px #ff659b);
}

.lbx-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 4rem;
}

.lbx-hero-title {
  font-size: 18pt;
  font-weight: 600;
}

.lbx-hero-sub {
  opacity: 80%;
}
img.lbx-jcdeij {
  height: 2.5rem;
}

.lx-chooser {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.lbx-claim-area {
  margin: 2rem 0;
}

.lbx-efj {
  position: relative;
  height: 4rem;
  width: 4rem;
  background: #ffffff30;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.lbx-chip {
  position: absolute;
  background: red;
  top: -14px;
  right: -15px;
  font-size: 10pt;
  font-weight: 500;
  padding: 0 6px;
  border-radius: 8px 8px 8px 0;
}

button.lbx-idcr {
  background: #ffffff30;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18pt;
  border-radius: 50%;
}

button.btn-claim {
  background: #3900ffa3;
  display: inline-block;
  padding: 10px 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 18pt;
  margin: 1rem 0;
}
.lbx-centered-container {
  width: 100%;
}

.LuckyBox {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
button.btn-claim:disabled {
  opacity: 50%;
}
.rdp-container {
  position: fixed;
  height: 100dvh;
  width: 100dvw;
  background: #290245;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reward-fhwe {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.rwrd-rj {
  text-align: center;
  margin-top: 2rem;
}

.rwdrf {
  font-size: 15pt;
  margin-bottom: 6px;
}

button.btn-i3rfji {
  background: #3900ffa3;
  display: inline-block;
  padding: 10px 2rem;
  border-radius: 2rem;
  font-weight: 600;
  margin: 1rem 0;
}
img.h-dp {
  height: 3.5rem;
  width: 3.5rem;
  background: #ffffff40;
  border-radius: 50%;
  border: 3px solid #0053b4;
  padding: 0px;
}

.user-identity {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 1rem;
}

.h-greet-text {
  font-size: 9pt;
}

.h-uname {
  font-weight: bold;
  font-size: 18pt;
}
.h-greeting {
  flex: 1;
}

button.buy-gch-btn {
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8511ff;
  padding: 9px 16px;
  font-weight: 600;
  margin-right: 1rem;
}
.hot-deal {
  position: relative;
  animation: pulse 0.45s infinite alternate ease-in-out;
  background: linear-gradient(45deg, #7427b0, #ff9f1f);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 0 10px #634fc8;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px #673ab7;
  }
  100% {
    transform: scale(1.1);
    box-shadow: 0 0 20px #3900ff;
  }
}
button.btn-claim-invite-task {
  background: #ccafff;
  padding: 9px 20px;
  margin-bottom: 1rem;
  border: none;
  text-align: center;
  border-radius: 10px;
  margin-top: 14px;
  color: #26003d;
  width: 100%;
}
button.btn-claim-invite-task:disabled {
  opacity: 0.7;
}
.bar-loader {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: block;
  margin: 20px auto;
  position: relative;
  background: currentColor;
  color: #fff;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}

.bar-loader::after,
.bar-loader::before {
  content: "";
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  box-sizing: border-box;
  animation: animloader 0.3s 0.45s linear infinite alternate;
}
.bar-loader::before {
  left: -20px;
  animation-delay: 0s;
}

@keyframes animloader {
  0% {
    height: 48px;
  }
  100% {
    height: 4px;
  }
}
img.splash-icon {
  height: 11rem;
}

.splash-loader {
  height: 5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.wit-amount-wrapper {
  border: 1px solid #ffffff61;
  padding: 13px 21px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
input.wit-amount-input {
  background: transparent;
  flex: 1;
}
input.wit-amount-input:focus {
  outline: none;
}
section.wit-stat-area {
  width: 100%;
  padding: 0 1rem;
  text-align: center;
}
img.signup-logo {
  height: 9rem;
  margin: auto;
  margin-bottom: 3rem;
}
.jhgeughu {
  background: #ff840036;
  margin-top: 1rem;
  padding: 10px 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 11pt;
  color: #ff9800;
}
