@font-face {
  font-family: 'roboto', sans-serif;
  src: url(../assets/public/frontend/fonts/Roboto-VariableFont_wdth,wght.ttf) format('truetype-variations');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'roboto', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,p,ul,li,a {
  margin: 0;
  padding: 0;
  font-family: 'roboto', sans-serif;
}

ul {
  list-style: none;
}

:root {
  --primery-color: #4F13AE;
  --primery-color-soft: rgba(79, 19, 174, 15%);
  --accent-dark: rgba(79, 19, 174, 0.8);
  --text-color: #112227;
  --text-muted: #4B5563;
}

/* login page css */
.auth-shell {
  min-height: 100vh;
  padding: 32px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, var(--primery-color-soft), transparent 32%),
    radial-gradient(circle at bottom right, var(--primery-color-soft), transparent 30%),
    linear-gradient(135deg, #f5f3ff 0%, var(--primery-color-soft) 40%, #fbfbff 100%);
}

.auth-shell__container {
  width: 100%;
  max-width: 1180px;
  min-height: 690px;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid var(--primery-color-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 90px var(--primery-color-soft);
}


.auth-shell__main {
  flex: 1 1 auto;
  min-width: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}

.auth-panel {
  width: 100%;
  max-width: 430px;
}

.auth-panel__intro {
  margin-bottom: 30px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primery-color);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.auth-badge__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--primery-color-soft);
}

.auth-badge__icon i {
  color: var(--primery-color);
  font-size: 18px;

}

.auth-badge__text {
  font-size: 20px;
  color: var(--primery-color);
}

.auth-panel__title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.auth-panel__subtitle {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.auth-field {
  position: relative;
  margin-bottom: 25px;
}

.auth-field__label {
  position: absolute;
  top: -10px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  background: #fff;
  color: var(--primery-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
}

.auth-field__control {
  position: relative;
}

.auth-field__input {
  width: 100%;
  height: 43px;
  border-radius: 6px;
  border: 1px solid var(--primery-color);
  background: #ffffff;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--text-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field__input:focus {
  outline: none;
  color: var(--text-color);
  border-color: var(--primery-color);
  box-shadow: 0 2px 4px 0 var(--primery-color-soft) !important;
  border: 1px solid var(--primery-color) !important;
}

.auth-field__input--with-action {
  padding-right: 46px;
}

.auth-field__action {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9188b0;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
}

.auth-field__action:hover {
  color: var(--primery-color);
}

.auth-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 2px 0 20px;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.auth-check__input {
  margin-top: 0;
  border-color: var(--primery-color-soft);
}

.auth-check__label,
.auth-panel__link {
  font-size: 12px;
  color: var(--primery-color);
}

.auth-panel__link {
  color: var(--primery-color);
  font-weight: 600;
}

.auth-panel__captcha {
  margin-bottom: 18px;
}

.auth-panel__submit {
  width: 100%;
  /* height: 46px; */
  border-radius: 7px;
  border: 0;
  background: var(--primery-color);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 18px var(--primery-color-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 11px 15px
}

.auth-panel__submit:hover {
  box-shadow: 0 14px 24px var(--primery-color-soft);
}

.auth-panel__submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--primery-color-soft);
}

.auth-shell--forgot .auth-shell__container {
  min-height: 620px;
}

.auth-shell__container--row {
  display: block;
}

.auth-shell__row {
  min-height: 620px;
}

.auth-shell__row>[class*="col-"] {
  display: flex;
}

.auth-shell__row .auth-shell__aside,
.auth-shell__row .auth-shell__main {
  width: 100%;
  flex: 1 1 auto;
}

.auth-panel--forgot {
  max-width: 410px;
}

.auth-panel--register {
  max-width: 720px;
}

.auth-shell--register .auth-shell__container {
  max-width: 860px;
}

.auth-panel__logo {
  display: inline-block;
  width: auto;
  max-width: 150px;
  max-height: 64px;
  margin-bottom: 22px;
  object-fit: contain;
}

.auth-panel__title--compact {
  font-size: 30px;
  margin-bottom: 8px;
}

.auth-panel__title-icon {
  color: #9d8a27;
  font-size: 14px;
  vertical-align: 3px;
}

.auth-form-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}


.auth-field__select {
  appearance: auto;
}

.auth-field textarea.auth-field__input {
  height: auto;
  resize: vertical;
}

.auth-phone-control {
  position: relative;
  display: flex;
}

.auth-phone-control__code {
  min-width: 72px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primery-color);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: var(--primery-color-soft);
  color: var(--primery-color);
  font-size: 14px;
  font-weight: 600;
}

.auth-phone-control__input {
  border-radius: 0 6px 6px 0;
}

.auth-register-section {
  margin: 18px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(79, 19, 174, 0.16);
  color: var(--primery-color);
  font-size: 14px;
  font-weight: 700;
}

.auth-panel__footer-link {
  margin: 18px 0 0;
  text-align: center;
  color: #8a839c;
  font-size: 13px;
}

.auth-panel__footer-link a {
  color: var(--primery-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-panel__footer-link--alt {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(79, 19, 174, 0.12);
}

.auth-shell__aside--ads {
  /* padding: 0;
  display: block;
  background: var(--primery-color); */
  padding: 50px 0px;
    display: flex;
    background: var(--primery-color);
    flex-direction: column;
    justify-content: space-between;
}

.auth-ad-slider,
.auth-ad-slider .swiper-wrapper,
.auth-ad-slide {
  width: 100%;
  /* height: 100%; */
  min-height: inherit;
}

.auth-ad-slide {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0px 30px 15px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.auth-ad-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(9, 12, 22, 0.08) 0%, rgba(9, 12, 22, 0.26) 42%, rgba(9, 12, 22, 0.78) 100%); */
  z-index: 1;
}

.auth-ad-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.auth-ad-slide__content {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.auth-ad-slide__content h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.auth-ad-slide__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;

}

.auth-ad-slider__pagination {
  text-align: center;
  z-index: 3;
  margin:  0 auto;
}
.auth-ad-slider__pagination.swiper-pagination{
  position: sticky;
}
.auth-ad-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.auth-ad-slider__pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: #ffffff;
}
.contact-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 015px auto;
}

