/***********************************************
## global css
***********************************************/

:root {
  /* Base Colors */
  --bs-dark: #1a2a3aa6;
  --bs-light: #f0f8ff; 
  --bs-body-bg: linear-gradient(
    135deg,
    #1a2a3a 0%,
    #0f1f2f 100%
  ); 
  --bs-body-color: #deebf0; 

  /* Brand Color */
  --bs-brand-color: #00bcd4; 

  /* Primary Colors (Main actions, buttons) */
  --bs-primary: #00bcd4; 
  --bs-primary-rgb: 0, 188, 212;
  --bs-primary-light: #80deea; 
  --bs-primary-dark: #0097a7; 
  --bs-primary-gradient: linear-gradient(45deg, #00bcd4 0%, #00acc1 100%);

  /* Secondary Colors (Less emphasis) */
  --bs-secondary: #607d8b; 
  --bs-secondary-rgb: 96, 125, 139;
  --bs-secondary-light: #b0bec5;
  --bs-secondary-dark: #455a64;
  --bs-secondary-gradient: linear-gradient(45deg, #607d8b 0%, #546e7a 100%);

  /* Info Colors (Informative messages) */
  --bs-info: #2196f3; 
  --bs-info-rgb: 33, 150, 243;
  --bs-info-light: #90caf9;
  --bs-info-dark: #1976d2;
  --bs-info-gradient: linear-gradient(45deg, #2196f3 0%, #1e88e5 100%);

  /* Success Colors (Positive feedback) */
  --bs-success: #4caf50; 
  --bs-success-rgb: 76, 175, 80;
  --bs-success-light: #a5d6a7;
  --bs-success-dark: #388e3c;
  --bs-success-gradient: linear-gradient(45deg, #4caf50 0%, #43a047 100%);

  /* Warning Colors (Warnings, alerts) */
  --bs-warning: #ffc107; 
  --bs-warning-rgb: 255, 193, 7;
  --bs-warning-light: #ffeb3b;
  --bs-warning-dark: #ffa000;
  --bs-warning-gradient: linear-gradient(45deg, #ffc107 0%, #ffb300 100%);

  /* Danger Colors (Errors, critical actions) */
  --bs-danger: #f44336; 
  --bs-danger-rgb: 244, 67, 54;
  --bs-danger-light: #ef9a9a;
  --bs-danger-dark: #d32f2f;
  --bs-danger-gradient: linear-gradient(45deg, #f44336 0%, #e53935 100%);

  /* Card Specific Colors */
  --bs-card-bg: #2a3b4c57;
  --bs-card-color: var(--bs-body-color);
  --bs-card-border-color: rgba(255, 255, 255, 0.15);
  --bs-card-shadow: rgba(
    0,
    0,
    0,
    0.5
  ); 
  --bs-card-shadow-hover: rgba(0, 0, 0, 0.7);

  /* Sidebar Specific Colors */
  --bs-sidebar-bg: linear-gradient(
    180deg,
    #1a2a3a 0%,
    #0f1f2f 100%
  ); /* Sidebar background with gradient */
  --bs-sidebar-color: var(--bs-light);
  --bs-sidebar-link-color: #a7c5d8;
  --bs-sidebar-link-hover-bg: #2c4054;
  --bs-sidebar-link-hover-color: var(--bs-light);
  --bs-sidebar-shadow: rgba(0, 0, 0, 0.6);

  /* Navbar Specific Colors */
  --bs-navbar-bg: linear-gradient(
    90deg,
    #1a2a3a 0%,
    #0f1f2f 100%
  ); /* Navbar background with gradient */
  --bs-navbar-color: var(--bs-light);
  --bs-navbar-brand-color: var(--bs-brand-color);
  --bs-navbar-link-color: #a7c5d8;
  --bs-navbar-link-hover-color: var(--bs-light);

  /* Form Input Colors */
  --bs-form-control-bg: #3a4d60;
  --bs-form-control-color: var(--bs-light);
  --bs-form-control-border-color: #5a6d80;
  --bs-form-control-focus-border-color: var(--bs-primary);
  --bs-form-control-placeholder-color: #8da0b0;

  /* Text Colors (Semantic) */
  --bs-text-primary: var(--bs-primary-light);
  --bs-text-secondary: var(--bs-secondary-light);
  --bs-text-info: var(--bs-info-light);
  --bs-text-success: var(--bs-success-light);
  --bs-text-warning: var(--bs-warning-light);
  --bs-text-danger: var(--bs-danger-light);
  --bs-text-muted: #9da0a3;

  /* Table Colors */
  --bs-table-bg: #2a3b4c;
  --bs-table-color: var(--bs-body-color);
  --bs-table-border-color: #4a5b6c;
  --bs-table-hover-bg: #3a4d60;
  --bs-table-striped-bg: #2c3e50;

  /* Other custom variables from the original style.css that are not color-related and should be kept */
  --vh: 100%;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 48px;
  --spacing-4xl: 64px;
  --rounded-tiny: 2px;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-2xl: 32px;
  --rounded-3xl: 48px;
  --shadow: 0px 2px 1px -1px rgb(0 0 0/4%), 0px 10px 3px -3px rgb(0 0 0/2%);
  --hover-glow: 0px 0px 0px 3px #04bd67, 0px 0px 11px 0px #04bd67;
  --font-sans: "Montserrat", sans-serif;
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

/* Apply base background to body */
body {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--font-sans);
    scroll-behavior: smooth;
    background-image: url('/asset/theme/primary/imgs/main-bg.webp');
    /* background-position: top center; */
    /* background-repeat: no-repeat; */
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    background-size: 100% 100%;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #13233391;
    z-index: -1;
}

*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}

.select2-container--default .select2-selection--multiple {
    background-color: #3a4d60 !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}
.select2-container--default .select2-selection--single {
            background-color: #3a4d60 !important;
  color:#fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    line-height: 40px;
}

/* Custom scrollbar styles */
body::-webkit-scrollbar,
body::-webkit-scrollbar-track {
  width: 0 !important;
  height: 10px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--bs-secondary-dark);
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* Form Controls */
select option,
.form-control,
input,
textarea,
select {
  background: var(--bs-form-control-bg) !important;
  color: var(--bs-form-control-color) !important;
  border-color: var(--bs-primary) !important;
  box-shadow: none !important;
}

.form-control:not(textarea) {
  border-radius: 8px;
  height: 2.8rem;
  color: var(--bs-body-color);
}

/* Links */
a {
  color: var(--bs-primary-light);
  text-decoration: none;
  display: inline-block;
  font-size: 0.85rem;
}

a:hover {
  color: var(--bs-primary);
}

/* Backgrounds */
.bg-primary {
  background: var(--bs-primary-gradient) !important;
}
.bg-secondary {
  background: var(--bs-secondary-gradient) !important;
}
.bg-info {
  background: var(--bs-info-gradient) !important;
}
.bg-success {
  background: var(--bs-success-gradient) !important;
}
.bg-warning {
  background: var(--bs-warning-gradient) !important;
}
.bg-danger {
  background: var(--bs-danger-gradient) !important;
}
.bg-dark {
  background-color: var(--bs-dark) !important;
}
.bg-light {
  background-color: var(--bs-light) !important;
}
.bg-body {
  background: var(--bs-body-bg) !important;
}

/* Text Colors */
.text-primary {
  color: var(--bs-text-primary) !important;
}
.text-secondary {
  color: var(--bs-text-secondary) !important;
}
.text-info {
  color: var(--bs-text-info) !important;
}
.text-success {
  color: var(--bs-text-success) !important;
}
.text-warning {
  color: var(--bs-text-warning) !important;
}
.text-danger {
  color: var(--bs-text-danger) !important;
}
.text-muted {
  color: var(--bs-text-muted) !important;
}
.text-light {
  color: var(--bs-light) !important;
}
.text-dark {
  color: var(--bs-dark) !important;
}

/* Buttons */
.btn-primary {
  background: var(--bs-primary-gradient);
  border-color: var(--bs-primary);
  color: var(--bs-light);
}
.btn-primary:hover {
  background: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}
.btn-secondary {
  background: var(--bs-secondary-gradient);
  border-color: var(--bs-secondary);
  color: var(--bs-light);
}
.btn-secondary:hover {
  background: var(--bs-secondary-dark);
  border-color: var(--bs-secondary-dark);
}
.btn-info {
  background: var(--bs-info-gradient);
  border-color: var(--bs-info);
  color: var(--bs-light);
}
.btn-info:hover {
  background: var(--bs-info-dark);
  border-color: var(--bs-info-dark);
}
.btn-success {
  background: var(--bs-success-gradient);
  border-color: var(--bs-success);
  color: var(--bs-light);
}
.btn-success:hover {
  background: var(--bs-success-dark);
  border-color: var(--bs-success-dark);
}
.btn-warning {
  background: var(--bs-warning-gradient);
  border-color: var(--bs-warning);
  color: var(--bs-dark);
}
.btn-warning:hover {
  background: var(--bs-warning-dark);
  border-color: var(--bs-warning-dark);
}
.btn-danger {
  background: var(--bs-danger-gradient);
  border-color: var(--bs-danger);
  color: var(--bs-light);
}
.btn-danger:hover {
  background: var(--bs-danger-dark);
  border-color: var(--bs-danger-dark);
}

/* Specific button overrides */
.btn-info {
  /* Overrides Bootstrap's default .btn-info for specific use cases */
  background-color: var(
    --bs-success
  ); /* Using success color for this specific info button */
  border-color: var(--bs-brand-color);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 5px 25px;
}
.btn-info:hover {
  background-color: var(--bs-success-dark);
  border-color: var(--bs-success-dark);
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  background-color: var(--bs-success-dark);
  border-color: var(--bs-brand-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--bs-success-rgb), 0.24);
}
.btn-check:active + .btn-info,
.btn-check:checked + .btn-info,
.btn-info.active,
.btn-info:active,
.show > .btn-info.dropdown-toggle {
  background-color: var(--bs-success-dark);
  border-color: var(--bs-success-dark);
}
.btn-info.disabled,
.btn-info:disabled {
  background-color: var(--bs-success-dark);
  border-color: var(--bs-success-dark);
}

button.btn.btn-info.rounded-pill.btn.btn-warning.rounded-pill {
  background: var(--bs-warning-dark);
  border: var(--bs-warning);
}
button.btn.btn-primary {
  background: var(--bs-brand-color);
}
.btn.btn-sm {
  height: 40px;
  width: 40px;
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.btn.btn-primary:focus,
.btn.btn-primary:hover {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 7px 0 var(--bs-primary),
    0 3px 1px -1px var(--bs-primary);
}
.btn-orange-dark {
  background-color: var(--bs-success);
  border: 1px solid var(--bs-success);
  color: var(--bs-light);
  transition: all 0.5s ease-in-out;
}
.btn-orange-dark:hover {
  background-color: transparent !important;
  color: var(--bs-success);
}
.cmn-btn {
  color: var(--bs-dark);
  position: relative;
  z-index: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  background: var(--bs-primary); /* Default for cmn-btn */
}

/* Cards */
.theme_bg {
    background: var(--bs-card-bg);
    padding: 16px;
}

.card,
.panel,
.card-box {
  background-color: var(--bs-card-bg);
  color: var(--bs-card-color);
  /* border-color: var(--bs-card-border-color); */
  box-shadow: 0 0.5rem 1rem var(--bs-card-shadow);
  transition: box-shadow 0.3s ease-in-out;
  /* padding: 20px; */
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
  /* box-shadow: -1px 1px 0px var(--bs-success); */ /* Specific shadow from old code */
}
.card:hover {
  box-shadow: 0 0.75rem 1.5rem var(--bs-card-shadow-hover);
}

.watch-videos .single-box {
  text-align: center;
  background: linear-gradient(
    163.9deg,
    var(--bs-card-bg) 16.52%,
    var(--bs-dark) 88.89%
  );
  border: 2px solid var(--bs-sidebar-link-hover-bg);
  border-radius: 10px;
  padding-top: 42px;
  padding-bottom: 0px;
  margin-left: -12px;
}
.single-box {
  width: 98%;
  height: 90%;
  text-align: center;
  background: linear-gradient(
    163.9deg,
    var(--bs-card-bg) 16.52%,
    var(--bs-dark) 88.89%
  );
  border: 2px solid var(--bs-card-border-color);
  border-radius: 10px;
  margin-left: 2px;
  min-height: 215px;
}
.single-box img {
  height: 45px;
  width: 45px;
  border-radius: 8px;
}
.tab-content .single-box {
  background: var(--bs-light);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.my_profile .profile-card {
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
  border-radius: 15px;
}
.statistics-data.row.gy-3 .col-12 {
  background: var(--bs-card-bg);
  padding: 15px;
  border-radius: 5px;
}
.profile_card,
.referral_link_card {
  background: var(--bs-card-bg);
}
.leaderboard-section .single-box {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-border-color);
  border-radius: 15px;
}
.border_1px.rounded_10px.p-2 {
  background: var(--bs-dark);
  margin-bottom: 5px;
}
.car_pro {
  border: 1px solid var(--bs-card-border-color);
  border-radius: 15px;
}
.bg-dark-light {
  background: var(--bs-card-bg);
}
.bg-full-dark_csm {
  background: var(--bs-dark);
}
.bg-layot-dark_csm {
  background: var(--bs-card-bg);
}

/* Animations */
@keyframes flameAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
h5 .fa-fire {
  color: #11df4b;
  animation: flameAnimation 1s infinite alternate;
}
@-webkit-keyframes bounce_delay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce_delay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes heartbit {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes heartbit {
  0% {
    -moz-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  25% {
    -moz-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.1;
  }
  50% {
    -moz-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f5f5f5;
  }
  100% {
    background-color: #e0e0e0;
  }
}
@keyframes lightBlink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* Custom global styles */

.border_2px {
  border: 2px solid var(--bs-card-border-color);
} 
.rounded_5px {
  border-radius: 5px;
}
.rounded_10px {
  border-radius: 10px;
}
.rounded_15px {
  border-radius: 15px;
}
.rounded_20px {
  border-radius: 20px;
}

.fs_10px {
  font-size: 10px;
}
.fs_12px {
  font-size: 12px;
}
.fs_13px {
  font-size: 13px;
}
.fs_14px {
  font-size: 14px;
}
.currency_icon {
  height: 16px;
}
.chat_currency_icon {
  height: 13px;
}
.chat_username {
  color: #17ff00;
  font-weight: 500;
}
.gateway_img {
  height: 30px;
}
.mdtxt {
  font-size: 16px;
  line-height: 24px;
  color: var(--bs-primary);
} /* Using primary color */
.lgtxt {
  font-size: 16px;
  font-weight: bold;
  color: var(--bs-light);
} /* Using light color */

/* Preloader styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: var(--bs-body-bg);
}
.spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spinner .bounce {
  margin-top: 15px;
}
.spinner .bounce > div {
  width: 18px;
  height: 18px;
  background-color: var(--bs-brand-color);
  border-radius: 100%;
  display: inline-block;
  animation: bounce_delay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  animation-delay: -0.32s !important;
}
.spinner .bounce2 {
  animation-delay: -0.16s !important;
}

/* Toast styles */
#toast-container {
  z-index: 99 !important;
}
#toast-container > div {
  display: flex;
  align-items: center;
  padding: 0 8px 0 35px !important;
  width: 100% !important;
  height: 42px !important;
  opacity: 1 !important;
  box-shadow: none !important;
  border-radius: 3rem !important;
}
#toast-container > div:hover {
  box-shadow: none !important;
}
#toast-container .toast-message {
  font-size: 16px !important;
  padding: 0 11px 0 15px;
}
#toast-container .toast-success {
  background-color: #59c64b !important;
}
#toast-container > .toast-success {
  background-image: url("../imgs/icons/success.png") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: left;
}
#toast-container > .toast-error {
  background-image: url("../imgs/icons/error.png") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: left;
}
.toast-progress {
  background-color: transparent !important;
  background: linear-gradient(90deg, #67e8f9, #1e40af) !important;
  opacity: 1 !important;
}

/* User notifications styles */
.notifications_wrapper.show {
  display: block !important;
  position: absolute;
}
.user_notifications .notify_animation {
  position: absolute;
  top: 17px;
  right: 2px;
}
.user_notifications .notify_animation .heartbit {
  position: absolute;
  top: -20px;
  right: -4px;
  height: 25px;
  width: 25px;
  z-index: 10;
  border: 5px solid #e46a6a;
  border-radius: 70px;
  animation: heartbit 1s ease-out infinite;
}
.user_notifications .notify_animation .point {
  background-color: #f22727e1;
  width: 6px;
  height: 6px;
  border-radius: 30px;
  position: absolute;
  right: 6px;
  top: -10px;
}
.notifications {
  background-color: var(--bs-dark); /* Using dark color */
  padding: 5px;
  left: -5rem;
  top: 4rem;
  min-width: 280px;
  z-index: 999;
  max-height: 450px;
  overflow-y: scroll;
  text-wrap: wrap;
  overflow-x: hidden;
}
.navbar-nav .notifications_wrapper .dropdown-menu {
  position: absolute;
  top: 3.2rem;
}
.notifications_data {
  overflow: hidden;
  font-size: 0.8rem !important;
  padding: 1px !important;
  margin: 0;
}
.single_notify .notify_header {
  line-height: 0.8;
}
.single_notify .image {
  width: 39%;
}

/* Table styles */
.log_table {
  overflow-x: scroll;
  background: var(--bs-card-bg);
}
.log_table.scrollable::-webkit-scrollbar-track {
  width: 5px;
  height: 3px;
}
table {
  border-collapse: separate;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: none;
}
th,
td {
  min-width: 180px;
}
table th {
  color: var(--bs-text-secondary);
  padding: 10px 0;
  font-size: 0.9rem !important;
}
table td {
  color: var(--bs-light);
  border: none;
  border-bottom: 5px solid var(--bs-card-border-color);
}
tbody {
  flex-direction: column;
}
tbody tr {
  border-bottom: 1px solid var(--bs-card-border-color);
  padding: 5px 0;
}
tbody tr:last-child {
  border-bottom: 0px;
}
.log_table .offer_name {
  white-space: nowrap;
  width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.log_table .offer_image {
  height: 45px;
}

/* Badge styles */
.bg_success,
.badge_success {
  background-color: rgba(23, 255, 0, 0.5);
}
.badge_warning {
  background-color: #beb118;
}
.badge_warning_1 {
  background-color: #ce5d06;
}
.badge_danger {
  background-color: #cf061d;
}

/* Customize Bootstrap CSS */
.badge {
  font-weight: 500;
  background-color: var(--bs-secondary);
} /* Default badge color */
.popover {
  background: var(--bs-card-bg) !important;
  color: var(--bs-light);
  border: 1px solid var(--bs-light);
  border-radius: 10px;
}
.popover-body {
  font-size: 14px;
  padding: 10px;
  color: var(--bs-light);
}
h3.card-title.text-left.pb-1.mb-0 {
  text-align: left !important;
}
p.mb-5.text-left.pt-0.mt-0 {
  text-align: left !important;
  font-size: 0.8rem;
  font-weight: 100 !important;
}
.page-item:first-child .page-link,
.page-link {
  border: 1px solid var(--bs-card-border-color);
  background: var(--bs-card-bg);
  border-radius: 5px;
  margin: 0 8px;
  color: var(--bs-light);
}
.page-item.disabled .page-link {
  background: var(--bs-accent-4);
} /* Assuming accent-4 is a defined color */
.page-item.active .page-link {
  background: var(--bs-brand-color);
  border-color: var(--bs-brand-color);
}
.page-link:hover {
  color: var(--bs-light);
}

/* User profile image styles */
.user-images .user-image {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin: 10px;
  border-radius: 50%;
  overflow: hidden;
}
.user-images .user-image img.active {
  background-color: var(--bs-light);
  padding: 3px;
}
.profile-avater .user-images .user-image button {
  outline: none;
  border: none;
}
.profile-avater .user-images .user-image button img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.profile_image.me-3 {
  position: relative;
}
.profile_image.me-3 .user-image-holder {
  height: 75px;
  width: 75px;
  position: relative;
}
.profile_image.me-3 .user-image-holder img {
  height: 100%;
  width: 100%;
}
.profile_image.me-3 .user-image-holder .user-image-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  border-radius: 5px;
  color: var(--bs-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile_image.me-3 .upload {
  position: absolute;
  bottom: 0;
}
.profile_image.me-3 .image-upload-wrapper {
  position: relative;
  display: inline-block;
}
.profile_image.me-3 .image-upload-wrapper .image-upload {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.profile_image.me-3 .image-upload-wrapper .file-label {
  display: flex;
  cursor: pointer;
  padding: 5px;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: auto;
  color: var(--bs-dark); /* Dark text for light background */
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  position: absolute;
  left: 0;
}
.profile_image.me-3 .image-upload-wrapper .file-label:hover {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}
.profile_image.me-3 .image-upload-wrapper .pencil-icon {
  font-size: 14px;
  text-transform: capitalize !important;
}
span.in-valid {
  color: darkred;
  white-space: nowrap;
}

/* User statistics styles */
.statistics-data .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  background-color: rgb(22, 100, 79);
  border-radius: 10px;
}
.statistics-data .icon i {
  color: rgb(1, 214, 118);
  font-size: 23px;
}
.statistics-data img {
  height: 15px;
}
.country .flag .fi {
  width: 40px;
  height: 40px;
}
span#copyBoard {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  cursor: pointer;
}

/* Navbar styles */
.main_content {
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1200px) {
  .main_content.is_open {
    margin-right: 18rem;
  }
}
#desktop-nav {
  z-index: 9;
}
.navbar-nav {
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
a.navbar-brand {
  padding: 0;
  max-width: 120px;
  max-height: 2rem;
  overflow: hidden;
  margin: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.navbar-brand img {
    height: 100%;
    width: 100%;
}

.brand_content {
  display: flex;
  line-height: 0;
}

ul.nav-widgets-list {
    margin-bottom: 0;
}

.widget-wrapper {
  margin-right: 10px;
  border-radius: 10px;
  padding: 5px 12px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: auto;
  transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  /* background: #1b2b3c; */
  height: 40px;
}
.widget-wrapper .icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  background-color: var(--bs-danger); /* Using danger color */
  font-weight: 600;
  color: var(--bs-light);
  border-radius: 10px;
  padding: 0 8px;
  height: 25px;
  transition: transform 0.2s ease;
  background: linear-gradient(
    1turn,
    #6338ed 0.8%,
    var(--bs-secondary)
  ); /* Specific gradient */
  transform: scale(1);
}

.widget-content {
    height: 40px;
    background: #1b2b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    margin-left: -8px;
    border-radius: 9px;
}

.widget-wrapper .head {
  font-size: 10px;
  font-weight: 700;
  color: var(--bs-navbar-color);
  margin-bottom: 0 !important;
}
.widget-wrapper .title {
  font-size: 8px;
  font-weight: 600;
}
.reg_log_buttons {
  display: flex;
  width: 200px;
  gap: 3px;
  --b: 2px;
  --h: 3.3rem;
  border-radius: 3rem;
  align-items: center;
}
.reg_log_buttons button {
  --_c: var(--bs-card-bg); /* Using card background */
  flex: calc(1.1 + var(--_s, 0));
  min-width: 0;
  font-size: 15px;
  font-weight: bold;
  height: 2.7rem;
  cursor: pointer;
  color: var(--bs-light);
  border: var(--b) solid var(--_c);
  background: conic-gradient(
      at calc(100% - 1.3 * var(--b)) 0,
      var(--_c) 209deg,
      #0000 211deg
    )
    border-box;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.577 * var(--h)) 100%, 0 100%);
  padding: 0 calc(0.28 * var(--h)) 0 0;
  margin: 0 calc(-0.28 * var(--h)) 0 0;
  box-sizing: border-box;
  transition: flex 0.4s;
}
.reg_log_buttons button:first-child {
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}
.reg_log_buttons button:last-child {
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
.reg_log_buttons button + button {
  --_c: var(--bs-brand-color);
  flex: calc(0.8 + var(--_s, 0));
  background: conic-gradient(
      from -90deg at calc(1.3 * var(--b)) 100%,
      var(--_c) 119deg,
      #0000 121deg
    )
    border-box;
  clip-path: polygon(calc(0.577 * var(--h)) 0, 100% 0, 100% 100%, 0 100%);
  margin: 0 0 0 calc(-0.25 * var(--h));
  padding: 0 0 0 calc(0.35 * var(--h));
}
.reg_log_buttons button:focus-visible {
  outline-offset: calc(-2 * var(--b));
  outline: calc(var(--b) / 2) solid #000;
  background: none;
  clip-path: none;
  margin: 0;
  padding: 0;
}
.reg_log_buttons button:focus-visible + button {
  background: none;
  clip-path: none;
  margin: 0;
  padding: 0;
}
.reg_log_buttons button:has(+ button:focus-visible) {
  background: none;
  clip-path: none;
  margin: 0;
  padding: 0;
}
.reg_log_buttons button:hover,
button:active:not(:focus-visible) {
  --_s: 0.5;
}
.reg_log_buttons button:hover {
  box-shadow: inset 0 0 0 100vmax var(--_c);
  color: var(--bs-light);
}
li.nav-item.support,
li.nav-item.chat {
  background: var(--bs-card-bg); /* Using card background */
  border-radius: 5px;
  margin-left: 5px;
}

li.nav-item.dropdown.languageDropdown a {
    /* height: 40px; */
    padding: 8px;
    /* width: 40px; */
    /* border-radius: 8px; */
    background: transparent;
    box-shadow: none;
}

li.nav-item.dropdown.languageDropdown img {
    height: 25px;
    width: 25px;
    border-radius: 8px;
}

.languageDropdown ul.dropdown-menu.show {
    background: #1a2a3afa;
    width: 175px;
    padding: 8px 3px;
    list-style: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-item .balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bs-card-bg); /* Using card background */
  height: 100%;
  padding: 2px 0 2px 15px;
  border-radius: 11px;
  color: var(--bs-body-color);
  cursor: pointer;
  gap: 9px;
  width: auto;
  height: 40px;
}
.balance a span {
  background-color: var(--bs-card-bg);
  padding: 10px;
}
.balance a span:first-child {
  margin-right: 1.5px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.balance a span img {
  width: 50px;
}
.balance:hover span i {
  transform: rotate(360deg);
  transition: 1s ease-in-out;
}
.balance a span:last-child {
  color: var(--bs-light);
  font-weight: 700;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
#navbarNav .user_profile a:after {
  display: none !important;
}
#navbarNav .user_profile .user_data {
  height: 40px;
}
#navbarNav .user_data .info {
  padding: 0 0 0 15px;
}
#navbarNav .user_data .info .username {
  font-size: 18px;
}
#navbarNav .profile_info {
  padding: 10px;
  left: -120px;
  top: 3rem;
  min-width: 215px;
  z-index: 999;
  background: var(--bs-navbar-bg);
}
#navbarNav .profile_info .profile_avatar {
  margin-bottom: 18px;
  background: var(--bs-brand-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#navbarNav .profile_info li a {
  color: var(--bs-sidebar-link-color);
  padding: 3px 0 5px 3px;
}
#navbarNav .profile_info li a:hover {
  background: transparent;
  color: var(--bs-sidebar-link-hover-color) !important;
}
#navbarNav .profile_info li:hover a i {
  transform: rotate(360deg);
  transition: 1s ease;
}
#navbarNav ul li a .user-image img,
#navbarNav .profile_avatar img {
  max-width: 45px;
  width: 45px;
  height: 45px;
  max-height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
