html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
  color: #191919;
}

a:focus {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  background: #000000;
  height: 100vh;
  padding: 10px 15px;
  max-width: 425px;
  margin: 0 auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.d_flexCenter {
  display: flex;
  align-items: center;
}
.d_flexStart {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.d_flexStartBetween {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.d_flexCenterGap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.d_flexSpacebetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d_flexSpacebetweenGap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
/*================*/

#expiry-year {
    background: #000000 !important;
    color: #ccc;
    border: 0;
    width: 70px;
    outline: none;
}
#expiry-month {
    background: #000000;
    color: #ccc;
    border: 0;
    width: 60px;
    outline: none;
}
/*scroll bar css Starts*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ffd501;
  border-radius: 10px;
  background-color: #ffd501;
}

::-webkit-scrollbar {
  width: 0px;
  height: 2px;
  border-radius: 12px;
  background-color: #f74900;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #f74900;
  background-color: #f74900;
}

#splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#splash video {
    height: 100%;
    object-fit: cover;
}
.logoSection img {
    width: 160px;
    height: 130px;
    object-fit: contain;
}
.stacker_img {
    text-align: center;
    padding-top: 15px;
}
.splash_section a img {
    width: 220px;
}
.logo_inner img {
    width: 240px;
}
/* =============== Aside CSS ================ */
.aside {
  position: fixed;
  bottom: 10px;
  background: #FA2E38;
  padding: 5px;
  width: 95%;
  max-width: 420px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 70px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
}
.NavLinks li {
  list-style: none;
}
.NavLinks {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom_aside {
  width: 100%;
}
.NavLinks li a {
  background: #fa2e38;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.NavLinks li a.active {
  background: #000000;
}
.icon_active {
  display: none;
}
.NavLinks li a.active .icon_active {
  display: flex;
}
.NavLinks li a.active .icon_not {
  display: none;
}
/* ============= Login Page Css ============ */
.login_section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
/*.login_page_section {*/
/*    display: unset;*/
/*}*/
/*.login_page_wrapper {*/
/*    height: 380px !important;*/
/*}*/
.arrow {
  position: absolute;
  top: 10px;
  left: 10px;
}
.login__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}
.login_title_section {
  text-align: center;
  padding-top: 10px;
}
.login_title_section h5 {
  font-size: 20px;
  color: #FA2E38;
}
.login_title_section p {
  font-size: 14px;
  color: #fff;
}
.login__form {
  width: 100%;
  max-width: 350px;
}
.pre_login_sect {
    padding-top: 30px;
}
.login_page_wrapper {
    padding-top: 40px;
}
.login_page_wrapper .loginBtn {
    margin-top: 15px;
}
.input__field {
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid #FA2E38;
  border-radius: 40px;
  width: 100%;
  position: relative;
  height: 55px;
  padding: 0 12px;
}
.input__field label {
  position: absolute;
  top: 50%;
  left: 25px; /* Adjust based on icon width */
  transform: translateY(-50%);
  background: #000;
  color: #818181;
  font-size: 16px;
  padding: 0 5px;
  transition: 0.3s ease;
  pointer-events: none;
}
.input__icon {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.input__icon input, textarea {
  background: #000;
  border: none;
  color: #fff;
  font-size: 16px;
  outline: none;
  width: 100%;
  padding-left: 10px;
  resize: none;
}
.input__field2 {
    height: 100px;
    border-radius: 20px;
}
.input__field2 .input__icon {
    height: 100%;
}
.input__field2 label {
    top: 30%;
}
/* Placeholder hidden initially */
.input__icon input::placeholder {
  color: transparent;
  transition: color 0.3s ease;
}
/* Float label to the top on input focus or when input has content */
.input__icon input:focus + label,
.input__icon input:not(:placeholder-shown) + label {
  top: -15px;
  left: 25px;
  font-size: 12px;
  color: #fff;
}
/* Show placeholder on input focus */
.input__icon input:focus::placeholder {
  color: #818181;
}
/* Placeholder hidden initially */
.input__icon textarea::placeholder {
  color: transparent;
  transition: color 0.3s ease;
}
/* Float label to the top on input focus or when input has content */
.input__icon textarea:focus + label,
.input__icon textarea:not(:placeholder-shown) + label {
  top: 0px;
  left: 25px;
  font-size: 12px;
  color: #fff;
}
/* Show placeholder on input focus */
.input__icon textarea:focus::placeholder {
  color: #818181;
}
.cta {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FA2E38;
  border: 1px solid #FA2E38;
  /* background: linear-gradient(0deg, rgba(228,62,43,1) 0%, rgba(193,20,0,1) 100%); */
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.cta:hover {
    background: transparent;
    border: 1px solid #FA2E38;
    color: #fff;
}
.bottom__text {
  position: absolute;
  bottom: 60px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.bottom__text a {
  color: #fff;
  font-weight: 700;
  padding: 0 5px;
}
.splash_section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95vh;
}
.input-group > .intl-tel-input.allow-dropdown {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
}
.input-group > .intl-tel-input.allow-dropdown > .flag-container {
  z-index: 4;
}
.iti-flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");
}
.intl-tel-input.separate-dial-code .selected-dial-code {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
  font-size: 20px;
  font-weight: 500;
  color: #ffd69e;
  font-style: italic;
}
.phone_flag_field #mobile {
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
}
.phone_section .login__content {
    padding-top: 40px;
}
.phone_section .login__content .loginBtn {
    margin-top: 15px;
}
/* ============= OTP Css Starts Here =============== */
.digit-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  gap: 10px;
}
.digit-group input {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000000;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #FA2E38;
  text-align: center;
}
.item {
  position: relative;
  max-width: 160px;
  margin: 0 auto;
}
.item h2 {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  z-index: 99;
}
svg {
  transform: rotate(-90deg);
  border-radius: 100%;
  background: #FA2E38;
  /* background: linear-gradient(0deg, rgba(228,62,43,1) 0%, rgba(193,20,0,1) 100%); */
}
.circle_animation {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: all 1s linear;
}
.circle_animation {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: all 1s linear;
}
.otp_section .login__content {
    padding-top: 30px;
}
.otp_section .loginBtn {
    margin-top: 15px;
}
/* Avatar */
/* ============= Create Profile Css Starts Here =============== */
.avatar-upload {
  position: relative;
  max-width: 140px;
  margin: 0 auto;
  margin-bottom: 0px;
}
.avatar-upload .avatar-edit {
  position: absolute;
  bottom: -30px;
  left: 90px;
  z-index: 1;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 10px;
  bottom: 35px;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}