/* Title */
.contact-card__title {
    color: var(--primery-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Contact item */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Icon */
.contact-item__icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primery-color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    color: var(--primery-color);
}

/* Text */
.contact-item__text {
    font-size: 15px;
    color: var(--text-color);
}



/* dasboard top header css */

.navbar-area .navbar-wrap {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.navbar-area .logo-area img {
  margin-right: 30px;
}

.navbar-area .logo-area h6 {
  line-height: 1;
}

.navbar-area .header-right li {
  list-style: none;
  display: flex;
  align-items: center;
}

.header-right li .lang .dropdown img {
  width: 24px;
  height: 24px;
  border-radius: 20%;
}

.header-right li .lang .dropdown-menu {
  position: absolute;
  top: 22% !important;
  left: 0 !important;
  width: 112%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  display: none;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0;
}

.header-right li .lang .dropdown-menu.show {
  display: block;
  transform: scaleY(1);
  opacity: 1;
}

.header-right li .lang .dropdown-menu li {
  display: block;
  margin: 0;
  padding: 6px 10px;
}

.header-right li .lang .dropdown-menu li+li {
  border-top: 1px solid var(--border-color);
}

.header-right li .lang .dropdown-menu li a.dropdown-item {
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: left;
}

.header-right li .lang .dropdown-menu li a.dropdown-item:hover {
  border-radius: 5px;
}

.header-right li .lang .dropdown-menu li a.dropdown-item.active {
  border-radius: 5px;
}

.header-right li .lang .dropdown-menu li a.dropdown-item img.icon {
  width: 20px;
}

.header-right li .lang>a.dropdown-toggle img {
  margin-top: -3px;
  margin-right: 5px;
  object-fit: cover;
  border-radius: 20%;
}

.mobile-lang:hover .dropdown-toggle {
  color: white;
}

.mobile-lang .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  margin-left: 4px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D'12'%20height%3D'6'%20viewBox%3D'0%200%2012%206'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1.5%200.75L6%205.25L10.5%200.75'%20stroke%3D'%23FFFFFF'%20stroke-width%3D'1.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}



.navbar-area .header-right li .notice {
  position: relative;
}

.navbar-area .header-right li .notice img {
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.navbar-area .header-right li .notice span {
  position: absolute;
  right: -4px;
  top: -3px;
  background: #D31E30;
  height: 15px;
  width: 15px;
  line-height: 15px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
}

.navbar-area .header-right li .user {
  position: relative;
  border-left: 1px solid var(--border-color);
}

.navbar-area .header-right li .user h6 {
  color: var(--paragraph-color);
  font-size: 16px;
  font-weight: 400;
}

.navbar-area .header-right li .user.active .author-card {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

.navbar-area .header-right .author-card {
  width: 235px;
  border: 1px solid var(--primery-color-soft);
  border-top: 3px solid var(--primery-color);
  border-radius: 5px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  position: absolute;
  background: #fff;
  z-index: 9;
  top: 39px !important;
  right: 0px !important;
  box-shadow: 0 10px 20px var(--primery-color-soft);
}

.navbar-area .header-right .author-card .names {
  padding: 15px 20px;
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--primery-color);
}

.navbar-area .header-right .author-card .balance {
  background: var(--primery-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px;
}

.navbar-area .header-right .author-card .balance h6 {
  font-weight: 500;
}

.navbar-area .header-right .author-card .balance .balance-inner {
  border-left: 1px solid rgba(255, 255, 255, 0.1254901961);
  padding-left: 15px;
}

.navbar-area .header-right .author-card .balance .balance-inner h4 {
  font-size: 24px;
}

.navbar-area .header-right .author-card .list-details {
  display: block;
  padding: 20px;
}

.navbar-area .header-right .author-card .list-details a {
  display: block;
  text-align: left;
  color: var(--text-color);
  text-decoration: none;
}

.navbar-area .header-right .author-card .list-details a+a {
  margin-top: 15px;
}

.navbar-area .header-right .author-card .list-details a span {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background: var(--primery-color-soft);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
}

.navbar-area .header-right .author-card .list-details a span svg {
  margin-right: 0;
  padding-left: 2px;
  padding-bottom: 2px;
  height: 18px;
  width: 18px;
  color: var(--primery-color);
}
.navbar-area .header-right .author-card .list-details a{
  transition: all 0.3s ease-in-out;
}
.navbar-area .header-right .author-card .list-details a:hover span {
  background: var(--primery-color);
}

.navbar-area .header-right .author-card .list-details a:hover span svg path {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}


.navbar-area .header-right .author-card .list-details .border-bottom {
  padding-bottom: 12px;
}

.mobile-navbar-area {
    background: var(--primery-color);
    padding-bottom: 120px;
}

.mobile-navbar-area .navbar-wrap {
    padding: 20px 0;
}

.mobile-navbar-area .logo-area img {
    margin-right: 30px;
}

.mobile-navbar-area .logo-area h6 {
    line-height: 1;
}

.mobile-navbar-area .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.mobile-navbar-area .header-right li {
    list-style: none;
    display: inline-block;
}

.mobile-navbar-area .header-right li + li {
    margin-left: 8px;
    margin-top: 2px;
}

.mobile-navbar-area .header-right li .lang img {
    margin-top: -3px;
    margin-right: 5px;
}

.mobile-navbar-area .header-right li .lang select {
    border: 0;
    color: #fff;
    background: transparent;
}

.mobile-navbar-area .header-right li .lang .single-select {
    background: transparent;
    border: 0;
    color: #fff;
    height: 30px;
    padding-left: 0;
}

.mobile-navbar-area .header-right li .lang .single-select:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: 0;
    right: 17px;
}

.mobile-navbar-area .header-right li .lang .single-select .list li {
    display: block;
    min-height: 18px;
    line-height: 2;
    color: var(--paragraph-color);
    padding: 0 10px !important;
    font-weight: 400;
}

.mobile-navbar-area .header-right li .lang .single-select .list li + li {
    margin: 0;
}

.mobile-navbar-area .user {
    background: var(--primery-color-soft);
    border-radius: 8px;
    margin: 0;
    padding: 15px 10px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-navbar-area .user li {
    list-style: none;
}

.mobile-navbar-area .user li img {
    margin-top: -5px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    margin-right: 4px;
}

.mobile-navbar-area .user li .user-1 {
    border: 2px solid #fff;
}

.mobile-navbar-area .user li h6 {
    font-weight: 400;
    color: var(--paragraph-color);
    font-size: 16px;
}

.sidebar-menu {
    width: 0;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.sidebar-menu .single-card-box {
    border: 0;
    border-radius: 0;
}

.sidebar-menu .left-menu-box li a {
    background: transparent !important;
}

.sidebar-menu .left-menu-box li a:hover {
    color: var(--primery-color);
}

.sidebar-menu.active {
    width: 290px;
    opacity: 1;
    visibility: visible;
}

.sidebar-menu .sidebar-menu-close {
    color: var(--primery-color);
    border: 0;
    position: absolute;
    top: 22px;
    right: 15px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.97;
}
/* Dashboard v2 */
.dashboard-v2 {
  background: #f4f6fb;
  min-height: 100%;
  padding-bottom: 18px;
}

.dashboard-v2-hero,
.dashboard-v2-card,
.dashboard-v2-mini-card,
.dashboard-v2-stat-card {
  background: #ffffff;
  border: 1px solid #edf0f6;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 31, 56, 0.04);
}

.dashboard-v2-hero {
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  overflow: hidden;
}

.dashboard-v2-eyebrow {
  color: var(--primery-color);
  font-size: 18px;
  font-weight: 600;
}

.dashboard-v2-title {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
}

.dashboard-v2-subtitle {
  max-width: 430px;
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.6;
}

.dashboard-v2-btn {
  min-height: 32px;
  padding: 7px 16px;
  border: 0;
  border-radius: 5px;
  background: var(--primery-color);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.dashboard-v2-btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
}


.dashboard-v2-art-card {
  position: absolute;
  display: block;
  width: 46px;
  height: 28px;
  border-radius: 5px;
  background: var(--primery-color-soft);
}

.dashboard-v2-art-card--one {
  left: 8px;
  bottom: 0;
}

.dashboard-v2-art-card--two {
  right: 0;
  bottom: 34px;
}

.dashboard-v2-mini-card {
  padding: 20px;
}

.dashboard-v2-mini-icon,
.dashboard-v2-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primery-color-soft);
  color: var(--primery-color);
  margin-bottom: 12px;
}

.dashboard-v2-mini-card span,
.dashboard-v2-stat-card span {
  display: block;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
}

.dashboard-v2-mini-card strong,
.dashboard-v2-stat-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
}

.dashboard-v2-mini-card small {
  color: var(--text-color);
  font-size: 12px;
}

.dashboard-v2-wallet-card {
  min-height: 118px;
  padding: 22px;
  border-radius: 8px;
  background: var(--primery-color);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.dashboard-v2-wallet-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -78px;
  top: -76px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.05), 0 0 0 48px rgba(255, 255, 255, 0.04);
}