#navbarNav .user_profile .user_data img,
#navbarNav .profile_avatar img {
  width: 40px;
  height: 40px;
}
#navbarNav .profile_avatar img.site_currency {
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
}
#navbarNav .profile_info .username,
#navbarNav .profile_info .total-balance {
  white-space: nowrap;
  width: 100%;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin: 0 auto;
  font-size: 1rem;
}
.user_token {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 1px;
  font-size: 0.75rem;
  border-radius: 6px;
  margin: 0;
  background: var(--bs-navbar-bg);
  width: 91%;
  color: var(--bs-body-color);
}
#navbarNav li.user_notifications a .icon,
#navbarNav li.support a .icon,
#navbarNav li.chat .icon {
  width: 25px;
  height: 25px;
  padding: 10px;
  font-size: 2rem !important;
}
.icon img {
  /* filter: brightness(3.5); */
  height: 35px;
  width: 38px;
  border-radius: 20px !important;
  /* margin-right: 8px; */
}
#navbarNav li.user_notifications a i,
#navbarNav li.support a i,
#navbarNav li.chat a i {
  font-size: 23px;
  color: var(--bs-light);
}
#navbarNav .live_chat {
  height: 45px;
}
#navbarNav .live_chat.close_chat {
  display: none;
}

/* Mobile nav styles */
#mobile-nav li.nav-item {
  padding: 10px 10px 5px 10px;
  min-width: 70px;
  width: 100%;
}
#mobile-nav .nav-item .head-icon i {
  font-size: 19px;
}
#mobile-nav .nav-item.active-nav-link,
#mobile-nav .nav-item:hover {
  background: linear-gradient(
    180deg,
    rgba(var(--bs-brand-color-rgb), 0.045) 0,
    rgba(var(--bs-brand-color-rgb), 0.325) 100%
  );
}
#mobile-nav .nav-item.active-nav-link .head-icon i,
#mobile-nav .nav-item:hover .head-icon i {
  color: var(--bs-brand-color);
}
#mobile-nav .nav-item .head-title {
  font-size: 12px;
}
#mobile-nav .nav-item.active-nav-link .head-title,
#mobile-nav .nav-item:hover .head-title {
  color: var(--bs-light);
}
#mobile-nav li.nav-item.earn {
  position: relative;
  margin: 0 7px;
  background: var(--bs-dark);
}
#mobile-nav li.nav-item.earn .nav-link {
  background: linear-gradient(
    180deg,
    var(--bs-brand-color) 0,
    var(--bs-primary-dark) 100%
  );
  width: 60px;
  height: 60px;
  position: absolute;
  right: 50%;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  color: var(--bs-light);
  box-shadow: 0 1px 14px rgba(var(--bs-brand-color-rgb), 0.29);
}
a.nav-link.middle_navbar-link:hover:not([role="tab"]),
#mobile-nav li.nav-item.earn .nav-link:hover {
  background: linear-gradient(
    180deg,
    var(--bs-brand-color) 0,
    var(--bs-primary-dark) 100%
  ) !important;
  color: var(--bs-light) !important;
}
a.nav-link.middle_navbar-link:hover:not([role="tab"]) .head-icon i,
#mobile-nav li.nav-item.earn .nav-link .head-icon i {
  color: var(--bs-light);
}

