@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    transition: .4s linear;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: unset !important;
    font-family: "Inter", "Inter Fallback Arial", Arial;
}

/* :root {
    --bg-color: #0A111A;
    --sidebarBG: #1C2431;
    --main-color: #4D7FFF;
    --black-color: #1b1b1b;
    --dark-black-color: #000212;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --font1: font-family: 'poppins', sans-serif;
} */

:root {
    --bg-color: #F9FAFB;   /* Main background (light gray/white) */
    --sidebarBG: #FFFFFF;  /* Sidebar background - pure white */
    --headerBG: #ffffff;   /* Header background - white */
    --main-color: #4D7FFF; /* Brand blue (for accents, icons, buttons) */
    --black-color: #212529;
    --dark-black-color: #343A40;
    --white-color: #FFFFFF;
    --gray-color: #6C757D;
    --light-gray: #F1F3F5;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    --font1: 'Poppins', sans-serif;
}



html {
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body {
    overflow-x: hidden;
    background: var(--bg-color);
}

a {
    text-decoration: none !important;
}

::-webkit-scrollbar {
    width: .6rem;
}

::-webkit-scrollbar-track {
    background: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/*Start home section*/
.home-section {
    background: var(--bg-color);
    width: 100%;
    padding: 4rem 3%;
}

.home-section-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 10001;
    background: #fff;
}

.home-section-sidebar::-webkit-scrollbar {
    width: .6rem;
    display: none;
}

.home-sidebar-logo {
    height: 80px;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.home-section-sidebar .home-sidebar-logo a img {
    height: 3rem;
}

.home-section-sidebar-menu ul {
    padding-left: 0;
    margin-top: 1.5rem;
}

.home-section-sidebar-menu ul li {
    height: 45px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
}

.activeHome {
    background: #ffffff14;
    border-left: 4px solid #B6ECD1;
}

.activeHome a {
    font-weight: 600 !important;
    color: var(--white-color);
}

.home-section-sidebar-menu ul li a {
    color: var(--black-color);
    /* color: #E6E9EF; */
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.home-section-sidebar-menu ul li a ion-icon {
    width: 18px;
    height: 18px;
    font-size: 1.3rem;
}

.home-section-header {
    padding: 0 3%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 70px;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 10px;
    background: var(--bg-color);
}

.home-section-header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.home-section-payout-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 42px;
    color: #fff;
    padding: 0 1rem;
    background: #0d6efd;
    border-radius: 4px;
}

.home-section-payout-btn a {
    width: 100%;
    font-size: 1.4rem;
    height: 30px;
    line-height: 30px;
    color: var(--white-color);
    font-weight: 600;
    border-right: 1.2px solid var(--white-color);
    padding: 0 1rem;
}

.home-section-payout-btn .dropdown-item {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);
    height: 40px;
    display: flex;
    align-items: center;
    border-right: none;
    gap: 1rem;
    padding: .5rem 1.4rem;
}

.home-section-payout-btn .dropdown-item:focus,
.dropdown-item:hover {
    background: var(--bg-color);
    color: var(--white-color);
}

.home-section-header .dropdown .btn-secondary {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    width: 20px;
}

.home-section-header-searchbar a,
.home-section-header-volume-btn a,
.home-section-header-user a {
    font-size: 2rem;
    color: var(--white-color);
}

.home-section-header-volume-btn a {
    color: #BD7A03;
}

.home-section-dash-container {
    margin-top: 6rem;
}

.home-section-dash-container-box {
    background: linear-gradient(135deg, #ffffff, #f3f6ff); /* White with light blue gradient */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem 1.8rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    gap: 1.5rem;
    margin-bottom: 1.5rem;  /* ✅ spacing between cards */
    position: relative;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Hover */
.home-section-dash-container-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Side line */
.home-section-dash-container-box-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #4D7FFF, #6AA9FF); /* Brand blue gradient */
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
}

/* Icon */
.home-section-dash-container-box img {
    width: 50px;
}

/* Text */
.home-section-dash-container-box .home-section-dash-container-box-content h4 {
    color: #333; /* Dark text for title */
    font-size: 1.4rem;
    padding-bottom: .2rem;
    margin: 0;
}

.home-section-dash-container-box .home-section-dash-container-box-content p {
    color: var(--main-color); /* Brand blue for numbers */
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* 
.home-section-dash-container-box {
      background: linear-gradient(135deg, #ffffff, #f3f6ff);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem 1.8rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.home-section-dash-container-box-line {
    width: 3px;
    height: 50px;
    background: var(--main-color);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-50%, -50%);
}

.home-section-dash-container-box img {
    width: 50px;
}

.home-section-dash-container-box .home-section-dash-container-box-content h4,
p {
    margin: 0;
}

.home-section-dash-container-box .home-section-dash-container-box-content h4 {
    color: #c9d4de;
    font-size: 1.4rem;
    padding-bottom: .2rem;
}

.home-section-dash-container-box .home-section-dash-container-box-content p {
    color: var(--white-color);
    font-size: 1.8rem;
    font-weight: 500;
} */

.demo-heading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    right: 0;
    z-index: 10002;
}

.demo-heading .demo-heading-line01 {
    width: 100%;
    height: 10px;
    background: #393F5C;
}

.demo-heading .demo-heading-line02 {
    padding: 8px 40px;
    position: absolute;
    background: #393F5C;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    color: var(--white-color);
    font-size: 1.2rem;
}

.need-help-btn {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 50px;
    border-radius: 33px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white-color);
    padding-left: 1rem;
    background: #6E6ED9;
    width: 150px;
    bottom: 3%;
    gap: .5rem;
    position: fixed;
    right: 3%;
    transition: .4s transform;
}

.need-help-btn img {
    width: 26px;
    height: 26px;
}

.need-help-btn:hover {
    color: var(--white-color);
    transform: scale(1.1);
}

.home-section-payout-btn .dropdown-menu {
    background: var(--sidebarBG);
    z-index: 1000;
    position: absolute;
}

/*USER LOGOUT POPUP PART*/
.dropdown-user-logout ul {
    background: #1C2431;
    /*    padding: 2rem 1.6rem;*/
}

.user-logout-and-detail-part {
    background: var(--sidebarBG);
    width: 100%;
    max-width: 400px !important;
}

.user-logout-and-detail-part .user-logout-and-detail-part-name h4 {
    color: var(--black-color);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.dropdown-user-logout .dropdown-menu {
    min-width: 340px !important;
    width: 100%;
}

.user-logout-and-detail-part-name-copyCode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    color: #8D9BB0;
    padding: 1rem 0;
}

.user-logout-and-detail-part-name {
    padding: 2rem 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #8d9bb03d;
}

.user-logout-and-detail-part-name-copyCode ion-icon {
    color: var(--white-color);
    cursor: pointer;
    font-size: 2rem;
}

.user-logout-manage-account-menu {
    margin-top: 1rem;
}

.user-logout-manage-account-menu a {
    display: flex;
    align-items: center;
    gap: .8rem;
    width: 100%;
    height: 45px;
    color: var(--black-color);
    font-size: 1.4rem;
    padding: 0 2rem;
    transition: .4s ease;
    margin-bottom: .2rem;
    border-left: 3px solid transparent;

    &:hover {
        background: #ffffff14;
        border-left: 3px solid var(--main-color);
    }
}

.home-section-dash-sidebar-toggle a ion-icon {
    display: none;
}

.dropdown-toggle ion-icon {
    font-size: 2rem;
    color: rgb(226 234 241);
}

.user-logout-manage-account-login-bottom {
    padding: 2rem 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid #8d9bb03d;
}

.user-logout-manage-account-login-bottom p {
    font-size: 1.2rem;
    color: #8D9BB0;
}

.user-logout-manage-account-login-bottom a {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: 1rem 0;
}

.user-logout-manage-account-login-bottom-btn {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 4px;
    background: var(--main-color);
    transition: .4s ease;

    &:hover {
        background: #436CFF;
    }
}

/*END USER LOGOUT POPUP PART*/
/*End home section*/

/*START PAYOUT SECTION*/
.payout-main-section {
   margin-top: 1.6rem;
    background: white;
    padding: 2rem;
    border-radius: 13px;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
}

.payout-page-bg {
    background: url(../img/payoutPage-bg.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
}

.dashboard-container-header{
        display: flex
;
    align-items: center;
    justify-content: space-between;
}
.payout-main-section-header-heading {
        font-size: 2.5rem;
    color: #1E293B;
    font-weight: 600;
}

.payout-main-section-header .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: rgb(23, 31, 43);
    height: 45px;
    padding: 0 2rem;
    border-left: 4px solid #B6ECD1;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .3px;
}

.nav-pills .nav-link {
    color: #fff;
    background-color: transparent;
    height: 45px;
    padding: 0 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    border-left: 4px solid transparent;
    letter-spacing: .3px;
}

.payout-main-section-header .nav {
    gap: 1rem;
}

.payout-single-process-container-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.payout-single-process-container-heading-flex span {
    margin-left: 2rem;
    padding: 0 1.4rem;
    border-radius: 33px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: green;
    color: var(--white-color);
    font-size: 1rem;
    margin-bottom: 0;
}

.payout-single-process-container-heading-flex h4 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
    padding-bottom: .5rem;
    display: flex;
    align-items: center;
}