.dashboard-v2-wallet-card span,
.dashboard-v2-wallet-card small,
.dashboard-v2-wallet-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.dashboard-v2-wallet-card span {
  font-size: 18px;
  font-weight: 700;
}

.dashboard-v2-wallet-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.dashboard-v2-wallet-card strong {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.2;
}

.dashboard-v2-stat-card {
  min-height: 96px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-v2-stat-card .dashboard-v2-stat-icon {
  margin-bottom: 0;
}

.dashboard-v2-card {
  padding: 20px;
}

.dashboard-v2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-v2-card-head h6 {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 600;
}

.dashboard-v2-select {
  width: auto;
  min-width: 100px;
  height: 32px;
  border-color: #e7eaf2;
  border-radius: 5px;
  color: var(--text-muted);
  font-size: 12px;
}

.dashboard-v2-chart {
  min-height: 270px;
}

.dashboard-v2-table {
  min-width: 560px;
  background: #ffffff;
}

.dashboard-v2-table thead th {
  border: 0;
  background: #f9fafc;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  padding: 20px 12px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  font-family: 'roboto', sans-serif;
}
.dashboard-v2-table tbody tr:nth-child(even) {
  background: rgba(225,226, 255, 20%);
}
.dashboard-v2-table tbody td {
  border-color: #f1f3f7;
  color: var(--text-color);
  font-size: 13px;
  padding: 14px 12px;
  vertical-align: middle;
  font-family: 'roboto', sans-serif;
}

.dashboard-v2-table small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 3px;
}

.dashboard-v2-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-v2-badge.success {
  background: #e9fbf3;
  color: #09965f;
}

.dashboard-v2-badge.pending {
  background: #fff8d8;
  color: #9a7a00;
}

/* Dashboard topbar */
.dashboard-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid #edf0f6;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(20, 31, 56, 0.04);
}

.dashboard-topbar__search {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.dashboard-topbar__search i {
  font-size: 13px;
  color: var(--text-color);
}

.dashboard-topbar__search input {
  width: 100%;
  min-height: 38px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-color);
  font-size: 13px;
}

.dashboard-topbar__search input::placeholder {
  color: var(--text-muted);
}

.dashboard-topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.dashboard-topbar__actions>li {
  margin: 0 !important;
  position: relative;
}

.dashboard-topbar__actions .notice {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-topbar__actions .notice svg {
  width: 22px;
  height: 22px;
}

.dashboard-topbar__actions .notice span {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ff4d57;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.dashboard-topbar__user .user {
  display: inline-flex;
  align-items: center;
}

.dashboard-topbar__user .user>img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border: 2px solid #f1f3f8;
}

.dashboard-topbar__user .user>h6 {
  display: none !important;
}

/* Dashboard app shell and sidebar */
body:has(.dashboard-shell) {
  background: #f1f2f6;
}

#mainArea.main-area {
  min-height: 100vh;
  margin-bottom: 0 !important;
  background: #f1f2f6;
}

#mainArea>.container-fluid {
  min-height: 100vh;
  padding-left: 0;
  padding-right: 14px;
}

