:root {
    /* ---Theme-Fonts-Css--- */
    --theme-font-family: "Urbanist", sans-serif;
    /* ---Theme-Colors--- */
    --theme-primary-color: 253, 99, 60;
    /* ---Theme-Fonts-Colors--- */
    --theme-black-text-color: 32, 32, 32;
    --theme-White-text-color: 255, 255, 255;
    --theme-grey-text-color: 131, 131, 131;
    --theme-grey-1-text-color: 120, 120, 120;
    /* ---Theme-Fonts-Bg--- */
    --theme-black-bg-color: 32, 32, 32;
    --theme-body-bg-color: 246, 246, 246;
    --theme-white-bg-color: 255, 255, 255;
    --theme-grey-bg-color: 250, 250, 250;
    /* ---Theme-Border-Color--- */
    --theme-form-border-color: 243, 243, 243;
    --theme-white-border-color: 255, 255, 255;
    --theme-black-border-color: 32, 32, 32;
    /* ---Theme-Highlight-Color--- */
    --theme-success-color: 141, 199, 102;
    --theme-danger-color: 255, 47, 47;
    --theme-warning-color: 255, 193, 7;
    /* ---Chart-Color--- */
    --theme-text-color: #7B7B7B;
    --theme-highlight-color: #FD633C;
    --theme-highlight-color-2: #FF3D00;
    --theme-highlight-color-3: #C9C9C9;
    --theme-highlight-black: #202020;
    --theme-border-color: #F2F2F7;
}
/* imps-money-lite page css start here  */
:root {
    /* Fonts */
    --theme-font-family: "Urbanist", sans-serif;

    /* Core colors (mapped from theme) */
    --primary-black: rgb(var(--theme-black-bg-color));
    --secondary-black: rgb(60, 60, 60); /* closest match */

    --text-gray: rgb(var(--theme-grey-text-color));
    --border-gray: rgb(var(--theme-form-border-color));
    --light-gray: rgb(var(--theme-body-bg-color));

    --white: rgb(var(--theme-white-bg-color));
}
/* imps-money-lite page css start here  */
/* ---Universal-css--- */
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--theme-font-family);
    background: rgb(var(--theme-body-bg-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    color: rgb(var(--theme-color-primary));
}

a:hover {
    color: rgb(var(--theme-color-primary-hover));
    text-decoration: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---Commen-Css--- */
/* ---Toastr-Css--- */
#toast-container>div {
    width: 400px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 10px 10px;
    padding-left: 40px;
    opacity: 1;
    flex-direction: row-reverse;
    background-size: 16px;
    border: 0;
    box-shadow: none;
    transition: box-shadow 0.4s ease;
}

#toast-container>div:hover {
    box-shadow: 0 0 10px #00000047;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.toast-close-button {
    position: unset;
    float: unset;
    line-height: 9px;
    display: block;
    opacity: 1;
    font-weight: 200;
    font-size: 20px;
    vertical-align: middle;
    text-shadow: none;
    border: 1px solid #ffffff !important;
    padding: 5px !important;
    border-radius: 20px;
}

.toast-success {
    background-color: rgb(var(--theme-success-color));
}

.toast-error {
    background-color: rgb(var(--theme-danger-color));
}

.toast-warning {
    background-color: rgb(var(--theme-warning-color));
}

.toast-info {
    background-color: rgb(var(--theme-primary-color));
}

/* ---Badge-Css--- */
.badge {
    font-size: 14px;
    line-height: 18px;
    padding: 2px 12px;
    font-weight: 500;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bg-success {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-success-color), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-warning-color), var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-danger-color), var(--bs-bg-opacity)) !important;
}

.bg-primary {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-primary-color), var(--bs-bg-opacity)) !important;
}

.bg-primary-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--theme-primary-color), var(--bs-bg-opacity)) !important;
}

.text-success {
    color: rgba(var(--theme-success-color), var(--bs-text-opacity)) !important;
}

.text-warning {
    color: rgba(var(--theme-warning-color), var(--bs-text-opacity)) !important;
}

.text-danger {
    color: rgba(var(--theme-danger-color), var(--bs-text-opacity)) !important;
}

.text-primary {
    color: rgba(var(--theme-primary-color), var(--bs-text-opacity)) !important;
}


/* ---Commen-head, Font-weight & Text-Color Css--- */
.head-xl {
    font-size: 38px;
    line-height: normal;
}

.head-lg {
    font-size: 24px;
    line-height: normal;
    gap: 5px;
}
.head-sm {
    font-size: 24px;
    line-height: normal;
}

.text-xll {
    font-size: 22px;
    line-height: normal;
}

.text-xl {
    font-size: 18px;
    line-height: normal;
}

.text-lg {
    font-size: 16px;
    line-height: normal;
}
.balance-visible {
    align-items: center;
}
.opacity-bg {
    --bs-bg-opacity: 1;
}
/* .text-md {
    font-size: 14px;
} */
u
.text-sm {
    font-size: 14px;
    line-height: normal;
}

.text-xs {
    font-size: 12px;
    line-height: normal;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.theme-text {
    color: rgb(var(--theme-primary-color));
}

.theme-text-black {
    color: rgb(var(--theme-black-text-color));
}

.theme-text-grey {
    color: rgb(var(--theme-grey-1-text-color));
}

/* --Form & Input-Css---*/
input:-internal-autofill-selected {
    background-color: rgba(var(--theme-primary-color), .2) !important;
}

::placeholder {
    font-size: 14px;
    color: rgb(var(--theme-grey-1-text-color));
    line-height: normal;
    font-weight: 500;
}

.form-label,
.form-check-label {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: rgb(var(--theme-black-text-color));
}

.right-header_bar .form-control,
.right-header_bar .form-select {
    min-width: 300px;
    min-height: 36px;
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding: 8px 10px;
    border-radius: 8px;
}

.form-lg {
    min-height: 48px;
    font-size: 16px;
    padding: 10px 14px;
}

.form-lg::placeholder {
    font-size: 16px;
    line-height: 16px;
}

.form-select {
    min-width: 140px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    color: rgb(var(--theme-black-text-color));
    background-color: var(--bs-body-bg);
    border-color: rgb(var(--theme-primary-color));
    box-shadow: 0 0 0 .25rem rgba(var(--theme-primary-color), .25);
}

.form-switch .form-check-input {
    width: 40px;
    height: 20px;
}

.form-check-input:checked {
    background-color: rgb(var(--theme-primary-color));
    border-color: rgb(var(--theme-primary-color));
}

.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffeeea'/%3e%3c/svg%3e");
}

.search-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path d="M14.3539 13.6463L11.2245 10.5175C12.1315 9.42859 12.5838 8.03189 12.4873 6.61798C12.3908 5.20407 11.7528 3.88181 10.7062 2.92625C9.65963 1.9707 8.28492 1.45543 6.86808 1.48763C5.45125 1.51983 4.10137 2.09702 3.09926 3.09913C2.09714 4.10125 1.51995 5.45113 1.48775 6.86796C1.45555 8.2848 1.97082 9.65951 2.92637 10.7061C3.88193 11.7527 5.20419 12.3906 6.6181 12.4872C8.03201 12.5837 9.42871 12.1314 10.5176 11.2244L13.6464 14.3538C13.6928 14.4002 13.748 14.4371 13.8087 14.4622C13.8694 14.4874 13.9344 14.5003 14.0001 14.5003C14.0658 14.5003 14.1309 14.4874 14.1916 14.4622C14.2523 14.4371 14.3074 14.4002 14.3539 14.3538C14.4003 14.3073 14.4372 14.2522 14.4623 14.1915C14.4875 14.1308 14.5004 14.0657 14.5004 14C14.5004 13.9343 14.4875 13.8693 14.4623 13.8086C14.4372 13.7479 14.4003 13.6927 14.3539 13.6463ZM2.50014 7.00002C2.50014 6.11 2.76406 5.23998 3.25853 4.49995C3.753 3.75993 4.4558 3.18316 5.27807 2.84256C6.10033 2.50197 7.00513 2.41285 7.87805 2.58649C8.75096 2.76012 9.55279 3.1887 10.1821 3.81804C10.8115 4.44738 11.24 5.2492 11.4137 6.12211C11.5873 6.99503 11.4982 7.89983 11.1576 8.7221C10.817 9.54436 10.2402 10.2472 9.50021 10.7416C8.76019 11.2361 7.89016 11.5 7.00014 11.5C5.80707 11.4987 4.66325 11.0242 3.81962 10.1805C2.976 9.33691 2.50147 8.19309 2.50014 7.00002Z" fill="%237B7B7B"/></svg>');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left 10px center;
    padding-left: 36px;
    background-color: rgb(var(--theme-grey-bg-color));
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-full-width {
    min-width: 100%;
    max-width: 100%;
}
.search_box-1 {
    background-image: url(../images/logo/search-2.png);
    background-size: auto;
}

