/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: hsl(var(--black));
  border-radius: 5px;
  border: 1px solid hsl(var(--white)/0.2);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: hsl(var(--black)) !important;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.license-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.license-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 25, 0.72);
  backdrop-filter: blur(8px);
}

.license-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 32px 28px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  text-align: center;
  animation: popIn 0.35s ease;
}

.license-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: rgba(255,255,255,0.22);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.license-modal__badge {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}

.license-modal__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.license-modal__subtitle {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
}

.license-modal__input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  color: #111827;
}

.license-modal__submit {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  background: #fef3c7;
  color: #111827;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.license-modal__submit:hover {
  transform: translateY(-2px);
}

.license-modal__message {
  min-height: 24px;
  margin-top: 10px;
  font-size: 14px;
  color: #fef3c7;
}

.license-modal__contact {
  margin-top: 12px;
  display: inline-block;
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.avatar img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.avatar.avatar--xl img {
  width: 75px;
  height: 75px;
}

.avatar.avatar--lg img {
  width: 65px;
  height: 65px;
}

.avatar.avatar--md img {
  width: 55px;
  height: 55px;
}

.avatar.avatar--sm img {
  width: 45px;
  height: 45px;
}

.avatar.avatar--xs img {
  width: 35px;
  height: 35px;
}

.user-info__button.no-after::before {
  content: '';
  padding-right: 0;
}

.user-info__button.no-after {
  padding-right: 25px;
}

.verification-code-wrapper {
  background-color: inherit !important;
  background-color: hsl(var(--white)/.1) !important;
  border: none !important;
}

.verification-code::after {
  background-color: #1C1E26 !important;
}

.verification-area label {
  padding: 14px 0;
}

label.required:after {
  content: '*';
  color: hsl(var(--danger)) !important;
  margin-left: 2px;
}


.input-group-text.mobile-code {
  background-color: transparent !important;
  color: hsl(var(--white)/.7);
  border: 1px solid hsl(var(--white)/0.3) !important;
  border-right: none !important;
}

.form-check-input:checked[type=radio] {
  background-image: none !important;
}


.input--group--text {
  background-color: transparent !important;
  color: hsl(var(--white)/.7);
  border: 1px solid hsl(var(--white)/.3) !important;
  border-left: none !important;
}

.image-uploader {
  background-color: hsl(var(--white)/.1) !important
}


.spinner-border {
  font-size: 10px;
  height: 14px;
  width: 14px;
}

.list-group-item {
  background:transparent;
  border: 1px solid hsl(var(--white)/0.1);
  color: hsl(var(--white)/0.6);
}

.list-group-item h6 {
  margin: 0;
  padding: 4px 0;
}

.notify {
  padding: 0 6px;
  border-radius: 50%;
  background: rgb(208, 0, 0);
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.btn.btn--filter {
  padding: 17px 17px;
}

.max-300 {
  max-width: 300px;
}

.btn i {
  margin-right: 3px;
}

.language-box .form--control {
  color: hsl(var(--white));
  line-height: unset;
}

.account-publish-icon {
  font-size: 80px;
}

.verification-code span {
  background: none !important;
  border: 1px solid hsl(var(--white)/.2) !important;
}

.verification-code input {
  color: hsl(var(--white)/.8) !important;
}

.border-bottom {
  border-bottom: 1px solid hsl(var(--white)/.3) !important;
}

.profile-setting-section .profile-setting__sidebar {
  background: hsl(var(--white)/.02);
  height: 100%;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.verification-code input {
  color: hsl(var(--white)) !important;
}

.card-body .border {
  border: 1px solid hsl(var(--white)/0.3) !important;
}

.card-body .text-end {
  border-color: hsl(var(--white)/0.3) !important;
}

.social-login .btn {
  border: 1px solid hsl(var(--white)/.1) !important;
}

.social-login .btn i {
  font-size: 18px;
}

.social-login .btn-facebook {
  background: #1877F2 !important;
}

.social-login .btn-facebook:hover {
  background: #1876f2c7 !important;
}

.social-login .btn-google {
  background: #EA4335 !important;
}

.social-login .btn-google:hover {
  background: #ea4435bd !important;
}

.social-login .btn-linkedin {
  background: #004182 !important;
}

.social-login .btn-linkedin:hover {
  background: #004182b2 !important;
}

.social-media__check.social-dedia__radio .form-check-label {
  border-radius: 50%;
}

.profile-setting__body-header #profile-image {
  display: none;
}

.profile-setting__body-header .profile-image-label {
  height: 25px;
  width: 25px;
  text-align: center;
  line-height: 25px;
  border: 1px solid hsl(var(--white)/.5);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 4px;
  background: hsl(var(--black));
  color: hsl(var(--white));
  cursor: pointer;
}

.profile-setting__thumb.profile-setting__thumb__custom {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: hsl(var(--white)/.1);
  padding: 2px;
}

.listing-search-form .form--control {
  max-width: 400px;
}

.search-control {
  max-width: 400px;
}

.datepicker {
  background-color: hsl(var(--black)) !important;
  color: hsl(var(--white)) !important;
}

.datepicker--cell.datepicker--cell-day:hover {
  background-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
}

.datepicker--nav-action {
  background-color: hsl(var(--white)/.1);
}

.datepicker--nav-action:hover {
  background-color: hsl(var(--base)) !important;
}

.datepicker--nav-action:hover path {
  stroke: hsl(var(--black)) !important;
}

.datepicker--nav-title:hover {
  background-color: hsl(var(--base)) !important;
  color: hsl(var(--black)) !important;
}

.datepicker--pointer {
  background-color: transparent !important;
  border-top: 1px solid hsl(var(--white)/.3) !important;
  border-right: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker.active {
  border: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker--nav {
  border-bottom: 1px solid hsl(var(--white)/.3) !important;
}

.datepicker--nav-title i {
  color: hsl(var(--white)) !important;
}

.datepicker--nav-title:hover i {
  color: hsl(var(--black)) !important;
}

.list-avater-title p {
  color: hsl(var(--white));
}
.list-avater-title:hover p {
  color: hsl(var(--base));
}

.listing-report {
  cursor: pointer;
}

/* --- Preloader --- */
#rajPreloaderOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.raj-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: rajSpin 0.7s linear infinite;
}
@keyframes rajSpin {
  to { transform: rotate(360deg); }
}

/* --- Secret Activation Key Modal --- */
#rajActivationOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999998;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#rajActivationOverlay.active {
  display: flex;
}
.raj-activation-card {
  width: min(100%, 460px);
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.raj-activation-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #3b82f6;
}
.raj-activation-card p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.raj-activation-input {
  width: 100%;
  padding: 12px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
  outline: none;
}
.raj-activation-input:focus {
  border-color: #3b82f6;
}
.raj-activation-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}
.raj-activation-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.raj-link-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.raj-link-wa {
  background: #25d366;
  color: #ffffff !important;
}
.raj-link-web {
  background: #334155;
  color: #ffffff !important;
}

/* --- Theme Switcher Button --- */
#themeSwitchBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.2s ease;
}
#themeSwitchBtn:hover {
  transform: scale(1.1);
}
[data-theme="light"] {
  filter: invert(0.9) hue-rotate(180deg);
}
[data-theme="light"] img, [data-theme="light"] video, [data-theme="light"] iframe, [data-theme="light"] #themeSwitchBtn {
  filter: invert(0.9) hue-rotate(180deg);
}