/* 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;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: hsl(var(--section-bg));
  border-radius: 5px;
  box-shadow: 0 0 25px hsl(var(--section-bg));
}

.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: #fff;
  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: 70%;
  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;
  }
}



/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  background-color: transparent;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}
.select2-container {
  height: 41px !important;
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: hsl(var(--white)/.1) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: hsl(var(--white)/.1) !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid hsl(var(--white)/.1);
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}

.select2-container--default .select2-selection--single {
  border-color: hsl(var(--white)/.1) !important;
  border-width: 2px !important;
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}
.select2-container--default .select2-selection--single {
  background-color: hsl(var(--section-bg-two)) !important;
  border: 0 !important;
  min-height: 41px;
}
.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--section-bg)) !important;
  color: hsl(var(--text-color)) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single, .select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}
.select2-dropdown {
  background: hsl(var(--section-bg-two)) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid hsl(var(--white)/.1) !important;
  background: transparent !important;
  color: hsl(var(--white)) !important;
}
.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--main));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--main));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

/* Brand color system refresh */
:root {
  --color-bg: #f5f6f7;
  --color-primary: #09438f;
  --color-primary-hover: #073674;
  --color-primary-soft: #e8f0fb;
  --color-secondary: #c46b04;
  --color-secondary-soft: #fff4e6;
  --color-card: #ffffff;
  --color-card-alt: #fafafa;
  --color-border: #e5e7eb;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-subtle: #9ca3af;
}

body {
  background: var(--color-bg) !important;
  color: var(--color-text) !important;
}