.avatar-upload .avatar-edit input + label i {
  font-size: 16px;
  color: #fff;
}
.avatar-upload .avatar-preview {
  width: 133px;
  height: 133px;
  margin: 10px auto;
  position: relative;
  border-radius: 100%;
  background: #ffffff;
  border: 2px solid #000000;
  box-shadow: 0px 0px 0px 4px #fff;
}
#imagePreview {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.avatar-upload .avatar-edit input + label img {
  width: auto;
}
/* =============== Create Profile Css ================ */
.createProfile_field .input__field {
  margin-bottom: 15px;
}
.createProfile_field .input__field label {
  left: 0;
}
.createProfile_field {
  padding-top: 30px;
}
/* ============= Payment Method ============= */
.payment_option {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.payment_option .form-check {
  width: 48%;
  padding-left: 0;
  margin: 0px auto 10px;
  background: #1E1E1E;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}
.payment_option .form-check .form-check-input[type=radio] {
  position: absolute;
  right: 10px;
  top: 10px;
}
.payment_option .form-check .form-check-input {
  background-color: #8D8D8D;
}
.payment_option .form-check .form-check-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}
.payment_option .form-check .form-check-input:checked {
  background-color: #FA2E38;
  border-color: #FA2E38;
}
.payment_option .form-check .form-check-input:checked[type=radio] {
  background-image: url('../images/check.png');
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
}
.add_payment_form .loginBtn {
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
}
.save_card_switch .form-switch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0;
  font-size: 16px;
  color: #818181;
}
.save_card_switch .form-switch .form-check-input:checked {
  background-color: #FA2E38;
  border-color: #FA2E38;
}
.skip_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: underline;
}
/* ========== Modal Css ======= */
.modal-header {
  background: #FA2E38;
  width: 100%;
  justify-content: center;
  border: 0;
  border-radius: 30px 30px 0px 0px;
}
.modal-title {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
.bg_clr {
  background: #FA2E38;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.desc {
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.modal-body {
  background: #1E1E1E;
}
.modal-content {
  border-radius: 30px;
  overflow: hidden;
  border: 0;
  background: #1E1E1E;
}
.title_section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 0 10px;
  margin-top: 10px;
}
.notf_icon {
  position: absolute;
  right: 0;
  top: 22px;
}
.play_btn {
  text-align: end;
}
.play_cta {
  border: 1px solid #919396;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  margin: 0 0 0 auto;
  text-align: center;
  font-size: 14px;
  color: #919396;
  border-radius: 50px;
}
.score_section {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 20px;
}
.HighScore {
  text-align: end;
}
.score_section span p {
  font-size: 12px;
  color: #919396;
  font-weight: 400;
  line-height: 0.6;
}
.score_section span {
  padding-bottom: 10px;
  text-align: end;
}
.score_section span h3 {
  font-family: "Inter", sans-serif;
}
.HighScore h3 {
  font-size: 70px;
  color: #919396;
  font-weight: 900;
}
.CONTESTPURSE h3 {
  font-size: 70px;
  color: #FA2E38;
  font-weight: 900;
}
.GameClock h3 {
  font-size: 70px;
  color: #fff;
  font-weight: 900;
  /*-webkit-text-fill-color: #000; */
  /*-webkit-text-stroke: 1px #fff;*/
}
.content_section {
  height: calc(100vh - 120px);
  overflow-y: scroll;
  overflow-x: hidden;
}
.entry_img img:hover {
    filter: grayscale(100%);
}
/* =========== Entry Page Css ========= */
.entry_section {
  padding: 50px 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.paragraph {
  font-size: 14px;
  color: #919396;
}
/* ======== Game Play Css ======== */
.game_play_section {
  background: #1e1e1e;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid #FA2E38;
  /*border-left: 1px solid #fa2e3863;*/
  /*border-right: 1px solid #fa2e3863;*/
  margin-top: 120px;
  height: 320px;
  position: relative;
}
.game_play_section:before {
  content: '';
  position: absolute;
  background: url('../images/chicken_dinner.png');
  width: 180px;
  height: 170px;
  z-index: 1;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.title {
  font-size: 35px;
  color: #fa2e38;
  font-weight: 700;
}
/* =========== Game Over Css ========== */
.game_over {
  padding-top: 15px;
  text-align: center;
}
.game_over_score_sect {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.your_score {
  background: #FA2E38;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.your_score p {
  font-size: 14px;
  color: #000;
  line-height: 0;
}
.your_score h3 {
  font-size: 60px;
  font-weight: 700;
  color: #000;
}
.high_score {
  background: #000;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -2px 1px 0px #A2A2A5;
  border-radius: 50%;
  margin-top: -30px;
  margin-left: 5px;
}
.high_score p {
  font-size: 14px;
  color: #949699;
  line-height: 0.6;
}
.high_score h3 {
  font-size: 50px;
  font-weight: 700;
  color: #949699;
}
.game_over img {
  height: 300px;
}
.game_score_time {
  margin-top: -30px;
}
.game_over_score_sect .score_section span h3 {
  font-size: 50px;
}
.game_over_score_sect .score_section .CONTESTPURSE h3 {
  color: #919396;
}
/* =========== Wallet ========= */
.title_section p {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  padding: 10px 0 0;
}
.available_balance_sect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
}
.available_balance_sect p {
  font-size: 18px;
  color: #fff;
}
.wallet_tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta2 {
  background: transparent;
  border: 1px solid #FA2E38;
  color: #FA2E38;
}
.wallet_tabs .cta {
  height: 50px;
  border-radius: 16px;
}
.transaction_detail {
  padding: 20px 0 10px;
  height: 250px;
  overflow-y: scroll;
}
.transaction_card {
  background: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 12px;
}
.user_photo img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.name {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
.date {
  font-size: 10px;
  color: #fff;
}
.card__desc {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
}
.status_sect p {
  display: flex;
  align-items: center;
  justify-content: end;
  color: #fff;
  gap: 6px;
}
.amout {
  font-size: 20px;
  font-weight: 700;
}
/* ============ Shop CSS =========== */
.shop_left p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.BuyNow .cta {
  width: 110px;
  height: 35px;
  font-size: 15px;
  font-weight: 400;
}
.shop_detail {
  height: calc(100vh - 250px);
  margin-top: 10px;
}
/* ============= Payment Method CSS ============= */
.payment__method_content {
  padding: 30px 0 0;
}
.payment__method_content .form-check {
  background: #1E1E1E;
  padding: 18px 10px;
  position: relative;
  border-radius: 12px;
}
.payment__method_content .form-check input {
  position: absolute;
  right: 10px;
}
.payment__method_content .form-check .form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pay_title {
  font-size: 13px;
  color: #fff;
}
.action_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.action_btn a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.payment__method_content .form-check .form-check-input:checked {
  background-color: #fa2e38;
  border-color: #fa2e38;
}
.payment__detail {
  margin-top: 20px;
  background: #1E1E1E;
  border-radius: 12px;
  padding: 20px;
}
.payment__detail ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E8E8E8;
  height: 55px;
  color: #fff;
}
.payment__detail ul {
  margin-bottom: 30px;
}
/* ========== Leaderboard CSS ========== */
.leaderboard_box {
  background: #1E1E1E;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #fa2e38;
  /*box-shadow: 0px -1px 2px 0px #fa2e38;*/
  width: 100%;
  max-width: 95%;
  margin: 30px auto 30px;
}
.content_price_sect p {
  font-size: 21px;
  color: #fff;
}
.content_price_sect h5 {
  font-size: 23px;
  color: #fff;
  font-weight: 700;
}
.content_price_sect {
  text-align: center;
}
.price_sect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 20px;
}
.second_p {
  width: 80px;
  height: 80px;
  border: 1px solid #fa2e38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.second_p img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(5px);
}
.second_p p {
  color: #fff;
  z-index: 1;
}
.first_p {
  width: 100px;
  height: 100px;
  border: 1px solid #fa2e38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.first_p img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(5px);
}
.first_p:before {
  content: '';
  position: absolute;
  background: url('../images/badge.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  width: 40px;
  height: 40px;
  right: -12px;
  top: -17px;
}
.first_p p {
  color: #fff;
  font-size: 20px;
  z-index: 1;
}
.game_clock p {
  font-size: 18px;
  color: #fff;
}
.game_clock {
  text-align: center;
}
.astro_stacker_logo {
    background: #1E1E1E;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fa2e38;
    border-radius: 10px;
    position: relative;
    padding: -0;
}
.astro_stacker_logo .form-check-input {
    position: absolute;
    top: 5px;
    right: 10px;
}
.astro_stacker_logo .form-check-input:checked {
    background-color: #fa2e38;
    border-color: #fa2e38;
    box-shadow: none;
    outline: none;
}
/* ============ Past Winner css ========= */
.winner_sect {
  height: calc(100vh - 200px);
  overflow-y: scroll;
  margin: 30px 0 10px;
}
.past_winner_content p {
  font-size: 18px;
  color: #fff;
}
.winner_box {
  background: #1E1E1E;
  padding: 13px 15px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.winner_box img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.winner_detail {
  width: calc(100% - 130px);
}
.winner_detail small {
  color: #fff;
}
.price {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}
/* ========== Term & Conditions ========== */
.paragraph_section p {
  font-size: 14px;
  color: #fff;
}
.paragraph_section {
  height: calc(100vh - 200px);
  overflow-y: scroll;
}
/* ============= Setting Page CSS ============= */
.setting_content ul li {
  background: #1E1E1E;
  height: 50px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  list-style: none;
}
.setting_content ul li .form-switch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  padding: 0;
}
.setting_content ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
}
.setting_content ul li .form-switch .form-check-input:checked {
  background-color: #fa2e38;
  border-color: #fa2e38;
}
.modal_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* =========== Notification CSS ========= */
.notf_section .winner_detail p {
  font-size: 16px;
  color: #FA2E38;
}
.total_msg {
  color: #fff;
  text-align: center;
}
.total_msg p {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: #fa2e38;
  border-radius: 50%;
  margin: 0 auto;
}
/* ============ Current Leaderboard CSS =========== */
.leaderboard_winner_box {
  background: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  height: 80px;
}
.winner_profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.winner_profile {
  position: relative;
}
.winner_profile_first:before {
  content: '';
  position: absolute;
  background: url('../images/badge.png');
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 20px;
  top: -5px;
  right: -10px;
  transform: rotate(8deg);
}
.prize__first {
  position: absolute;
  background: #FFD700;
  border: 1px solid #1e1e1e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 12px;
  color: #1E1E1E;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -10px;
  bottom: -10px;
  box-shadow: 1px 3px 13px 0px #ffd700e6;
}
.prize__second {
  position: absolute;
  background: #C0C0C0;
  border: 1px solid #1e1e1e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -10px;
  bottom: -10px;
  box-shadow: 1px 3px 13px 0px #c0c0c0db;
}
.prize__third {
  position: absolute;
  background: #CE8946;
  border: 1px solid #1e1e1e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 12px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -10px;
  bottom: -10px;
  box-shadow: 1px 3px 13px 0px #CE8946;
}
.prize__first small {
    font-size: 10px;
    margin-top: -5px;
}
.prize__second small {
    font-size: 10px;
    margin-top: -5px;
}
.prize__third small {
    font-size: 10px;
    margin-top: -5px;
}
/* ========== My Profile ========= */
.my_profile_wrapper .leaderboard_box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #C5C5C5;
}
.my_profile_wrapper .login__form {
  max-width: 100%;
}
.about_para p {
    font-size: 14px;
    color: #fff;
}

.about_para {
    padding: 8px 0;
}
/* ========== Rules CSS =========== */
.bold_title {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding: 0 0 20px;
}
.semi_bold {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding: 0 0 10px;
}
.rules_section p {
  font-size: 14px;
  color: #C5C5C5;
  padding-bottom: 20px;
}
.more_info {
  font-size: 20px;
  color: #C5C5C5;
  text-decoration: underline;
}
.leaderboard_box {
    padding: 5px 10px;
    margin: 20px auto 15px;
    }
/* ============= Media Query =============== */
@media screen and (max-width: 375px) {
  .CONTESTPURSE h3 {
    font-size: 50px;
  }
  .user_photo img {
    width: 40px;
    height: 40px;
  }
  .name {
    font-size: 12px;
  }
  .date {
    font-size: 10px;
  }
  .card__desc {
    font-size: 10px;
  }
  .status_sect p { 
    font-size: 12px;
  }
  .NavLinks li a {
    width: 50px;
    height: 50px;
  }
  .available_balance_sect p {
    font-size: 14px;
  }
  .your_score {
    width: 120px;
    height: 120px;
  }
  .your_score h3 {
    font-size: 40px;
  }
  .high_score {
    width: 110px;
    height: 110px;
  }
  .high_score h3 {
    font-size: 35px;
  }
  .game_over_score_sect .score_section span h3 {
    font-size: 40px;
  }
  .first_p {
    width: 90px;
    height: 90px;
  }
  .second_p {
    width: 70px;
    height: 70px;
  }
  .first_p:before {
    right: -18px;
  }
  .past_winner_content p {
    font-size: 14px;
  }
  .title_section p {
    font-size: 16px;
  }
  .my_profile_wrapper .leaderboard_box ul li {
    font-size: 12px;
    height: 35px;
  }
  .cta {
    height: 50px;
    font-size: 14px;
  }
  .bold_title {
    font-size: 18px;
  }
  .semi_bold {
    font-size: 15px;
  }
  .rules_section p {
    font-size: 12px;
  }
  .more_info {
    font-size: 16px;
  }
  .bottom__text {
    font-size: 12px;
    margin-top: 50px;
}
  .digit-group input {
    width: 40px;
    height: 40px;
  }
  .login_title_section p {
    font-size: 12px;
    padding: 0 25px;
  }
  .wallet_tabs .cta {
    height: 40px;
    border-radius: 10px;
  }
  .notf_section .winner_detail p {
    font-size: 14px;
    line-height: 1;
  }
  .winner_detail small {
    font-size: 10px;
  }
  .total_msg small {
    font-size: 10px;
  }
  .shop_left p {
    font-size: 13px;
  }
  .payment__detail ul li {
    height: 40px;
    font-size: 13px;
  }
  .payment__detail ul li p b {
    font-weight: 400;
  }
  .stacker_img img {
    height: 180px;
  }
  .leaderboard_box {
    padding: 5px 10px;
    margin: 20px auto 15px;
    }
  .about_para p {
    font-size: 12px;
    color: #fff;
  }
    .about_para {
    padding: 8px 0;
  }
}
@media screen and (max-width: 350px) {
    .stacker_img img {
        height: 160px;
    }
}
/*=====================*/
.add_card_tag {
    padding: 10px 0 0;
    text-align: end;
}
.add_card_tag a {
    color: red;
    text-decoration: underline;
    font-size: 18px;
}
}
