/* default css  */

:root {
  --theme-bg-color: #141523;
  --text-color: #fff;
  --theme-popup-bg: #222339;
}

.theme-popup-bg {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  /* background: #141523; */
  color: #fff;
  overflow: hidden;
  background-color: #9900ff;
  background: linear-gradient(to top, #663300 0%, #003366 100%);
}
.dark-bg {
  background: #212134;
}
.table td {
  font-family: "Poppins", sans-serif;
}
ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

i {
  margin-right: 5px;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
}

.custom-input {
  margin: 10px 0px;
}
input::placeholder {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

.green {
  color: #01d676;
}

.bg-green {
  color: #fff;
  background-color: #01d676;
}

.bg-red {
  color: #fff;
  background-color: #e63d3d;
}

.bg-gold {
  color: #fff;
  background-color: #e5c300;
}
.box-shadow {
  transition: 0.3s all ease;
  box-shadow: 0px 0px 20px #0000006c;
}
.box-shadow:hover {
  box-shadow: 0px 0px 10px #01d676;
}

.border {
  border-top: 1px solid #01d676 !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.light-bg {
  background: #222339;
}
/*all animation */
/*div animation*/
.animated-box {
  animation: moveUpDown 2s infinite;
  transition: animation-play-state 0.2s ease;
}
.animated-box-rev {
  animation: moveUp 2s infinite;
  transition: animation-play-state 0.2s ease;
}
.animated-box-right {
  animation: moveRight 5s infinite;
  transition: animation-play-state 0.2s ease;
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Stop animation on hover */
.animated-box:hover {
  animation-play-state: paused;
}
.animated-box-rev:hover {
  animation-play-state: paused;
}
.animated-box-right:hover {
  animation-play-state: paused;
}
/*================scroll animation =======================*/
/* Initially hide the sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(50px); /* Move slightly down */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When visible, fade in and move to original position */
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0); /* Move into view */
}
/*====================scroll animation end=============== */
/*animated bg*/
.animated-background {
  position: relative;
  overflow: hidden; /* Prevent overflow of the animated elements */
}

.content {
  position: relative; /* Make sure the content is on top */
  z-index: 1; /* Bring content above background */
  padding: 20px;
  color: white; /* Change to your preferred text color */
}

.animated-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url("test/assets/img/et.webp")
    no-repeat center center; /* Use your animated SVG */
  background-size: contain;
  animation: moveBackground 100s linear infinite; /* Adjust timing and easing as needed */
  z-index: -1; /* Background should be behind content */
}