p,
.text-muted,
.small,
small {
  color: var(--color-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.dashboard-table__title,
.transaction-wrapper__title,
.transaction-sidebar__title,
.custom--card .card-header .title {
  color: var(--color-text) !important;
}

a,
.text--base,
.dashboard-inline-link {
  color: var(--color-primary);
}

a:hover,
.text--base:hover,
.dashboard-inline-link:hover {
  color: var(--color-primary-hover);
}

.bg--base,
.badge--base {
  background: var(--color-primary) !important;
  color: #ffffff !important;
}

.btn--base,
.btn--base.btn-two,
.btn--primary {
  background: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(9, 67, 143, .18);
}

.btn--base::before,
.btn--base::after {
  display: none !important;
}

.btn--base:hover,
.btn--base.btn-two:hover,
.btn--primary:hover {
  background: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
  color: #ffffff !important;
}

.btn--secondary,
.btn--warning {
  background: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: #ffffff !important;
}

.btn-outline--base,
.btn-outline--primary {
  background: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.btn-outline--base:hover,
.btn-outline--primary:hover {
  background: var(--color-primary) !important;
  color: #ffffff !important;
}

.header,
.header.fixed-header {
  background: #ffffff !important;
  border-bottom: 1px solid var(--color-border) !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
}

.nav-menu .nav-item .nav-link,
.dropdown-menu__link,
.footer-menu__link {
  color: #374151 !important;
}

.nav-menu .nav-item.active .nav-link,
.nav-menu .nav-item:hover .nav-link,
.dropdown-menu__link:hover {
  color: var(--color-primary) !important;
}

.dropdown-menu {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
}

.custom--card,
.dashboard-table,
.transaction-wrapper,
.transaction-sidebar,
.custom--modal .modal-content,
.responsive-filter-card {
  background: var(--color-card) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05) !important;
}

.custom--card .card-header,
.custom--card .card-footer {
  border-color: var(--color-border) !important;
}

.custom--card .card-body,
.table-card,
.transaction-wrapper__content,
.transaction-sidebar__wrapper {
  background: var(--color-card) !important;
  color: var(--color-text) !important;
}

.dashboard-section::before {
  background: linear-gradient(180deg, rgba(9, 67, 143, .06), rgba(245, 246, 247, 0)) !important;
}

.dashboard-section__shape {
  opacity: .08;
}

.form--label {
  color: #374151 !important;
}

.form--control,
.form-control,
.form-select,
.select2-container--default .select2-selection--single {
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  color: var(--color-text) !important;
}

.form--control:focus,
.form-control:focus,
.form-select:focus,
.select2-container--open .select2-selection.select2-selection--single {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 .2rem rgba(9, 67, 143, .15) !important;
  color: var(--color-text) !important;
}

.form--control::placeholder,
.form-control::placeholder {
  color: var(--color-subtle) !important;
}

.table,
.table-two {
  color: var(--color-text) !important;
}

.table thead th,
.table-two thead th {
  background: #f9fafb !important;
  color: #374151 !important;
  border-color: var(--color-border) !important;
}

.table tbody tr,
.table-two tbody tr {
  background: #ffffff !important;
  border-color: var(--color-border) !important;
}

.table tbody tr:hover,
.table-two tbody tr:hover {
  background: #f3f4f6 !important;
}

.badge--warning,
.badge--orange {
  background: rgba(196, 107, 4, .14) !important;
  color: var(--color-secondary) !important;
}

.badge--success {
  background: rgba(22, 163, 74, .14) !important;
  color: #15803d !important;
}

.badge--danger {
  background: rgba(220, 38, 38, .14) !important;
  color: #b91c1c !important;
}

.badge--info,
.badge--primary {
  background: rgba(9, 67, 143, .14) !important;
  color: var(--color-primary) !important;
}

.border--base {
  border-color: var(--color-primary) !important;
}

.gradient-text {
  background-image: linear-gradient(135deg, var(--color-primary), #0f5abf) !important;
}

/* Complete 9ittePay light brand redesign */
:root {
  --brand-bg: #f5f6f7;
  --brand-primary: #09438f;
  --brand-primary-dark: #062f66;
  --brand-primary-soft: #eaf2fc;
  --brand-secondary: #c46b04;
  --brand-secondary-dark: #934f02;
  --brand-secondary-soft: #fff1df;
  --brand-surface: #ffffff;
  --brand-text: #111827;
  --brand-muted: #6b7280;
  --brand-subtle: #9ca3af;
  --brand-border: #e5e7eb;
  --brand-input-border: #d1d5db;
  --brand-shadow-sm: 0 8px 20px rgba(17, 24, 39, .06);
  --brand-shadow-md: 0 16px 40px rgba(17, 24, 39, .08);
  --brand-shadow-lg: 0 26px 70px rgba(9, 67, 143, .14);
  --brand-radius-sm: 12px;
  --brand-radius-md: 18px;
  --brand-radius-lg: 28px;
}

html,
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(9, 67, 143, .08), transparent 28%),
    radial-gradient(circle at 95% 10%, rgba(196, 107, 4, .08), transparent 24%),
    var(--brand-bg) !important;
  color: var(--brand-text) !important;
}

body,
p,
li,
span,
label,
.text,
.desc,
.section-heading__desc,
.banner-content__desc,
.blog-item__desc,
.footer-item__desc,
.custom--card .card-body .card-text {
  color: var(--brand-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.section-heading__title,
.banner-content__title,
.blog-item__title,
.footer-item__title,
.dashboard-table__title,
.transaction-tab__title,
.transaction-wrapper__title,
.transaction-sidebar__title {
  color: var(--brand-text) !important;
}

a,
.text--base,
.base-color,
.blog-details__share-title,
.blog-details .blog-item__text-icon,
.search-box__button,
.countdown,
.top-btn:hover {
  color: var(--brand-primary) !important;
}

a:hover,
.text--base:hover,
.base-color:hover {
  color: var(--brand-secondary) !important;
}

.bg--base,
.badge--base,
.scroll-top,
.preloader .loader-circle-9 span,
.currency-list::-webkit-scrollbar-thumb {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
}

.section-bg,
.section-bg-two,
.banner-section,
.blog,
.crypto-section,
.mobile-section,
.work-section,
.wallet-information-section,
.setting-section,
.contact-section,
.policy-section,
.dashboard-section {
  background: transparent !important;
}

.section-padding,
.pt-120,
.pb-120 {
  position: relative;
}

.section-heading {
  max-width: 760px;
}

.section-heading__title {
  letter-spacing: -.03em;
}

.section-heading__desc {
  color: var(--brand-muted) !important;
}

.header,
.header.fixed-header {
  background: rgba(255, 255, 255, .92) !important;
  border-bottom: 1px solid rgba(229, 231, 235, .9) !important;
  box-shadow: var(--brand-shadow-sm) !important;
  backdrop-filter: blur(18px);
}

.navbar-brand.logo img,
.footer-item__logo img {
  max-height: 48px;
  object-fit: contain;
}

.nav-menu .nav-item .nav-link,
.login-registration-list__link,
.dropdown-menu__link,
.footer-menu__link {
  color: var(--brand-text) !important;
  font-weight: 700;
}

.nav-menu .nav-item.active .nav-link,
.nav-menu .nav-item:hover .nav-link,
.login-registration-list__link:hover,
.dropdown-menu__link:hover,
.footer-menu__link:hover {
  color: var(--brand-primary) !important;
}

.dropdown-menu {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: 16px !important;
  box-shadow: var(--brand-shadow-md) !important;
  padding: 10px !important;
}

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

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--brand-primary-soft) !important;
}

.header-button,
.navbar-toggler {
  border: 1px solid var(--brand-border) !important;
  background: var(--brand-surface) !important;
  color: var(--brand-primary) !important;
  box-shadow: var(--brand-shadow-sm);
}

.btn,
button {
  border-radius: 12px;
}

.btn--base,
.btn--base.btn-two,
.btn--primary,
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), #0f5abf) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(9, 67, 143, .22) !important;
}