.form-max-content {
    min-width: max-content;
}
.form-max-280 {
    min-width: 202px;
}
/* --Button-Css---*/
.theme-icon-btn {
    font-size: 26px;
    line-height: 26px;
    color: rgb(var(--theme-grey-text-color));
    border: none;
    background-color: transparent;
}
.transaction-c .flatpickr-calendar {
    right: -28px !important;
}
.theme-icon-btn-sm {
    font-size: 18px;
    line-height: 18px;
    color: rgb(var(--theme-grey-text-color));
    border: none;
    background-color: transparent;
}

.theme-icon-btn:hover,
.theme-icon-btn-sm:hover {
    color: rgb(var(--theme-primary-color));
}

.theme-btn,
.border-btn {
    padding: 8px 16px;
    color: rgb(var(--theme-White-text-color));
    background-color: rgb(var(--theme-black-bg-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    cursor: pointer;
    transition-property: color, background-color, border;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
    border: 1px solid rgb(var(--theme-black-border-color));
}

.theme-btn:hover,
.theme-btn:active {
    color: rgb(var(--theme-primary-color));
    background-color: rgb(var(--theme-white-bg-color));
    border: 1px solid rgb(var(--theme-primary-color));
}

.btn-radius-30 {
    border-radius: 30px;
}

.theme-btn i,
.border-btn i {
    font-size: 20px;
    line-height: 20px;
}

.btn-white {
    border: 1px solid rgb(var(--theme-white-border-color));
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
}

.btn-white .green-icon {
    color: rgb(var(--theme-success-color));
    position: relative;
}

.btn-white .green-icon::after {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -2px;
    left: 10%;
    background-color: rgba(var(--theme-success-color), 0.2);
    border-radius: 20px;
}

.add-icon-btn {
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    border-radius: 20px;
}

.border-btn {
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: var(--theme-white-bg-color);
    color: rgb(var(--theme-black-text-color));
    transition-property: background-color;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.border-btn:hover {
    background-color: rgb(var(--theme-grey-bg-color));
}

.theme-del-btn {
    font-size: 22px;
    line-height: 22px;
    padding: 6px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.theme-del-btn:hover,
.theme-del-btn:active {
    background-color: rgba(var(--theme-danger-color), 0.3) !important;
}

/* --Dropdown-Css---*/
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item i {
    font-size: 18px;
    line-height: 18px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: rgba(var(--theme-primary-color), 0.1);
    color: rgb(var(--theme-primary-color)) !important;
}

.dropdown-item.text-danger.active,
.dropdown-item.text-danger:active {
    --bs-bg-opacity: 0.2;
    background-color: rgba(var(--theme-danger-color), var(--bs-bg-opacity)) !important;
}

.theme-drop.nav-drop .dropdown-toggle {
    padding: 0;
}

.theme-drop.dropdown-toggle::after {
    display: none;
}

.theme-drop .dropdown-toggle {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='currentColor' viewBox='0 0 256 256'%3E%3Cpath d='M128 176a8 8 0 0 1-5.66-2.34l-72-72a8 8 0 0 1 11.32-11.32L128 157.37l66.34-66.34a8 8 0 0 1 11.32 11.32l-72 72A8 8 0 0 1 128 176z'/%3E%3C/svg%3E") no-repeat center;
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 24px !important;
    background-size: 18px;
}

.theme-drop .dropdown-toggle:hover {
    text-decoration: none;
}

.theme-drop .dropdown-toggle::after {
    display: none;
}

.theme-drop {
    line-height: normal;
    display: flex;
    align-items: center;
    height: min-content;
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 16px;
}

.theme-drop.no-drop-icon .dropdown-toggle {
    background: transparent;
    padding-right: 0 !important;
}

.dropdown-divider {
    border-color: rgb(var(--theme-form-border-color));
    margin: 6px;
}

/* --Accordion-Css---*/
.accordion-button:not(.collapsed),
.accordion-button:focus {
    background-color: transparent;
    box-shadow: 0 0 0 .25rem rgba(var(--theme-primary-color), .25);
}

.accordion-button,
.accordion-body {
    padding: 20px 15px;
}

.accordion-button::after {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-color: rgb(var(--theme-grey-bg-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-position: center;
    background-size: 18px;
}

.no-button.accordion-button::after {
    margin-left: auto;
}

.accordion-item {
    border-color: rgb(var(--theme-form-border-color));
}
.d-wrap {
    flex-wrap: wrap;
}
/* --Table-Css---*/
.table-responcive {
    overflow: hidden;
    overflow-x: scroll;
}
table.theme-table {
    border: none !important;
    width: 100% !important;
}

.theme-table th,
.theme-table td {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 8px;
    vertical-align: middle;
}

.theme-table th {
    background-color: rgb(247 123 92);
    color: rgb(255 255 255);
    border-bottom: none !important;
}
tr.even td {
    background: #f5f5f5;
    transition: all 0.3s ease;
}
tr.odd td {
    background: #ffffff;
    transition: all 0.3s ease;
}
/* Even Hover (Darker Gray) */
tr.even:hover {
    transform: translateY(-2px);
}
tr.even:hover td {
    background: #fff3ef;
}
/* Odd Hover (Soft Gray) */
tr.odd:hover td {
    background: #fff3ef;
}
.modal-dialog.modal-sm.modal-dialog-centered {
    max-width: 477px;
}
.confirm-payout .modal-body {
    padding-block: 15px;
}
.theme-table td {
    background-color: rgb(var(--theme-white-bg-color));
    color: rgb(var(--theme-black-text-color));
    border-bottom: 1px solid rgb(var(--theme-form-border-color)) !important;
}

.theme-table tr:last-child td {
    border-bottom: none !important;
}

.table-highlight {
    border: 1px solid rgba(var(--theme-black-border-color), 0.1);
    padding: 10px;
    border-radius: 10px;
    background-color: #ffffff;
}
.table-highlight.mb-4 .form-check-input {
    border: var(--bs-border-width) solid #f77b5c;
}

/* .table-highlight .theme-table th {
    background-color: rgba(var(--theme-black-bg-color), 0.08);
} */

.table-highlight .theme-table th:first-child {
    border-radius: 10px 0 0 10px;
}

.table-highlight .theme-table th:last-child {
    border-radius: 0 10px 10px 0;
}

.table-highlight .theme-table td {
    background-color: transparent;
}

.w-20 {
    width: 20%;
}

/* --Data-Table-Css---*/
.user-profile {
    background-color: rgb(var(--theme-primary-color));
    color: rgb(var(--theme-White-text-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    width: 34px;
    height: 34px;
}

.dataTables_empty {
    padding: 40px 0 !important;
}

.dataTables_info {
    color: rgb(var(--theme-black-text-color));
    font-size: 14px;
    font-weight: 500;
    padding-top: 0 !important;
    height: max-content;
}

.datatable-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

.dataTables_length label {
    font-size: 14px;
    text-transform: capitalize;
    color: rgb(var(--theme-black-text-color));
    font-weight: 500;
}

.dataTables_length .form-select {
    min-width: max-content;
    padding-right: 20px !important;
    background-position: center right 5px;
    min-height: 36px;
    border: 1px solid rgb(var(--theme-form-border-color)) !important;
    background-color: rgb(var(--theme-white-bg-color)) !important;
    color: rgb(var(--theme-black-text-color)) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px !important;
}

.dataTables_paginate {
    padding-top: 0 !important;
}

.pagination {
    margin: 0 !important;
}

.paginate_button {
    padding: 0 !important;
}

.page-link {
    font-size: 12px;
    padding: 4px 8px;
    font-weight: 500;
}

.page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--theme-primary-color), 0.25);
}

.active>.page-link,
.page-link.active {
    background-color: rgb(var(--theme-primary-color));
    border-color: rgb(var(--theme-primary-color));
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.page-item.active:hover {
    border-color: transparent;
}

.btn:disabled{
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: #202020;
    border-color: #202020;
    opacity: var(--bs-btn-disabled-opacity);
}

/* --Card-Css---*/
.theme-card {
    background-color: rgb(var(--theme-white-bg-color));
    border: 1px solid rgb(var(--theme-form-border-color));
    padding: 16px;
    border-radius: 16px;
}
.card-head{
    align-items: center !important;
}

.card-head {
    align-items: center !important;
}

.theme-card-body {
    padding: 16px;
    border-radius: 16px;
}

/* --Modal-Css---*/
.modal-header {
    padding: 16px;
    border-bottom: none;
    padding-bottom: 0;
    justify-content: space-between;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.btn-close {
    background: transparent;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content.rounded-4.transfer-otp-modal {
    background: #e8f0fe;
}
.transfer-body1 {
    background: linear-gradient(135deg, #ffb202 0%, #ff3400 100%);
    padding: 17px;
    border-radius: 8px;
}
.btn-secondary1 {
    background: #161616!important;
    color: #ffffff;
}
.transfer-body1 .form-control {
    text-align: start!important;
}
.btn-close::before {
    font-size: 30px;
    line-height: 30px;
    content: "\e4f8";
    font-family: "Phosphor" !important;
    display: block;
}

.modal-footer {
    padding-top: 0;
    border-top: none;
}

.modal-content {
    border-radius: 16px;
    border: none;
}
/* Confirm Transfer  modal css start here  */
.confirm-transfer-modal .modal-content {
    background: #e8f0fe;
}
.confirm-payout {
    background: #000000;
    background: linear-gradient(135deg, #ffb202 0%, #ff3400 100%);
}
.confirm-payout h5 {
    color: #ffffff;
}
.btn-success1 {
    background: #ffb202;
}
.btn-success1:hover {
    background: #d6990e;
}
.confirm-payout .form-label, .confirm-payout .text-muted {
    color: #ffffff!important;
}
/* Confirm Transfer  modal css end here  */
/* --Tabs-Css---*/
.tab-content {
    background-color: rgba(var(--theme-body-bg-color));;
    padding: 20px;
    border-radius: 16px;
    
}

.nav-tabs .nav-link i {
    font-size: 20px;
    line-height: 20px;
}

.nav-tabs .nav-link {
    padding: 14px 16px;
    margin-bottom: 0;
    border: none;
    border-radius: 16px 16px 0 0;
    display: flex;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    gap: 10px;
    align-items: center;
    background: #ffe1da;
    color: #f77b5c;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #f77b5c;
    color: #ffffff;
}

.nav-tabs {
    border: none;
}
.nav-tabs {
    border: none;
    gap: 10px;
}
/* --Flatpicker-Css---*/
.flatpickr-calendar {
    flex-direction: column;
}

.flatpickr-calendar.open {
    display: flex;
}

.flatpickr-last-selection {
    order: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

.flatpickr-months {
    order: 1;
}

.flatpickr-innerContainer {
    order: 3;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: rgb(var(--theme-primary-color));
    border-color: rgb(var(--theme-primary-color));
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: rgba(var(--theme-primary-color), 0.2);
    border: none;
}

.flatpickr-day.inRange {
    -webkit-box-shadow: -5px 0 0 rgba(var(--theme-primary-color), 0.2), 5px 0 0 rgba(var(--theme-primary-color), 0.2);
    box-shadow: -5px 0 0 rgba(var(--theme-primary-color), 0.2), 5px 0 0 rgba(var(--theme-primary-color), 0.2);
}

.flatpickr-preset-btn {
    background: rgba(var(--theme-primary-color), 0.2);
    border: 1px solid rgb(var(--theme-primary-color), 0.2);
    padding: 0 6px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(var(--theme-black-text-color));
}

.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0 rgba(var(--theme-primary-color), 0.2);
    box-shadow: -10px 0 0 rgba(var(--theme-primary-color), 0.2);
}

.flatpickr-parent {
    position: relative;
}
#tdsFilterForm .flatpickr-parent {
    width: 19%;
    /* width: 15%; */
}
form#tdsFilterForm {
    justify-content: space-between;
}
.distributor-calendar .flatpickr-calendar {
    right: 0 !important;
}
.flatpickr-calendar {
    top: 100% !important;
    left: 0 !important;
    /* right: -70px !important; */
    transform: none !important;
    margin-top: 8px;
    z-index: 999999;
}
.theme-table th {
    white-space: nowrap;
    height: 45px;
}
.flatpickr-left .flatpickr-calendar {
    left: unset !important;
    right: 0 !important;
}

.numInput.cur-year,
.flatpickr-monthDropdown-months {
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 4px 3px !important;
}

.flatpickr-current-month {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}

.numInputWrapper,
.flatpickr-monthDropdown-months {
    background: rgb(var(--theme-form-border-color)) !important;
    border-radius: 4px !important;
}
h5.text-xll.theme-text-black.font-600 {
    margin-bottom: 12px;
}
.flatpickr-parent::before {
    content: "\e10a";
    font-feature-settings: "liga";
    font-variant-ligatures: discretionary-ligatures;
    -webkit-font-smoothing: antialiased;
    font-family: "Phosphor" !important;
    position: absolute;
    top: 24%;
    left: 10px;
    width: max-content;
    height: max-content;
    line-height: 18px;
    font-size: 18px;
    color: rgb(var(--theme-grey-text-color));
}

.flatpickr-install {
    padding-left: 36px;
}

/* --Layout-Spacing & Divider-Css---*/
.layout-pad {
    padding: 20px 10px;
}

.form-spacing {
    row-gap: 20px;
}

.theme-form-divider {
    border-top: 1px solid rgb(var(--theme-form-border-color));
    padding-top: 20px;
}

/* --Theme-Layout-Css---*/
.main-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
}

.auth-wrapper {
    padding: 20px;
}

.content-wrapper {
    overflow: hidden;
    padding-left: 280px;
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.main-wrapper.sidebar-closed .content-wrapper {
    padding-left: 80px;
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.content-wrapper-inner {
    overflow: hidden;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    padding: 10px;
}

/* --Sidebar-Css---*/
.sidebar-link,
.sidebar-item {
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
    transition-property: font-size, gap;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-item {
    width: 100%;
    padding: 8px 14px;
    border-radius: 25px;
    color: rgb(var(--theme-grey-1-text-color));
}

.sidebar-item.active,
.menu-open .sidebar-submenu {
    background-color: rgb(247 123 92);
    color: rgb(var(--theme-White-text-color));
    transition-property: margin-bottom;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.menu-open .sidebar-submenu {
    margin-bottom: 6px;
}

.menu-open .sidebar-icon {
    background-color: rgb(var(--theme-white-bg-color));
}

.submenu-list .sidebar-item.active {
    background-color: rgba(var(--theme-primary-color), 0.2);
    color: rgb(var(--theme-primary-color));
}

.sidebar-link i {
    font-size: 20px;
    line-height: 20px;
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-logo {
    font-size: 28px;
    line-height: 28px;
    font-weight: 800;
    color: rgb(var(--theme-black-text-color));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}
.theme-logo img {
    width: 28px;
    height: 28px;
    margin-right: -14px;
    margin-bottom: 7px;
}

.theme-sidebar-main {
    width: 280px;
    padding: 10px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed {
    width: 80px;
    transition-property: width;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-subhead,
.theme-sidebar-main.collapsed .sidebar-link,
.theme-sidebar-main.collapsed .sidebar-item,
.theme-sidebar-main.collapsed .sidebar-icon i,
.theme-sidebar-main.collapsed .theme-logo {
    font-size: 0;
    justify-content: center;
    gap: 0;
    transition-property: font-size, justify-content, gap;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .submenu-list {
    padding-left: 0;
    transition-property: padding-left;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-icon {
    width: 0;
    height: 0;
}

.theme-sidebar-main.collapsed .theme-sidebar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.theme-sidebar-main.collapsed .theme-sidebar::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    transition-property: width, height;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar-main.collapsed .sidebar-item:has(.sidebar-subhead) {
    display: none;
    transition-property: display;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.theme-sidebar {
    background-color: rgb(var(--theme-White-text-color));
    border-radius: 20px;
    padding: 20px 10px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

.sidebar-menu-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-subhead {
    color: rgb(var(--theme-grey-text-color));
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon {
    background-color: rgba(var(--theme-grey-text-color), 0.2);
    border-radius: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: width, height;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon i {
    transition: transform 0.4s ease;
    font-size: 16px;
    line-height: 16px;
    color: rgb(var(--theme-black-text-color));
    transition-property: font-size;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-icon i::before {
    transition: content 0.4s ease;
}

.submenu {
    /* display: flex;
    flex-direction: column;
    gap: 6px; */
}

.submenu-list {
    padding-left: 10px;
    width: 100%;
    overflow: hidden;
    height: 0;
    transform: translateY(-5px);
    transition-property: height, transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition-property: padding-left;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.submenu.menu-open .submenu-list {
    height: max-content;
    transform: translateY(0);
    transition-property: padding;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 160ms;
}

.sidebar-item:has(.sidebar-subhead) {
    padding-bottom: 10px;
    padding-top: 20px;
}

.sidebar-toggle-btn {
    border-radius: 20px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--theme-black-bg-color));
    color: rgb(var(--theme-White-text-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    top: 0;
    z-index: 2;
}

.sidebar-toggle-btn {
    border-radius: 20px;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--theme-black-bg-color));
    color: rgb(var(--theme-White-text-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 0;
    top: 0;
    z-index: 2;
    transform: rotate(0deg);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 120ms;
}

.sidebar-toggle {
    display: flex;
    justify-content: flex-end;
}

.theme-sidebar-main.collapsed .sidebar-toggle-btn i {
    transform: rotate(180deg);
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.3, 0, 0.2, 1);
    transition-duration: 120ms;
}

/* --Navbar-Css---*/
.navbar-theme {
    background-color: rgb(var(--theme-white-bg-color));
    padding: 8px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.theme-divider {
    height: 100%;
    width: 1px;
    background-color: rgba(var(--theme-black-bg-color), 0.2);
}

.profile-drop-main .dropdown-menu {
    min-width: 240px;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
}

.profile-drop-main .dropdown-item {
    color: rgb(var(--theme-grey-text-color));
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
    border-radius: 10px;
}

.profile-drop-main .dropdown-item i {
    font-size: 20px;
    line-height: 20px;
}

/* --Dashboard-Layout-Css---*/
.dash-card {
    flex: 1;
}

.highlight-card-dash {
    background-color: rgb(var(--theme-primary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.highlight-card-dash::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 25vw;
    min-height: 25vw;
    background-image: url('/images/vectors/highlight-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    left: -2%;
    top: -30%;
    opacity: 0.4;
}

.rupe-top {
    vertical-align: super;
}

.card-upper,
.card-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.card-index-2 {
    z-index: 2;
}

.card-index-3 {
    z-index: 3;
}

.card-right-items {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hide-icon-btn {
    display: none;
}

.sub-card-icon {
    border: 1px solid rgb(var(--theme-form-border-color));
    color: rgb(var(--theme-primary-color));
    font-size: 20px;
    line-height: 20px;
    padding: 4px;
    border-radius: 4px;
}

.dash-inner-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 10px;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 15px;
}

.lg-box-big {
    grid-column: span 5;
}

.md-box-big {
    grid-column: span 2;
}

.sm-box-big {
    grid-column: span 2;
    /* max-height: 186px; */
}

.two-one-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.retailer-card {
    flex: 1;
}

.highlighter-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.highlighter {
    width: 5px;
    height: 60px;
    border-radius: 6px;
}

.retailers {
    background-color: var(--theme-highlight-black);
}

.distributors {
    background-color: var(--theme-highlight-color);
}

.masters {
    background-color: var(--theme-highlight-color-2);
}

.clients {
    background-color: var(--theme-highlight-color-3);
}

.highlighter-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlights-colors {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.overview-graph {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: calc(100% - 70px); */
    height: calc(8% - 70px);
}

.apexcharts-canvas:focus,
.apexcharts-canvas *:focus,
.apexcharts-svg:focus,
.apexcharts-svg *:focus {
    outline: none !important;
    box-shadow: none !important;
}

.blance-wrapper {
    border: 1px solid rgb(var(--theme-form-border-color));
    background-color: rgb(var(--theme-grey-bg-color));
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 8px;
    gap: 6px;
}

.blance-wrapper i {
    font-size: 15px;
    line-height: 24px;
    color: rgb(var(--theme-grey-text-color));
}

.blance-wrapper span {
    font-size: 16px;
    line-height: 16px;
    color: rgb(var(--theme-grey-text-color));
    font-weight: 500;
}

/* --Dashboard-Charts-Css---*/
.chart-bubble {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chart-bubble.show {
    opacity: 1;
    transform: translate(-50%, 75%) scale(1);
}

.chart-bubble span {
    color: var(--theme-text-color);
    font-size: 13px;
    font-weight: 400;
}

.chart-bubble strong {
    color: var(--theme-highlight-black);
    font-size: 20px;
    font-weight: 600;
}

/* --Auth-Pages-Css---*/
.theme-logo-auth {
    width: 240px;
}

.banner-login {
    background-image: url('/images/auth/login-banner.png');
    background-repeat: no-repeat;
    background-position: center 0%;
    width: 100%;
    height: calc(100vh - 40px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 40px;
    border-radius: 16px;
    background-size: cover;
}

/* --Login-Pages-Css---*/
.login-center {
    display: flex;
    align-items: center;
    justify-content: stretch;
    height: calc(100% - 17px);
}

.login-card {
    padding: 60px 20px;
}

/* --Verify-Blade-Pages-Css---*/
.otp-inputs {
    gap: 12px;
    width: 100%;
    gap: 20px;
}

.otp-box {
    width: 100%;
    height: 122px;
    text-align: center;
    font-size: 96px;
    line-height: normal;
    border-radius: 30px;
    border: 1px solid rgb(209 209 209);
    transition: all 0.2s ease;
}

.otp-box:focus {
    border-color: rgb(var(--theme-primary-color));
    box-shadow: 0 0 0 3px rgba(var(--theme-primary-color), 0.25);
    outline: none;
}

/* --Select-Blade-Pages-Css---*/
.method-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-btn {
    display: flex;
    align-items: center;
    border: 1px solid rgb(var(--theme-form-border-color));
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(var(--theme-body-bg-color));
    gap: 20px;
    transition: border 0.4s ease, background-color 0.4s ease;
}

.method-btn:hover,
.method-btn:active {
    background-color: rgba(var(--theme-primary-color), .1);
    border-color: rgb(var(--theme-primary-color));
}

.method-btn img {
    width: 80px;
    height: 80px;
}

.method-btn i {
    font-size: 80px;
    line-height: 80px;
    color: rgb(var(--theme-primary-color));
}

.method-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --Commisson-Blade-Pages-Css---*/
.commisson-wrapper {
    gap: 30px;
    display: flex;
    align-items: center;
}

.commisson-card {
    max-width: 300px;
    padding: 16px 20px;
    background-color: rgb(var(--theme-grey-bg-color));
    transition: border-color 0.4s ease, background-color 0.4s ease;
}

.commisson-card:hover {
    background-color: rgba(var(--theme-primary-color), .2);
    border-color: rgb(var(--theme-primary-color));
}

.commission-btn {
    margin-left: auto;
}

.commission-table {
    border-radius: 12px;
    /* overflow: hidden; */
}

.commission-table td {
    background-color: rgb(var(--theme-grey-bg-color));
}

/* --Show-Dashboard-Pages-Css---*/
.profile-img .user-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    font-size: 80px;
    line-height: 80px;
}

.show-head {
    display: flex;
    gap: 20px;
}

.profile-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-col-deatils {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex: 1;
    justify-content: space-between;
}

.profile-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.profile-tab-item {
    flex: 0 0 21%;
}

/* --Services-Pages-Css---*/
.services-img {
    height: 100%;
    object-fit: contain;
}

.notif-dropdown {
    position: absolute;
    top: 50px;
    right: 15px;
    width: 280px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 9999;
}

.notif-item:hover {
    background: #f8f9fa;
    cursor: pointer;
}

.notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgb(var(--theme-primary-color));
    color: #fff;
    border-radius: 50%;
    font-size: 10px !important;
    padding: 0px 6px !important;
}

/* --Transactions-Pages-Css---*/
.theme-filter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.theme-filter form {
    justify-content: end;
}

.h5-wallet {
    width: max-content;
}


.badge {
    cursor: pointer;
}

.btn-group .btn {
    padding: 0.25rem 0.5rem;
}

.quick-permission-item {
    padding: 0.25rem;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
}

/* --Support-Pages-Css---*/
.message-main {
    height: calc(100vh - 280px);
    overflow-y: scroll;
}

.message-box {
    padding: 8px 12px;
    border-radius: 5px;
    max-width: 60%;
}

.message-box p {
    line-height: 22px;
}

/* --Operations-Dashborad-Css---*/
.operations-dash {
    display: flex;
    align-items: center;
    gap: 20px;
}

.operations-inner {
    flex: 1;
}

.operations-inner .theme-card {
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.operations-inner .theme-card .card-upper{
    flex: 1;
}
/* imps-money-lite page css start here  */
.fingerprint-icon {
    font-size: 42px;
    color: var(--primary-black);
    display: inline-block;
}
/* fingerprint icon css start here  */
.fingerprint-icon i {
color: #fafafa;
font-size: 23px;
background: #fd633c;
border-radius: 30px;
padding: 5px;
}
div#kycFormBox {
background: #e8f0fe;
padding: 15px;
border-radius: 8px;
}

.status-box {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
    margin-bottom: 15px;
}
.status-success { 
    background: #f0f0f0; 
    color: #1a1a1a; 
    border-left: 4px solid #000; 
}
.status-success:hover {
    background-color: #e6f4ea;
    background: #198754;
    color: #ffffff;
}
.status-pending:hover {
    background-color: #856404;
    color: #fff3cd;
    border: 1px solid #fff3cd;
}
.status-error { 
    background: #f5f5f5; 
    color: #333; 
    border-left: 4px solid #666; 
}
.status-info {
background: rgb(255 255 255);
color: #444;
border-left: 4px solid rgb(var(--theme-primary-color));
}
.section-card {
    height: 100%;
    min-height: 500px;
    border: 2px solid var(--border-gray);
}

.section-header {
    background: var(--primary-black);
    color: white;
    padding: 15px;
    /* border-radius: 8px 8px 0 0; */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number, .ph-bank {
background: rgb(var(--theme-primary-color));
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}

.card.active-section {
    border: 2px solid var(--primary-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.limit-info {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-black);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.subsection-header {
    background: var(--secondary-black);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subsection-card {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px;
    transition: all .3s ease;
}

.subsection-card.active-subsection {
border-color: var(--primary-black);
/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
background: rgb(232 240 254);
}

.subsection-number {
background: rgb(247 123 92) !important;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: bold;
}

.divider-section {
    border-top: 2px dashed var(--border-gray);
    margin: 20px 0;
    position: relative;
}
/* Sign in to your account css start here */

.login-card .form-control{
    height: 60px;
    border: 1px solid rgb(195 195 195);
    padding: 0 14px;
    font-size: 20px;
}

/* Password dots size */
.login-card #password{
    font-size: 20px;
}

/* Placeholder */
.login-card .form-control::placeholder{
    font-size: 19px;
}


/* .divider-section::before {
    content: "â†“";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 10px;
    color: var(--primary-black);
    font-size: 20px;
} */

/* IMPS Report badge css start here */
span.status-count-badge {
    background-color: rgb(var(--theme-white-bg-color));
    border: 1px solid rgb(var(--theme-form-border-color));
    padding: 16px;
    border-radius: 16px;
}
.text-pending {
    color: #856404;
}
.text-inprogress {
    color: #1a56db;
}
.badge_box h6 {
    text-transform: uppercase;
}
.badge-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 20px;
}
/* IMPS Report badge css end here */
.logo-active-state {
min-height: 350px;
display: flex;
align-items: start;
justify-content: center;
background: rgb(232 240 254);
border-radius: 8px;
}
/* .ph-identification-card {
color: rgb(var(--theme-primary-color));
} */
.form-control.search-icon {
padding-left: 35px;
}
.logo-active-state img {
    max-height: 392px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.select2-container--default .select2-selection--single {
    height: 32px!important;
    padding: 1px 8px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    background-color: white;
}
div#beneficiarySubsection input {
    font-size: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 21px;
    font-size: 16px;
    color: var(--primary-black);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    opacity: 0;
    pointer-events: none;
}

.select2-results__option {
    font-size: 13px;
    padding: 10px 12px;
    background-color: white;
    color: var(--primary-black);
}

.select2-results__option--highlighted {
background-color: rgb(247 123 92) !important;
color: white !important;
border-radius: 8px;
}
.select2-results__option--highlighted .beneficiary-option {
background-color: rgb(247 123 92) !important;
color: white !important;
/* padding: 14px 13px; */
}
.select2-results__option--highlighted .beneficiary-option strong {
color: white !important;
}

.select2-results__option--highlighted .beneficiary-option .sep {
color: #ffffff !important;
transition: 0.5s;
}

.select2-results__option--highlighted .beneficiary-option small {
color: #ddd !important;
}

.select2-results__option--highlighted .verification-icon.verified {
color: #90ee90 !important;  /* Light green on dark background */
}


.select2-results__option--highlighted .verification-icon.unverified {
color: #ff6b6b !important;  /* Light red on dark background */
}

.select2-results__option--highlighted .beneficiary-option strong,
.select2-results__option--highlighted .beneficiary-option small {
    color: white !important;
}

.select2-dropdown {
    border: 1px solid var(--border-gray);
    background-color: white;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid var(--border-gray);
    background-color: white;
    color: var(--primary-black);
}
.main-name strong {
    font-size: 18px!important;
}
.beneficiary-option strong, .beneficiary-option span {
    transition: 0.3s;
    font-size: 15px;
}
.beneficiary-option {
    background: #ffe1da;
    color: #000;
    transition: 0.5s;
    margin-bottom: 7px;
    padding: 12px 9px 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: scroll;
    justify-content: space-between;
}
.name-img1 {
    display: flex;
    align-items: center;
    gap: 25px;
}
.ifsc_grid1 {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 25px;
}
.beneficiary-option img {
    width: 39px;
    height: 40px;
    mix-blend-mode: multiply;
    object-fit: contain;
}
span.select2-results {
padding-inline: 5px;
}
.beneficiary-option strong {
color: #000;  /* Changed from #fff to black */
font-weight: 600;
transition: 0.5s;
}

.beneficiary-option .sep {
color: #666;  /* Changed from #aaa */
margin: 0 4px;
}

.beneficiary-option small {
color: var(--text-gray);
font-size: 11px;
display: block;
line-height: 1.3;
}
.lg-box-big_7 .flatpickr-calendar {
    top: 100% !important;
    left: -80px !important;
    /* right: 0!important; */
    transform: none !important;
    margin-top: 8px;
    z-index: 999999;
}
/* Verification status icons */
.verification-icon {
font-size: 16px;
flex-shrink: 0;
}

.verification-icon.verified {
color: #28a745;  /* Green for verified */
transition: 0.5s;
font-size: 18px;
}
/* Verified badge in form */
.verified-badge {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
margin-left: 10px;
}

.verified-badge.verified {
background: #d4edda;
color: #155724;
}

.verified-badge.unverified {
background: #f8d7da;
color: #721c24;
}
.select2-results__option {
padding: 0 !important;
}

.add-new-option {
    color: var(--primary-black) !important;
    font-weight: 600;
}

.form-control {
    height: 32px;
    padding: 4px 8px;
    font-size: 13px;
    border: 1px solid var(--border-gray);
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

label, .form-label {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-black);
}

.subsection-card {
    padding: 10px;
}

.subsection-header {
    padding: 8px 12px;
    font-size: 14px;
}

/* Customer Info Display */
.customer-info-display {
    background: rgb(232 240 254);
    border: 2px solid var(--primary-black);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: none;
}

.customer-info-display.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.customer-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.customer-info-row:last-child {
    margin-bottom: 0;
}

.customer-info-icon {
    width: 35px;
    height: 35px;
    background: rgb(var(--theme-primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.customer-info-content {
    flex: 1;
}

.customer-info-label {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.customer-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
}

.btn-change-mobile {
    font-size: 11px;
    padding: 2px 10px;
    height: auto;
}
.lg-box-big_7 {
    grid-column: span 7;
}
.add_topup-btn1 {
    background-color: rgb(247, 123, 92);
    color: #fff;
    border: 1px solid rgb(247, 123, 92);
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    animation: pulseRing 1.2s ease-out infinite;
}
/* payout services css start here  */
.payout-service-form {
    margin: 0 auto;
    border: 2px solid var(--primary-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 30px;
    background: rgb(232 240 254);
}
.payout-service-form .form-control, .payout-service-form .form-select{
    height: 47px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #000 !important;
}
.limit-heading {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.row.pt-0.payout-limit-box {
    justify-content: end;
}
.payout-service-form .form-control::placeholder, .payout-service-form .form-select::placeholder {
    font-size: 15px;
}
.payout-service-form label {
    font-size: 17px;
}
/* payout services css end here  */

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(247,123,92,0.6);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(247,123,92,0.25);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(247,123,92,0);
    }
}

.add_topup-btn1:hover {
    background-color: rgb(254, 254, 254);
    border: 1px solid rgb(247, 123, 92);
    color: rgb(247, 123, 92);
}

/* Black & White Button Theme */
/* .btn-primary {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: white;
} */
.btn-primary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-primary:hover {
    background-color: var(--secondary-black);
    border-color: var(--secondary-black);
}

.btn-success {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    color: white;
}

.btn-success:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline-primary {
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.btn-outline-primary:hover {
background-color: rgb(247 123 92);
color: white;
border: 1px solid rgb(var(--theme-primary-color));
}
div#customerLookupBox {
background: #e8f0fe;
padding: 10px;
border-radius: 8px;
}
/* .flatpickr-calendar.animate.open {
    z-index: 99;
} */
.hide-index {
    z-index: unset;
}
/* payout-successful css start here */
.payout-successful i {
    font-size: 20px;
    background: rgba(var(--theme-primary-color), 0.2);
    border-radius: 20px;
    padding: 9px;
    color: rgb(var(--theme-primary-color));
}
.modal-body.payout-successful {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 55px;
}
/* payout-successful css end here */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseLogo {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.input-group-text {
background: rgb(247 123 92) !important;
color: white;
border: 1px solid rgb(247 123 92);
font-size: 16px;
}

.alert {
    border-radius: 6px;
}

/* Receipt Styles */
.receipt-container {
    background: white;
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}
.receipt-disclaimer {
    margin-top: 10px;
    padding: 15px;
    background: #f5f5f5;
    border-left: 3px solid rgb(247, 123, 92);
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}
.receipt-main-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 11px 0 6px 0;
}

.receipt-header {
    text-align: center;
    border-bottom: 2px dashed var(--border-gray);
    padding-bottom: 7px;
    margin-bottom: 0px;
}
.receipt-table td {
    padding: 9px 15px;
    font-size: 13px;
}
.receipt-logo {
    max-width: 45px;
    height: auto;
    margin-bottom: 0px;
}
.receipt-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.receipt-subtitle {
    font-size: 12px;
    color: var(--text-gray);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-label {
    color: var(--text-gray);
    font-weight: 500;
}

.receipt-value {
    color: var(--primary-black);
    font-weight: 600;
    text-align: right;
}

.receipt-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    padding: 20px 0;
    background: var(--light-gray);
    border-radius: 8px;
    margin: 20px 0;
}

.receipt-status {
    text-align: center;
    padding: 15px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}

.receipt-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed var(--border-gray);
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-gray);
}

.btn-delete-beneficiary {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: transparent;
border: none;
color: #dc3545;
font-size: 18px;
cursor: pointer;
padding: 5px;
line-height: 1;
}

.btn-delete-beneficiary:hover {
    color: #bb2d3b;
}

.beneficiary-field-wrapper {
    position: relative;
}
.bank-logo-row {
display: flex;
gap: 12px;
align-items: center;
margin-bottom: 12px;
}
div#manualEntryForm .form-control {
    margin-bottom: 20px!important;
}

.beneficiary-field-wrapper .input-group-text {
    height: 37px;
}

.bank-logo-row img {
height: 50px;
width: auto;
opacity: 0.85;
pointer-events: none; /* ðŸ”’ not clickable */
user-select: none;
}



.btn-light-green {

    background: #337c33;

    color: #ffff;

}

.btn-light-green:hover {

    background: #337c33;

    color: #ffff;

}
/* All Top-Up Requests css start here  */
#topupScopeTabs .nav-link {
    background: #ffe1da;
    color: #f77b5c;
}
#topupScopeTabs .nav-link.active {
    background: #f77b5c !important;
    color: #ffffff;
}
/* All Top-Up Requests css end here  */

@media print {
    body * {
        visibility: hidden;
    }
    .receipt-container, .receipt-container * {
        visibility: visible;
    }
    .receipt-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .no-print {
        display: none !important;
    }
}
/* Global Limit Card Styles */
#globalLimitBox .card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#globalLimitBox .card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

#globalLimitBox .card-body {
animation: fadeInSlide 0.5s ease;
}

@keyframes fadeInSlide {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* ===== STATUS BADGE : Light BG + Dark Text ===== */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.4px;
    min-width: 90px;
    text-align: center;
    border: 1px solid transparent;
}

/* SUCCESS */
.status-success {
    background-color: #e6f4ea;
    color: #198754;
    border-color: #198754;
    transition: all 0.3s ease;
}

/* FAILED */
.status-failed, .count-failed, .count-all, .count-inprogress, .count-pending, .count-success {
    background-color: #fffcfc;
    color: #dc3545;
    border-color: #dc3545;
    transition: all 0.3s ease;
}

/* PENDING */
.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border-color: #856404;
}

/* OTHER */
.status-other {
    background-color: #e9ecef;
    color: #343a40;
    border-color: #6c757d;
}

/* Warning icon */
.status-icon {
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
}

.status-icon:hover {
    transform: scale(1.25);
    transition: transform 0.2s ease;
}

/* Gateway & Service Card Styles */
.gateway-card, .service-card {
border: 2px solid var(--primary-black);
border-radius: 8px;
padding: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
min-width: 100px;
position: relative;
background: white;
}

.gateway-card:hover, .service-card:hover {
border-color:  rgb(247 123 92);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}

.gateway-card.selected, .service-card.selected {
border-color: #28a745;
background: #e8f5e9;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gateway-card .check-icon,
.service-card .check-icon {
position: absolute;
top: 1px;
right: 2px;
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid var(--border-gray);
background: white;
display: none;
align-items: center;
justify-content: center;
color: white;
font-size: 10px;
font-weight: bold;
}
.icon-hide{
    display: none;
}
.beneficiary-field-wrapper .input-group-text{
    height: 100%;
}

.gateway-card.selected .check-icon,
.service-card.selected .check-icon {
display: flex;
background: var(--primary-black);
border-color:  var(--primary-black);
}

.gateway-name, .service-name {
font-weight: 600;
font-size: 15px;
color: var(--primary-black);
margin-top: 6px;
}
.gateway-service-card {
border: 2px solid var(--border-gray);
border-radius: 8px;
padding: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
min-width: 100px;
position: relative;
background: white;
}

.gateway-service-card:hover {
border-color: var(--primary-black);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transform: translateY(-2px);
}

.gateway-service-card.selected {
border-color: var(--primary-black);
background: var(--light-gray);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gateway-service-card .check-icon {
position: absolute;
top: 8px;
right: 8px;
width: 20px;
height: 20px;
border-radius: 50%;
border: 2px solid var(--border-gray);
background: white;
display: none;
align-items: center;
justify-content: center;
color: white;
font-size: 10px;
font-weight: bold;
}

.gateway-service-card.selected .check-icon {
display: flex;
background: var(--primary-black);
border-color: var(--primary-black);
}
/* ims button css start here  */

.btn-imps {
background-color: rgb(247 123 92) !important;
color: rgb(255 255 255) !important;
border: rgb(247 123 92) !important;
transition: all 0.3s ease;
}
.btn-imps:hover {
background-color: rgb(216 88 56) !important;
color: rgb(255 255 255) !important;
border: rgb(247 123 92) !important;
transition: all 0.3s ease;
}
.btn-kyc {
background: rgb(var(--theme-primary-color));
color: #ffff;
}
.btn{
opacity: 1!important;
}
.btn-kyc:hover {
background: rgb(215 79 45) !important;
color: #ffff!important;
}

/* Multi-Slab Progress Styles */
.slab-item {
border: 2px solid var(--border-gray);
border-radius: 8px;
padding: 12px;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 12px;
transition: all 0.3s ease;
}

.slab-item.active {
border-color: var(--primary-black);
background: var(--light-gray);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slab-item.completed {
border-color: #28a745;
background: #d4edda;
}

.slab-item.failed {
border-color: #dc3545;
background: #f8d7da;
}

.slab-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
flex-shrink: 0;
}

.slab-icon.pending {
background: #f8f9fa;
color: #6c757d;
}

.slab-icon.active {
background: var(--primary-black);
color: white;
animation: pulse 1.5s ease-in-out infinite;
}

.slab-icon.completed {
background: #28a745;
color: white;
}

.slab-icon.failed {
background: #dc3545;
color: white;
}

.slab-details {
flex: 1;
}

.slab-title {
font-weight: 600;
font-size: 14px;
margin-bottom: 2px;
}

.slab-amount {
font-size: 16px;
font-weight: 700;
color: var(--primary-black);
}

.slab-status {
font-size: 11px;
color: #6c757d;
}

@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.gateway-service-card.disabled {
    opacity: 1;
    filter: none;
    background: #f8f9fa;
    cursor: not-allowed !important;
    pointer-events: none;
}
.gateway-service-card.disabled:hover {
    border-color: var(--border-gray) !important;
    box-shadow: none !important;
    transform: none !important;
}
.transfer-mode-badge {
    opacity: 1 !important;
    filter: none !important;
    color: #202020 !important;
    font-weight: 700;
}
#gateway2LimitBox .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


#gateway2LimitBox .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}


#gateway2LimitBox .card-body {
    animation: fadeInSlide 0.5s ease;
}

.account-validation-message {
    font-size: 11px;
    margin-top: 4px;
    padding: 6px 10px;
    border-radius: 4px;
    display: none;
}

.account-validation-message.show {
    display: block;
}

.account-validation-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

.account-validation-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.account-validation-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 3px solid #17a2b8;
}

/* Field Validation Styles */
.field-validation {
    font-size: 11px;
    margin-block: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    display: none;
    animation: slideIn 0.3s ease;
}

.field-validation.show {
    display: block;
}

.field-validation.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 3px solid #dc3545;
}

.field-validation.success {
    background: #d4edda;
    color: #155724;
    border-left: 3px solid #28a745;
}

.field-validation.warning {
    background: #fff3cd;
    color: #856404;
    border-left: 3px solid #ffc107;
}

.field-validation.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 3px solid #17a2b8;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.customer-info-display, .subsection-card.active-subsection {
border: none;
}
/* imps form width  */
#beneficiaryColumn .form-control, div#transferSubsection .form-control {
    min-width: auto!important;
}

.admin-dashboard-input .flatpickr-parent {
    width: 50%;
}

.admin-dashboard-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.admin-dashboard-input .input-group.dashboard-group {
    flex-wrap: nowrap;
}
.parent-btns-group {
    flex-wrap: wrap;
}
td.sorting_1 {
    white-space: nowrap;
}
  /* 11 feb css start here  */
  .hiden-before::before {
    content: none;
}
.transaction-filters_row {
    display: grid;
    gap: 15px;
    flex-wrap: wrap;
    grid-template-columns: repeat(6, 1fr);
}
.btn-column {
    justify-content: end;
}
table#approvalTable td, table#approvalTable th {
    text-align: start;
    white-space: nowrap;
    font-size: 16px;
}
ul.pagination li a {
    font-size: 15px;
}
#approvalTable_info {
    font-size: 16px;
}
div.dataTables_wrapper div.dataTables_length label {
    font-size: 15px;
}
.approve-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #e6f4ea;
    color: #198754;
    border: 1px solid #198754;
    border-radius: 50%;
}
.reject-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fdecea;
    color: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 50%;
}
.approve-icon,
.reject-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* APPROVE HOVER */
.approve-icon:hover, .success-approved:hover {
    background-color: #198754;
    color: #fff;
}

/* REJECT HOVER */
.reject-icon:hover, .status-failed:hover {
    background-color: #dc3545;
    color: #fff;
}
.right_box_in {
    justify-content: space-between;
}
.count-failed:hover,
.count-all:hover,
.count-inprogress:hover,
.count-pending:hover,
.count-success:hover {
    background-color: rgb(247 123 92);
}

.count-failed:hover h6,
.count-failed:hover h4,
.count-failed:hover p,
.count-all:hover h6,
.count-all:hover h4,
.count-all:hover p,
.count-inprogress:hover h6,
.count-inprogress:hover h4,
.count-inprogress:hover p,
.count-pending:hover h6,
.count-pending:hover h4,
.count-pending:hover p,
.count-success:hover h6,
.count-success:hover h4,
.count-success:hover p {
    color: #fff !important;
}
/* dashboard css start here  */

.card-bottom.w-100.gap-2 {
    display: none;
}
.balance-value{
    display:none;
}
.theme-card.dash-card .head-lg {
    height: 36px;
}
.show-balance .balance-hide{
    display:none;
}

.show-balance .balance-value{
    display:inline;
}

/* dashboard css end here  */
 /* .dash-inner-cards p {
     word-break: break-all; 
}  */

span.balance-hide {
    font-size: 38px;
    margin-left: 5px;
    color: #4f4f4f;
}
.dash-card .ph-fill.ph-eye-slash {
    font-size: 23px;
    color: #484848;
}
@media (min-width: 1779px) {

    .dashboard-theme-card .card-index-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .main-theme-filter-row{
        display: grid;
        grid-auto-flow: column;
        align-items: start;
        gap: 10px;
    }
}
@media (min-width: 575px) {

    .full_box_m {
        width: 100%;
    }
}

.reset-btn {
    padding: 1px 5px !important;
    font-size: 13px;
    text-decoration: none;
    color: #FD633C !important; /* Orange by default */
}

.reset-btn:disabled {
    color: #ffff !important; /* White when disabled */
    cursor: not-allowed;
}
.topupform_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.modal-dialog.modal-dialog-centered {
    max-width: 678px;
}
.input_box, .btn_box {
    display: flex;
    gap: 12px;
}
.btn-submit-form {
    DISPLAY: FLEX;
    JUSTIFY-CONTENT: CENTER;
    padding-bottom: 20px;
}
input#depositDate::placeholder {
    padding-inline: 24px;
}
.topupform_grid .form-control:focus, .topupform_grid .form-select:focus {
    color: rgb(var(--theme-black-text-color));
    background-color: var(--bs-body-bg);
    border-color: rgb(var(--theme-primary-color));
    box-shadow: 0 0 0 .25rem rgba(var(--theme-primary-color), .25);
}
.topupform_grid input::placeholder, .topupform_grid .form-control::placeholder {
    font-size: 15px;
}
.topupform_grid .form-control {
    font-size: 15px;
    height: 38px;
    padding: 10px 10px;
}
.topupform_grid input[type="file"].form-control {
    padding: 7px 0px 1px 7px;
}
table.dataTable tbody th, table.dataTable tbody td {
    white-space: nowrap;
    border: 1px solid #e6e6e6;
    padding: 11px 10px;
}
th.auto.sorting {
    width: 65px!important;
}
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
    text-align: center!important;
}
.block-m{
    display: block!important;
}
/* admin dashboard popup css start here  */
.admin_topup-content {
    max-width: 400px!important;
}
.admin_topup-content {
    max-width: 400px!important;
    margin: 0 auto;
    padding-inline: 15px;
}
.admin_topup-content  .modal-content {
    padding-block: 10px;
}
@media (max-width: 1500px) {
    .card-upper, .card-bottom {
        gap: 15px;
    }
    .dash-inner-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 1427px) {
    .right_box_in {
        justify-content: start;
    }
    .transaction-filters_row {
        grid-template-columns: repeat(3, 1fr);
    }
    #tdsFilterForm .flatpickr-parent {
        width: 23%;
    }
  form#tdsFilterForm {
    justify-content: space-between;
}
.beneficiary-option {
flex-wrap: wrap;
}

.dash-inner-cards {
    flex-wrap: wrap;
}
.highlights-colors {
    flex-wrap: wrap;
}
}

@media (max-width: 1326.0px) {
    .td-wallet-filter .flatpickr-parent {
        width: 18%;
    }
    .td-wallet-filter form {
        justify-content: space-between;
    }
}
@media (max-width: 1199.1px) {
    .ifsc_grid1 {
        column-gap: 14px;
    }
    .beneficiary-option {
        gap: 5px;
    }
    .name-img1 {
        gap: 10px;
    }

    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .td-wallet-filter .flatpickr-parent {
        width: 47%;
    }
    .btn-column {
        justify-content: start;
        flex-wrap: wrap;
    }
}
@media (max-width: 1100px) {
    .ifsc_grid1 {
        grid-template-columns: 1fr;
    }
    .otp-box {
        height: 80px;
    }
    .otp-inputs {
        gap: 10px;
    }
    .right_box_in {
        flex-wrap: wrap;
    }
   .btn_tab_top {
        width: 100%;
    }
    #tdsFilterForm .flatpickr-parent {
        width: 47%;
    }
    @media (min-width: 1874px) {
  
.theme-filter>div {
    width: 100%;
    flex: 1 0 200px;
}
}
.section-header {
padding: 12px 7px;
gap: 5px;
}
.beneficiary-option {
font-size: 13px;
}
.section-header span {
font-size: 14px;
}
.section-number, .ph-bank {
width: 26px;
height: 26px;
}
.customer-info-row {
flex-wrap: wrap;
}
.btn-imps {
font-size: 14px;
}
.section-card {
min-height: auto;
}
.customer-info-display, .subsection-card.active-subsection {
border: none;
}

.overview-graph {
    height: calc(100% -96px);
}
}
.spinner-border.text-light {
    position: absolute;
    left: 50%;
    bottom: 50%;
}
.spinner-border.text-light {
    animation: none!important;
    border: none;
}
#loaderOverlay img {
    width: 110px;
    will-change: transform, opacity;
  
    animation: smoothFintechLoader 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  
  /* Subtle premium background breathing */
  #loaderOverlay img {
    width: 120px;
    animation: smoothUpDown 4.4s ease-in-out infinite;
    will-change: transform;
  }
  
  /* Very smooth up-down motion */
  @keyframes smoothUpDown {
    0% {
      transform: translateY(0);
    }
  /* up  */
    50% {
      transform: translateY(-30px);  
    }
  
    100% {
      transform: translateY(0);
    }
  }

  .dash-grid .form-select {
    min-width: 140px !important;
    border-radius: 6px !important;
  }
  table.dataTable {
    border-bottom: 1px solid #dee2e6 !important;
}
@media (max-width: 992.1px) {
    .transaction-filters_row {
        grid-template-columns: repeat(2, 1fr);
    }
.section-header {
gap: 10px;
justify-content: start!important;
padding: 12px 12px;
}
.bank-logo-row {
    flex-wrap: wrap;
}

.dash-grid {
    grid-template-columns: repeat(1, 1fr);
}

.sm-box-big , .md-box-big {
    grid-column: span 5;
}
}
@media (max-width: 767.1px) {
    .dash-inner-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .limit-heading {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .badge-grid {
        grid-template-columns: repeat(1, 1fr);
    }
        .otp-box {
        height: 122px;
    }
    .otp-inputs {
        gap: 20px;
    }
    .input_box, .btn_box {
        gap: 8px;
        flex-wrap: wrap;
    }
    .transaction-filters_row {
        grid-template-columns: repeat(1, 1fr);
    }
    input#flatpickrRange, input#earningsDatePicker {
        width: 100%!important;
    }
    .admin-dashboard-input {
        grid-template-columns: 1fr;
    }
    .logo-active-state {
        min-height: auto;
        align-items: start;
    }
    .navbar-theme .form-control, .navbar-theme .form-select {
        min-width: 172px;
    } 
    h1.text-xll {
        padding-right: 7px;
        font-size: 20px;
    }
    .right-header_bar {
        gap: 7px!important;
    }
    .user-profile {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    .theme-icon-btn.theme-icon-btn {
        font-size: 23px;
    }
    }

    @media (max-width: 650.1px) {
    .flatpickr-calendar {
        max-width: 100%;
    }
    .flatpickr-innerContainer {
        overflow-x: scroll;
    }
    .admin-dashboard-input .input-group.dashboard-group {
        flex-wrap: wrap;
    }
    .admin-dashboard-input .flatpickr-parent, .card-right-items {
        width: 100%;
    }
    .td-wallet-filter .flatpickr-parent {
        width: 100%;
    }
    h5.text-xll {
        margin-bottom: 10px;
    }
    td.sorting_1 {
        white-space: nowrap;
    }
    .dash-inner-cards .d-flex.align-items-end.gap-2 {
        flex-wrap: wrap;
    }
    .badge {
    font-size: 11px;
}
#tdsFilterForm .flatpickr-parent {
    width: 100%;
}
.theme-filter>div {
    flex: 1 0 100%;
}
    }

    @media (max-width: 500.1px) {
        .modal-body.payout-successful {
            display: grid;
            grid-template-columns: 1fr;
            column-gap: 55px;
        }
        .otp-box {
            width: 100%;
            height: 83px;
        }
        .otp-inputs {
            gap: 10px;
        }
        .w-mb-100 {
            width: 100%!important;
        }
        .topupform_grid {
            grid-template-columns: 1fr;
            gap: 0;
        }
        .flatpickr-current-month {
            width: 100%;
            overflow: hidden;
        }
        .flatpickr-month {
            overflow-x: scroll!important;
        }
        .flatpickr-months .flatpickr-month {
            height: 45px;
        }
    } 
    @media (max-width: 375.1px) {
        .otp-box {
            width: 100%;
            height: 50px;
        }
        .otp-inputs {
            gap: 10px;
        }
    }
    .gateway-service-card {
        transition: all 0.3s ease;
    }
    
    .gateway-service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .gateway-service-card.selected {
        border: 2px solid #28a745;
        background: #e8f5e9;
    }
    
    /* Highlight unselected when validation fails */
    .transfer-mode-required .gateway-service-card:not(.selected) {
        animation: shake 0.5s;
        border-color: #dc3545;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    /* Add to your stylesheet */
.slab-item.failed {
    background-color: #fff5f5;
    border-left: 3px solid #dc3545;
}

.slab-icon.failed {
    color: #dc3545;
}

.progress-bar.bg-danger {
    background-color: #dc3545 !important;
}
#completeTransferBtn:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

#completeTransferBtn:enabled {
    background-color: #2d2d2d !important;
    border-color: #2d2d2d;
    
    opacity: 1 !important;
    cursor: pointer !important;
}
#gatewaySelectionAlert {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#gatewaySelectionAlert i {
    font-size: 18px;
}

#gatewaySelectionAlert.d-none {
    display: none !important;
}


.verified-detail-row {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.verified-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

/* .verified-detail-icon i {
    font-size: 20px;
    color: #667eea;
} */

.verified-detail-content {
    flex: 1;
    text-align: left;
}

.verified-detail-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.verified-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}
/* imps-money-lite page css start here  */

/* admin dashboard */

.dashboard-theme-card h5 {

    font-size: 15px;

}

.dashboard-theme-card .card-index-2 {

    flex-wrap: wrap;

    gap: 10px;

}

.dashboard-theme-card .text-xll {

    font-size: 20px;

}

/* admin dashboard end*/

/* menu left bar start here */

.sidebar-item {

    transition: 

      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),   /* smoother ease-out */

      background-color 0.18s ease-in-out,

      color 0.18s ease-in-out;

    will-change: transform, background-color;

  }

  

  .sidebar-item:hover {

    transform: translateY(-2px);

    background-color: rgba(var(--theme-primary-color), 0.12);

    color: rgb(var(--theme-primary-color));

  }

  

  .main-item:hover {

    background: none;

    transform: none;

  }

  
    /* Receipt Modal Styles - IservePay Retailer Format */
    .receipt-container {
        max-width: 700px;
        margin: 0 auto;
        padding: 0px 30px 12px 30px;
        background: #fff;
        font-family: Arial, sans-serif;
    }
/* menu left bar end here  */



@media print {

    body * {

        visibility: hidden;

    }

    .receipt-container, .receipt-container * {

        visibility: visible;

    }

    .receipt-container {

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

    }

    .no-print {

        display: none !important;

    }

}

/* Global Limit Card Styles */

#globalLimitBox .card {

transition: transform 0.3s ease, box-shadow 0.3s ease;

}



#globalLimitBox .card:hover {

transform: translateY(-2px);

box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;

}



#globalLimitBox .card-body {

animation: fadeInSlide 0.5s ease;

}



@keyframes fadeInSlide {

from {

    opacity: 0;

    transform: translateY(-10px);

}

to {

    opacity: 1;

    transform: translateY(0);

}

}

/* Applies to ALL DataTables processing indicators */
.dataTables_processing {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #f97316 !important;
}

.dataTables_processing > div > div {
    background: #f97316 !important;
}