/* App dashboard styles */
.gaincash_app {
  position: relative;
}
.app_content {
  width: 100%;
}
.dashboard {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  margin-left: 15rem;
  margin-right: 2rem;
  margin-top: 1rem !important;
  padding: 0rem;
}

.w-100.marquee {
    background: var(--bs-card-bg);
    overflow: hidden;
    height: 40px;
    margin-top: 16px;
}

.profile_form.rounded_10px {
    background: var(--bs-card-bg);
}

@media screen and (max-width: 1200px) {
  .dashboard {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Welcome page content styles */
.welcome .hero-bg {
  width: 100%;
  height: 100%;
  background: url("../imgs/hero-bg.jpg") no-repeat top center;
  background-size: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  opacity: 0.09;
}
.call-to-action #typer {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bs-light);
}
.call-to-action a.call-btn {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 45px;
}

/* Left sidebar styles */
.sidebar_nav {
    width: 235px;
    height: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    padding: 0 4px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: var(--bs-text-primary);
    overflow: overlay;
    z-index: 999;
}

.left_sidebar {
  width: 100%;
}
.left_sidebar .inner_sidebar {
  width: 100%;
  height: 100vh;
  padding: 10px;
  list-style: none;
}

.left_sidebar li.has_links {
    margin-left: -15px;
}

.left_sidebar li.has_links li.has_links-item a.has_links-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: -8px;
}

.left_sidebar li.providers a {
    margin-left: -15px;
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    width: 100%;
}

.left_sidebar span.nav-count {
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.75rem !important;
    padding: 2px 8px;
    border-radius: 25px;
}

.left_sidebar .inner_sidebar li:hover i {
  color: var(--bs-info-light) !important;
  transition: transform 1s ease;
}
.left_sidebar .inner_sidebar ul li a {
  padding: 10px 8px;
  font-weight: 400;
  font-size: 1rem;
  display: inline-flex;
  width: 100%;
  min-width: max-content;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--rounded-md);
  border-width: 2px;
  border-color: transparent;
  background-color: transparent;
  text-align: center;
}
.left_sidebar .inner_sidebar ul li a span {
  display: inline-block;
  margin-left: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
.left_sidebar .inner_sidebar ul li a i {
  color: var(--bs-text-secondary);
  font-size: 1.2rem;
}
.left_sidebar .inner_sidebar ul li a.active i {
  color: var(--bs-light);
}
.left_sidebar .inner_sidebar ul li a.active {
  background: var(--bs-brand-color);
  color: var(--bs-light);
}
.left_sidebar .inner_sidebar ul {
  padding: 15px 0;
  width: 100%;
  list-style: none;
}
.left_sidebar .inner_sidebar ul li.active {
  background: linear-gradient(
    261deg,
    rgba(var(--bs-brand-color-rgb), 0.045) 0,
    rgba(var(--bs-brand-color-rgb), 0.325) 100%
  );
  border-radius: 8px;
}
.left_sidebar .inner_sidebar ul li.active a,
.left_sidebar .inner_sidebar ul li.active i {
  color: var(--bs-brand-color) !important;
}

/* Live last offer styles */
.content_header {
  position: sticky;
  top: 58px;
  z-index: 8;
}

@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  display: inline-block;
  animation: marquee 10s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}


#last_offers {
  background-color: var(--bs-card-bg);
  overflow: hidden;
  margin-left: 15rem;
  overflow-x: scroll;
}
#last_offers > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6px 4px;
}
.offer-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: row;
  margin-right: 10px;
  min-height: 50px;
  min-width: 200px;
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-shadow);
  padding: 6px;
  border-radius: 5px;
}
.offer-wrapper div {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.offer_stat-footer {
  margin: 0 13px 0 10px;
  font-size: 14px;
}
.offer_stat-footer h6 {
  white-space: nowrap;
  width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer_stat-footer p {
  margin: 0;
  font-size: 11px;
  white-space: nowrap;
  width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer_stat-header img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
}
div#last_offers .offer-amount {
  width: min-content;
  background: var(--bs-card-bg); /* Using card background */
  color: var(--bs-brand-color);
  font-size: 16px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
}
div#last_offers .offer-amount p {
  color: var(--bs-brand-color) !important;
}
.top-offer-wrapper {
  position: relative;
}
.top-offer-wrapper .offer-wrapper-inner {
  position: absolute !important;
  margin: 0 !important;
  top: 29px !important;
  left: 50px !important;
  right: 0 !important;
  width: 100% !important;
  height: 55px;
  display: none;
  justify-content: center;
  padding: 4px 10px;
  z-index: 999 !important;
  background: var(--bs-dark) !important; /* Using dark color */
}
#last_offers .top-offer-wrapper .offer-wrapper-inner span.title {
  color: var(--bs-light) !important;
  font-size: 12px !important;
}
#last_offers .top-offer-wrapper .offer-wrapper-inner span.value {
  color: var(--bs-brand-color) !important;
  font-size: 12px !important;
  font-weight: 500;
}
#last_offers .top-offer-wrapper:hover > .offer-wrapper-inner {
  display: block !important;
  border-radius: 15px;
}

/* Chat content styles */
.chat_content {
  width: 0rem;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0px;
  transition: all 0.5s ease-in-out;
  z-index: 9;
}
.chat_content.is_open {
  width: 20rem;
}
.desktop_chat .chat {
  overflow-y: scroll;
  scrollbar-width: none;
  padding-bottom: 8.5rem;
  background: #1a2a3a;
}
.chat::-webkit-scrollbar {
  display: none;
}
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    background: #3a4d60;
}

.message .user_img img {
  max-height: 28px;
  height: 28px;
  max-width: 28px;
  width: 28px;
}
.message {
  border-radius: 10px 10px 10px 0;
}
.user_details {
  justify-content: start;
}
.user .username {
  color: transparent !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.user_img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.message .time {
  font-size: 8px;
  color: rgba(238, 238, 238, 0.509);
}
.user .username i,
.message .message_data {
  font-size: 14px;
}
.message .user {
  line-height: 0.8;
  display: flex;
  align-items: center;
  gap: 11px;
}
.message .user .user_type {
  font-size: 10px;
  color: var(--bs-light);
  padding: 1px 8px 0px 8px;
  border: 1px solid #ddd;
}
.main_message.mt-2 {
  background: var(--bs-card-bg); /* Using card background */
  padding: 12px;
  border-radius: 0px 25px 25px 25px;
  margin-left: 34px;
  width: auto;
}

/* Chat footer styles */
.chat_footer {
  padding: 10px;
}
.chat_footer form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
.chat_footer input,
.chat_footer .input {
  width: 100%;
}
.chat_footer input,
.chat_footer .submit {
  width: 43px;
  height: 43px;
  color: var(--bs-light);
  border-radius: 3rem;
}
.chat_footer .unauth {
  position: relative;
  padding: 0;
}
.chat_footer .not_login {
  background-color: var(--bs-card-bg); /* Using card background */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3rem;
}
.chat_footer .not_login .message {
  font-size: 12px;
  color: var(--bs-light) !important;
}
.chat_footer .not_login i {
  color: var(--bs-brand-color);
}
@media screen and (max-width: 1200px) {
  .chat_content.is_open {
    width: 100%;
    z-index: 9999;
    padding: 0;
  }
  .desktop_chat.pt-4 {
    padding-top: 8px !important;
  }
  .chat_footer {
    width: 100%;
  }
  .desktop_chat .close-btn {
    cursor: pointer;
    background: var(--bs-dark); /* Using dark color */
    padding: 8px 15px;
    border-radius: 5px;
    display: inline;
    margin: 7px;
    color: var(--bs-light);
    font-size: 0.8rem !important;
  }
  #last_offers {
    margin-left: 0;
  }
}