.btn--base::before,
.btn--base::after {
  display: none !important;
}

.btn--base:hover,
.btn--base.btn-two:hover,
.btn--primary:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-dark), var(--brand-primary)) !important;
  border-color: var(--brand-primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.btn--secondary,
.btn--warning,
.btn-warning {
  background: linear-gradient(135deg, var(--brand-secondary), #e98512) !important;
  border-color: var(--brand-secondary) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(196, 107, 4, .18) !important;
}

.btn-outline--base,
.btn-outline--primary,
.btn-outline-primary {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-primary) !important;
  color: var(--brand-primary) !important;
  box-shadow: none !important;
}

.btn-outline--base:hover,
.btn-outline--primary:hover,
.btn-outline-primary:hover {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
}

.custom--card,
.card,
.dashboard-table,
.table-card,
.responsive-filter-card,
.custom--modal .modal-content,
.modal-content,
.transaction-wrapper,
.transaction-sidebar,
.currency-wrapper,
.cookies-card,
.blog-sidebar__bottom,
.blog-item,
.crypto-item,
.contact-info,
.account-form,
.gateway-card,
.payment-item,
.bill-card,
.product-card {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--brand-radius-md) !important;
  box-shadow: var(--brand-shadow-sm) !important;
  color: var(--brand-text) !important;
}

.custom--card:hover,
.blog-item:hover,
.crypto-item:hover,
.bill-card:hover,
.product-card:hover,
.gateway-card:hover {
  box-shadow: var(--brand-shadow-md) !important;
}

.custom--card .card-header,
.custom--card .card-footer,
.card-header,
.card-footer,
.transaction-sidebar__title,
.currency-wrapper__top {
  background: #f9fafb !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-text) !important;
}

.custom--card .card-body,
.card-body,
.transaction-wrapper__content,
.transaction-sidebar__wrapper {
  background: var(--brand-surface) !important;
  color: var(--brand-text) !important;
}

.form--label,
.form-label,
label.required,
.address .form--label {
  color: var(--brand-text) !important;
  font-weight: 700;
}

.form--control,
.form-control,
.form-select,
input,
select,
textarea,
.select2-container--default .select2-selection--single,
.select2-dropdown,
.currency-search-form .form--control,
.address .form--control {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-input-border) !important;
  color: var(--brand-text) !important;
  border-radius: 12px !important;
}

