@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");
/* Reset Layout */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

:root {
  --clr-body: rgb(245, 245, 245);
  --clr-primary2: #21d9ff;
  --main-gradient-color: linear-gradient(0deg, #2485c6 -28.38%, #4db7cc 100%);
  --clr-light-cyan: #cce3e6;
  --clr-deep-teal: #071824;
  --clr-header: #08273d;
}
ul,
li {
  list-style: none;
}
body {
  background-color: var(--clr-body);
}
img {
  max-width: 100%;
}
button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
body {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
}
input {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.6rem;
  color: #21d9ff;
  font-weight: 500;
}

.loader {
  display: none;
  position: fixed;
  inset: 0;
  background: #4f4f4f59;
  max-width: 450px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.loader img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.checkbox__wrapper {
  display: inline-block;
  position: relative;
  border-radius: 16px;
}
.custom__select {
  font-size: 1.6rem;
  padding: 10px;
  background: #062337;
  color: #fff;
  outline: none;
  border: none;
  width: 70px;
}
.indi_checkbox {
  width: 20px;
  height: 20px;
  background-color: var(--clr-deep-teal);
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.indi_checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  appearance: none;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s, border-color 0.2s;
}

/* Style when the checkbox is checked */
.indi_checkbox:checked {
  background-color: #4caf50; /* Green color */
  border-color: #4caf50;
}

/* Add a checkmark icon when checked */
.indi_checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Add hover effect */
.indi_checkbox:hover {
  border-color: #888;
}

.indi_checkbox:checked {
  background-color: #21d9ff; /* Change background when checked */
  border-color: var(--clr-primary2);
}

.indi_checkbox:focus {
  outline: 2px solid #21d9ff; /* Optional: Add focus outline */
}
/* Utilites */
.flex {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.w-full {
  width: 100%;
}
.g-1 {
  gap: 0.5rem;
}
.g-2 {
  gap: 0.75rem;
}
.g-3 {
  gap: 1.05rem;
}
.g-4 {
  gap: 1.4rem;
}
.g-5 {
  gap: 1.8rem;
}

.m-1 {
  margin: 0.5rem;
}
.m-2 {
  margin: 0.75rem;
}
.m-3 {
  margin: 1.05rem;
}
.m-4 {
  margin: 1.4rem;
}
.m-5 {
  margin: 1.8rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.light {
  color: white;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 0.75rem;
}
.p-3 {
  padding: 1.05rem;
}
.p-4 {
  padding: 1.4rem;
}
.p-5 {
  padding: 1.8rem;
}
/* Utilites Ends */
.text-blue {
  color: #21d9ff !important;
}
.text-white {
  color: #fff !important;
}
.text-center {
  text-align: center;
}
.error-msg {
  padding: 6px 10px;
  background: #ffcaca;
  border-radius: 6px;
}
.success-msg {
  padding: 6px 10px;
  background: #caffe9;
  border-radius: 6px;
}
.btn-primary {
  padding: 0.9rem 3.5rem 0.9rem 3.5rem;
  color: white;
  background: linear-gradient(0deg, #2485c6 0%, #4db7cc 100%);
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.3);
  border-radius: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.btn-primary:disabled {
  background: #cce3e6;
  color: #989898;
}

.box {
  background: var(--clr-deep-teal);
  border: var(--clr-primary2);
  border-radius: 3.49927px;

  /* filter: drop-shadow(0px 0px 12px rgba(25, 149, 235, 0.6)); */
}
.cyan-border {
  border: 1px solid var(--clr-primary2);
}
a {
  text-decoration: none;
}
.app-container {
  background-image: url("/assets/images/bg.png");
  background-size: cover;
  width: 100%;
  max-width: 450px;
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow:hidden;
}

.bg2 {
  background-image: url("/assets/images/bg2.png");
}
.wrapper {
  margin: 0 16px 0 16px;
}
.otp-btn {
  padding: 1rem;
  margin-right: 1rem;
  background-color: var(--clr-light-cyan);
  border-radius: 8px;
  color: var(--clr-deep-teal);
}

.otp-btn span {
  font-weight: 600;
}
.otp-btn:disabled {
  background-color: #071824;
  color: #4398a5;
}
.popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4caf50;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1000;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.btn-grd1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  padding-right: 30px;
  padding-left: 6px;
  background: var(--main-gradient-color);
  color: black;
  border-radius: 80px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
  text-align: center;
}

.btn-grd1:hover {
  transform: scale(1.05);
}
.btn-grd1 .btn__label {
  font-size: 2rem;
  padding-left: 24px;
  padding-right: 24px;
}

.btn-grd1 .icon-bg {
  width: 52px;
  height: 52px;
  background-color: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.btn-grd1 .icon-bg-dark {
  width: 52px;
  height: 52px;
  background-color: #000;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
/* Bottom Navbars */
.bottom__navbar {
  height: 60px;
  /* background-color: var(--clr-primary2); */
  border-radius: 100px;
  position: fixed;
  bottom: 0;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.bottom__navbar .navbarList__item p {
  font-size: 12px;
}
.bottom__navbar .navbarList__item a {
  display: flex;
  height: 75px;
  width: 75px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--clr-primary2);
}

.bottom__navbar .navbar__list {
  height: 100%;
  display: flex;
  align-items: center;
  /* padding-left: 8px;
  padding-right: 8px; */
  border: 1px solid var(--clr-primary2);
  border-radius: 100px;
  justify-content: space-around;
}

.bottom__navbar .navbar__list .navbarList__item {
  width: 166.66px;
  display: flex;
  justify-content: center;
}
.bottom__navbar .navbarList__item active {
  display: flex;
  height: 70px;
  width: 100px;
  justify-content: center;
  align-items: center;
  color: white;
}
.navbarList__item.active p {
  color: var(--clr-deep-teal);
}
.navbarList__item.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  background: var(--main-gradient-color);
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease;
  position: relative;
  text-align: center;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  background: linear-gradient(0deg, #2485c6 -28.38%, #4db7cc 100%);
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.3);
}
/*  Bottom Navbar Ends here */
.splash__wrapper {
  min-height: 100vh;
  gap: 4.5rem;
}

.circle {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #8b0000, #2f4f4f);
  border: 10px solid white;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.onboarding__wrapper {
  background-color: #21d9ff;
  padding: 16px;
  justify-content: space-between;
  padding-bottom: 50px;
}
.onboarding__header-indicator {
  background-color: #fff;
  height: 4px;
  width: 12px;
  border-radius: 12px;
}

.onboarding__header-indicator.active {
  background-color: #ffc600;
}
.onboarding__text {
  font-size: 1.6rem;
  color: #fff;
  line-height: 32px;
  padding-top: 16px;
}
.btn__container {
  border-radius: 100px;
  border: 5px solid rgba(228, 228, 228, 0.226);
}
.btn-shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.login-input__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #062337;
  border-radius: 16px;
}

.login__input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 16px;
  padding-left: 4px;
  -webkit-box-shadow: 0px -1px 26px -1px #062337;
  box-shadow: 0px -1px 26px -1px #062337;
}
.login__input input {
  color: #fff;
  height: 100%;
  /* width: 50%; */
  background-color: #062337;
  border: none;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 16px;
  outline: none;
  font-size: 1.4rem;
}
#otpContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.otpBoxes {
  display: flex;
  gap: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.otpBoxes input {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  text-align: center;
}
.login__input input:focus {
  border: none;
}
.login__input input::placeholder {
  color: #fff;
}
.login__input .arrow-icon {
  height: 30px;
  width: 30px;
}

.login__header-text1 {
  color: #21d9ff;
  font-size: 2.75rem;
}
.login__header-text2 {
  color: #21d9ff;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
}
.register__checkbox-label {
  color: #21d9ff;
  font-weight: 400;
  font-size: 1.2rem;
}

/*  Homepage */

.stack__header {
  position: relative;
  height: 200px;
}
.stack__block1 {
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  background-color: #21d9ff4a;
  border-radius: 24px;
  z-index: 2;
  top: 25px;
  margin: 0 auto;
}

.stack__block2 {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  background-color: rgb(206, 236, 255);
  border-radius: 24px;
  z-index: 1;
  top: 30px;
  margin: 0 auto;
}

.stack__block__main {
  background-color: var(--clr-primary2);
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 90%;
  max-width: 600px;
  z-index: 3;
  margin: 0 auto;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}
/* User Info Section */
.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.gamecard {
  /* Rectangle 2 */
}
.gamecard.hidden {
  display: none;
}
.greeting h1 {
  font-size: 1.8rem;
  margin: 0;
}

.greeting p {
  font-size: 1.3rem;
  padding-top: 6px;
}

.coins {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coins span {
  font-size: 1.6rem;
}

.profile-pic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 100px;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.search-icon {
  font-size: 1.2rem;
  color: gray;
  margin-right: 10px;
}

.search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.4rem;
  color: gray;
}
/* Card Component Stylings */
/* Card Styling */
.card {
  border-radius: 30px;
  color: white;
  padding: 10px 16px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 6px;
  width: 100%;
  position: relative;
  background-image: url("/assets/images/blur_card.png");
  border: 3px solid #2484c6;
  margin-bottom: 16px;
  /* filter: blur(3.49927px); */
  /* backdrop-filter: blur(3.49927px); */
  box-shadow: 0px 0px 6px 4px #2484c663;
}

/* Card Header */
.card-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.card-header span {
  font-size: 1.2rem;
}

.card__circle {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 100%;
}
.card .card-block1 {
  position: absolute;
  height: 50px;
  position: absolute;
  height: 12px;
  top: 100%;
  left: 12px;
  width: 85%;
  background: #21d9ff2e;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.card .card-block2 {
  position: absolute;
  height: 60px;
  position: absolute;
  height: 20px;
  top: 100%;
  left: 12px;
  width: 85%;
  background: #21d9ff26;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* Card Content */
.card-content {
  width: 100%;
  position: relative;
}

.tag {
  background-color: #21d9ff7d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
  position: absolute;
  left: 10px;
}

.image-placeholder {
  width: 100%;

  border-radius: 12px;
  margin-bottom: 6px;
}
.image-placeholder img {
  border-radius: 18px;
}

/* Card Footer */
.card-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.card-footer h3 {
  font-size: 1.6rem;
  margin: 0;
  color: #fff;
}

.card-footer p {
  font-size: 1.2rem;
  margin: 5px 0;
  padding-bottom: 20px;
  padding-top: 0.5rem;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #4caf50, #a4e639); /* Green gradient */
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #aae201;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* daily checkin */

.dailyChekin__wrapper .dailyChekin__avatar {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 100px;
}

.page__title {
  color: var(--clr-primary2);
}
.dailyCheckin__title {
  color: #0f3f62;
}
.dailyCheckin__subtitle {
  color: #79869f;
}

.dailyChekin__info {
  padding-left: 30px;
  padding-right: 30px;
}
.dailyChekin__info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.dailyChekin__info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--clr-primary2);
}
.dailyChekin__info-item span {
  margin-bottom: 0.5rem;
  color: #fff;
}

.dailyChekin__info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dailyChekin__dateTime-item .collected-state {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: -8px;
  display: none;
}
.dailyChekin__wrapper .dailyChekin__dateTime-item:disabled .collected-state {
  display: flex;
}

.dailyChekin__wrapper .dailyChekin__dateTime-item:disabled {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #145f85;
  color: var(--clr-primary2);
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
}
.dailyChekin__wrapper .dailyChekin__dateTime-item:disabled .dailyChekin__wrapper .dailyChekin__dateTime-item span {
  font-size: 16px;
  font-weight: 600;
}

.dailyChekin__info .vertical__line {
  height: 30px;
  background-color: #d6dce0;
  width: 1px;
}
.dailyChekin__wrapper .dailyChekin__dateTime {
  flex-wrap: wrap;
  display: flex;
  gap: 16px;
}
.dailyChekin__wrapper .dailyChekin__dateTime-item {
  height: 75px;
  width: 75px;
  background-image: url("/assets/images/blur_card.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  color: white;
  border: 1px solid var(--clr-primary2);
  box-shadow: 0px 0px 1px 2px #2484c663;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

.dailyChekin__wrapper .dailyChekin__dateTime-item span:nth-child(1) {
  font-weight: 600;
  font-size: 16px;
}
.dailyChekin__wrapper .dailyChekin__dateTime-item span:nth-child(3) {
  font-weight: 600;
  font-size: 16px;
  margin-top: 0.5rem;
}

.dailyChekin__wrapper .dailyChekin__dateTime-item.active {
  background: var(--clr-primary2);
  color: var(--clr-deep-teal);
  box-shadow: none;
}

/* Leaderboard */

.leaderboard__wrapper .leaderboard__searchBar {
  height: 40px;
  width: 40px;
  background: var(--clr-primary2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.leaderboarder_header .leaderboard__avatar {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  object-fit: cover;
}

.leaderboardWrapper {
  width: 100%;
  position: relative;
  border-radius: 30px;
  height: 75vh;
}
.leaderboardWrapper .blur-bg {
  position: absolute;
  backdrop-filter: blur(3.49927px);
  inset: 0;
  height: 100%;
  width: 100%;
}
.leaderboardContentList {
  position: absolute;
  border: 2px solid #2484c6;
  border-radius: 30px;
  height: 75vh;
  overflow: scroll;
  box-shadow: 0px 0px 16px 2px #2484c663;
  z-index: 1;
  /* Group 276 */

  /* Rectangle 2 */
}

.leaderboardContentList-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid #2484c6;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.leaderboardContentList-item img {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 100%;
}
.leaderboardContentList-item h3 {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.leaderboardContentList-item p {
  margin-top: 0.5rem;
  color: var(--clr-primary2);
  font-weight: 500;
  font-size: 1.3rem;
}
.leaderboardContentList-item__content {
  margin-right: auto;
  margin-left: 18px;
}
.leaderboardContentList-item .leaderboardContentList-item__content_cointext {
  color: #fff;
  font-weight: 600;
}

/* Profiles */
.stackOrange__header {
  position: relative;
  height: 200px;
}
.stackOrange__block1 {
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  height: 147px;
  background-color: var(--clr-primary2);
  opacity: 0.6;
  border-radius: 24px;
  z-index: 2;
  top: 25px;
  margin: 0 auto;
}

.stackOrange__block2 {
  width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  background-color: var(--clr-primary2);
  opacity: 0.4;
  border-radius: 24px;
  z-index: 1;
  top: 30px;
  margin: 0 auto;
}

.stackOrange__block__main {
  background-color: #21d9ff;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 160px;
  width: 90%;
  max-width: 600px;
  z-index: 3;
  margin: 0 auto;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  justify-content: center;
}
.stackOrange__block__main .stackcoin {
  position: absolute;
  height: 50px;
  width: 50px;
}
.stackOrange__block__main .stackcoin1 {
  top: 0;
  left: -16px;
}
.stackOrange__block__main .stackcoin2 {
  right: -30px;
  width: 100vw;
  height: 25px;
  width: 25px;
  transform: scaleX(-1);
  top: -12px;
}
.stackOrange__block__main .stackcoin3 {
  right: -10px;
  bottom: 12px;
  height: 30px;
  width: 30px;
  transform: scaleX(1.1);
}

.stackOrange__block__main .stackcoin4 {
  right: -32px;
  width: 100vw;
  height: 25px;
  width: 25px;
  transform: scaleX(-1);

  bottom: -25px;
}
.stackOrange__block__main .stackcoin5 {
  width: 100vw;
  height: 25px;
  width: 25px;
  transform: scaleX(-1);
  bottom: 0;
  left: -25px;
}

.stackOrange__block__main .pointText {
  font-weight: bold;
  color: var(--clr-deep-teal);
  font-size: 3rem;
  text-align: center;
}
.stackOrange__block__main .profile__container {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -50px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.stackOrange__block__main .profileAvatar {
  height: 85px;
  width: 85px;
  border-radius: 100%;
  object-fit: cover;
  border: 5px solid #21d9ff;
}
.stackOrange__block__main .verified__badge {
  position: absolute;
  bottom: 0;
  margin-left: 65px;
}
.profile__contents {
  padding: 16px;
  margin-top: 1rem;
}
.profile__contents .profile__name {
  text-align: center;
  color: #000;
  font-weight: 600;
}

.gemsWrapper {
  margin-top: 8rem;
  /* BG */

  box-sizing: border-box;
  background: linear-gradient(2.45deg, #2485c6 30.8%, #4db7cc 99.84%);
  border: 2px solid #4db7cc;
  height: 75px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 1rem;
  position: relative;
  font-size: 1.25rem;
}
.gemsWrapper .gems {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: -50px;
}
.gemsWrapper img {
  height: 80px;
  width: 80px;
  /* 4347244er 1 */
  margin-bottom: 2.5rem;
  background: url(4347244er.png);
  filter: drop-shadow(0px 4px 3px rgba(0, 6, 97, 0.3));
}

.gemsWrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

/* Settings */

.settings .settingText {
  color: var(--clr-primary2);
}
.settingList {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}
.settings .settingItem {
  display: flex;
  align-items: center;
}
.settings .settingItem img {
  height: 32px;
  width: auto;
}
.settingItem .settingItem-content {
  margin-left: 2rem;
}
.settingItem .settingItem-content h3 {
  font-weight: 600;
  font-size: 1.5rem !important;
  color: #fff;
}
.settingItem .settingItem-content p {
  margin-top: 0.5rem;
  color: var(--clr-primary2);
  font-size: 1.2rem;
}

/* Points */
.point__list {
  padding: 36px;
  color: white;
}
.point__list-item {
  border-bottom: 1px dashed var(--clr-primary2);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.point__list-item h4 {
  color: var(--clr-primary2);
}
.point__list-item span,
.point__list-item p {
  color: var(--clr-body);
}

.point__list-item span {
  font-weight: 400;
}
.point__list-item p {
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Update Profile sections */
.profile__avatars {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  gap: 12px;
}
.profile__avatars button {
  cursor: pointer;
  position: relative;
}
.profile__avatars .profile__avatar-item {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  object-fit: cover;
}

.profile__avatars .profile__avatar-item.active {
  border: 2px solid rgb(0, 134, 134);
}
.profile__avatars .avatar {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: none;
}
.profile__avatars .avatar.active {
  display: block;
}
/* App Header */
.appHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 16px 12px 16px;
  align-items: center;
  background-color: var(--clr-header);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  max-width: 450px;
  margin: 0 auto;
}

.appHeader .logo {
  width: 120px;
}
.game__listWrapper {
  padding-top: 100px;
  gap: 24px;
}
.appHeader .coinDiv {
  position: relative;
  padding: 2px 24px 2px 24px;
  border-radius: 6px;
}
.appHeader .coinDiv img {
  position: absolute;
  left: -9px;
  top: 0;
  max-width: 100%;
  height: 24px;
  width: 24px;
}
.appHeader .userContent {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--clr-primary2);
  font-size: 1rem;
}
.appHeader .userContent img {
  margin: 0 auto;
  margin-bottom: 3px;
}

.checkin-info {
  color: white;
  display: block;
  font-size: 1.3rem;
  width: 90%;
  padding: 12px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-weight: 400;
  box-shadow: 0px 0px 1px 2px #2484c663;
}
.checkin-info span {
  font-weight: 600;
}
.checkin-info img {
  height: 17.5px;
  width: 17.5px;
}