.dashboard-shell.fixed-wrapper {
  --dashboard-sidebar-width: 232px;
  --dashboard-sidebar-collapsed-width: 68px;
  min-height: 100vh;
  height: 100vh;
  align-items: stretch;
  gap: 18px;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.dashboard-shell>[class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.dashboard-sidebar-shell {
  position: sticky;
  top: 0;
  flex: 0 0 var(--dashboard-sidebar-width);
  max-width: var(--dashboard-sidebar-width);
  width: var(--dashboard-sidebar-width);
  min-height: 100vh;
  height: 100vh;
  align-self: stretch;
  border: 0;
  border-right: 1px solid #eef0f6;
  background: #ffffff;
  box-shadow: none;
  /* overflow: hidden; */
  transition: flex-basis 0.24s ease, max-width 0.24s ease, width 0.24s ease;
}

.dashboard-sidebar-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  padding: 15px 18px;
  background: #ffffff;
}

.dashboard-sidebar-brand__logo {
  width: 112px;
  max-width: 112px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.dashboard-sidebar-brand__logo img {
  width: auto;
  max-width: 96px;
  max-height: 28px;
  object-fit: contain;
}

.dashboard-sidebar-brand__logo-short {
  display: none;
}

.dashboard-sidebar-toggle {
  position: absolute;
  top: 50%;
  right: -11px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--primery-color);
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  box-shadow: 0 5px 14px var(--primery-color-soft);
  transition: transform 0.2s ease, background-color 0.2s ease;
  transform: translateY(-50%);
}

.dashboard-sidebar-toggle:hover {
  background: var(--primery-color);
  color: #ffffff;
}

.dashboard-sidebar-shell .left-menu-scroll {
  height: calc(100vh - 72px);
  max-height: none;
  padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: var(--primery-color) transparent;
}

.dashboard-sidebar-shell .left-menu-scroll::-webkit-scrollbar {
  width: 3px;
}

.dashboard-sidebar-shell .left-menu-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.dashboard-sidebar-shell .left-menu-scroll::-webkit-scrollbar-thumb {
  background: var(--primery-color);
  border: 0;
  border-radius: 999px;
}

.dashboard-sidebar-menu {
  padding: 0 12px 30px 16px;
  background: #ffffff;
}

.dashboard-sidebar-menu .left-menu-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.dashboard-sidebar-menu .left-menu-box li,
.dashboard-sidebar-menu .left-menu-box li+li {
  margin: 0;
}

.dashboard-sidebar-menu .left-menu-box a {
  position: relative;
  min-height: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 0 12px;
  border-radius: 5px;
  background: transparent;
  color: #384455;
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.dashboard-sidebar-menu .left-menu-box a:hover {
  background: var(--primery-color-soft);
  color: #384455;
}

.dashboard-sidebar-menu .left-menu-box a.active,
.dashboard-sidebar-menu .has-submenu.is-open>a,
.dashboard-sidebar-menu .has-submenu>a:hover {
  background: var(--primery-color-soft);
  color: var(--primery-color);
}

.dashboard-sidebar-menu .left-menu-box a .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.dashboard-sidebar-menu .left-menu-box a .icon::before {
  line-height: 1;
}

.dashboard-sidebar-menu .menu-label {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-sidebar-menu .arrow {
  margin-left: auto;
  color: currentColor;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.dashboard-sidebar-menu .has-submenu>a {
  cursor: pointer;
}

.dashboard-sidebar-menu .has-submenu.is-open>a .arrow {
  transform: rotate(180deg);
}

.dashboard-sidebar-menu .submenu,
.dashboard-sidebar-menu .has-submenu:hover>.submenu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.24s ease, margin 0.24s ease, opacity 0.18s ease, transform 0.24s ease;
}

.dashboard-sidebar-menu .has-submenu.is-open>.submenu {
  max-height: 130px;
  margin: 5px 0;
  opacity: 1;
  transform: translateY(0);
}

.dashboard-sidebar-menu .submenu a {
  min-height: 32px;
  height: 32px;
  padding: 0 8px 0 45px;
  border-radius: 5px;
  background: transparent;
  color: #4f5b6c;
  font-size: 13px;
  line-height: 32px;
}

.dashboard-sidebar-menu .submenu a:hover,
.dashboard-sidebar-menu .submenu a.active {
  background: transparent;
  color: var(--primery-color);
}

.dashboard-sidebar-menu .submenu a::before {
  content: "";
  position: absolute;
  left: 21px;
  width: 5px;
  height: 5px;
  margin: 0;
  border-radius: 999px;
  background: #a7adb7;
}

.dashboard-sidebar-menu .submenu a.active::before {
  background: var(--primery-color);
  box-shadow: 0 0 0 4px rgba(105, 99, 255, 0.12);
}

.dashboard-sidebar-shell.is-collapsed {
  flex-basis: var(--dashboard-sidebar-collapsed-width);
  max-width: var(--dashboard-sidebar-collapsed-width);
  width: var(--dashboard-sidebar-collapsed-width);
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-brand {
  justify-content: center;
  padding: 15px 10px 15px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-brand__logo {
  width: 34px;
  max-width: 34px;
  justify-content: center;
  overflow: hidden;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-brand__logo img {
  width: 30px;
  height: 30px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-brand__logo-short {
  display: block;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-brand__logo-full {
  display: none;
}

/* setting page css */

.settings-tabs-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.settings-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 5px 0 0px;
  border-bottom: 1px solid #d9dee8;
}

.settings-tab-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 12px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.settings-tab-link i {
  font-size: 16px;
}

.settings-tab-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.settings-tab-link:hover {
  color: var(--primery-color);
}

.settings-tab-link.active,
.settings-tab-link[aria-selected="true"] {
  color: var(--primery-color);
}

.settings-tab-link.active::after,
.settings-tab-link[aria-selected="true"]::after {
  background: var(--primery-color);
}

.settings-tab-link--logout {
  color: #dc3545;
}

.settings-tab-link--logout:hover {
  color: #b42318;
}

.settings-tabs-panel {
  padding-top: 26px;
}

.settings-tabs-panel__body {
  background: #ffffff;
  border-radius: 14px;
}

.settings-tabs-panel__body .card-body {
  padding: 0;
}

.settings-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primery-color-soft);
  color: var(--primery-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(93, 58, 183, 0.12);
}

.settings-section-badge i {
  font-size: 13px;
}

.notification-card--auth {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.notification-card--auth .notification-header {
  padding: 0 0 1rem;
  background: transparent;
}

.notification-card--auth .notification-header__title {
  color: var(--primery-color);
}

.notification-item--auth {
  margin-bottom: 14px;
  border: 1px solid var(--primery-color-soft);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(93, 58, 183, 0.06);
}

.notification-item--auth:last-child {
  margin-bottom: 0;
}

.notification-item--auth:hover {
  background: #fcfbff;
  border-color: var(--primery-color);
}

.notification-item--auth .notification-item__mark-read {
  background: var(--primery-color-soft);
}

.notification-item--auth .notification-item__mark-read i {
  color: var(--primery-color);
}

.pagination-area {
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-list li {
  display: inline-flex;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--primery-color-soft);
  background: #ffffff;
  color: var(--primery-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(93, 58, 183, 0.08);
  transition: all 0.2s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--primery-color);
  border-color: var(--primery-color);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(93, 58, 183, 0.2);
}

.pagination-btn.prev,
.pagination-btn.next {
  min-width: 108px;
  background: var(--accent-dark);
  border-color: transparent;
  text-decoration: none;
}

.pagination-btn.disabled {
  background: #f6f4fb;
  border-color: #ece7f7;
  color: #9b93b8;
  box-shadow: none;
  cursor: not-allowed;
}

.pagination-btn i {
  font-size: 12px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-toggle {
  top: 65px;
  left: 50%;
  right: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: var(--primery-color-soft);
  color: var(--primery-color);
  box-shadow: none;
  transform: translateX(-50%) rotate(180deg);
}

.dashboard-sidebar-shell.is-collapsed .left-menu-scroll {
  height: calc(100vh - 118px);
  padding-top: 44px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu {
  padding: 0 12px 22px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .left-menu-box {
  align-items: center;
  gap: 10px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .left-menu-box a {
  width: 34px;
  height: 34px;
  min-height: 34px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 4px;
}

.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .menu-label,
.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .arrow,
.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .submenu,
.dashboard-sidebar-shell.is-collapsed .dashboard-sidebar-menu .has-submenu.is-open>.submenu {
  display: none !important;
}

.dashboard-main-shell {
  min-width: 0;
  flex: 1 1 0;
  max-width: none;
  height: 100vh;
  padding: 15px 0 15px !important;
  overflow-y: auto;
  scrollbar-width: none;
}

.dashboard-main-shell::-webkit-scrollbar {
  display: none;
}

.dashboard-main-shell.mt-neg-120 {
  margin-top: 0;
}

.dashboard-main-shell>.dashboard-topbar-area {
  margin-bottom: 15px;
  padding: 0;
  background: #f1f2f6;
}

.dashboard-main-shell>.dashboard-topbar-area>.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.dashboard-main-shell .dashboard-topbar {
  min-height: 56px;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(30, 38, 64, 0.04);
}

/* otp-verification page css */
.otp-input-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.otp-input:focus {
  outline: none;
  border-color: var(--primery-color);
  box-shadow: 0 0 0 3px var(--primery-color-soft);
}

.otp-input:valid {
  border-color: #10b981;
}

.auth-panel__otp-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 20px;
  margin-bottom: 15px;
}

.auth-form-note {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.auth-panel__resend-otp {
  background: none;
  border: none;
  color: var(--primery-color);
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-panel__resend-otp:hover {
  color: var(--accent-dark);
}

.auth-panel__footer-link--secondary {
  text-align: center;
  margin-bottom: 15px;
}

.auth-panel__link-secondary {
  color: var(--primery-color);
  text-decoration: underline;
  font-weight: 500;
}

.auth-panel__link-secondary:hover {
  color: var(--accent-dark);
}

.auth-check__label a {
  color: var(--primery-color);
  text-decoration: none;
  margin: 0 3px;
}

.auth-check__label a:hover {
  text-decoration: underline;
}
.auth-panel__intro.auth-panel-otp{
  margin-bottom: 0;
}


/* filter design css */
/* Filter Card */
.filter-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  /* box-shadow: 0 5px 20px var(--primery-color-soft); */
  border: 1px solid var(--primery-color-soft);
}

/* Inputs */
.custom-input {
  height: 42px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 13px;
}
.filter-card .auth-panel__submit{
  height: 100%;
}
.btn-light{
  width: 100%;
  border-radius: 7px;
  background: transparent;
  border: 0;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 15px;
}
.card{
  border: 1px solid var(--primery-color-soft);
  border-radius: 10px;
  overflow: hidden;
}
.btn:hover{
  color: #fff;
}

/* ========================
   MODAL BASE
======================== */
.app-modal__card {
    border-radius: 16px;
    border: none;
    padding: 10px 5px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.app-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.app-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

/* CLOSE */
.app-modal__close {
    opacity: 0.6;
    transition: 0.3s;
}
.app-modal__close:hover {
    opacity: 1;
}

/* BODY */
.app-modal__body {
    padding: 10px 20px;
}

/* FOOTER */
.app-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
}


/* SELECT ICON */
.select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%236c3ef4' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* ========================
   BUTTON SYSTEM
======================== */
.app-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  transition: 0.3s;
}

/* PRIMARY */
.app-btn--primary {
    background: var(--primery-color);
    color: #fff;
}
.app-btn--primary:hover {
    color: #fff;
}
.app-modal__close.btn-close{
  background: #fff;
  border: 0;
  color: var(--text-color);
  font-size: 18px;
  line-height: 1;
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  right: -20px;
  top: -15px;
  box-shadow: 0 0 10px -5px #000;
  opacity: 1;
}
.btn-close:hover {
  color: var(--primery-color);
}
.btn-close i{
  font-size: 30px;
}
.btn-secondary{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* global action dropdown */
.app-action-dropdown {
  position: relative;
  display: inline-block;
}

.app-action-dropdown__toggle {
  min-width: 104px;
  padding: 8px 15px;
  border: 1px solid var(--primery-color);
  border-radius: 7px;
  background: #fff;
  color: var(--primery-color);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.2s ease;
}

.app-action-dropdown__toggle:hover {
  background: var(--primery-color-soft);
}

.app-action-dropdown__toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.app-action-dropdown.is-open .app-action-dropdown__toggle i {
  transform: rotate(180deg);
}

.app-action-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 224px;
  background: #fff;
  border: 1px solid #eef0f7;
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(24, 39, 75, 0.12);
  padding: 10px 0;
  display: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 20;
}

.app-action-dropdown.is-open .app-action-dropdown__menu {
  display: block;
  transform: translateY(0);
}

.app-action-dropdown__item {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.app-action-dropdown__item:hover {
  background: var(--primery-color-soft);
  color: var(--primery-color);
}

.app-action-dropdown__item i {
  font-size: 18px;
  color: #4b5563;
}
.app-action-dropdown__item:hover i {
  color: var(--primery-color);
}

.app-action-dropdown__menu--portal {
  position: fixed;
  min-width: 224px;
  max-width: 300px;
  right: auto;
  z-index: 3000;
  transform: none;
  display: block !important;
  margin: 0;
}

.app-detail-offcanvas {
  width: min(460px, 100vw);
  border-left: 1px solid var(--primery-color-soft);
  box-shadow: -18px 0 40px rgba(79, 19, 174, 0.12);
}

.app-detail-offcanvas__header {
  padding: 22px 22px 12px;
  border-bottom: 1px solid var(--primery-color-soft);
  margin-bottom: 20px;
}

.app-detail-offcanvas__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primery-color);
}

.app-detail-offcanvas__close {
  box-shadow: none;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid var(--primery-color-soft);
  opacity: 1;
}

.app-detail-offcanvas__body {
  padding: 0 22px 22px;
}

.app-detail-offcanvas__section + .app-detail-offcanvas__section {
  margin-top: 22px;
}

.app-detail-offcanvas__section-title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primery-color);
}

.app-detail-offcanvas__table-wrap {
  overflow: hidden;
  border: 1px solid var(--primery-color-soft);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(79, 19, 174, 0.06);
}

.app-detail-offcanvas__table {
  margin-bottom: 0;
  background: #fff;
}

.app-detail-offcanvas__table tr:not(:last-child) th,
.app-detail-offcanvas__table tr:not(:last-child) td {
  border-bottom: 1px solid var(--primery-color-soft);
}

.app-detail-offcanvas__table th,
.app-detail-offcanvas__table td {
  padding: 14px 16px;
  vertical-align: top;
  background: #fff;
}

.app-detail-offcanvas__table th {
  width: 45%;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid var(--primery-color-soft);
  background: var(--primery-color-soft);
}

.app-detail-offcanvas__table td {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}

.merchant-canvas {
  width: min(460px, 100vw);
  border-left: 1px solid var(--primery-color-soft);
  box-shadow: -18px 0 40px rgba(79, 19, 174, 0.12);
}

.merchant-canvas .offcanvas-header {
  padding: 22px 22px 12px;
  border-bottom: 1px solid var(--primery-color-soft);
  /* margin-bottom: 20px; */
}

.merchant-canvas .offcanvas-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primery-color);
}

.merchant-canvas .offcanvas-body {
  padding: 0 22px 22px;
}

.merchant-canvas .btn-close {
  box-shadow: none;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid var(--primery-color-soft);
  opacity: 1;
}

.merchant-panel-card {
  border: 1px solid var(--primery-color-soft);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(79, 19, 174, 0.06);
}

.merchant-panel-card + .merchant-panel-card {
  margin-top: 22px;
}

.merchant-panel-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--primery-color);
}

.merchant-panel-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px 18px;
}

.merchant-panel-grid--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merchant-panel-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.merchant-panel-field__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.transaction-remitter-cell__name {
  font-weight: 600;
  color: var(--text-color);
}

.transaction-remitter-cell__meta {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-muted);
  word-break: break-word;
}

.transaction-utr {
  display: inline-block;
  max-width: 180px;
  font-weight: 600;
  color: var(--text-color);
  word-break: break-word;
}

.merchant-panel-field__value {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}

.merchant-panel-field--full {
  grid-column: 1 / -1;
}

.merchant-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #f4f6fb;
}

