:root {
  --bg-surface: #242424;
}

body {
  background-color: #000 !important;
  touch-action: none !important;
  color: #fff;
}
* {
  font-family: "DM Sans", sans-serif;
  user-select: none;
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  bottom: 0.5rem;
  padding: 0px 2rem;
  box-sizing: border-box;
  /* background: red; */
  height: 4rem;
  background: #000;
}

.nav-icon {
  text-align: center;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.nav-item-selected .nav-icon {
  background: var(--bg-surface);
  border-radius: 9px;
}

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

.content-space {
  position: fixed;

  height: calc(100dvh - 5rem);
  top: 0;
  width: 100%;
  overflow-y: auto;
}
.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: var(--bg-surface);
  display: flex;
  justify-content: center;
  align-items: center;
}

.reward-ic-bg svg {
}

.btn-effect {
  transition: 0.15s;
}

.btn-effect:active {
  scale: 0.9;
}
.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: #0077ff !important;
  padding: 13px 0px !important;
  margin-bottom: 1rem;
  border: none;
}
.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 - 3.5rem);
}
.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;
}

@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;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7rem;
  z-index: 5;
  border-radius: 11px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 16px 12px;
  gap: 1rem;
}

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;
}

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

.tli-ic {
  background: var(--bg-base);
  background: #272727;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

button.btn-task-start {
  background: var(--bg-surface);
  padding: 4px 12px;
  border-radius: 32px;
  font-weight: 600;
}

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

.tli-reward.text-secondary {
  opacity: 0.7;
}
.wallet-connect-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
}

.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;
}

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;
}

@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: 0px 1rem;
}

.ref-btn-container {
  position: fixed;
  width: 100%;
  bottom: 4rem;
  background: black;
  padding-bottom: 0.5rem;
  padding-top: 7px;
}
.ref-usr-container {
  padding-bottom: 10rem;
}
.text-secondary {
  opacity: 0.7;
}
.widhiuwhd {
  height: 35px;
  width: 35px;
}

.widhiuwhd svg {
  height: 20px;
}

.task_reward_container {
  padding: 5px 12px;
}

.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: #2f2f2f;
  width: 20rem;
  border-radius: 12px;
}

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

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;
}

.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: 15px;
  /* align-items: center; */
  border-bottom: 1px solid #ffffff3b;
  padding: 11px 0px;
  padding-left: 5px;
  position: relative;
  z-index: 2;
}

.ton-deposit-wrapper {
  padding: 10px 7px;
  border-radius: 11px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.tdh-text {
  font-size: 16pt;
  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: #03a9f44f;
  padding: 2px 7px;
  border-radius: 25px;
  color: #03a9f4;
  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 {
  background: linear-gradient(0, var(--bg-surface) 18%, #2196f3 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: 1;
  filter: blur(5rem);
  opacity: 0.8;
  animation: rotate-gradient 5s linear infinite;
}
.task-tab-container {
  background: var(--bg-surface);
  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%);
  }
}

.bloom {
  background: linear-gradient(0deg, var(--bg-surface) 18%, #2196f3 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: 1;
  filter: blur(5rem);
  opacity: 0.8;
  transition: all 0.5s ease-in-out;

  animation: rotate-gradient 3s linear infinite;
}
.task-tab-container button {
}
.pcdfkf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pcdfkf .loader {
  border-color: white;
}
.df2 {
  background: #2196f32b;
  padding: 10px;
  font-size: 10pt;
  border-radius: 12px;
  margin-bottom: 11px;
}

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

.df2 button {
  font-weight: bold;
  font-family: monospace;
}
.tli-labels {
  flex: 1;
}