/* Footer styles */
.footer {
  border-top: 1px solid var(--bs-card-border-color);
  position: relative;
  overflow: hidden;
  /* width: 100%; */
}

.footer-social-icon a i {
    font-size: 1.5rem;
    margin: 8px;
    background: var(--bs-body-color);
    /* padding: 8px; */
    border-radius: 8px;
    color: var(--bs-dark);
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1200px) {
  footer.footer {
    margin-left: 16rem;
  }
}
.footer .widget .title {
  font-size: 17px;
  color: rgba(100, 181, 255, 0.45);
}
.copyright-area p {
  font-size: 10px;
}
.footer-link svg {
  width: 15px;
  height: 15px;
}
.footer-link svg path {
  fill: var(--bs-light);
}
.footer_coins-box {
  background: var(--bs-dark); /* Using dark color */
  text-align: center;
  padding: 15px;
  margin: 25px;
  border-radius: 5px;
}
footer.footer.pb-5 {
  margin-top: 0px;
  padding-top: 25px;
  text-align: center;
  padding-bottom: 0px !important;
}
.links-group {
  display: flex;
  flex-flow: column;
}
a.footer-link {
  color: var(--bs-light);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
a.footer-link:hover {
  color: rgba(126, 168, 226, 0.81);
}
@media (max-width: 530px) {
  .footer .widget .title {
    font-size: 18px;
  }
  a.footer-link {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer-link svg {
    width: 12px;
    height: 12px;
  }
  .footer .widget .title {
    font-size: 12px;
  }
  a.footer-link {
    font-size: 9px;
  }
  .text-center.info p {
    font-size: 8px;
  }
}
.copy_info p {
  font-size: 13px;
  color: var(--bs-text-muted);
} /* Using muted text color */
.user_profile .navbar-nav a.nav-link.middle_navbar-link {
  border: none;
  color: #d1d1d1;
  font-weight: 400;
  font-size: 16px;
}
a.nav-link.total-balance .icon i {
  display: flex;
  background: linear-gradient(45deg, var(--bs-primary-dark), var(--bs-primary));
  color: var(--bs-light) !important;
  height: 38px;
  width: 40px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 0 !important;
}
.user_profile a.nav-link.middle_navbar-link.dropdown-toggle {
  background: var(--bs-card-bg) !important;
}
body .desktop-links li.nav-item:hover,
body .desktop-links li.nav-item.active-nav-link {
  background: var(--bs-brand-color) !important;
}
body .desktop-links li.nav-item:hover a,
body .desktop-links li.nav-item.active-nav-link a {
  color: var(--bs-dark) !important;
}
a.nav-link.main-nav-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 460px) {
  a.nav-link.main-nav-link {
    padding: 1px 5px !important;
  }
}
a.nav-link.middle_navbar-link .head-icon {
  display: block;
  font-size: 16px;
}
a.nav-link.middle_navbar-link .head-title {
  display: block;
  font-size: 1rem;
  position: relative;
}
a.main-nav-link.active-nav-link .head-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  border: 1px solid var(--bs-warning);
  width: 100%;
}
a.nav-link.middle_navbar-link:hover:not([role="tab"]) {
  background: transparent !important;
}
.navbar-toggler:focus {
  background: transparent;
  box-shadow: none;
}
span.navbar-toggler-icon.fas {
  color: var(--bs-light);
  background: var(--bs-brand-color);
  border-radius: 14px;
  padding-top: 15px;
  width: 3.5em;
  height: 2.5em;
}
a.nav-link {
  font-size: 1.2rem;
  color: var(--bs-light);
  background: transparent;
  border-radius: 3rem;
  padding: 0 5px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: background 0.2s ease-in;
}
a.nav-link:not([class*="middle_navbar-link"]) {
  box-shadow: 1px 1px 3px 1px var(--bs-brand-color);
  background: var(--bs-primary);
}
a.nav-link:hover:not([role="tab"]) {
  background-color: var(--bs-brand-color);
  color: var(--bs-light) !important;
  box-shadow: none;
  transition: 0.9s all ease-in-out;
}
a.me-3.nav-link.nav-support {
  border: none;
  background: transparent;
  box-shadow: none;
}

/* Header section */
header.header {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  background-position: center 0;
  background: var(--bs-primary);
}
header.header h4 {
  font-size: 2.5rem;
  color: var(--bs-light);
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}
header.header .coins {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  height: 100%;
}
header.header .coins .coin {
  border-radius: 10px;
  font-weight: 600;
  min-width: 139px;
  background: var(--bs-card-bg); /* Using card background */
  margin-bottom: 7px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 17px;
  color: var(--bs-brand-color);
  font-size: 1.2rem;
}
header.header .coins .coin img {
  height: 30px;
  width: 30px;
}
.bg-images {
  height: 260px;
}
@media screen and (max-width: 551px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
  }
  .bg-images {
    height: 25px;
  }
  .push-order {
    order: 1 !important;
  }
}
#faq .content {
  background: var(--bs-dark); /* Using dark color */
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 4px var(--bs-brand-color);
}
#faq .content .question {
  color: var(--bs-brand-color) !important;
  font-size: 2rem;
  font-weight: 700;
}
header.header .img-wrapper img {
  width: 100%;
  height: 400px;
}

.splide.splide--slide {
    background: radial-gradient(#000f1fb0, #1828385c);
    padding: 0px 12px;
}

.section-title h5.title {
    text-transform: capitalize !important;
    padding-top: 12px;
}

a.badge.bg-dark {
    margin-right: 5rem !important;
    margin-top: 8px;
    font-size: 0.8rem;
    background: black !important;
}

/* Benefits section */
section#benefits h2 {
  font-weight: 600;
}
.benf_box {
  text-align: center;
  background: var(--bs-dark); /* Using dark color */
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
  min-height: 160px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 1px 1px 4px 0 var(--bs-brand-color);
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  align-items: center;
  color: var(--bs-brand-color);
}
.benf_box p {
  color: var(--bs-light);
}
.benf_box svg {
  height: 30px;
  width: 44px;
  margin: 0 0 15px 0;
}
.benf_box svg path {
  fill: var(--bs-brand-color);
}

/* Form styles */
.panel,
.card,
.card-box {
  /* padding: 20px; */
  font-size: 1rem;
  font-weight: 400;
  border-radius: 10px;
}
.chat_open .panel {
  margin: 0 !important;
}
.panel-header {
  border-bottom: 1px solid var(--bs-brand-color);
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--bs-brand-color);
}
.btn.btn-primary:focus,
.btn.btn-primary:hover {
  box-shadow: 0 3px 3px 0 var(--bs-dark), 0 1px 7px 0 var(--bs-primary),
    0 3px 1px -1px var(--bs-primary);
}
.panel a {
  color: var(--bs-brand-color);
  text-decoration: none;
}
.form-group {
  margin: 5px 0;
}
label.custom-form-label {
  font-size: 11px;
  margin: 0;
}
.input-group > .form-control,
.input-group > .form-select {
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
}
.checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.btn-link {
  font-weight: 400;
  color: var(--bs-light);
  text-decoration: none;
}
.panel-footer a {
  color: var(--bs-light) !important;
}
section#chat {
  position: fixed;
  right: 5px;
  top: 62px;
  height: 100%;
  z-index: 99;
  background: var(--bs-dark); /* Using dark color */
  padding: 9px;
  width: 0px;
  transition: all 0.2s ease-in;
}
section#chat.show {
  width: 265px;
  padding: 0px;
}
button#toggle-chat {
  position: absolute;
  left: -38px;
  top: 3%;
  font-size: 17px;
  padding: 10px 1px;
  border: none;
  background: var(--bs-brand-color);
  color: var(--bs-light);
  border-radius: 4px;
}
.chat-content {
  display: flex;
  margin: 10px 0px;
  padding: 3px 0px;
  color: var(--bs-light);
  font-size: 19px;
  border-radius: 10px;
  border: 1px solid var(--bs-success); /* Using success color */
  align-items: center;
  background: var(--bs-dark); /* Using dark color */
  justify-content: flex-start;
}
.chat-user-image img {
  width: 30px;
  border-radius: 25px;
}
.chat-wrapper {
  height: 80vh;
  overflow: auto;
}
.chat-button {
  background: var(--bs-light);
  padding: 15px 5px;
  display: flex;
  margin: 0px;
}
.left-side-bar {
  width: 214px;
  height: 100vh;
  z-index: 1000;
  background: var(--bs-primary);
}
.dropdown-menu {
  position: absolute;
  z-index: 99;
  display: none;
  min-width: 6rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: var(--bs-card-bg); /* Using card background */
  text-align: left;
  list-style: none;
  background-color: var(--bs-light);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.user-info-dropdown .dropdown-toggle .user-icon {
  width: 35px;
  height: 35px;
}
div.header {
  background: var(--bs-primary);
}
span.user-name {
  color: var(--bs-light) !important;
}
.dropdown-menu.dropdown-menu-right.dropdown-menu-icon-list.show {
  background: var(--bs-dark);
}
a.dropdown-item {
  color: var(--bs-light);
}
.menu-icon.fas.fa-list {
  color: var(--bs-light);
  cursor: pointer;
}
ul#accordion-menu {
  padding-left: 0px;
}
@media screen and (max-width: 551px) {
  .main-container {
    margin-left: 0px !important;
  }
}
a.btn.offer-btn {
  color: var(--bs-brand-color);
  font-size: 18px;
  font-weight: 800;
  background: var(--bs-light);
  margin-right: 7px;
}
.left-side-bar a {
  color: var(--bs-light);
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  margin: 5px 0;
  background: var(--bs-dark); /* Using dark color */
}
.main-container {
  margin-left: 218px;
}
.menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-brand-color);
}
.menu-toggle:hover,
.menu-toggle:active,
.menu-toggle:focus {
  text-decoration: none;
  color: var(--bs-brand-color);
}
.menu-toggle i {
  font-size: 46px;
  color: var(--bs-light);
}
a.dash-nav-link {
  background: transparent;
  color: var(--bs-light);
  text-decoration: none;
  padding: 5px 15px;
  font-size: 18px;
  font-weight: 400;
  margin: 5px;
  border: none !important;
}
.nav-item-divider {
  height: 1px;
  margin: 1rem 0;
  overflow: hidden;
  background-color: var(--bs-primary);
}
.upper-auth-links {
  align-items: center;
}
ul.notifications_wrapper.dropdown-menu.notifications.dropdown_bg.border_1px.rounded_15px.show {
  min-width: 14rem;
  color: var(--bs-light);
  left: -3rem;
  overflow: hidden;
  background: var(--bs-navbar-bg);
}
ul.notifications_wrapper.dropdown-menu.notifications.dropdown_bg.border_1px.rounded_15px.show
  h5 {
  font-size: 1rem;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    left: -79px;
  }
  #navbarNav {
    display: flex;
    align-items: center;
  }
}
p.code.border.border-info.p-2.ref-url {
  background: var(--bs-dark);
  cursor: pointer;
}

/* User home dashboard */
li.earn-ways {
    max-width: 150px;
    min-width: 150px;
    background: #19283778;
    margin-right: 16px;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.75rem;
    transition: all 0.15s ease;
    box-shadow: 0px 1px 2px 0px aqua;
}

li.earn-ways:hover {
    transform:scaleY(1.05);
    /* border: 1px solid aqua; */
}

li.earn-ways h6 {
    color: aqua;
}

li.earn-ways img {
    height: 75px;
    width: 75px;
    margin-bottom: 25px;
}

#user-home svg path {
  fill: var(--bs-brand-color);
}
#user-home svg {
  width: 28px;
}
#user-home h3.panel-text {
  color: var(--bs-brand-color) !important;
  font-size: 2rem;
  font-weight: 900;
}
#user-home .col-12.offer-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  overflow: hidden;
}
.nav-tabs {
  padding-bottom: 15px;
  border-bottom: transparent;
}
.nav-tabs .nav-link {
  border: 2px solid transparent;
  margin: 0 5px;
  padding: 3px 15px !important;
  color: var(--bs-light) !important;
  box-shadow: none !important;
  border-radius: 6px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--bs-brand-color);
  border: 2px solid var(--bs-brand-color);
}

/* Custom CSS by Raju Ahmed */
.content-wrapper {
  display: flex;
  align-content: stretch;
  width: 100%;
}
.check-box .form-label {
  padding: 0;
}
p.forget-it {
  font-size: 13px;
}

/* Custom form design */
.data-select {
  position: relative;
  display: flex;
  width: 11rem;
  height: 3em;
  border-radius: 3rem;
  overflow: hidden;
}
.data-select select {
  appearance: none;
  border: 0;
  box-shadow: none;
  margin: -7px 0;
  flex: 1;
  padding: 0 1em;
  color: var(--bs-brand-color);
  font-weight: 600;
  background-color: var(--bs-light);
  background-image: none;
  cursor: pointer;
}
.data-select select::-ms-expand {
  display: none;
}
.data-select::after {
  content: "\25BC";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.8rem 0.7rem;
  transition: 0.25s all ease;
  pointer-events: none;
}
.data-select:hover::after {
  color: var(--bs-warning);
}
.data-select select option {
  position: absolute;
  top: 0;
  right: 15px;
}