.merchant-panel-status--success {
  color: #0f8a4b;
  background: #e8f8ef;
}

.merchant-panel-status--pending {
  color: #9a6700;
  background: #fff5d6;
}

.merchant-panel-status--danger {
  color: #b42318;
  background: #feeceb;
}

.merchant-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

body:has(.merchant-canvas--centered.show),
body:has(.merchant-canvas--centered.showing) {
  overflow: hidden;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(980px, calc(100vw - 32px));
  height: auto;
  max-height: calc(100vh - 48px);
  border: none;
  border-radius: 16px;
  padding: 10px 5px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered.show,
.merchant-canvas.offcanvas-end.merchant-canvas--centered.showing {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered.hiding {
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered .offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: none;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered .offcanvas-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}


.merchant-canvas.offcanvas-end.merchant-canvas--centered .offcanvas-body {
  padding: 10px 20px 20px;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered .merchant-panel-card__title {
  margin-top: 0;
}

.merchant-canvas.offcanvas-end.merchant-canvas--centered .merchant-panel-card {
  border-radius: 16px;
  border: none;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 767px) {
  .merchant-panel-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .merchant-panel-grid--thirds {
    grid-template-columns: minmax(0, 1fr);
  }
}

.btn-light{
  height: 100%;

}
.btn-light:hover {
    color: #000;
    background-color: #9d9d9d;
    border-color: #f9fafb;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}


.dropdown-toggle::after {
    border: none !important;
    content: '';
    display: inline-block;
    width: 12px;
    height: 6px;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D'12'%20height%3D'6'%20viewBox%3D'0%200%2012%206'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1.5%200.75L6%205.25L10.5%200.75'%20stroke%3D'%23445375'%20stroke-width%3D'1.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.notification-dropdown {
    min-width: 340px;
    padding: 6px !important;
    font-size: 14px;
    border: 1px solid var(--primery-color-soft);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
    overflow: hidden;
}

.notification-dropdown__header,
.notification-dropdown__footer {
    background: transparent !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

.notification-dropdown__header {
    padding: 14px 16px !important;
}

.notification-dropdown__headline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color) !important;
    font-size: 14px;
    font-weight: 700 !important;
}

.notification-dropdown__headline::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primery-color);
    box-shadow: 0 0 0 6px var(--primery-color-soft);
}

.notification-dropdown__empty {
    margin: 10px;
    padding: 28px 18px !important;
    border: 1px dashed var(--primery-color-soft);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--primery-color-soft) 0%, rgba(255, 255, 255, 0.96) 100%);
    color: #6b7280 !important;
}