.form--control:focus,
.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus,
.select2-container--open .select2-selection.select2-selection--single {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 .22rem rgba(9, 67, 143, .14) !important;
  outline: 0 !important;
}

.form--control::placeholder,
.form-control::placeholder,
input::placeholder,
textarea::placeholder,
.currency-search-form .form--control::placeholder {
  color: var(--brand-subtle) !important;
}

.select2-results__option--selectable {
  color: var(--brand-text) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--brand-primary-soft) !important;
  color: var(--brand-primary) !important;
}

.table,
.table-two {
  --bs-table-bg: var(--brand-surface);
  --bs-table-color: var(--brand-text);
  color: var(--brand-text) !important;
  border-color: var(--brand-border) !important;
}

.table thead th,
.table-two thead th,
table thead th {
  background: #f9fafb !important;
  color: var(--brand-text) !important;
  border-color: var(--brand-border) !important;
}

.table tbody td,
.table tbody th,
.table-two tbody td,
.table-two tbody th,
table tbody td {
  background: var(--brand-surface) !important;
  color: var(--brand-muted) !important;
  border-color: var(--brand-border) !important;
}

.table tbody tr:hover td,
.table-two tbody tr:hover td {
  background: var(--brand-primary-soft) !important;
}

.badge--warning,
.badge--orange,
.text--warning {
  color: var(--brand-secondary) !important;
}

.badge--warning,
.badge--orange {
  background: rgba(196, 107, 4, .14) !important;
}

.badge--primary,
.badge--info {
  background: rgba(9, 67, 143, .14) !important;
  color: var(--brand-primary) !important;
}

.badge--success {
  background: rgba(22, 163, 74, .14) !important;
  color: #15803d !important;
}

.badge--danger {
  background: rgba(220, 38, 38, .14) !important;
  color: #b91c1c !important;
}

.banner-section {
  padding-top: 170px;
}

.banner-section::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(9, 67, 143, .16), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(196, 107, 4, .12), transparent 26%) !important;
}

.banner-content__title {
  color: var(--brand-text) !important;
  letter-spacing: -.05em;
}

.banner-content__desc {
  color: var(--brand-muted) !important;
}

.banner-wrapper {
  border-radius: var(--brand-radius-lg) !important;
  box-shadow: var(--brand-shadow-lg);
}

.banner-wrapper__header,
.transaction-wrapper__title {
  background: linear-gradient(135deg, var(--brand-primary), #0f5abf) !important;
  color: #ffffff !important;
}

.banner-wrapper__header .text,
.banner-wrapper__icon,
.transaction-wrapper__title {
  color: #ffffff !important;
}

.banner-wrapper__content {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-border);
  border-top: 0;
  border-radius: 0 0 var(--brand-radius-lg) var(--brand-radius-lg) !important;
}

.exchange-form,
.transfer-summery,
.address,
.offer-system .offer-card,
.rate,
.transaction-system__item {
  background: #f9fafb !important;
  border: 1px solid var(--brand-border) !important;
  color: var(--brand-text) !important;
  border-radius: 16px !important;
}

.offer-system .offer-card.active.offer-card,
.offer-system .offer-card:focus.offer-card,
.rate.active.rate {
  background: var(--brand-primary-soft) !important;
  border-color: var(--brand-primary) !important;
  color: var(--brand-primary) !important;
}

.crypto-item {
  display: block;
}

.crypto-item__name,
.crypto-item__number,
.why-best-item.item-four .why-best-item__title,
.currency-list__item .coin-item__name,
.transfer-summery__text,
.transaction-sidebar__content .countdown,
.transaction-sidebar__content .countdown-text,
.address .form--control::placeholder {
  color: var(--brand-text) !important;
}

.crypto-item__text,
.currency-list__item .coin-item__content .text,
.transfer-summery__item .name,
.transaction-sidebar .caption,
.input-note-text {
  color: var(--brand-muted) !important;
}