/* User dashboard styles */
.my_profile .profile-card {
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
  border-radius: 15px;
}
.statistics-data.row.gy-3 .col-12 {
  padding: 15px;
  border-radius: 5px;
}
.my_profile .statistics .title i {
  font-size: 19px;
  color: var(--bs-brand-color);
}
.my_profile .statistics-data .info span {
  font-size: 14px;
  color: var(--bs-body-color);
}
.profile_image img {
  max-width: 125px;
  width: 125px;
  max-height: 125px;
  height: 125px;
  border-radius: 50%;
}
.modal.show {
  /* display: flex !important; */
}
.modal {
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 100vh; */
  /* width: 100%; */
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
  /* bottom: 0; */
  /* margin: 0 auto; */
  /* z-index: 999; */
}
#offerCardModalModal h6 {
  font-size: 0.8rem;
  margin-right: 8px;
}
body.body.modal-open {
  overflow-y: auto !important;
}
.modal-content {
  color: var(--bs-body-color);
  background: #2a3b4c;
  /* border-radius: 15px; */
  /* font-size: 0.8rem; */
  /* margin: 0 auto; */
  /* max-height: 100vh; */
  /* overflow-y: auto !important; */
}
.modal-dialog {
  /* position: relative; */
  /* width: 100%; */
  /* margin: 0.5rem; */
  /* pointer-events: none; */
}
.modal_header {
  min-height: 50px;
  border-radius: 5px;
  padding-left: 15px;
  background: linear-gradient(to bottom, var(--bs-primary), var(--bs-card-bg));
}
#loginModal .modal-content,
#registerModal .modal-content {
  max-width: 420px;
}
.close-btn .btn-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--bs-dark);
  color: var(--bs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  border-radius: 5px;
  font-size: 1.5rem;
  margin: 0;
  z-index: 99;
}
#offerCardModalModal .modal-header {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 0;
}

#offerCardModalModal .modal-header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b1a26c7;
    z-index: -1;
}

#offerCardModalModal .modal-header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  bottom: 0;
}
#offerCardModalModal .modal-header img {
  width: 100px;
  border-radius: 5px;
  background-clip: content-box;
  overflow: hidden;
}
#offerCardModalModal span.me-1.bg-info {
  font-weight: lighter;
  background: rgba(var(--bs-success-rgb), 0.12) !important;
  color: var(--bs-success);
}
.modal-category {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.modal-provider p {
  background: rgba(var(--bs-info-rgb), 0.1);
  border-radius: 5px;
  color: var(--bs-info);
  padding: 1px 15px !important;
}
.modal_body .profile_img,
.modal_body .profile_img img {
  width: 115px;
}
.modal_body .profile_img button {
  font-size: 10px;
}
.modal_body .info .list .item {
  padding: 7px 0;
  border-bottom: 1px solid rgba(211, 206, 206, 0.216);
}
.modal_body .info .list .item span:first-child {
  color: var(--bs-light);
}
.modal_body .info .list .item span:last-child {
  color: var(--bs-body-color);
}
.modal_body .info .copyButton {
  background-color: transparent;
  outline: none;
  border: none;
}
.modal_body .info .copyButton i {
  color: var(--bs-success);
}
.modal_body .btn-success {
  background-color: var(--bs-success);
}
.modal-backdrop.fade.show {
  /* position: relative; */
}
.wow {
  animation-duration: 1.8s !important;
}
.btn-orange-dark {
  background-color: var(--bs-brand-color);
  border: 1px solid var(--bs-brand-color);
  color: var(--bs-light);
  transition: all 0.5s ease-in-out;
}
.btn-orange-dark:hover {
  background-color: transparent !important;
  color: var(--bs-brand-color);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--bs-light);
}
.block-title {
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.02em;
  text-align: center;
}
.chat_open .task {
  padding: 0 !important;
}
.orange {
  color: var(--bs-brand-color);
}
.right {
  text-align: right;
}
.sidebar-menu .submenu li a,
.sidebar-menu .dropdown-toggle {
  padding: 10px 15px 10px 67px;
}
li.nav-item.d-lg-flex.align-items-center.justify-content-center {
  max-width: 75%;
}
@media (max-width: 1200px) {
  #navbarNav .support,
  #open_button,
  #close_button,
  #navbarNav .live_chat,
  .sidebar_nav {
    display: none !important;
    visibility: hidden !important;
  }
  #main_chat {
    margin-bottom: 10px !important;
    overflow-y: auto;
  }
  .sidebar_nav.show {
        width: 100%;
        display: block !important;
        visibility: visible !important;
        background: var(--bs-navbar-bg);
        max-width: 230px;
    }
  .sidebar_nav.show .left_sidebar {
    width: 14rem;
    background-color: var(--bs-sidebar-bg);
  }
  .sidebar_footer {
    margin-bottom: 6rem !important;
  }
  #mobile-nav .nav-item.sidebar_menu:hover {
    background: transparent;
  }
  #toast-container .toast-message {
    font-size: 13px !important;
  }
  .main_content {
    margin: 0 !important;
  }
  .upper-auth-links {
    flex-direction: row !important;
    justify-content: end;
  }
  span#balanceValue {
    white-space: nowrap;
    overflow: auto;
    font-size: 0.75rem;
  }
  #mobile-nav {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bs-sidebar-bg);
    z-index: 999;
    box-shadow: 1px 1px 1px var(--bs-sidebar-bg);
  }
  #mobile-nav li {
    list-style: none !important;
  }
  #mobile-nav .nav-item:hover a,
  #mobile-nav .nav-item.active-nav-link a {
    color: var(--bs-dark) !important;
  }
  #mobile-seperator {
    margin-top: 200px;
  }
  .chat#toggleBtn {
    display: none;
  }
  footer {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 771px) {
  #desktop-nav li.nav-item {
    margin: 0px;
  }
  #mobile-nav .head-title {
    font-size: 12px;
  }
  .referral_message::before {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .call-to-action #typer {
    font-size: 3rem;
  }
  .offer_popularity {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .reg_log_buttons {
    width: 160px;
    --h: 2em;
  }
  .call-to-action #typer {
    font-size: 2rem;
  }
  .call-to-action a.call-btn {
    font-size: 15px;
    padding: 8px 30px;
  }

  li.nav-item.dropdown.languageDropdown img {
    height:20px;
    width:20px;
  }
  
  #navbarNav .user_profile .user_data .info {
    display: none;
  }
  #navbarNav .profile_info {
    left: -150px;
  }

  .nav-item .balance {
    padding:0;
  }

  .nav-item .balance .balanceValue {
    display:none;
  }

  a.nav-link.total-balance .icon i {
    height: 25px;
    width: 25px;
    font-size: 0.75rem;
  }

  #navbarNav ul li a  .icon img {
    height: 25px;
    width: 25px;
  }
  
  #navbarNav ul li a .user-image img,
  #navbarNav .profile_avatar img {
    max-width: 25px;
    width: 40px;
    height: 25px !important;
  }
}
@media screen and (max-width: 400px) {
  #navbarNav .user_data .info {
    display: none;
  }
  .navbar-brand img {
    width: 150px;
  }
  i.tag-items {
    padding: 7px 12px;
    color: var(--bs-light);
    margin: 6px 3px;
  }
}
@media screen and (max-width: 380px) {
  #navbarNav .profile_info {
    left: -180px;
  }
}
@media screen and (max-width: 360px) {
  .reg_log_buttons {
    width: 140px;
  }
  .reg_log_buttons button {
    font-size: 13px;
  }
}
.overlay {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Earn page */
.badge-warning {
  background-color: var(--bs-success) !important;
  color: var(--bs-light);
}
.latest-activites .single-box .number {
  padding: 13px 57px;
  background: transparent;
  border-radius: 18px;
  color: var(--bs-body-color);
  margin-left: -2px;
}
.header-section .navbar-area form .form-group {
  padding: 0 30px;
  border-radius: 10px;
  background: var(--bs-card-bg); /* Using card background */
  border: 1px solid var(--bs-form-control-border-color); /* Using form control border color */
  border-radius: 15px;
}
.header-section .navbar-area {
  padding: 10px 40px;
  padding-right: 20px;
  position: absolute;
  background: var(--bs-card-bg); /* Using card background */
  overflow-x: clip;
}
.earn-select-dropdown-toggle-left-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.earn-select-dropdown-icon {
  display: flex;
  align-items: center;
}
.lightAnimation {
  animation: lightBlink 1s infinite alternate;
}
.css-rzyl8m {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  cursor: pointer;
}
.css-98o5l5 {
  color: var(--bs-text-muted);
  font-weight: 500;
  font-size: 12px;
  line-height: 165%;
  margin: 0px;
}
svg:not(:root) {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .css-1qfb8uj {
    margin-top: 24px;
  }
}
.css-1qfb8uj {
  display: flex;
  margin-top: 32px;
}
.css-12u1ezy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 0%;
}
.css-1n80aq3 {
  margin-right: 4px;
  border-radius: 2px;
  width: 47px;
  height: 16px;
}
.css-6k17nn {
  font-weight: 500;
  font-size: 12px;
  line-height: 165%;
  text-align: center;
  color: var(--bs-text-muted);
  opacity: 0.6;
  margin-top: 8px;
  margin-bottom: 0px;
}
.css-rhbqqc {
  background: var(--bs-card-bg); /* Using card background */
  border-radius: 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 165%;
  color: var(--bs-success); /* Using success color */
  padding: 6px 12px;
}
.css-1hm5hf {
  line-height: var(--chakra-lineHeights-base);
  font-weight: 500;
  font-size: 14px;
  color: var(--bs-light);
}
.css-194qof2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  white-space: nowrap;
}
.css-1od6a13 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.online {
  background-color: var(--bs-success);
}
.offline {
  background-color: var(--bs-danger);
}
.font-medium.text-slate-700 {
  color: var(--bs-light);
  font-size: 0.8rem;
}
@media screen and (max-width: 600px) {
  .font-medium.text-slate-700 {
    font-size: 0.8rem;
  }
}
.dropdown-item:hover {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}
.dropdown-item.selected {
  background-color: var(--bs-dark);
  color: var(--bs-light);
}
.dropdown-item[data-device="all"] {
  color: var(--bs-text-muted);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.dropdown-item[data-device="all"]:hover {
  background-color: var(--bs-text-muted);
}
.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 15px;
}
.bell-icon {
  width: 25px;
  height: 25px;
}
.custom-modal-btn {
  width: 482px;
  height: 72px;
  background: var(--bs-success);
  padding: 18px 200px;
  color: var(--bs-dark);
  position: relative;
  z-index: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
}
.tag-b {
  color: var(--bs-warning);
  background: rgba(var(--bs-warning-rgb), 0.1);
  padding: 0px 10px;
  font-size: 11px;
  border-radius: 5px;
}
.b-mn {
  border-color: var(--bs-secondary-dark);
}
.pro_log_btn {
  background: linear-gradient(
    1turn,
    var(--bs-danger-dark) 0.8%,
    var(--bs-danger)
  );
  height: 43px;
  border-radius: 7px;
  color: var(--bs-light);
  font-size: 13px;
  width: 100%;
  display: flex;
  border-bottom: solid 2px var(--bs-danger-dark);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 5px;
}
.bg-g-green {
  border-bottom: solid 1px var(--bs-success-dark);
  background: linear-gradient(
    180deg,
    var(--bs-success-light) 0%,
    var(--bs-success) 50%,
    var(--bs-success-dark) 100%
  );
}
.pro_csm_grid {
  --auto-grid-min-size: 10rem;
  justify-items: center;
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--auto-grid-min-size), 1fr)
  );
  grid-gap: 8px;
}
.bg-dark-light {
  background: var(--bs-card-bg);
}
.li-tr {
  background-color: rgba(var(--bs-light-rgb), 0.3);
}
.bg-full-dark_csm {
  background: var(--bs-dark);
}
.bg-layot-dark_csm {
  background: var(--bs-card-bg);
}
.men_ac {
  color: var(--bs-light);
  border: 1px solid var(--bs-secondary-dark) !important;
  background-image: linear-gradient(
    180deg,
    var(--bs-card-bg) 9.2%,
    var(--bs-secondary-dark) 103.9%
  ) !important;
}
.men_ac i {
  color: var(--bs-warning) !important;
}
.d-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.leaderboard-section .nav {
  border: 1px solid var(--bs-card-border-color);
  border-radius: 10px;
  padding: 10px;
}
.leaderboard-section .nav .cmn-btn span {
  color: var(--bs-light);
  font-weight: 600;
}
.leaderboard-section .nav .cmn-btn.active {
  background: var(--bs-card-bg);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}