.notification-dropdown__empty i {
    color: var(--primery-color);
    opacity: 1;
}

.notification-dropdown__empty span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

/* Notification Item */
.notification-item {
    margin: 8px;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.notification-item:hover {
    background-color: var(--primery-color-soft) !important;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

/* Divider between notifications */
.notification-divider {
    margin: 0 16px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

/* Scrollbar Hidden Until Hover */
.notification-list {
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: none;
}
.notification-list::-webkit-scrollbar {
    width: 5px;
}
.notification-list:hover::-webkit-scrollbar {
    display: block;
}
.notification-list::-webkit-scrollbar-thumb {
    background-color: #cfd4da;
    border-radius: 6px;
}
.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-dropdown__footer {
    padding: 14px 16px !important;
}

.notification-dropdown__btn {
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.notification-dropdown__btn:hover {
    transform: translateY(-1px);
}

.notification-dropdown__btn--soft {
    background: var(--primery-color-soft);
    border-color: transparent;
    color: var(--primery-color);
}

.notification-dropdown__btn--soft:hover {
    background: var(--primery-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.notification-dropdown__btn--primary {
    background: var(--primery-color);
    border-color: var(--primery-color);
    color: #fff;
}

.notification-dropdown__btn--primary:hover {
    background: var(--primery-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.btn-wrap .icon {
    min-width: 20px !important;
    min-height: 20px !important;
}

.nice-select {
    padding-left: 8px !important;
    padding-right: 10px !important;
}

.chart-icon{
    border: none !important;
    border-radius: 0 !important;
}
.chart-icon:hover{
    border: none !important;
    background: none !important;
}


/*----------------------------------------
Notification Card
----------------------------------------*/
.notification-card {
    border: 1px solid var(--primery-color-soft);
    border-radius: 0.5rem;
    background-color: #fff;
    overflow: hidden;
}

/* Header */
.notification-header {
    padding: 1rem;
}
.notification-header__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primery-color);
}

/* List */
.notification-all-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Each Item */
.notification-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.2s ease-in-out;
}
.notification-item:last-child {
    border-bottom: none;
}
.notification-item:hover {
    background-color: var(--primery-color-soft);
}

/* Icon */
.notification-item__icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
}
.notification-item__icon-svg {
    display: block;
}

/* Content */
.notification-item__content {
    flex: 1;
    min-width: 0;
}
.notification-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}
.notification-item__message {
    font-size: 0.9375rem;
    color: var(--paragraph-color);
    overflow-wrap: break-word;
}

/* Meta (time + mark-read) */
.notification-item__meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    margin-left: 1rem;
}
.notification-item__time {
    font-size: 0.85rem;
    color: var(--muted-color);
    white-space: nowrap;
}
.notification-item__mark-read {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--soft-danger);
    transition: background-color 0.2s ease-in-out;
    text-decoration: none;
}
.notification-item__mark-read i {
    font-size: 1rem;
    color: var(--hover-color);
}
.notification-item__mark-read:hover {
    background-color: #ffdbd8;
}

/* Footer (pagination) */
.notification-footer {
    padding: 0.5rem 0;
}
.table-responsive{
    overflow-x: auto;
    overflow-y: unset;
}

/* merchant-kyc-page css */

.merchant-kyc-page {
    padding: 18px 0 36px;
}

.merchant-kyc-page__shell {
    background: #f5f7fb;
    border: 1px solid #e3e8f3;
    border-radius: 24px;
    padding: 28px;
}

.merchant-kyc-page__hero {
    margin-bottom: 22px;
}

.merchant-kyc-page__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.merchant-kyc-page__title {
    margin: 0 0 6px;
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.merchant-kyc-page__subtitle {
    margin: 0;
    color: var(--muted-color);
    font-size: 14px;
    font-weight: 500;
}

.merchant-kyc-page__header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.merchant-kyc-page__status,
.merchant-kyc-page__edit,
.merchant-kyc-page__back {
    min-height: 42px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.merchant-kyc-page__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid transparent;
}

.merchant-kyc-page__status--verified {
    color: #067647;
    background: #e7f8ef;
    border-color: #b7ebcd;
}

.merchant-kyc-page__status--pending {
    color: var(--primery-color);
    background: var(--primery-color-soft);
    border-color: var(--primery-color-soft);
}

.merchant-kyc-page__status--draft {
    color: #344054;
    background: #eef2f7;
    border-color: #d0d5dd;
}

.merchant-kyc-page__edit,
.merchant-kyc-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--primery-color-soft);
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    box-shadow: none;
    transition: all 0.2s ease;
}