.why-best-item {
  box-shadow: var(--brand-shadow-sm);
  border: 1px solid rgba(255, 255, 255, .28);
}

.why-best-item.item-one,
.why-best-item.item-two,
.why-best-item.item-three {
  background: linear-gradient(135deg, var(--brand-primary), #0f5abf) !important;
}

.why-best-item.item-three {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)) !important;
}

.why-best-item.item-four {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border);
}

.why-best-item.item-four .why-best-item__desc {
  color: var(--brand-muted) !important;
}

.mobile-section {
  background:
    linear-gradient(135deg, rgba(9, 67, 143, .08), rgba(196, 107, 4, .08)),
    transparent !important;
}

.mobile-section .mobile-item,
.work-item,
.faq-item,
.contact-info__item {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--brand-radius-md);
  box-shadow: var(--brand-shadow-sm);
}

.mobile-section .mobile-item__title,
.work-item__title,
.faq-item__title,
.contact-info__title {
  color: var(--brand-text) !important;
}

.mobile-section .mobile-item__text,
.work-item__desc,
.faq-item__desc,
.contact-info__desc {
  color: var(--brand-muted) !important;
}

.blog-item {
  overflow: hidden;
}

.blog-item__title a {
  color: var(--brand-text) !important;
}

.blog-item__title a:hover {
  color: var(--brand-primary) !important;
}

.social-list__link {
  background: var(--brand-surface) !important;
  border: 1px solid var(--brand-border) !important;
  color: var(--brand-primary) !important;
}

.social-list__link:hover {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

.footer-area {
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 107, 4, .14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eef3f9 100%) !important;
  border-top: 1px solid var(--brand-border);
  color: var(--brand-muted) !important;
}

.bottom-footer {
  border-top: 1px solid var(--brand-border) !important;
}

.bottom-footer-text {
  color: var(--brand-muted) !important;
}

.body-overlay,
.body-overlay-two,
.sidebar-overlay {
  background: rgba(17, 24, 39, .45) !important;
}

.custom--modal .modal-header,
.modal-header {
  border-color: var(--brand-border) !important;
}

.custom--modal .modal-title,
.modal-title {
  color: var(--brand-text) !important;
}

.btn-close,
.close-icon {
  color: var(--brand-muted) !important;
}

.currency-list__item {
  border-top-color: var(--brand-border) !important;
}

.currency-list__item:hover {
  background: var(--brand-primary-soft) !important;
}

.currency-list__item .coin-item__icon {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
}

.payment-item__btn {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-text) !important;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: var(--brand-border) !important;
}

.chat-box,
.chat-box__thread,
.chat-form-inner,
.ticket-reply,
.ticket-reply__body {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-text) !important;
}

.chat-form-file,
.chat-form-input,
.chat-form-submit {
  color: var(--brand-primary) !important;
}

.chat-form-input::placeholder {
  color: var(--brand-subtle) !important;
}

.ticket--btn {
  background: var(--brand-primary-soft) !important;
  border-color: rgba(9, 67, 143, .18) !important;
  color: var(--brand-primary) !important;
}

.ticket--btn:hover {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

.dashboard-section.dashboard-section--rebuild {
  background: var(--brand-bg) !important;
}

.dashboard-section--rebuild .dashboard-main,
.dashboard-section--rebuild .dashboard-sidebar,
.dashboard-section--rebuild .dashboard-welcome-card,
.dashboard-section--rebuild .dashboard-block,
.dashboard-section--rebuild .dashboard-metric-card,
.dashboard-section--rebuild .dashboard-service-card,
.dashboard-section--rebuild .dashboard-category-row,
.dashboard-section--rebuild .dashboard-transaction-row {
  border-color: var(--brand-border) !important;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background: var(--brand-surface) !important;
    border: 1px solid var(--brand-border);
    border-radius: 0 0 22px 22px;
    box-shadow: var(--brand-shadow-md);
    padding: 16px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    background: var(--brand-bg) !important;
  }

  .banner-section {
    padding-top: 105px;
    padding-bottom: 56px;
  }

  .banner-content__title {
    font-size: 2rem !important;
  }

  .section-heading__title {
    font-size: 1.8rem;
  }

  .custom--card,
  .card,
  .transaction-wrapper,
  .transaction-sidebar,
  .responsive-filter-card,
  .blog-sidebar__bottom {
    border-radius: 18px !important;
  }

  .table tbody td,
  .table-two tbody td {
    background: var(--brand-surface) !important;
  }

  .footer-wrapper,
  .bottom-footer {
    text-align: center;
  }
}