.leaderboard-section .countdown h5 {
  margin: 0 2px;
}
.leaderboard-section .countdown .days,
.leaderboard-section .countdown .hours,
.leaderboard-section .countdown .minutes {
  color: var(--bs-secondary);
}
.leaderboard-section .abs-area {
  top: -35px;
}
.leaderboard-section .border-gradient {
  border-radius: 50%;
}
.leaderboard-section .border-gradient::before,
.leaderboard-section .border-gradient .profile img {
  border-radius: 50%;
}
.leaderboard-section .single-box {
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  padding: 58px 0px 15px;
}
.leaderboard-section .single-box .coin-bonus {
  position: relative;
}
.leaderboard-section .single-box .coin-bonus::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--bs-body-color);
}
.leaderboard-section .single-box .coin-bonus p {
  color: var(--bs-light);
}
.leaderboard-section .single-box .coin-bonus p.mdtxt {
  color: var(--bs-primary);
}
.leaderboard-section .single-box .abs-top {
  padding: 4px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--bs-primary); /* Using primary color */
  border-radius: 0px 0px 30px 30px;
  color: var(--bs-dark);
  font-weight: 600;
}
.leaderboard-section .table {
  border-collapse: separate;
  border-spacing: 0 20px;
  width: 250%;
}
.leaderboard-section .table .grid-area {
  text-align: center;
}
.leaderboard-section .table .grid-area span {
  display: block;
}
.leaderboard-section .table .grid-area span:last-child {
  color: var(--bs-secondary);
}
.leaderboard-section .table tr {
  background: var(--bs-card-bg);
} /* Using card background */
.leaderboard-section .table tr .img-area {
  margin-right: 10px;
}
.leaderboard-section .table tr span {
  color: var(--bs-light);
  font-weight: 600;
}
.leaderboard-section .table th {
  border-left: 1px solid var(--bs-card-border-color);
  width: 100px;
}
.leaderboard-section .table th span {
  padding: 15px 10px;
  background: var(--bs-card-bg);
  border-radius: 10px;
}
.leaderboard-section .table td:first-child {
  width: 30%;
}
.leaderboard-section .table td:last-child {
  border-right: 1px solid var(--bs-card-border-color);
  text-align: end;
}
.leaderboard-section .table td,
.leaderboard-section .table th {
  padding: 20px 40px;
  border-top: 1px solid var(--bs-card-border-color);
  border-bottom: 1px solid var(--bs-card-border-color);
}
.leaderboard-section .table .border-left {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
.leaderboard-section .table .border-right {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}
.leaderboard-section ::-webkit-scrollbar-track,
.leaderboard-section ::-webkit-scrollbar-button,
.leaderboard-section ::-webkit-scrollbar-thumb {
  background-color: transparent;
}
th.border_1px.rounded_10px.px-3.py-2.my-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5px 0 !important;
  gap: 0;
  height: 50px;
  white-space: nowrap;
  background: var(--bs-dark);
}
th.border_1px.rounded_10px.px-3.py-2.my-4 :first-child {
  text-align: left;
}
th.border_1px.rounded_10px.px-3.py-2.my-4 :last-child {
  text-align: right;
}
.timer {
  display: flex;
}
.timer h1 + h1:before {
  content: ":";
}
.badge-warning {
  background-color: var(--bs-success) !important;
  color: var(--bs-light);
}
.section-title .title-wrapper .icon {
  width: 40px;
  height: 40px;
}
.bonus_code_modal .image {
  width: 230px;
  position: absolute;
  top: -62px;
  left: -15px;
}
button.bonusCode.py-2.px-3.border_1px.rounded_10px {
  border: 1px solid var(--bs-brand-color);
}
.days {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, 120px);
  justify-content: start;
}
.days i {
  font-size: 26px;
  margin-bottom: 12px;
}
.days span {
  font-size: 16px;
}
.streak_rewards img {
  height: 10px;
}
.days .claim_reward {
  background: var(--bs-dark);
}
#next_streak_time {
  display: inline-block;
}
#next_streak_time > div:nth-child(2) {
  display: none !important;
}
.syotimer__body,
.syotimer-cell {
  display: inline-flex;
  align-items: center;
  color: var(--bs-brand-color);
}
.syotimer-cell {
  margin: 3px;
}
.syotimer-cell:last-child {
  margin-right: 0 !important;
}
span.tasks_title {
  font-size: 0.9rem;
  line-height: 1.2;
  font-family: ui-sans-serif;
}
.fst {
  margin-top: -3rem;
}
.le_tag {
  background: var(--bs-danger);
  font-size: 10px;
  border-radius: 17px;
  padding: 0px 3.5px;
  top: -5px;
  right: -5px;
}
.back_re {
  background: var(--bs-danger) !important;
}
.nav-li-n-o i {
  font-size: 18px;
}
.nav-li-n-o {
  align-items: center;
  border-radius: 7px;
  margin-top: 9px !important;
  cursor: pointer;
  display: flex;
  height: 42px;
  padding: 0px 12px;
  font-size: 12px;
  position: relative;
  text-transform: uppercase;
  transition: background-color 0.1s ease-in-out;
  color: var(--bs-light);
  background: transparent;
}
.of-navi {
  display: flex;
  gap: 9px;
  font-size: 18px;
}
.of-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.redu1 {
  border-radius: 1rem;
}
.api-step {
  background: var(--bs-card-bg);
  padding: 15px;
  border-radius: 9px;
}
.chat_footer input {
  color: var(--bs-light);
}
.chat_footer .submit {
  color: var(--bs-light);
}
.of-modal-content {
  border-radius: 1rem;
  margin: auto;
  border: 1px solid var(--bs-text-muted);
  width: 90%;
  max-width: 560px;
  text-align: center;
  position: relative;
  margin-top: 75px;
}
.of-close {
  color: var(--bs-text-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 5px;
  right: 10px;
}
.of-close:hover,
.of-close:focus {
  color: var(--bs-dark);
  text-decoration: none;
  cursor: pointer;
}
#i-xmr {
  font-size: 22px;
}
.mon-h:hover {
  background-image: linear-gradient(
    270deg,
    var(--bs-card-bg) 9.2%,
    var(--bs-secondary-dark) 103.9%
  );
  border-left: solid 2px var(--bs-danger);
  color: var(--bs-body-color);
}
.div-center {
  text-align: center !important;
}
.header-section .navbar-area .dashboard-nav .single-item .chatbar-wrapper {
  position: absolute;
  top: 50px;
  width: 360px;
  height: 85vh;
  overflow-x: hidden;
  overflow-y: scroll;
  display: grid;
  right: 0;
  padding: unset !important;
  background: var(--bs-card-bg); /* Using card background */
  box-shadow: 0px 20px 50px rgba(44, 63, 88, 0.15);
  border-radius: 20px;
  transform: translateX(150px);
  cursor: auto;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
.notifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  overflow-x: hidden;
  text-overflow: ellipsis;
  overflow-y: auto;
  /* position: relative; */
}
.notifications-list li a {
  padding: 0;
  margin-bottom: 8px;
}
.notifications-list li a.dropdown-item {
  background: var(--bs-body-bg);
  padding: 10px 13px;
  overflow: hidden;
  text-wrap: wrap;
  border-radius: 5px;
}
ul.notifications-list li:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}
.notifications-content {
  max-height: 500px;
  overflow-y: auto;
}
.head-area {
  text-align: center;
}
.profile-head {
  margin-bottom: 10px;
}
.profile-image {
  max-height: 100%;
  width: auto;
}
.user-profile {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.user-profile img {
  max-width: 100%;
  height: auto;
}
.offers_modal {
  /* background: var(--bs-card-bg); */
}
.splide__arrow {
  border: 1px solid var(--bs-brand-color);
  background: var(--bs-brand-color);
  position: absolute;
  top: 0;
  transform: none;
  border-radius: 7px;
  z-index: 999;
}
.splide__arrow:hover {
  background: var(--bs-secondary-dark);
}
.splide__arrow--prev {
  right: 2.2rem !important;
  left: auto;
}
.splide__arrow--next {
  right: 0 !important;
}
.splide__arrow svg {
  fill: var(--bs-light);
  width: 0.9em;
}
.splide__arrow:hover svg {
  fill: var(--bs-light);
}
.splide__pagination {
  display: none;
}

/* Offerwall styles */
#featured_offers .splide__slide {
  width: 8rem;
}
#featured_offers .offer_header {
  min-height: 93px;
}
div#offers-container [class*="col"] {
  width: unset;
  padding: 0;
}
.section-title h5.title {
  text-transform: capitalize !important;
}
.offer .offer_device {
  text-align: center;
  width: 43px;
  height: 27px;
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(var(--bs-dark-rgb), 0.7);
}
.offer .offer_device img {
  height: 18px;
}
.offer-card {
  min-width: 115px;
  max-width: 115px;
  height: 200px;
  margin-right: 10px;
  margin: 5px;
  overflow: hidden;
  border-radius: 14px;
}
.offer {
  width: 100%;
  height: 100%;
}
.offer {
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
  background-image: repeating-linear-gradient(
    to top,
    rgba(var(--bs-light-rgb), 0.1),
    rgba(var(--bs-light-rgb), 0.07) 50%
  );
  padding: 5px !important;
  border: 1px solid var(--bs-card-border-color);
  border-radius: 15px;
  margin-right: 5px;
  font-size: 0.8rem;
  color: var(--bs-brand-color);
}
a.offer.no-iframe {
  background-color: var(--bs-card-bg);
  background-image: linear-gradient(to top, var(--bs-dark), var(--bs-dark));
}
.offer_image img {
  height: 100px;
  width: 100%;
  margin-bottom: 10px;
}
.offer_popularity {
  margin-right: 5rem;
}
.offer_badge {
  position: absolute;
  top: 7px;
  right: 7px;
}
.badge.new {
  background: var(--bs-brand-color);
}
.badge.hot {
  background: var(--bs-danger);
}
.badge.offer_bonus {
  background: rgba(var(--bs-brand-color-rgb), 0.2);
  color: var(--bs-brand-color);
}
.no-iframe .devices div {
  justify-content: flex-end !important;
  border-radius: 10px;
  width: 95px;
  height: 27px;
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(var(--bs-dark-rgb), 0.7);
}
.no-iframe .devices div .device {
  border-radius: 10px;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--bs-dark-rgb), 0.7);
  color: var(--bs-light);
  font-size: 15px;
  font-weight: 400;
}
.offer .name,
.offer .details {
  white-space: nowrap;
  text-align: left;
  padding: 0 5px;
  display: block;
  font-size: 0.8rem;
  color: var(--bs-body-color);
}
.offer .name,
.offer .category p {
  font-size: 0.8rem;
  color: var(--bs-text-muted);
  font-weight: 400;
  text-align: left;
  padding: 0px;
  padding-left: 5px;
  margin: 0;
  width: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer .name,
.offer .rewards p {
  text-align: left;
  padding-left: 5px;
}
.currency {
  font-size: 15px;
  color: var(--bs-brand-color);
}
.currency span {
  font-size: 10px;
}
.offertype.game {
  background: var(--bs-info);
  font-size: 10px;
  font-weight: 500;
}
.offer_footer .ratings i {
  color: var(--bs-warning);
  margin: 2px;
  font-size: 12px;
}
.hasRatings .offer_footer .ratings {
  display: block;
}
.ratingsHide .offer_footer .ratings {
  display: none;
}
.offer .overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.2s;
  filter: none !important;
}
.offer .overlay:has(.fas.fa-lock.user-lock) {
  opacity: 1;
}
.offer .overlay i {
  background-color: var(--bs-brand-color);
  color: var(--bs-light);
  display: inline-block;
  height: 32px;
  width: 32px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.offer.lock .overlay i {
  background-color: transparent;
  font-size: 30px;
}
.offer .overlay i.fas.fa-lock.user-lock {
  background: transparent;
  font-size: 2rem;
}
.offer .overlay p {
  margin-top: 15px;
  margin-bottom: 0;
  color: var(--bs-light);
  font-weight: bold;
  font-size: 12px;
}
.offer.lock .overlay,
.offer:hover .overlay {
  opacity: 1 !important;
}
.offer.lock {
  cursor: pointer;
}
.offer.lock .lock_info {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 1;
}
.offer.lock .lock_info button {
  width: 25px;
  height: 25px;
  background: var(--bs-primary);
  opacity: 1;
  cursor: pointer;
}
.offer.lock .lock_info i {
  font-size: 15px;
  color: var(--bs-light);
}
.offer:hover {
  border: 3px solid var(--bs-brand-color);
}

/* Offer popularity toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-secondary-light);
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: var(--bs-light);
  transition: 0.4s;
}
input:checked + .slider {
  background-color: var(--bs-brand-color);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--bs-brand-color);
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/* Cookie consent banner */
.cookie {
  position: fixed;
  bottom: 46px;
  left: 15px;
  width: auto;
  margin: auto;
  max-width: 420px;
  z-index: 999;
  background: rgba(var(--bs-dark-rgb), 0.7);
  border-radius: 25px;
  padding: 25px 15px;
}
@media screen and (max-width: 551px) {
  .cookie {
    right: 15px;
  }
}
.cookie-header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  height: 45px;
}
h3.cookie-title {
  margin: 0;
  font-size: 2rem;
  color: var(--bs-light);
}
.cookie-body p {
  padding: 14px;
  color: var(--bs-body-color);
}
.cookie-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px;
}
.banner__cta {
  min-width: 160px;
  background-color: var(--bs-brand-color);
}
.banner__cta:hover {
  background-color: var(--bs-brand-color);
}
.banner__cta.reject {
  background-color: rgba(var(--bs-info-rgb), 0.5);
}
.banner__cta.reject:hover {
  background-color: var(--bs-danger);
}
@media (max-width: 992px) {
  .cookie-consent-banner {
    bottom: 52px;
  }
}
@media (max-width: 490px) {
  .cookie-consent-banner {
    width: 90%;
  }
  .banner__cta {
    width: 100% !important;
  }
}