.payout-single-process-container-heading-flex p {
    margin: 0;
    font-size: 1.4rem;
    color: #8D9BB0;
}

.payout-single-process-container-heading-flex2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    border-radius: 4px;
    font-size: 1.4rem;
    color: var(--white-color);
    background: rgb(23, 31, 43);
    padding: 0 2rem;
}

.payout-single-process-box {
    background: #1C2431;
    padding: 2.2rem 2.4rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.payout-single-process-box .payout-single-process-box-flex01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payout-single-process-box .payout-single-process-box-flex01 h6 {
    color: var(--white-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.payout-single-process-box p {
    margin: 0;
    font-size: 1.4rem;
    color: #8D9BB0;
    margin-top: 1.2rem;
}

.payout-single-process-box .payout-single-process-box-flex01 .Processing-bedge {
    padding: .8rem 1.6rem;
    background: rgb(23, 31, 43);
    font-size: 1.2rem;
    border-radius: 33px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.singlePayout-filter-container-filters-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8D9BB0;
}

.singlePayout-filter-container-filters-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-top: 1.5rem;
        border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.4rem;
}

.singlePayout-filter-container-filters-flex::-webkit-scrollbar {
    width: .6rem;
    display: none;
}

.singlePayout-filter-container-filters-flex::-webkit-scrollbar-track {
    background: var(--white-color);
}

.singlePayout-filter-container-filters-flex::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

.singlePayout-filter-container-filters-box {
    background: #fff;
    border: 1px solid rgba(42, 134, 243, .1);
    color: #2a86f3;
    font-weight: 500;
    height: 45px;
    padding: 0 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    border-radius: 4px;
}

.singlePayout-filter-container-filters-box .form-check-label {
    color: #4f4646;
    font-size: 1.4rem;
    white-space: nowrap;
    font-weight: 500;
}

.singlePayout-filter-container-filters-box .form-check {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.singlePayout-filter-container-filters-box .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0;
    background-color: #0D1E30;
    border: 1px solid #246AAC;
}

.singlePayout-filter-container-filters-box .form-check-label:checked {
    color: var(--main-color);
}

.singlePayout-filter-container-filters-box .form-check-input:checked[type=radio] {
    background-image: url(../img/check-icon.svg);
}

.singlePayout-table-container {
    padding: 1rem;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    background: #fff;
    margin-top: 2rem;
    border: 1px solid #E5E7EB;
}

.singlePayout-table-container .singlePayout-table-container-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(231, 232, 236, .05);
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 1.4rem;
    color: var(--white-color);
}

.singlePayout-table-container .singlePayout-table-container-heading span {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #BD7A03;
    border-radius: 8px;
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500 !important;
    height: 25px;
    font-size: 1.2rem;
    color: var(--black-color);
}

.singlePayout-table-container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.singlePayout-table-container-header-flex01 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.singlePayout-table-container-header-flex02 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.singlePayout-table-container-header-flex01-label {
    font-size: 1.3rem;
    color: rgb(141, 155, 176);
}

.singlePayout-table-container-header-flex01 .form-check {
    display: flex;
    gap: .5rem;
}

.singlePayout-table-container-header-flex01 .form-check .form-check-input {
    background-color: rgba(206, 213, 222, .12);
    width: 1.5em;
    height: 1.5em;
    border: 1px solid hsla(0, 0%, 100%, .1);
}

.singlePayout-table-container-header-flex01 .dropdown-toggle {
    background-color: transparent;
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: 600;
    border: none;
}

.singlePayout-table-container-header-flex01 .dropdown-menu {
    background: #1C2431;
    border-radius: 6px;
    padding: 1rem;
}

.singlePayout-table-container-header-flex01 .dropdown-item {
    height: 40px;
    color: var(--white-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.singlePayout-table-container-header-flex01 .dropdown-toggle:focus {
    box-shadow: none;
    outline: none;
}

.singlePayout-table-container-header-flex02 a ion-icon {
    font-size: 2rem;
    color: var(--white-color);
}

.singlePayout-export-btn button {
    display: flex;
    color: var(--main-color);
    align-items: center;
    gap: 1rem;
    height: 40px;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0 1rem;
    background: transparent;
    border-radius: 4px;
    border: 1.4px solid var(--main-color);
}

.btn-secondary {
    border: none !important;
    background-color: transparent !important;
}

.singlePayout-table-container-header-flex02 .form-check .form-check-input {
    background-color: rgba(206, 213, 222, .12);
    width: 1.5em;
    height: 1.5em;
    border: 1px solid hsla(0, 0%, 100%, .1);
}

.singlePayout-table-container-header-flex02 .dropdown-toggle {
    background-color: transparent;
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: 600;
    border: none;
}

.singlePayout-table-container-header-flex02 .dropdown-menu {
    background: #1C2431;
    border-radius: 6px;
    padding: 1rem;
}

.singlePayout-table-container-header-flex02 .dropdown-item {
    height: 40px;
    color: var(--white-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

/*singlePayout table*/
.singlePayoutTable-main {
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid rgba(231, 232, 236, .1);
    border-bottom: 1px solid rgba(231, 232, 236, .1);
}

.singlePayoutTable-main tr {
    text-align: left;
}

.singlePayoutTable-main tr th {
    color: #5e656d;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 1rem;
    white-space: nowrap;
}

.singlePayoutTable-main tr td {
    color: #414853;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem;
    white-space: nowrap;
    cursor: pointer;
}

.singlePayoutTable-main tr .failed {
    color: rgb(219, 9, 9);
    background: rgba(219, 95, 6, 0.18);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 33px;
    max-width: 90px;
    padding: 0 !important;
    margin-top: 8%;
    height: 30px;
}

.singlePayoutTable-main tr .success {
    color: #11A34F;
    background: rgba(46, 204, 113, 0.1);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 33px;
    max-width: 90px;
    padding: 0 !important;
    margin-top: 8%;
    height: 30px;
}

.singlePayoutTable-main tr .pending {
    color: rgb(196, 199, 8);
    background: rgba(233, 104, 12, 0.18);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 33px;
    max-width: 90px;
    padding: 0 !important;
    margin-top: 8%;
    height: 30px;
}

.singlePayoutTable-main tr .queue {
    color: rgb(41, 4, 250);
    background: rgba(233, 104, 12, 0.18);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 33px;
    max-width: 90px;
    padding: 0 !important;
    margin-top: 8%;
    height: 30px;
}

.singlePayout-table-container::-webkit-scrollbar {
    width: .3rem;
    height: 2px;
}

.singlePayout-table-container::-webkit-scrollbar-track {
    background: var(--gray-color);
}

.singlePayout-table-container::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

.hover-row .form-check-input {
     margin-right: 5px;
}

.hover-row:hover {
    background: #c4d4f8;
}

.hover-row:hover .form-check-input {
    opacity: 1;
}

.singlePayoutTable-detail-canva {
    background: #fff;
}

.singlePayoutTable-detail-canva .btn-close {
    background: transparent url(../img/close-btn.svg) center / 1em auto no-repeat;
    transform: scale(2.4);
}

.singlePayoutTable-detail-canva .offcanvas-header {
    padding: 2rem 5%;
}

.singlePayoutTable-body-price-part h3 {
    color: black;
    font-weight: 600;
    font-size: 3rem;
}

.singlePayoutTable-body-price-part h3 span {
    color: rgb(37 40 43);
    font-size: 1.6rem;
}

.singlePayoutTable-body {
    padding: 1rem 5%;
}

.singlePayoutTable-body-price-part p {
    color: rgb(10 11 12);
    font-size: 1.2rem;
    padding: .6rem 0;
}

.singlePayoutTable-body-timeline-conatiner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.singlePayoutTable-body-timeline-conatiner-flexContent h5 {
    font-size: 1.4rem;
    color: #26292d;
    margin: 0;
    padding-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.singlePayoutTable-body-timeline-conatiner-flex h6 {
    font-size: 1.1rem;
    color: black;
    margin: 0;
    font-weight: 500;
}

.singlePayoutTable-body-timeline-conatiner-flexContent p {
    font-size: 1.2rem;
    color: black;
    margin: 0;
    max-width: 270px;
    display: flex;
}

.singlePayoutTable-body-timeline-conatiner-flexContent p span {
    color: black;
    margin-left: .5rem;
}

.low-balance-bedge {
    width: 10px;
    height: 10px;
    display: flex;
    border-radius: 50%;
    /* background: #FF9142; */
    background: #2b7444;
}

.Queued-bedge {
    width: 10px;
    height: 10px;
    display: flex;
    border-radius: 50%;
    background: #FF9142;
}

.processing-bedge {
    width: 10px;
    height: 10px;
    display: flex;
    border-radius: 50%;
    background: #E6E9EF;
}

.singlePayoutTable-body-timeline-conatiner-brdr {
    width: 100%;
    background: linear-gradient(90deg, rgba(98, 152, 255, .4) 1.35%, rgba(98, 152, 255, 0) 98.23%);
    height: 2px;
    margin: 2rem 0;
}

.singlePayout-offcanva-table h4 {
    color: black;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1.4rem;
}

.singlePayout-offcanva-table h4 span {
    color: rgb(206 213 222 / 32%);
    font-size: 1.4rem;
    font-weight: 400 !important;
}

.singlePayout-offcanva-table-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.singlePayout-offcanva-table-flex h5 {
    color: black;
    margin: 0;
    font-size: 1.4rem;
}

.singlePayout-offcanva-table-flex h6 {
    color: black;
    margin: 0;
    font-size: 1.4rem;
}

.cancle-payout-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: rgba(231, 232, 236, .1);
    color: var(--white-color);
    margin: 1.4rem 0;
}

.singlePayout-offcanva-contact h4 {
    margin: 0
}

.singlePayout-offcanva-contact div a {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(117, 163, 255);
}

.singlePayout-offcanva-contact div a ion-icon {
    color: var(--white-color);
}

.singlePayout-offcanva-contact-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1.4rem 0;
}

.singlePayout-offcanva-contact h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
}

.singlePayout-offcanva-contact-name .customer-bedge {
    margin: 0;
    font-size: 1.2rem;
    color: black;
    background: #98d3e9;
    min-height: 30px;
    border-radius: 33px;
    padding: 0 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.singlePayout-offcanva-contact-bank {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
}

.singlePayout-offcanva-contact-bank .singlePayout-offcanva-contact-bank-bankImg {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(206 213 222 / 32%);
}

.singlePayout-offcanva-contact-bank p {
    font-size: 1.2rem;
    margin: 0;
    color: rgb(206 213 222 / 32%);
}

/*END PAYOUT SECTION*/

/*START MERCHANT PAGE */
.merchant-container {
    border-radius: 10px;
    margin-top: 6rem;
    background: #1C2431;
    padding: 2rem;
}

.merchant-container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: rgba(231, 232, 236, .05);
    padding: 1.4rem;
    border-radius: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.merchant-container-header-line {
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--main-color);
    width: 3px;
    height: 22px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.merchant-container-search-part {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.add-merchant-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white-color);
    background: var(--main-color);
    padding: 0 1.8rem;
    border-radius: 4px;
}

.merchant-container-search-part-select {
    background: #0A111A;
    width: 100%;
    height: 45px;
    padding-right: 1rem;
    padding-left: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.merchant-container-search-part-select select {
    background: #0A111A;
    width: 100%;
    height: 42px;
    font-size: 1.4rem;
    color: var(--white-color);
}

.merchant-container-search-part-search {
    background: #0A111A;
    width: 100%;
    height: 45px;
    padding-right: 1rem;
    padding-left: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.merchant-container-search-part-search input {
    background: #0A111A;
    width: 100%;
    height: 42px;
    font-size: 1.4rem;
    color: var(--white-color);
}

.merchant-container-search-part-search input::placeholder {
    color: #8B99AE;
}

.merchant-container-search-part-search label {
    background: var(--main-color);
    width: 60px;
    height: 43px;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border-radius: 0 4px 4px 0;
}

.merchant-table-login-btn {
    height: 40px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: #FF902F;
    color: #fff;
}

.merchant-table-addMoney-btn {
    height: 40px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: var(--main-color);
    color: #fff;
}

.merchant-table-active-btn {
    height: 40px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: #008A45;
    color: #fff;
}

.merchant-table-edit-btn {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--main-color);
    font-size: 1.8rem;
}

.merchant-table-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white-color);
    padding: 1.4rem 0;
}

.admin-id-btn {
    height: 40px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: #FF902F;
    color: #fff;
}

.view-button {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--main-color);
    font-size: 1.8rem;
}

/*.creditHistory-header-date{
    width: 100%;
}*/

.creditHistory-header-date input {
    background: #0A111A;
    width: 100%;
    height: 45px;
    padding-right: 1rem;
    padding-left: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    width: 100%;
    display: flex;
    color: var(--white-color);
    color-scheme: white;
    font-size: 1.4rem;
    align-items: center;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.creditHistory-header-search-btn button {
    height: 45px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: var(--main-color);
    color: #fff;
    width: 100%;
}

.creditHistory-header-Resate-btn button {
    height: 45px;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    background: #474747;
    color: #fff;
    width: 100%;
}

.merchant-container-header::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

.merchant-container-header::-webkit-scrollbar-track {
    background: #8B99AE;
}

.merchant-container-header::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

.date-label {
    font-size: 1.2rem;
    color: #768ea7;
    margin-bottom: 4px;
}

.creditHistory-search-part-select select {
    width: auto !important;
}

/*END MERCHANT PAGE*/

/*Start login section*/
.login-section {
    width: 100%;
    min-height: 100vh;
    background: url(../img/payoutPage-bg.jpg);
    background-size: cover !important;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 400px;
    height: 100%;
    border-radius: 4px;
    /* background: linear-gradient(161.47deg, #0c1927 9.82%, #243547 37.91%, #0c1927 94.89%); */
    background:  linear-gradient(161.47deg, #ffffff 9.82%, #cad5e1 37.91%, #ffffff 94.89%);
    padding: 4rem 2.5rem;
}

.login-form h4 {
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 2rem 0;
}

.login-form img {
    height: 4rem;
    margin: auto;
    display: block;
}

.login-form form .input-box input {
    width: 100%;
    height: 45px;
    background: #19212D;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 1.4rem;
    padding: 0 1.4rem;
    border: 1.4px solid #3C4B62;
}


.login-form form .input-box select {
    width: 100%;
    height: 45px;
    background: #19212D;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 1.4rem;
    padding: 0 1.4rem;
    border: 1.4px solid #3C4B62;
}

.login-form form .input-box input:focus {
    border: 1.4px solid var(--main-color);
}

.login-form form .input-box input::placeholder {
    color: rgb(230, 233, 239);
}

.login-form form .input-box label {
    font-size: 1.2rem;
    padding: .6rem 0;
    color: #3d4249;
    font-weight: 500;
}

.login-form form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 600;
    background: var(--main-color);
    color: var(--white-color);
    margin-top: 2rem;
}

/*End login section*/












/*Media quaries*/
@media screen and (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .demo-heading {
        display: none;
    }

    .home-section-sidebar {
        display: none;
    }

    .home-section-header {
        top: 0;
    }

    .home-section-header {
        justify-content: space-between;
    }

    .home-section-dash-sidebar-toggle a ion-icon {
        font-size: 1.6rem;
        color: var(--white-color);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--sidebarBG);
        border-radius: 3px;
        padding: .5rem;
    }

    .home-sidebar-offcanva {
        max-width: 260px;
    }

}

@media screen and (max-width: 991px) {
    .home-section-sidebar-block {
        display: block !important;
    }

    .merchant-history-table {
        display: flex;
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .merchant-container-search-part {
        display: flex;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .add-merchant-btn {
        width: 100%;
    }

    .merchant-container-header {
        flex-direction: column-reverse;
        gap: 1.2rem;
    }

    .merchant-history-table::-webkit-scrollbar {
        width: 5px;
        height: 2px;
    }

    .merchant-history-table::-webkit-scrollbar-track {
        background: #8B99AE;
    }

    .merchant-history-table::-webkit-scrollbar-thumb {
        background: var(--main-color);
    }
}

@media screen and (max-width: 768px) {
    .singlePayout-table-container-header {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .singlePayoutTable-main tr th {
        padding: 1.5rem 2rem;
        white-space: nowrap;
    }

    .singlePayoutTable-main tr td {
        padding: .5rem 2rem;
        padding-bottom: 1.5rem;
    }

    .singlePayout-table-container .singlePayout-table-container-heading {
        padding: 1.5rem;
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .login-form {
        min-height: 100vh;
    }

    .creditHistory-search-part {}

}

@media screen and (max-width: 650px) {
    .home-section-dash-container-box img {
        width: 40px;
    }

    .home-section-dash-container-box {
        flex-direction: column;
    }

    .dropdown-user-logout .dropdown-menu {
        min-width: 268px !important;
    }
}

@media screen and (max-width: 450px) {
    html {
        font-size: 50%;
    }

}