body {
  background-color: #fff !important;
  touch-action: none !important;
}
* {
  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: white;
}

.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: #d4d4d4;
  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;
}

img.panda-logo {
  height: 10rem;
}
.com-join-card {
  background-image: linear-gradient(180deg, #98989826 0%, #fcfcfc 135.87%);
  padding: 1.5rem 10px;
  border-radius: 11px;
  width: 88%;
}
button.btn {
  background: #000;
  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;
}

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

.reward-ic-bg svg {
  font-size: 16pt;
}

.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: #f2f2f2;
}
.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: 14rem;
  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 {
  filter: invert(1);
  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: #f0f0f0;
  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)
  );
}