/* Dashboard image styles */
.welcome {
  position: relative;
}
.dashboard-image {
  display: inline-block;
  padding: 10px 6px;
  width: 125px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 5rem;
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
}
.dashboard-image img {
  width: 125px;
  max-width: 100%;
  display: block;
  margin-bottom: 8px;
  border-radius: 10px;
}
.dashboard-image .content {
  text-align: left;
}
.dashboard-image .content p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bs-body-color);
}
.dashboard-image .content .middle {
  display: block;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-image .content h5 {
  padding: 2px 0 0 0;
  font-size: 16px;
  font-weight: bold;
  margin: 2px 0 0 0;
  color: var(--bs-light);
}
.dashboard-image .content h5 span {
  font-size: 11px;
}
.call-to-action .get-paid {
  color: var(--bs-brand-color);
}
.call-to-action a.call-btn {
  border: 2px solid var(--bs-card-border-color);
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin: 15px 0;
  color: var(--bs-light);
  border-radius: 3rem;
  transition: color, background 0.5s ease-in-out;
  background-color: var(--bs-card-bg);
}
.call-to-action a.call-btn:hover {
  border: 2px solid var(--bs-brand-color);
  color: var(--bs-brand-color);
  background: transparent;
}

/* Earning info styles */
.earn-details .details {
  border-radius: 25px;
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
}
.earn-details .inner-content i {
  font-size: 2.3rem;
  color: var(--bs-light);
}
.earn-details .inner-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bs-light);
}
.earn-details p {
  font-size: 12px;
  color: var(--bs-body-color);
}

/* How to earn cash styles */
.how-to-start .start-box {
  border-radius: 25px;
  position: relative;
  padding: 3px;
  margin: 10px 0;
  background: var(--bs-card-bg);
}
.how-to-start .start-box .counter {
  position: absolute;
  top: 0;
  left: -12px;
  color: rgba(var(--bs-light-rgb), 0.63);
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 0.2;
  z-index: 60;
}
.how-to-start .start-box .inner-content {
  margin: auto;
  text-align: center;
  position: relative;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 25px;
}
.how-to-start .start-box .outer-content {
  border: 1px solid var(--bs-card-border-color);
  background-color: rgba(var(--bs-card-rgb), 0.71);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 50;
  border-radius: 25px;
  transform: translateX(-50%) translateY(-50%);
}
.how-to-start .start-box .outer-content h3 {
  color: var(--bs-brand-color);
}
.how-to-start .start-box .box {
  width: 130%;
  position: absolute;
  top: -1.5rem;
  left: 0;
  transform: rotate(353deg);
}
.how-to-start .start-box.box-3 .box {
  top: -130px;
}
.how-to-start .start-box .box .image img {
  margin: 5px 0;
}
.how-to-start .start-box:hover .box .image {
  transform: scale(1.5);
  transition: 1s ease-in-out;
}

/* Best way to earn styles */
.best-way-to-earn .best-box {
  display: flex;
  flex-direction: column;
  padding: 30px 24px 0 24px;
  font-size: 14px;
  overflow: hidden;
  max-height: 450px;
  border-radius: 16px;
  border: 1px solid var(--bs-card-border-color);
  background: var(--bs-card-bg);
}
.best-way-to-earn .best-box img {
  width: 80%;
  height: 120px;
  object-fit: contain;
  flex: 1;
  display: block;
  margin: auto;
}

/* Offer partners section */
.partners-section .partners {
  border-top: 1px solid var(--bs-card-border-color);
  border-bottom: 1px solid var(--bs-card-border-color);
  background: var(--bs-card-bg);
}
.partners-section .partners .partner-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}
.partners img {
  filter: grayscale(1);
  width: 100px;
}
.partners img:hover {
  transition: 0.3s ease;
  filter: grayscale(0) !important;
}

/* Why us section styles */
.why-us .best-box {
  display: flex;
  flex-direction: column;
  padding: 30px 24px 0 24px;
  font-size: 14px;
  overflow: hidden;
  max-height: 450px;
  height: 100%;
  border-radius: 16px;
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-border-color);
}
.why-us .best-box img {
  height: 120px;
  object-fit: contain;
  flex: 1;
  display: block;
  margin: auto;
}
@media (max-width: 768px) {
  .dashboard-image-positioned {
    top: 0;
  }
  .dashboard-image {
    margin-bottom: 30px;
  }
}

/* Withdraw page */
.withdraw_method {
  width: 100%;
}
.withdraw_method .section_header {
  padding: 28px 16px;
  overflow: hidden;
  position: relative;
}
.section-info i {
  color: var(--bs-brand-color);
}
.section-title i.fa-money-check-dollar {
  color: var(--bs-brand-color);
  transform: rotate(-45deg);
}
.cashout_details span {
  font-weight: 500;
  color: var(--bs-body-color);
}

/* Withdraw item styles */
.withdraw_method .cashout_item {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, 94px);
  justify-content: start;
}
@media screen and (min-width: 350px) {
  .withdraw_method .cashout_item {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .withdraw_method .cashout_item {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .withdraw_method .cashout_item {
    grid-template-columns: repeat(auto-fit, 130px);
  }
}
.withdrawal_methods [class*="col-3"] {
  width: auto;
  padding: 5px;
}
.withdraw_method .item {
  border: 2px solid transparent;
  background-clip: padding-box;
  display: block;
  position: relative;
  padding: 6px 8px;
  width: 120px;
}

a.withdraw.item.rounded_10px.wow.fadeInUp.deposit {
    width: 100%;
    height: 213px;
    background: #132333;
    max-width: 145px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.withdraw_method .item:hover {
  border: 2px solid var(--bs-brand-color);
}
.withdraw_method .item.card {
  border: none;
  padding: 0;
  box-shadow: none;
}
.withdraw_method .item .item_inner {
  position: relative;
}
.withdraw_method .item .item_inner::before {
  height: 0px;
  content: "";
  display: block;
  padding-bottom: 165.766%;
}
.withdraw_method .item_inner .item_info {
  overflow: hidden;
  position: absolute;
  inset: 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.withdraw_method .item img {
  height: 110px;
  max-width: 100%;
  border-radius: 8px;
}
.withdraw_method .item .item_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.item_footer .method_name {
  font-size: 15px;
  color: var(--bs-secondary-light);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.withdraw_modal .image {
  background-color: var(--bs-light);
  width: 25px;
  position: absolute;
  top: -17px;
  left: 4px;
}
.referral_link h5 {
  display: flex;
  align-items: flex-start;
  justify-content: start;
}
.referral_link span.copyData {
  font-size: 17px;
  padding: 10px;
  border-radius: 6px;
  background: var(--bs-dark);
  color: var(--bs-body-color);
}
.referral_link .copyButton i {
  color: var(--bs-brand-color);
}
.color_svg {
  fill: var(--bs-brand-color);
}
.color_svg.gray {
  fill: var(--bs-text-muted);
}
.profile_info .label strong {
  width: 25px;
  height: 25px;
  background: var(--bs-brand-color);
  padding-top: 3px;
  border-radius: 50%;
}
.profile_info .username .flag {
  width: 30px;
  height: 22px;
}
.referral_message::before {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../../asset/images/referrals/dollar-coin.png") no-repeat top
    center/100% 100%;
}
.top_referral {
  font-size: 20px;
  color: var(--bs-light);
}
.top_referral .list {
  margin-bottom: 10px;
}
.top_referral .count {
  font-weight: 600;
  font-size: 25px;
  width: 40px;
  height: 40px;
  background: var(--bs-card-bg);
  color: var(--bs-body-color);
}
.top_referral .count.count-1 {
  background: var(--bs-warning);
  color: var(--bs-dark);
}
.top_referral .count.count-2 {
  background: var(--bs-secondary-light);
  color: var(--bs-dark);
}
.top_referral .count.count-3 {
  background: var(--bs-warning-dark);
  color: var(--bs-dark);
}
.tier {
  background: var(--bs-card-bg);
}
.tiers .active {
  border: 1px solid var(--bs-brand-color);
}
.tiers .tier .badge {
  background: var(--bs-brand-color);
  display: none;
} /* Hidden by default, shown on active */
.tiers .active .badge {
  display: block;
  padding: 4px 12px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-brand-color);
}
.tiers .not_active {
  border: 1px solid var(--bs-card-border-color) !important;
}
.tiers .not_active .badge {
  display: none !important;
}

/* Dropdown background table styles */
.dropdown_bg {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.dropdown_bg th,
.dropdown_bg td {
  padding: 10px;
  text-align: left;
}
.dropdown_bg th {
  background-color: var(--bs-dark);
}
.dropdown_bg tbody tr {
  animation: fadeIn 0.5s ease-in-out;
}
.dropdown_bg .img-area {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.dropdown_bg .profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.dropdown_bg .grid-area {
  display: inline-block;
  vertical-align: middle;
}
.rounded_15px {
  border-radius: 15px;
}

/* Skeleton Loader Styles */
.skeleton-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.skeleton-image {
  width: 100%;
  height: 200px;
  background: var(--bs-dark);
  border-radius: 10px;
  margin-bottom: 10px;
}
.skeleton-text {
  width: 100%;
  height: 20px;
  background: var(--bs-card-bg);
  border-radius: 5px;
  margin: 20px auto;
  bottom: 0;
  position: absolute;
}
.skeleton-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to right,
    var(--bs-dark) 0%,
    var(--bs-dark) 50%,
    var(--bs-card-bg) 100%
  );
  animation: shimmer 1.5s infinite;
}
.skeleton-animation-pulse {
  animation: pulse 1.5s infinite ease-in-out;
}

/* User Avatar */
.avatar-selection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  flex-wrap: wrap;
  max-height: 360px;
  overflow: auto;
}
.avatar-radio {
  display: flex;
  align-items: center;
  margin: 0;
}
.avatar-radio img {
  width: 55px;
  height: 55px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0px;
  transition: all 0.5s ease-in-out;
}
.avatar-radio input[type="radio"] {
  display: none;
}
.avatar-radio input[type="radio"]:checked + img {
  border-color: var(--bs-card-border-color);
  background: var(--bs-light);
  padding: 2px;
  border-radius: 25px;
}
.single-box.footer_status {
  min-height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
  margin: 5px auto;
  background: var(--bs-dark);
  background-image: repeating-linear-gradient(
    to top,
    rgba(var(--bs-dark-rgb), 0.9),
    rgba(var(--bs-card-rgb), 0.6) 100px
  );
  border: 1px solid rgba(0, 0, 0, 0.29);
  border-radius: 30px;
  box-shadow: -1px -1px 5px -15px rgba(1, 1, 1, 0.83);
}
.single-box.footer_status .number h6 {
  font-size: 1rem;
  padding: 10px;
  font-weight: 600;
  color: var(--bs-light);
}
.single-box.footer_status .text h6 {
  font-size: 0.8rem;
  color: var(--bs-sidebar-link-color);
}

/* Profile Modal */
#profileModal .modal-title {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  white-space: nowrap;
}
#profileModal .modal-title .avatar {
  position: relative;
  height: 100px;
  width: 100px;
}
#profileModal img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 5px solid var(--bs-brand-color);
}
#profileModal .country img {
  height: 25px;
  width: 25px;
  border: 0px;
  border-radius: 4px;
}
#profileModal span.user_level {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  font-family: sans-serif;
  background: var(--bs-primary);
  width: fit-content;
  padding: 4px 0.5rem;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  flex-direction: row;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