.merchant-kyc-page__edit:hover,
.merchant-kyc-page__back:hover,
.merchant-kyc-page__edit--active {
    color: var(--primery-color);
    border-color: var(--primery-color-soft);
    background: var(--primery-color-soft);
}

.merchant-kyc-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--muted-color);
    font-size: 13px;
    font-weight: 600;
}

.merchant-kyc-progress__track {
    position: relative;
    height: 6px;
    border-radius: 999px;
    background: var(--primery-color-soft);
    overflow: hidden;
}

.merchant-kyc-progress__bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primery-color) 0%, var(--primery-color) 100%);
}

.merchant-kyc-alert {
    border-radius: 16px;
    border: 1px solid #f3c6cb;
}

.merchant-kyc-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.merchant-kyc-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e3e8f3;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.merchant-kyc-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #1d2939;
    font-size: 18px;
    font-weight: 700;
}

.merchant-kyc-card__title i {
    color: var(--primery-color);
}

.merchant-kyc-form-grid,
.merchant-kyc-documents,
.merchant-kyc-extra__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.merchant-kyc-extra__grid--labels {
    margin-bottom: 14px;
}

.merchant-kyc-field {
    min-width: 0;
}

.merchant-kyc-field--full {
    grid-column: 1 / -1;
}

.merchant-kyc-field--compact {
    margin-top: -4px;
}

.merchant-kyc-field__label {
    display: block;
    margin-bottom: 7px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 700;
}

.merchant-kyc-field__label span,
.merchant-kyc-document__title span {
    color: #ef4444;
}

.merchant-kyc-field__input,
.merchant-kyc-field__select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d7ddea;
    border-radius: 10px;
    background: #fff;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.merchant-kyc-field__input:focus,
.merchant-kyc-field__select:focus {
    border-color: var(--primery-color);
    box-shadow: 0 0 0 4px var(--primery-color-soft);
    outline: none;
}

.merchant-kyc-field__input:disabled,
.merchant-kyc-field__select:disabled,
.merchant-kyc-field__input--muted {
    background: #f8fafc;
    color: var(--text-muted);
    cursor: not-allowed;
}

.merchant-kyc-field__help {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.merchant-kyc-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.merchant-kyc-check__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.merchant-kyc-check__box {
    width: 16px;
    height: 16px;
    border: 1px solid #c9d1e1;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
}

.merchant-kyc-check__label {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
}

.merchant-kyc-check__input:checked + .merchant-kyc-check__box {
    border-color: var(--primery-color);
    background: var(--primery-color);
    box-shadow: inset 0 0 0 3px #fff;
}

.merchant-kyc-documents {
    margin-bottom: 18px;
}

.merchant-kyc-document,
.merchant-kyc-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 18px 16px;
    border: 1px dashed #cfd7e6;
    border-radius: 14px;
    background: #fff;
    text-align: center;
    transition: all 0.2s ease;
}

.merchant-kyc-document {
    cursor: pointer;
}

.merchant-kyc-document:hover:not(.merchant-kyc-document--locked),
.merchant-kyc-placeholder:hover {
    border-color: var(--primery-color);
    background: #fbf9ff;
    transform: translateY(-1px);
}

.merchant-kyc-document--locked {
    cursor: default;
}

.merchant-kyc-document--uploaded {
    border-style: solid;
    border-color: #93e1b5;
    background: #f4fff8;
}

.merchant-kyc-document__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.merchant-kyc-document--locked .merchant-kyc-document__input {
    pointer-events: none;
}

.merchant-kyc-document__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f4f3ff;
    color: var(--primery-color);
    font-size: 18px;
}

.merchant-kyc-document--optional .merchant-kyc-document__icon {
    background: #f8f5ff;
    color: var(--primery-color);
}

.merchant-kyc-document--uploaded .merchant-kyc-document__icon {
    background: #dcfae6;
    color: #16a34a;
}

.merchant-kyc-document__title {
    color: #101828;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.merchant-kyc-document__file {
    margin-top: 8px;
    color: #16a34a;
    font-size: 12px;
    font-weight: 600;
    word-break: break-word;
}

.merchant-kyc-document__hint,
.merchant-kyc-document__meta,
.merchant-kyc-placeholder__hint {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 500;
}

.merchant-kyc-document__hint {
    margin-top: 8px;
}

.merchant-kyc-document__meta {
    margin-top: 4px;
}