/* Accessibility contrast safety layer */
:root {
  --brand-success: #16a34a;
  --brand-warning: #f59e0b;
  --brand-danger: #dc2626;
}

.bg-white .text-white,
.bg-light .text-white,
.bg--white .text-white,
.bg--light .text-white,
.card .text-white,
.custom--card .text-white,
.modal-content .text-white,
.dropdown-menu .text-white,
.table .text-white,
.bg-white .text--white,
.bg-light .text--white,
.bg--white .text--white,
.bg--light .text--white,
.card .text--white,
.custom--card .text--white,
.modal-content .text--white,
.dropdown-menu .text--white,
.table .text--white {
  color: var(--brand-text) !important;
}

.bg--base .text-white,
.btn--base .text-white,
.btn--primary .text-white,
.btn-primary .text-white,
.btn--secondary .text-white,
.btn--warning .text-white,
.badge.bg--base,
.badge.bg-primary,
.badge.bg-secondary,
.badge.bg-danger,
.badge.bg-success,
.alert.bg--base,
.alert.bg-primary,
.alert.bg-danger,
.alert.bg-success {
  color: #ffffff !important;
}

.text-muted,
.text--muted,
.text-secondary,
.small,
small,
.help-block,
.form-text,
.invalid-feedback,
.valid-feedback,
.caption,
.subtitle,
.description {
  color: var(--brand-muted) !important;
}

.text-dark,
.text--dark,
.text-black,
.text--black,
.fw-bold,
strong,
b {
  color: var(--brand-text);
}

.link,
.link-color,
.page-link,
.nav-link,
.dropdown-item,
.list-group-item,
.breadcrumb-item a {
  color: var(--brand-primary) !important;
}

.page-link:hover,
.nav-link:hover,
.dropdown-item:hover,
.dropdown-item:focus,
.list-group-item:hover,
.breadcrumb-item a:hover {
  color: var(--brand-primary-dark) !important;
}

.dropdown-item.active,
.dropdown-item:active,
.nav-pills .nav-link.active,
.nav-tabs .nav-link.active,
.page-item.active .page-link {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
}

.page-link {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border) !important;
}

.page-item.disabled .page-link,
.btn:disabled,
.btn.disabled,
button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
.form--control:disabled,
.form-control:disabled,
.form-select:disabled,
.form--control[readonly],
.form-control[readonly] {
  background: #f3f4f6 !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-subtle) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--brand-subtle) !important;
}

.btn-light,
.btn--light,
.btn-outline-light {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-primary) !important;
}

.btn-light:hover,
.btn--light:hover,
.btn-outline-light:hover {
  background: var(--brand-primary-soft) !important;
  border-color: rgba(9, 67, 143, .22) !important;
  color: var(--brand-primary-dark) !important;
}

.btn-outline--secondary,
.btn-outline-secondary {
  background: var(--brand-surface) !important;
  border-color: var(--brand-secondary) !important;
  color: var(--brand-secondary) !important;
}

.btn-outline--secondary:hover,
.btn-outline-secondary:hover {
  background: var(--brand-secondary) !important;
  color: #ffffff !important;
}

.alert {
  border: 1px solid var(--brand-border) !important;
  color: var(--brand-text) !important;
}

.alert-success {
  background: rgba(22, 163, 74, .12) !important;
  border-color: rgba(22, 163, 74, .28) !important;
  color: #166534 !important;
}

.alert-warning {
  background: rgba(245, 158, 11, .14) !important;
  border-color: rgba(245, 158, 11, .3) !important;
  color: #92400e !important;
}