#profileModal .joined_from {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 425px) {
  #profileModal .joined_from {
    gap: 5px;
  }
}
#profileModal .joined_from .country {
  border-left: 1px solid rgba(var(--bs-text-muted-rgb), 0.5);
  padding-left: 10px;
  height: 25px;
}
#profileModal .user-label {
  width: 100%;
  min-width: 312px;
  padding-left: 5px;
  margin-top: -35px;
}
#profileModal .label_info h6 {
  margin-bottom: 34px;
  margin-top: 6px;
}
.progress-bar {
  background-color: var(--bs-success);
}
#profileModal button.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
#profileModal .box {
  background: var(--bs-card-bg);
  text-align: center;
  padding: 8px;
  margin-bottom: 25px;
  margin-right: 8px !important;
}
#profileModal .box p:first-child {
  font-size: 1rem;
  color: var(--bs-body-color);
  font-weight: 600;
}
.form-switch .form-check-input {
  width: 2.3em;
  height: 1.3rem;
}
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success-dark) !important;
}

/* Social icon styles */
.socials {
  align-items: center;
}
.socials .links {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bs-card-border-color); /* Using card border color */
  margin-right: 5px;
  /* padding: 10px; */
  border-radius: 50%;
}
.socials .links:last-child {
  margin: 0;
}
.socials .links a {
  display: block;
  font-size: 23px;
  line-height: 20px;
}
.socials .links i {
  color: var(--bs-light);
  font-size: 1.95rem;
}
.socials .links.email {
  background-color: #3501f2;
}
.socials .links.facebook {
  background-color: #1671e9;
}
.socials .links.twitter {
  background-color: #01a0f2;
}
.socials .links.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.socials .links.telegram {
  background: rgba(11, 176, 255, 0.69);
}

/* Other specific and utility classes */
.text_red {
  color: rgb(255, 0, 0);
}
.text_light_green {
  color: #b0bfd5;
}
.text_gray {
  color: var(--bs-text-muted);
}
.text_gradient {
  background: linear-gradient(to left, #00ff00 0%, #00ffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text_gradient_1 {
  background: radial-gradient(
    circle,
    #a66bff,
    #c666ef,
    #dd62df,
    #ee61cf,
    #fb64bf
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.me-2 {
  margin-right: 0.5rem;
}

.nav-widget-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    text-align: right;
    flex-grow: 8;
    flex-shrink: 1;
}

.nav-item {
  position: relative;
  list-style: none;
}
.icon-wrapper {
  position: relative;
}
.notifications_wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.show {
  /* display: block !important; */
}
.icon {
  position: relative;
}
.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1;
}
.alert-danger {
  color: var(--bs-brand-color);
  background-color: #2e2931;
  border-color: #ff001a;
}
.csm_iphone_ipad {
  background-color: #ff4500;
}
.csm_android {
  background-color: rgba(33, 150, 243, 0.49);
}
.csm_cpe {
  background-color: #1b4772;
}
.csm_cpa {
  background-color: #ff7f50;
}
.csm_cpi {
  background-color: #4682b4;
}
.csm_survey {
  background-color: #8a2be2;
}
.csm_app {
  background-color: #20b2aa;
}
.csm_signup {
  background-color: #ff6347;
}
.csm_oneclick {
  background-color: #00ced1;
}
.csm_creditcard {
  background-color: #635610;
}
.csm_shopping {
  background-color: #ff1493;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.offer-card {
  margin-bottom: 20px;
}

.footer .offer-card {
    height: 100px;
    min-width: 73px;
    max-width: 125px;
    padding: 0;
    margin: 5px;
    border-radius: 0px;
    background: transparent;
}

img.partner-img {
    width: 100%;
    height: 100%;
    background: radial-gradient(#455a645e, #00000000);
    padding: 5px;
    border-radius: 0px;
    object-fit: contain;
}

.tab-content .single-box {
  width: 100%;
  max-width: 190px;
  height: auto;
  background: var(--bs-card-bg);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  margin: 15px auto;
}
.first-place {
  margin: 0 auto;
  z-index: 1;
  bottom: 7%;
}
.crown-top {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.profile img {
  width: 65%;
  height: 65%;
  border-radius: 50%;
  max-width: 95px !important;
  max-height: 95px !important;
  min-width: 95px !important;
  min-height: 95px !important;
  border: 3px solid var(--bs-light);
}
.info-area {
  text-align: center;
  margin-top: 15px;
  width: 100%;
  overflow: hidden;
}
.info-area.text-center h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 5px;
  font-size: 1rem;
}
.coin-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coin-bonus p {
  margin: 5px 0;
}
table th {
  color: var(--bs-text-secondary);
  padding: 10px;
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 20.33333333% !important;
  }
}
.modal .modal-backdrop {
  height: unset !important;
  z-index: -1;
}
.btn.btn-primary {
  box-shadow: none;
}
.header-section .navbar-area .dashboard-nav .single-item .chatbar-wrapper {
  background: #172737;
}
.notifications-list li a.dropdown-item {
  background: #172737;
}
ul.notifications-list li:last-child {
  background: #172737;
}
.offers_modal {
  /* background: #0b151e; */
}
.splide__arrow {
  border: 1px solid var(--bs-brand-color);
  background: var(--bs-brand-color);
}
.splide__arrow:hover {
  background: var(--bs-secondary-dark);
}
.splide__arrow svg {
  fill: var(--bs-light);
}
.splide__arrow:hover svg {
  fill: var(--bs-light);
}
.offer {
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
  background-image: repeating-linear-gradient(
    to top,
    rgba(var(--bs-light-rgb), 0.1),
    rgba(var(--bs-light-rgb), 0.07) 50%
  );
  border: 1px solid var(--bs-card-border-color);
  color: var(--bs-brand-color);
}
a.offer.no-iframe {
  background-color: var(--bs-card-bg);
  background-image: linear-gradient(to top, var(--bs-dark), var(--bs-dark));
}
.offer .offer_device {
  background: rgba(var(--bs-dark-rgb), 0.7);
}
.badge.new {
  background: var(--bs-brand-color);
}
.badge.hot {
  background: var(--bs-danger);
}
.badge.offer_bonus {
  background: rgba(var(--bs-brand-color-rgb), 0.2);
  color: var(--bs-brand-color);
}
.no-iframe .devices div {
  background: rgba(var(--bs-dark-rgb), 0.7);
}
.no-iframe .devices div .device {
  background: rgba(var(--bs-dark-rgb), 0.7);
  color: var(--bs-light);
}
.offer .name,
.offer .details {
  color: var(--bs-body-color);
}
.offer .name,
.offer .category p {
  color: var(--bs-text-muted);
}
.currency {
  color: var(--bs-brand-color);
}
.offertype.game {
  background: var(--bs-info);
}
.offer_footer .ratings i {
  color: var(--bs-warning);
}
.offer .overlay i {
  background-color: var(--bs-brand-color);
  color: var(--bs-light);
}
.offer.lock .overlay i {
  background-color: transparent;
}
.offer .overlay p {
  color: var(--bs-light);
}
.offer.lock .lock_info button {
  background: var(--bs-primary);
}
.offer.lock .lock_info i {
  color: var(--bs-light);
}
.offer:hover {
  border: 3px solid var(--bs-brand-color);
}
.slider {
  background-color: var(--bs-secondary-light);
}
input:checked + .slider {
  background-color: var(--bs-brand-color);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--bs-brand-color);
}
.cookie {
  background: #0a131cb8;
}
h3.cookie-title {
  color: var(--bs-light);
}
.cookie-body p {
  color: var(--bs-body-color);
}
.banner__cta {
  background-color: var(--bs-brand-color);
}
.banner__cta:hover {
  background-color: var(--bs-brand-color);
}
.banner__cta.reject {
  background-color: rgba(var(--bs-info-rgb), 0.5);
}
.banner__cta.reject:hover {
  background-color: var(--bs-danger);
}
.dashboard-image {
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
}
.dashboard-image .content p {
  color: var(--bs-body-color);
}
.dashboard-image .content h5 {
  color: var(--bs-light);
}
.call-to-action .get-paid {
  color: var(--bs-brand-color);
}
.call-to-action a.call-btn {
  background-color: var(--bs-card-bg);
  border: 2px solid var(--bs-card-border-color);
  color: var(--bs-light);
}
.call-to-action a.call-btn:hover {
  border: 2px solid var(--bs-brand-color);
  color: var(--bs-brand-color);
  background: transparent;
}
.earn-details .details {
  border: 1px solid var(--bs-card-border-color);
  background-color: var(--bs-card-bg);
}
.earn-details .inner-content i {
  color: var(--bs-light);
}
.earn-details .inner-content h2 {
  color: var(--bs-light);
}
.earn-details p {
  color: var(--bs-body-color);
}
.how-to-start .start-box {
  background: var(--bs-card-bg);
}
.how-to-start .start-box .counter {
  color: rgba(var(--bs-light-rgb), 0.63);
}
.how-to-start .start-box .outer-content {
  border: 1px solid var(--bs-card-border-color);
  background-color: rgba(var(--bs-card-rgb), 0.71);
}
.how-to-start .start-box .outer-content h3 {
  color: var(--bs-brand-color);
}
.best-way-to-earn .best-box {
  border: 1px solid var(--bs-card-border-color);
  background: var(--bs-card-bg);
}
.partners-section .partners {
  border-top: 1px solid var(--bs-card-border-color);
  border-bottom: 1px solid var(--bs-card-border-color);
  background: var(--bs-card-bg);
}
.why-us .best-box {
  background: var(--bs-card-bg);
  border: 1px solid var(--bs-card-border-color);
}
.section-info i {
  color: var(--bs-brand-color);
}
.section-title i.fa-money-check-dollar {
  color: var(--bs-brand-color);
}
.cashout_details span {
  color: var(--bs-body-color);
}
.withdraw_method .item:hover {
  border: 2px solid var(--bs-brand-color);
}
.item_footer .method_name {
  color: var(--bs-secondary-light);
}
.withdraw_modal .image {
  background-color: var(--bs-light);
}
.referral_link span.copyData {
  background: var(--bs-dark);
  color: var(--bs-body-color);
}
.referral_link .copyButton i {
  color: var(--bs-brand-color);
}
.color_svg {
  fill: var(--bs-brand-color);
}
.color_svg.gray {
  fill: var(--bs-text-muted);
}
.profile_info .label strong {
  background: var(--bs-brand-color);
}
.top_referral {
  color: var(--bs-light);
}
.top_referral .count {
  background: var(--bs-card-bg);
  color: var(--bs-body-color);
}
.top_referral .count.count-1 {
  background: var(--bs-warning);
  color: var(--bs-dark);
}
.top_referral .count.count-2 {
  background: var(--bs-secondary-light);
  color: var(--bs-dark);
}
.top_referral .count.count-3 {
  background: var(--bs-warning-dark);
  color: var(--bs-dark);
}
.tier {
  background: var(--bs-card-bg);
}
.tiers .active {
  border: 1px solid var(--bs-brand-color);
}
.tiers .tier .badge {
  background: var(--bs-brand-color);
}
.tiers .active .badge {
  background: var(--bs-brand-color);
}
.tiers .not_active {
  border: 1px solid var(--bs-card-border-color) !important;
}
.dropdown_bg th {
  background-color: var(--bs-dark);
}
.dropdown_bg .mdtxt {
  color: var(--bs-body-color);
}
.skeleton-image {
  background: var(--bs-dark);
}
.skeleton-text {
  background: var(--bs-card-bg);
}
.skeleton-animation::before {
  background: linear-gradient(
    to right,
    var(--bs-dark) 0%,
    var(--bs-dark) 50%,
    var(--bs-card-bg) 100%
  );
}
.avatar-radio input[type="radio"]:checked + img {
  border-color: var(--bs-card-border-color);
  background: var(--bs-light);
}
.single-box.footer_status {
  background: var(--bs-dark);
  background-image: repeating-linear-gradient(
    to top,
    rgba(var(--bs-dark-rgb), 0.9),
    rgba(var(--bs-card-rgb), 0.6) 100px
  );
  border: 1px solid rgba(0, 0, 0, 0.29);
}
.single-box.footer_status .number h6 {
  color: var(--bs-light);
}
.single-box.footer_status .text h6 {
  color: var(--bs-sidebar-link-color);
}
#profileModal .modal-title .avatar {
  /* border: 5px solid var(--bs-light); */
}
#profileModal .country img {
  border: 0px;
}
#profileModal span.user_level {
  background: var(--bs-primary);
  color: var(--bs-light);
}
#profileModal .joined_from .country {
  border-left: 1px solid rgba(var(--bs-text-muted-rgb), 0.5);
}
.progress-bar {
  background-color: var(--bs-brand-color);
}
#profileModal .box {
  background: var(--bs-dark);
  border-radius: 8px;
}
#profileModal .box p:first-child {
  color: var(--bs-body-color);
}
.form-check-input:checked {
  background-color: var(--bs-success) !important;
  border-color: var(--bs-success-dark) !important;
}

.btn-close {
  color:#ffffff;
}
.btn-close:hover {
  color:#ffffff;
}