.merchant-kyc-document__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.merchant-kyc-document__link,
.merchant-kyc-document__replace {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.merchant-kyc-document__link {
    background: var(--primery-color);
    color: #fff;
    text-decoration: none;
}
.merchant-kyc-document__link:hover {
    color: #fff;
}

.merchant-kyc-document__replace {
    color: #667085;
    background: #eef2f6;
}

.merchant-kyc-extra {
    padding-top: 16px;
    border-top: 1px solid #edf1f7;
}

.merchant-kyc-extra__title {
    margin-bottom: 14px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
}

.merchant-kyc-placeholder__plus {
    color: #c4cad7;
    font-size: 30px;
    line-height: 1;
}

.merchant-kyc-placeholder__title {
    margin-top: 10px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

.merchant-kyc-actions {
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.merchant-kyc-actions.is-visible {
    display: flex;
}

.merchant-kyc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.merchant-kyc-btn--ghost,
.merchant-kyc-btn--light {
    background: #fff;
    border-color: #d7ddea;
    color: #344054;
}

.merchant-kyc-btn--primary {
    background: var(--primery-color);
    border-color: var(--primery-color);
    color: #fff;
}

.merchant-kyc-btn--ghost:hover,
.merchant-kyc-btn--light:hover {
    color: var(--primery-color);
    border-color: var(--primery-color-soft);
    background: var(--primery-color-soft);
}

.merchant-kyc-btn--primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(109, 40, 217, 0.22);
}

.merchant-kyc-preview-modal__content {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}

.merchant-kyc-preview-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #edf1f7;
}

.merchant-kyc-preview-modal__title {
    margin: 0;
    color: #101828;
    font-size: 18px;
    font-weight: 700;
}

.merchant-kyc-preview-modal__body {
    padding: 18px 20px 24px;
}

.merchant-kyc-preview-modal__image,
.merchant-kyc-preview-modal__frame {
    width: 100%;
    border: 0;
    border-radius: 16px;
    background: #f8fafc;
}

.merchant-kyc-preview-modal__image {
    max-height: 70vh;
    object-fit: contain;
}

.merchant-kyc-preview-modal__frame {
    min-height: 70vh;
}

.pos-service-notice {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 24px;
  padding: 28px;
  background:
      radial-gradient(circle at top right, var(--primary-color-soft), transparent 34%),
      linear-gradient(135deg, #ffffff 0%, #f4fbff 52%, #ecfdf5 100%);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  }

  .pos-service-notice__glow {
  position: absolute;
  inset: auto -40px -58px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primery-color-soft);
  filter: blur(8px);
  pointer-events: none;
  }

  .pos-service-notice__content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  z-index: 1;
  }

  .pos-service-notice__icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primery-color) 0%, var(--primery-color-soft) 100%);
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 14px 28px var(--primery-color-soft);
  }

  .pos-service-notice__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primery-color-soft);
  color: var(--primery-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  }

  .pos-service-notice__title {
  margin: 14px 0 10px;
  color: #10233d;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  }

  .pos-service-notice__text {
  margin: 0;
  max-width: 760px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
  }

  .pos-service-notice__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 18px;
  }

  .pos-service-notice__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #10233d;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .pos-service-notice__pill i {
  color: var(--primery-color);
  }
  .pos-service-notice__pill{
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  .pos-service-notice__pill:hover {
    color: var(--primery-color);
  }
  .pos-service-notice__hint {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  }

  @media (max-width: 767.98px) {
  .pos-service-notice {
      padding: 22px 18px;
      border-radius: 20px;
  }

  .pos-service-notice__content {
      flex-direction: column;
      gap: 16px;
  }

  .pos-service-notice__icon {
      width: 56px;
      height: 56px;
      flex-basis: 56px;
      border-radius: 16px;
      font-size: 22px;
  }

  .pos-service-notice__title {
      font-size: 22px;
  }
  }

@media (max-width: 1199px) {
    .merchant-kyc-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767px) {
    .merchant-kyc-page__shell {
        padding: 18px;
        border-radius: 18px;
    }

    .merchant-kyc-page__header {
        flex-direction: column;
    }

    .merchant-kyc-page__header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .merchant-kyc-page__title {
        font-size: 28px;
    }

    .merchant-kyc-form-grid,
    .merchant-kyc-documents,
    .merchant-kyc-extra__grid,
    .merchant-kyc-extra__grid--labels {
        grid-template-columns: minmax(0, 1fr);
    }

    .merchant-kyc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .merchant-kyc-btn {
        width: 100%;
    }
}

.merchant-config-page {
    padding: 8px 0 20px;
}

.merchant-config-card {
    overflow: hidden;
    border: 1px solid rgba(79, 19, 174, 0.10);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--primery-color-soft));
    box-shadow: 0 24px 70px var(--primery-color-soft);
}

.merchant-config-hero {
    gap: 20px;
    padding: 28px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--primery-color-soft);
}

.merchant-config-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--primery-color-soft);
    color: var(--primery-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merchant-config-hero__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
}

.merchant-config-hero__subtitle {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.merchant-config-main {
    padding: 28px 30px 32px;
}

.merchant-config-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.merchant-config-summary__item {
    padding: 18px 20px;
    border: 1px solid var(--primery-color-soft);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 10px var(--primery-color-soft);
}

.merchant-config-summary__label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merchant-config-summary__value {
    display: block;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    word-break: break-word;
}

.merchant-config-section {
    padding: 24px 26px;
    margin-bottom: 20px;
    border: 1px solid var(--primery-color-soft);
    border-radius: 22px;
    background: #ffffff;
}

.merchant-config-section__head {
    gap: 18px;
}

.merchant-config-section__kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primery-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.merchant-config-section__title {
    color: var(--text-color);
    font-size: 21px;
    font-weight: 700;
}

.merchant-config-section__title i {
    color: var(--primery-color);
}

.merchant-config-section__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


.merchant-config-env-btn {
    min-width: 150px;
    padding: 12px 20px;
    border-width: 1px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.merchant-config-env-btn.active,
.merchant-config-env-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px var(--primery-color-soft);
}

.merchant-config-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.merchant-config-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid var(--primery-color-soft);
    background: #ffffff;
    box-shadow: 0 8px 10px var(--primery-color-soft);
}

.merchant-config-info-card__icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primery-color-soft);
    color: var(--primery-color);
    font-size: 18px;
}

.merchant-config-info-card h6 {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
}

.merchant-config-info-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.merchant-config-info-card--warning {
    background: linear-gradient(180deg, #ffffff 0%, #fff9ef 100%);
}

.merchant-config-credentials__panel {
    padding: 26px;
    border: 1px solid var(--primery-color-soft);
    border-radius: 24px;
    box-shadow: 0 18px 44px var(--primery-color-soft);
}

.merchant-config-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--primery-color-soft);
}

.merchant-config-panel-head__title {
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
}

.merchant-config-panel-head__title i {
    color: var(--primery-color);
}

.merchant-config-panel-head__text {
    max-width: 780px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.merchant-config-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.merchant-config-status--soft {
    background: rgba(13, 110, 253, 0.12);
    color: #0d6efd;
}

.merchant-config-status--strong {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

.merchant-config-credential-list {
    display: grid;
    gap: 16px;
}

.merchant-config-credential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(79, 19, 174, 0.10);
    border-radius: 20px;
    background: #ffffff;
}

.merchant-config-credential-item__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primery-color-soft), rgba(255, 255, 255, 0.06));
    color: var(--primery-color);
    font-size: 18px;
}

.merchant-config-credential-item__body {
    min-width: 0;
    width: 100%;
}

.merchant-config-credential-item__body h6 {
    margin-bottom: 6px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
}

.merchant-config-credential-item__body p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.merchant-config-credential-item__value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7f7fb;
    border: 1px solid rgba(79, 19, 174, 0.08);
}

.merchant-config-credential-item__value span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    word-break: break-all;
}

.merchant-config-copy {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 12px;
    background: var(--primery-color);
    color: #ffffff;
    transition: all 0.25s ease;
}

.merchant-config-copy:hover {
    background: #3f0f8c;
    transform: translateY(-1px);
}

.merchant-config-docs {
    gap: 18px;
    padding: 24px 26px;
    margin-top: 22px;
    border: 1px solid rgba(79, 19, 174, 0.10);
    border-radius: 22px;
    background: #ffffff;
}

.merchant-config-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 10px var(--primery-color-soft);
     transition: all 0.25s ease;
     border: 1px solid var(--primery-color-soft);
}
.merchant-config-btn:hover{
  color: var(--primery-color);
  box-shadow: 0 14px 28px var(--primery-color-soft);
} 
.merchant-config-btn--ghost {
    box-shadow: none;
}