.alert-danger,
.alert-error {
  background: rgba(220, 38, 38, .12) !important;
  border-color: rgba(220, 38, 38, .28) !important;
  color: #991b1b !important;
}

.alert-info {
  background: rgba(9, 67, 143, .1) !important;
  border-color: rgba(9, 67, 143, .24) !important;
  color: var(--brand-primary-dark) !important;
}

.table tbody tr td::before,
.table--responsive--md tbody tr td::before,
.table--responsive--lg tbody tr td::before,
.table--responsive--xl tbody tr td::before,
.table--responsive--xxl tbody tr td::before {
  color: var(--brand-text) !important;
}

.table a:not(.btn),
.table-two a:not(.btn) {
  color: var(--brand-primary) !important;
}

.modal-body,
.modal-body p,
.custom--modal .modal-body,
.custom--modal .modal-body p {
  color: var(--brand-muted) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-results__option,
.select2-title {
  color: var(--brand-text) !important;
}

.select2-subtitle,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--brand-muted) !important;
}

.input-group-text,
.input-group .input-group-text {
  background: #f9fafb !important;
  border-color: var(--brand-input-border) !important;
  color: var(--brand-muted) !important;
}

.form-check-label,
.form-check-label a,
.forgot-password,
.account-form__footer,
.account-form__footer a,
.have-account,
.policy-text,
.gateway-card small,
.payment-item small,
.transaction-sidebar small {
  color: var(--brand-muted) !important;
}

.form-check-input {
  background-color: var(--brand-surface) !important;
  border-color: var(--brand-input-border) !important;
}

.form-check-input:checked {
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
}

.badge,
.status,
.trx-status {
  border-radius: 999px;
  font-weight: 700;
}

.bg-success,
.badge--success.is-solid {
  background: var(--brand-success) !important;
  color: #ffffff !important;
}

.bg-warning,
.badge--warning.is-solid {
  background: var(--brand-warning) !important;
  color: #111827 !important;
}

.bg-danger,
.badge--danger.is-solid {
  background: var(--brand-danger) !important;
  color: #ffffff !important;
}

.bg-info,
.badge--info.is-solid {
  background: var(--brand-primary) !important;
  color: #ffffff !important;
}

.bg-white,
.bg-light,
.bg--white,
.bg--light {
  color: var(--brand-text) !important;
}

.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
  border-color: var(--brand-border) !important;
}

.dashboard-mobile-nav,
.dashboard-mobile-nav__item,
.dashboard-mobile-nav__item span,
.mobile-dashboard-section-head h3,
.mobile-bill-category-card strong,
.mobile-bill-category-card small,
.mobile-market-row,
.mobile-market-row strong,
.mobile-market-row small,
.mobile-market-tab {
  -webkit-text-fill-color: currentColor;
}

.account.login .social-login .social-btn {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
}

.account.login .social-login .social-btn.liginWithEmail {
  background: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(9, 67, 143, .2);
}

.account.login .social-login .social-btn.liginWithEmail:hover,
.account.login .social-login .social-btn.liginWithEmail:focus {
  background: var(--brand-primary-dark) !important;
  border-color: var(--brand-primary-dark) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.account.login .social-login .social-btn.liginWithEmail .social-btn__icon,
.account.login .social-login .social-btn.liginWithEmail .social-btn__icon i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.account.login .social-login .social-btn:not(.liginWithEmail) {
  background: var(--brand-surface) !important;
  border-color: var(--brand-border) !important;
  color: var(--brand-text) !important;
  -webkit-text-fill-color: var(--brand-text) !important;
}

.account.login .social-login .social-btn:not(.liginWithEmail):hover,
.account.login .social-login .social-btn:not(.liginWithEmail):focus {
  background: var(--brand-primary-soft) !important;
  border-color: rgba(9, 67, 143, .28) !important;
  color: var(--brand-primary) !important;
  -webkit-text-fill-color: var(--brand-primary) !important;
}