/* Keyframes for animation */
/*@keyframes moveBackground {*/
/*    0% {*/
/*        transform: translateX(-50%);*/
/*    }*/
/*    50% {*/
/*        transform: translateX(50%); !* Adjust the value for desired effect *!*/
/*    }*/
/*    100% {*/
/*        transform: translateX(100%);*/
/*    }*/
/*}*/
@keyframes moveBackground {
  0% {
    transform: translateX(60%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*ratate 360 deg div */
.awesome-box {
  width: 120px;
  height: 120px;
  background-color: #3498db;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 15px;
  animation: moveRotateColor 4s ease-in-out infinite;
  transition: animation-play-state 0.2s ease;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Define the complex animation */
@keyframes moveRotateColor {
  0% {
    transform: translateY(0) rotate(0deg);
    background-color: #3498db;
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
    background-color: #e74c3c;
  }
  50% {
    transform: translateY(0) rotate(180deg);
    background-color: #f1c40f;
  }
  75% {
    transform: translateY(30px) rotate(270deg);
    background-color: #2ecc71;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    background-color: #3498db;
  }
}

/* Stop animation on hover */
.awesome-box:hover {
  animation-play-state: paused;
}

/*scrollbar design */

/* For Webkit browsers like Chrome, Safari, and Edge */
::-webkit-scrollbar {
  width: 2px; /* or use 1px for thinner scrollbar */
}

/* Track of the scrollbar */
::-webkit-scrollbar-track {
  background: #222339; /* Black track */
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
  background-image: url('https://images.rawpixel.com/image_700/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvdjEwMTYtYy0wOF8xLWtzaDZtemEzLmpwZw.jpg'); /* Green handle */
  border-radius: 10px; /* Rounded edges */
}

/* Firefox Scrollbar (with scrollbar-width and scrollbar-color properties) */
body {
  scrollbar-width: thin; /* Makes the scrollbar thin in Firefox */
  scrollbar-color: #2dc16d #222339; /* Green scrollbar with black track */
}

/*scrollbar design end */

/*all animation end*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animated-fadein {
  opacity: 0; /* Start hidden */
  transition: opacity 1s ease; /* Smooth transition */
}

.animated-fadein.visible {
  opacity: 1; /* Fully visible */
  animation: fadeIn 1s forwards; /* Trigger fade-in animation */
}

/* preloader  */
.preloader {
  display: flex;
  justify-content: center;
  height: 100vh;
  background: #222339;
  flex-direction: column;
  align-content: center;
  align-items: center;
  z-index: 99999999 !important;
  overflow: hidden !important;
}

.preloaderlogo {
  width: 220px;
  height: 70px;
  z-index: 99999999 !important;
}

.preloadersublogo {
  width: 70px;
}

.loading-gif {
  width: 60px;
  margin-left: 30px;
  z-index: 99999999 !important;
}

.custom-btn {
  border-radius: 5px;
  font-size: 14px !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border: 1px solid #ffffff;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  transition: 0.3s all ease;
  /* box-shadow: 0px 0px 15px #18da4860; */
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

.custom-btn:hover {
  color: #fff;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  border: 1px solid #fff;
}

.primary-bg {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

/* style here  */

#header {
  /*background: #0387d3;*/
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  padding: 10px 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.dropdown-toggle {
  font-size: 14px;
}
.dropdown-toggle i {
  font-size: 12px;
}
.logo {
  display: flex;
  align-items: center;
}
/*.logo img {*/
/*  width: 180px;*/
/*}*/
.logo img {
  width: 120px;
  height: 35px;
}
.dropdown-menu li a,
.left-nav ul li a {
  background: linear-gradient(to top, #663300 0%, #003366 100%);
}
.right-nav ul li a {
  color: #ffffff;
  font-size: 13px;
  border: 1px solid #ff0000;
  padding: 5px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.left-nav ul li a:hover,
.right-nav ul li a:hover {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

.dropdown ul li a {
  border-radius: 0;
}

/* sign in popup css  */

.popup-right {
  padding: 30px;
  width: 100%;
  height: 100%;
  border-radius: 15px
}
.popup-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0px 0px 10px;
  color: #fff;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 10px 0px 0px 10px;
  -moz-border-radius: 10px 0px 0px 10px;
  -ms-border-radius: 10px 0px 0px 10px;
  -o-border-radius: 10px 0px 0px 10px;
}

.sign-up-left {
  padding: 30px;
}

.sign-in-btn-reset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sign-in-btn-reset a {
  text-align: center;
}

/* .modal-content {
    background: none !important;
    border: none!important;
  } */

.reset-height {
}

/* hero section area  */

.hero-section {
  position: relative;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  background: linear-gradient(to top, #663300 0%, #003366 100%);
}
.bg-scm {
  background-image: url(../../assets/img/back.png);
  height: 540px;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  pointer-events: none;
  transform: rotate(-2.9deg);
  transform-origin: 18px center;
}
.home-login-form {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.home-login-form::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
.home-login-input {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  color: #fff !important;
  font-size: 14px;
  border: 1px solid #153d0f;
}
.home-login-input::placeholder {
  color: #ffffff !important;
}
.sign-up-right {
  background: linear-gradient(to top, #663300 0%, #003366 100%);
  z-index: 999;
  padding: 20px;
}
.home-login-input:focus {
  outline: none;
  box-shadow: none;
  background: linear-gradient(to bottom, #f0c27b, #4b1248);
}
.home-hero-login-title h3 {
  font-size: 25px;
  margin: 10px 0px;
}
.home-hero-left-text h2,
.left-text h2 {
  line-height: 40px;
  margin: 20px 0px;
}
.right-banner img {
  width: 100%;
  border-radius: 5px;
}
.right-banner {
  text-align: center;
}
.social-login ul li a i {
  background: linear-gradient(to top, #663300 0%, #003366 100%);
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 22px;
  color: #ffffff;
}
.green {
  color: #01d676;
}
.pb-100 {
  padding-bottom: 100px;
}
.hero-left-heading h2 {
  font-size: 35px;
  margin: 30px 0px;
  font-weight: 500;
}

.hero-left-para p {
  font-size: 16px;
}

.hero-right-img {
  text-align: right;
}
.get-started-box {
  border: 1px solid #01d676;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

.get-started-box:hover {
  box-shadow: 0px 0px 10px #01d676;
}

.text-started h3 {
  font-size: 18px;
}

.text-started p {
  font-size: 13px;
}

.icon-started i {
  font-size: 18px;
}

.after-hero-box {
  position: relative;
  min-height: 380px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  box-shadow: 0px 0px 20px #4976bd;
}

.after-hero-box:hover {
  box-shadow: 0px 0px 10px #01d676;
  -webkit-box-shadow: 0px 0px 10px #01d676;
}

#footer {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  border-radius: 10px 10px 0px 0px;
  border-top: 1px solid #01d676;
}

.top-footer-paragraph {
  width: 85%;
}

.top-footer-nav ul li a {
  display: inline-block;
  margin: 5px 0px;
  padding: 0;
  color: #fff;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}

.top-footer-nav ul li a:hover {
  color: #626266;
}

.bg-custom {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

.custom-w-80 {
  width: 80% !important;
  margin: auto;
}

.custom-h-400 {
  height: 420px !important;
}
.custom-cross-design {
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 999;
}

.custom-cross-design i {
  font-size: 22px !important;
}

.review i {
  font-size: 30px;
  color: #01d676;
}

.modal-email input,
.modal-email textarea {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  border: none;
}

.modal-email textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.hint {
  color: #01d676;
  font-size: 12px;
}
.red {
  color: red;
}
/* alert  */

.m-right-100 {
  margin-right: 100px;
}

.vh-fit {
  padding: 30px 0px !important;
  min-height: 62vh !important;
}

.pdt-100 {
  padding-top: 100px !important;
}
.pdt-60 {
  padding-top: 60px !important;
}

ul.popup_menu {
  display: block;
  width: 180px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  top: 130%;
  box-shadow: 0px 0px 10px #000;
  min-height: 200px;
  visibility: hidden;
}

ul.popup_menu li a {
  border: none;
  display: block;
  margin: 5px 0px;
  font-size: 14px;
  font-weight: 500;
}

ul.dropdown-menu {
  border: 1px solid #01d676;
  padding: 0;
}

ul.dropdown-menu li a {
  border: none !important;
}

.box-shadow {
  box-shadow: 0px 0px 20px #000000;
}

.pass_con_pass {
  top: 10px;
}

.red-alert p,
.green-alert p {
  background: red;
  position: absolute;
  top: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  width: 500px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 0px 20px #000000a6;
}

.green-alert p {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

/* profile page  */

.details-box {
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0px 0px 15px #00000091;
  transition: 0.3s all ease;
  background: #222339;
}

.details-box:hover {
  box-shadow: none;
}

.green-bg-box-shadow:hover {
  box-shadow: 0px 0px 10px #01d676;
}

.mt-100 {
  margin-top: 100px;
}

.not-active-alert {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  border-radius: 5px;
  text-align: center;
}

.not-active-alert h3 {
  margin: 0;
  padding: 10px;
  font-size: 25px;
}

.d-b-title i {
  font-size: 25px;
}

/* HISTORY  */

.history {
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 10px 0px;
  border-radius: 10px;
}

/* @keyframes move-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000%);
  }
} */
.history_item {
  text-align: center;
  width: 220px; /* Slightly increased width for better layout */
  height: 50px; /* Increased height for a more balanced look */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-radius: 8px; /* Rounded corners for a modern look */
  margin: 0px 12px;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%); /* Gradient background for depth */
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(1, 214, 118, 0.5); /* Subtle border for sleekness */
  padding: 0px 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for a floating effect */
  color: #fff; /* White text for contrast */
  font-family: 'Poppins', sans-serif; /* Modern and clean font */
  font-weight: 500;
  letter-spacing: 0.5px; /* Slightly spaced letters for sharpness */
  cursor: pointer; /* Pointer effect for interactivity */
}

.history_item:hover {
  background: linear-gradient(135deg, #01d676, #00b469); /* Smooth color change on hover */
  box-shadow: 0px 8px 20px rgba(1, 214, 118, 0.4); /* Glow effect */
  transform: translateY(-3px); /* Slight movement upward */
  border: 1px solid #01d676;
}

.history_name p {
  font-size: 10px;
  margin: 0;
}

.history_amount p {
  font-size: 11px;
  margin: 0;
}

.history_amount {
  height: 100%;
  text-align: center;
  padding: 5px 10px;
  border-radius: 0px 3px 3px 0px;
  font-family: arial;
  display: flex;
  align-items: center;
}

.history_amount p {
  font-size: 16px;
  color: #fff;
  font-weight: 600 !important;
}

.history_name {
  width: 200px;
}

.history_img img {
  border-radius: 50%;
}
.history_img {
  width: 75px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  border-radius: 3px 0px 0px 3px;
}

.history_img img {
  width: 100%;
  height: 100%;
}

/* ==================================================== */

/* earn page  */

.page-title h2 {
  font-size: 30px;
  color: #01d676;
  font-weight: 400;
  margin-top: 20px;
}

@keyframes borderAnimation {
  0% {
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
  }
  25% {
    border-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
  }
  50% {
    border-color: #0000ff;
    box-shadow: 0 0 10px #0000ff;
  }
  75% {
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
  }
  100% {
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
  }
}

.offerwall-items-box {
  width: 140px;
  height: 250px;
  background: linear-gradient(135deg, #00e699, #0a0a39);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: 3px solid;
  animation: borderAnimation 3s linear infinite;
  position: relative;
  overflow: hidden;
}

/* Gradient Border Effect */
.offerwall-items-box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff00ff);
  z-index: -1;
  border-radius: 14px;
  animation: borderAnimation 3s linear infinite;
}

/* Hover Effect */
.offerwall-items-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.5);
}


.cashout-items-box {
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 100px;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 0px 15px #00000091;
  transition: 0.3 all ease;
  -webkit-transition: 0.3 all ease;
  -moz-transition: 0.3 all ease;
  -ms-transition: 0.3 all ease;
  -o-transition: 0.3 all ease;
}

.cashout-items-box:hover {
  box-shadow: none;
}

/* হোভার ইফেক্ট (গ্লো এবং কালার চেঞ্জ) */
.offerwall-items-box:hover {
  background: linear-gradient(135deg, #ff5722, #0a0a39);
  color: #fff;
  box-shadow: 0px 0px 25px #ff5722;
  transform: scale(1.05);
}

/* ইননার গ্লো ইফেক্ট */
.offerwall-items-box::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  transition: 0.4s ease;
  opacity: 0;
}

.offerwall-items-box:hover::before {
  opacity: 1;
  transform: scale(1.5);
}

/* ইমেজ ডিজাইন */
.offerwall-items-box img {
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

/* হোভার করলে ইমেজ এনিমেশন */
.offerwall-items-box:hover img {
  transform: scale(1.1);
}

/* শ্যাডো ডিজাইন */
.offerwall-items-box:active {
  box-shadow: 0px 0px 30px #ff0000;
  transform: scale(0.98);
}

.coming-soon {
  width: 60%;
  height: 80%;
  background: #222339;
  color: #fff;
  box-shadow: 0px 1000px 1000px 1000px #000000a6;
  border-radius: 5px;
  padding: 10px 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  gap: 20px;
}

.widthraw-date {
}

.widthraw-date {
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
  margin-left: 8px;
  width: 60%;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}

.widthraw-date p {
  margin: 0;
  padding: 0;
}

.form-body {
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  width: 450px;
  background: #222339;
}

.com-body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  width: 100%;
  padding-top: 100px;
}

.com-input.form-control {
  color: #fff !important;
  outline: none;
  border: none;
  padding: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: #b4bcb23d;
}

.com-input.form-control::placeholder {
  transition: all 0.3s ease;
  color: #ffffff50;
  font-size: 18px;
}

/* INPUT FOCUS  */

.com-input.form-control:focus {
  transition: all 0.3s ease;
  outline: none !important;
  border: none !important;
  box-shadow: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.custom-dark {
  background: #222339 !important;
}

/* custom table class  */

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #222339;
  --bs-table-border-color: #222339;
  --bs-table-striped-bg: #222339;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #222339;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: #dedee1;
}

.search {
  width: 380px;
  margin: 15px auto;
}

.custom-search-input {
  color: #fff !important;
  outline: none;
  border: none;
  padding: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
  -webkit-transition: ;
  -moz-transition: ;
  -ms-transition: ;
  -o-transition: ;
  background: #b4bcb23d;
}

.custom-search-input::placeholder {
  color: #000000;
}

.custom-search-input:focus {
  outline: none !important;
  border: none !important;
  box-shadow: 0px 0px 20px #090910;
}

.cursor-pointer {
  cursor: pointer !important;
}

.bg-transparent {
  background: #222339 !important;
}

#all-users-popup {
  font-size: 12px !important;
  box-sizing: border-box;
}

.all-user {
  min-height: 90vh;
  overflow: auto;
  max-height: 92.5vh;
}

.table > tbody {
  vertical-align: middle !important;
}

.notice-wm {
  margin: 10px 0px;
  color: red;
  font-weight: 500;
  text-align: center;
}

.bg-wmf {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 60vh;
}

.input-group input,
.input-group textarea {
  border: none;
  margin: 5px 0px;
  margin-bottom: 5px;
  height: 50px;
  font-size: 16px;

  color: #fff !important;
  outline: none;

  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: #2325233d;
}

.input-group textarea {
  min-height: 100px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #8f968fe8;
}

.form-control:focus {
  background-color: #776f6f3d !important;
}

.input-group input[type="file"] {
  background: #141523;
  height: 35px;
  padding: 6px 11px;
}

.input-group input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.form-group i {
  color: #424141;
  z-index: 999999999;
  position: absolute;
  top: 16px;
  right: 10px;
  cursor: pointer;
}

.fa-eye-slash {
  display: none;
}

#pwc,
#pwr,
#pwref {
  background: #039241;
  padding: 5px 7px;
  border-radius: 3px;
  font-size: 16px;
}

#pwr {
  background: #eb3305;
}

#pwref {
  background: #e4b005;
}

.msg-pending p {
  position: absolute;
  color: #fff;
  right: 15px;
  text-align: center;
  top: 120px;
  border-radius: 3px;
  padding: 15px;
  margin: 0;
  font-size: 14px;
}

.scroll-table {
  max-height: 70vh;
  min-height: 50vh;
}

.scroll-table {
  overflow: auto;
  /* Enable scrolling */
  overflow-y: scroll;
  /* Vertical scrollbar only */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer */
}

.scroll-table::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.scroll-table::-moz-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu-l {
  inset: 0px 0px auto auto !important;
  width: 300px;
  font-size: 13px;
  min-height: 100px;
  max-height: 70vh;
  overflow-y: scroll !important;
  padding: 20px 0px;
}

.dropdown-menu li p {
  color: #fff !important;
  text-wrap: wrap;
  gap: 5px;
}

.dropdown-menu li p:hover {
  color: #fff !important;
  background: transparent;
}

.no-content-icon::after {
  content: none !important;
}

p.count-nmbr {
  display: inline;
  position: absolute;
  top: 0px;
  right: 12px;
  font-size: 14px;
}

.view-all-noti {
  font-size: 12px !important;
  text-align: center;
  margin: 5px 0px;
}

span.time-noti-v {
  font-size: 12px;
  color: #8c8686;
}

.fs-13 {
  font-size: 13px !important;
}

.no-notify {
  margin-top: 20px !important;
  font-size: 14px;
}

.users-details-table > .user-details-line {
  border: 1px solid #6c5b5b6e;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0px;
}

.users-details-table > .user-details-line p {
  margin: 0;
  padding: 0;
  color: #ffffff !important;
}

.users-edit-form .input-group input {
  color: #ffffff !important;
  font-size: 14px !important;
  height: 40px;
}

.users-edit-form .input-group input:focus {
  background: #141523;
}

.users-edit-form .input-group label p {
  margin: 0;
  padding: 0;
}

.user-edt-form-select select {
  background: #141523 !important;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}

.user-edt-form-select select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

/*.offerwall-box-popup-offers {*/

/*    padding: 30px;*/

/*}*/

.offer-box-popup > .custom-cross-design {
  color: white;
  background: red;
  padding: 3px 3px 3px 8px;
  border-radius: 3px;
  text-align: center;
}

.offerwall-box-popup-offers > iframe {
  margin: auto;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.admin-edit-btn {
}

.admin-edit-btn a {
  padding: 10px 20px;
  border-radius: 5px;
}

.add-offerwall-form-body {
  background: #222339;
  margin: 10px auto;
}

/* .postback-body {
  background: #03030370;
} */

/* alert notification style  */

#notification-container {
  position: fixed;
  top: 40px;
  right: 20px;
  width: 350px;
  z-index: 999999999;
}

.notification {
  display: flex;
  align-items: center;
  backdrop-filter: blur(20px);
  background: #222339;
  color: white;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease, margin 0.5s ease,
    height 0.5s ease, padding 0.5s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(20px);
}

.notification.hide {
  opacity: 0;
  transform: translateY(-20px);
  margin: 0;
  height: 0;
  padding: 0;
}

.notification-icon {
  margin-right: 15px;
  font-size: 24px;
}

.notification-content {
  flex: 1;
}

.notification-close {
  margin-left: 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

.notification-close:hover {
  color: #ff6b6b;
}

/* alert notification style  */

/* timeline */

/* Hide scrollbar*/

/*================= timeline end=============*/

.taskbox-tite {
  background: #0387d3;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

ul.home-task li {
  background: #141523;
  margin: 10px 0px;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 400;
}

ul.home-task {
  padding: 10px;
  display: inline-block;
  max-height: 233px;
  overflow: auto;
  width: 100%;
}

/*home-offerwall-items*/

.home-offerwall-items {
  gap: 10px;
  max-height: 350px;
  overflow: auto;
}

/*home-offerwall-items*/

.leader-board-box {
  max-height: 350px;
  overflow: auto;
  padding: 20px;
  margin-bottom: 100px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px #000;
}

.leader-board-box table th {
  text-align: center;
  background: #141523;
  margin: 10px 0px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  border-bottom: none;
  font-weight: 400;
}

.leader-board-box table tr td {
  text-align: center;
  background: #141523;
  margin: 10px 0px;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  border-bottom: none;
}

.leader-board-box ul li h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.leader-board-box > .scroll-table {
  overflow: auto;
  min-height: auto;
}

.right-copy {
  text-align: end;
}

.mobile-notifications {
  display: none;
}

.resbtn.btn.custom-btn {
  padding: 5px 10px;
  font-size: 12px !important;
}

.signup-alert {
  display: none;
}

.res {
  display: none;
}

.notify-body-scroll {
  height: 70vh !important;
  overflow: scroll;
  overflow-x: hidden;
}

.hide-important {
  display: none !important;
}

.offer-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: #222339;
  width: 100%;
  height: 100%;
}
.pt-60 {
  padding-top: 48px !important;
}

/* left nav  */
.left-nav {
  height: 100vh;
  position: fixed;
  width: 15%;
  left: 0;
  top: 55px;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%); /* Gradient background for depth */
  border-right: 1px solid rgba(34, 35, 57, 0.8); /* Slightly transparent border */
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3); /* Soft shadow on the right */
  border-top-right-radius: 10px; /* Smooth rounded edge on the top-right */
  border-bottom-right-radius: 10px; /* Smooth rounded edge on the bottom-right */
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.left-nav:hover {
  background: linear-gradient(135deg, #1f2235, #32344f); /* Slightly lighter gradient on hover */
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5); /* Stronger shadow effect */
  transform: translateX(2px); /* Slight movement for interactivity */
}

.left-nav ul {
  display: block;
  margin: 20px 0;
  padding: 0;
}
.left-nav li {
  display: block;
  margin: 0;
  padding: 0;
}
.left-nav li a {
  color: #fff;
  font-size: 12px !important;
  padding: 15px 10px !important;
  border: none !important;
  font-weight: 500;
  border-radius: 5px;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
  margin: 0px 10px;
  display: block;
}
.left-nav li a i {
  color: #01d676;
}
.right-body {
  padding: 0 15px !important;
  margin-left: 15%;
  padding-bottom: 0px !important;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}
.demo-offer-boxes {
  margin: 50px 0px;
  transform: inf;
  -webkit-transform: inf;
  -moz-transform: inf;
  -ms-transform: inf;
  -o-transform: inf;
}
.demo-offer-boxx {
  width: 130px;
  height: 175px;
  background: linear-gradient(to bottom, #FFB6C1, #FF69B4, #8A2BE2, #00CED1);
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #183b7f;
  -webkit-transition: 0.3s all ease;
  border-radius: 10% 10% 0 0;
  border-top-left-radius: 10%;
  border-top-right-radius: 10%;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.demo-offer-boxx:hover {
  border-bottom: 3px solid #ff0000;
}
.demo-offer-box {
  width: 130px;
  height: 175px;
  background: linear-gradient(to bottom, #FF6F61, #D4A5A5, #8C8C8C, #2E3A8C);
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #183b7f;
  -webkit-transition: 0.3s all ease;
  border-radius: 10% 10% 0 0;
  border-top-left-radius: 10%;
  border-top-right-radius: 10%;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.demo-offer-box:hover {
  border-bottom: 3px solid #e5bd00;
}
.demo-offer-img {
  text-align: center;
}
.demo-offer-img img {
  width: 70px !important;
  height: 70px;
  border-radius: 5px;
  margin: 0 auto;
}
.demo-offer-title h5,
.demo-offer-price h5 {
  font-size: 10px;
  font-weight: 400 !important;
  margin: 5px 0px;
}
.demo-offer-p p {
  font-size: 9px;
  margin: 5px 0px;
  color: #ffff00;
}

.demo-offer-title h2 {
  margin: 50px 0px;
}
.demo-offer-title h2 {
  position: relative;
}
.demo-offer-title h2::before {
  content: "";
  position: absolute;
  background: #e5bd00;
  width: 40%;
  height: 3px;
  bottom: -15px;
  left: 0;
  border-radius: 5px;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: -80px;
  font-size: 20px;
  right: 50px;
  background: #01d676;
  padding: 3px 5px;
  border-radius: 5px;
}
.owl-next {
  right: 10px;
}

.country-nav {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  background: #141523;
  padding: 15px 20px;
  text-align: center;
  width: 90%;
  margin: 20px auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.left-nav {
  display: none;
}
.left-nav ul li a:hover {
  background: #00ff8c85;
}
.mtm-100 {
  margin-top: -200px !important;
}
.left-user-nav {
  background: #141523;
  padding: 15px 20px;
  text-align: center;
  width: 90%;
  margin: 20px auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* ============================================== */
/* mobile nav */
.mobile-nav ul li a {
  padding: 7px 20px;
  display: block;
  margin: 0;
  text-align: center;
  background: #222339;
  color: #fff;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #332958;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.mobile-nav {
  display: none;
  background: #222339;
  position: fixed;
  width: 100%;
  height: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 0;
  z-index: 999 !important;
  border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -ms-border-radius: 5px 5px 0px 0px;
  -o-border-radius: 5px 5px 0px 0px;
}
.bg-blue {
  background: #222339;
}
.page-title.demo-offer-title h2 {
  font-size: 22px;
}
.accordion-button {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  color: #fff !important;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  color: #fff !important;
}
.accordion-body {
  background: linear-gradient(to bottom, #669999 0%, #9900cc 100%);
  color: #fff !important;
}
.member-box {
  padding: 30px 0px;
  border-radius: 10px;
  text-align: center;
  background-image: url('https://images.rawpixel.com/image_700/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvbHIvdjEwMTYtYy0wOF8xLWtzaDZtemEzLmpwZw.jpg');
}
.member-box h2,
.member-box h4 {
  font-size: 22px;
}
.member-box h4 {
  margin-top: 20px;
}
.form-control.mb-2:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none;
}

.slider-btn {
  display: inline-block;
}
.slider-btn i {
  font-size: 20px;
}
@media print {
  body {
    visibility: hidden;
  }

  .print-content,
  .print-content * {
    visibility: visible;
  }
  .print-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
.f-14 {
  font-size: 14px !important;
}
.country-nav img {
  width: 30px;
  height: 20px;
}
.reset-title h2 {
  font-size: 22px;
}
.top-footer-paragraph img {
  width: 200px;
  height: auto;
}
.profile-img {
  width: 235px;
  height: 235px;
  margin: auto;
}
.profile-img {
  background-size: cover !important;
  background-position: top center !important;
  border: 3px solid #01d676;
  border-radius: 50%;
  background-repeat: no-repeat !important;
}
.red-icon i,
.green-icon i {
  color: #c20909 !important;
  padding: 3px 5px;
  margin-left: 10px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.green-icon i {
  color: #01d676 !important;
}
.pagination {
  margin-top: 20px;
  justify-content: center;
}
ul.pagination li a {
  border: none;
  color: #01d676;
  background: #222339;
}

.how-box {
  border-radius: 5px;
  padding: 10px;
  margin: 20px 0px;
}
.how-icon i {
  font-size: 30px;
  margin: 10px 0px;
}
.how-title {
  margin: 10px 0px;
}
.how-para {
  margin: 10px 0px;
}
.green-icon i {
  color: #fff !important;
}
.offer-pad {
  padding: 10px 10px 5px 20px;
  padding-top: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  padding-top: 1px;
  border-top: 1px solid #01d676;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
}
.res-social li a {
  background: none !important;
  padding: 10px 0 !important;
}
.res-social li a i {
  font-size: 30px;
}

.pagination {
  margin-top: 20px;
  justify-content: center;
}
ul.pagination li a {
  border: none;
  color: #24e477;
  background: #222339;
}
.refferal_link {
  width: 60%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.dark-input > input.form-control,
.dark-input > textarea {
  background: #141523 !important;
}
.spinner {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(82, 0, 255, 0) 0deg,
    #01d676 360deg
  );
  animation: spin 2s infinite linear;
  margin-top: 30px;
}
.spinner::before {
  content: "";
  border-radius: 50%;
  width: 80%;
  height: 80%;
  background-color: #222339;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.inline-block {
  font-family: "Poppins", sans-serif;
  display: inline-block;
}
.offerwall-action-form > .form-check {
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin: 10px 15px;
  font-size: 16px;
}
.glow-bg {
  position: relative;
  min-height: 380px;
  background: #222339;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 30px #0000006b;
  overflow: hidden;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}
.after-hero-content {
  position: relative;
  z-index: 1;
}
.glow-bg::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 600%;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  margin: auto;
  background: linear-gradient(45deg, #05e8ff, #00ffff);
  animation: rotate 4s linear infinite;
  -webkit-animation: rotate 4s linear infinite;
}
.glow-bg::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #222339;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.left-user-nav h5,
.country-nav h5 {
  font-size: 16px;
}
.top-footer-nav i {
  font-size: 22px;
  background: #01d676;
  padding: 5px;
  border-radius: 5px;
}
.offer-demo-list {
  background: #222339;
}

.demo-offer-img-task {
  width: 100px;
  height: 100px;
  margin: auto;
}
.demo-offer-img-task img {
  width: 100%;
}
.demo-offer-box-task {
  width: 130px;
  background: #141523;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.gold {
  color: #ffd700;
}
.home-boxs {
  display: flex;
  justify-content: space-evenly;
}
.home-box {
  width: 130px;
  background: linear-gradient(to bottom, #663300 0%, #003366 100%);
  padding: 3px;
  border-radius: 7px;
  position: relative;
  border-top: 1px solid #01d676;
  border-bottom: 1px solid #01d676;
  height: 220px;
  overflow: hidden;
  box-shadow: 0 0 20px #0000007d;
}
.home-box-img {
  width: 100%;
  height: 130px;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 5px;
}
.home-box-img img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.home-box-title h2 {
  font-size: 12px;
  margin: 0;
  padding: 0 5px;
  line-height: 20px;
}
.home-box-para p {
  font-size: 11px;
  margin: 0;
  padding: 0 5px;
}
.home-box-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}
.home-box-price h2 {
  font-size: 12px;
  margin: 0;
  padding: 0;
}
.home-box-price h6 {
  font-size: 11px;
}
.home-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-signin {
  padding: 50px;
}
