/*   Anamika 584-1264  */
@font-face {
    font-family: "Satoshi-Bold";
    src: url("../fonts/Satoshi-Bold.woff2") format("woff2"), url("../fonts/Satoshi-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Black";
    src: url("../fonts/Satoshi-Black.woff2") format("woff2"), url("../fonts/Satoshi-Black.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Medium";
    src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Regular";
    src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Satoshi-Regular";
    overflow-y: scroll;
}

a {
    text-decoration: none !important;
    outline: none !important;
}

img {
    width: 100%;
    height: 100%;
    border: none;
}

:root {
    --primary-color: #b13a7e;
    --primary-light-color: #0f0d1c;
    --secondary-color: #e2692b;
    --white: #fff;
    --black: #000;
    --warning-color: #ffa500;
    --success-color: #008000;
    --danger-color: #ff0000;
    --light-grey-color: #949494;
    --border-clr: #cccccc;
    --placeholder: #696969;
    --text-color: #444444;
}

.primary-cta {
    color: var(--white);
    background-color: var(--primary-color);
    padding: 0 2.4rem;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    border: 1px solid var(--primary-color);
    transition: 0.2s ease-in-out;
    align-items: center;
    justify-content: center;

    &:hover,
    &.active {
        background-color: var(--white);
        color: var(--primary-color);
        transition: 0.2s ease-in-out;
    }

    &.active:hover {
        background-color: var(--primary-color);
        color: var(--white);
        border-color: var(--white);
        transition: 0.2s ease-in-out;
    }

}

.primary-cta a:hover {
    color: var(--primary-color);
}

.secondry-cta {
    color: var(--primary-light-color);
    background-color: var(--white);
    padding: 0 3rem;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    border: 1px solid var(--primary-light-color);
    transition: 0.2s ease-in-out;
    align-items: center;
    justify-content: center;
}

.orange-cta {
    color: var(--white);
    background-color: var(--secondary-color);
    padding: 0 3rem;
    height: 45px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    border: 1px solid var(--white);
    transition: 0.2s ease-in-out;
    align-items: center;
    justify-content: center;
}

.left-login {
    padding: 130px 40px;
}

.left-login .logo {
    width: 179px;
    margin-bottom: 40px;
}

.right-bg-color {
    background-color: var(--black);
    height: 100vh;
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    isolation: isolate;
}

.shape-img {
    position: absolute;
    width: 500px;
    height: 70%;
    left: 0;
    top: 0;
    z-index: -1;
}

.shape-img-2 {
    position: absolute;
    width: 500px;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.small-logo {
    width: 80px;
    margin-bottom: 15px;
}

.login-inner-data {
    width: 90%;
    height: auto;
    color: #b13a7e33;
    background: #b13a7e33;
    border: 1px solid #cccccc;
    padding: 40px;
    border-radius: 30px;
}

.login-inner-data h2 {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 40px;
    line-height: normal;
    vertical-align: middle;
    margin-bottom: 20px;
    color: var(--white);
}

.login-inner-data p {
    font-family: "Satoshi-Regular";
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: var(--white);
}

.left-login form {
    label {
        font-weight: 500;
        font-size: 16px;
        padding-bottom: 7px;
        color: var(--light-grey-color);
    }

}

.left-login form .input-grp {

    input[type="text"],
    input[type="password"] {
        width: 100%;
        height: 50px;
        border: 1px solid var(--border-clr);
        border-radius: 10px;
        padding: 15px;
        font-weight: 400;
        font-size: 16px;
        outline: none;
    }

}

.left-login form .input-grp {
    margin-bottom: 20px;
    width: 100%;
}

.left-login form .input-grp.password-grp {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.password-eye {
    position: absolute;
    right: 14px;
    top: 14px;
}

.left-login form input.primary-cta {
    width: 100%;
}

.country-select {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fff;
}

.country-select .flag {
    width: 24px;
    margin-right: 10px;
}

.country-select select {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    cursor: pointer;
}

.country-select select {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.flag-img {
    width: 24px;
    margin-right: 10px;
    margin-bottom: 3px;
}

.flag-dropdown {
    width: 100%;
    text-align: left;
    border: 1px solid var(--border-clr);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
}

.flag-dropdown-menu ul {
    width: 100%;
}

.dropdown-icon {
    width: 30px;
}

.country-btn::after {
    display: none;
}

.country-btn {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--white);
    color: #696969;
}

.arrow-img {
    position: absolute;
    right: 10px;
    bottom: 6px;
}

.btn-light:hover {
    color: #696969;
    background-color: var(--white);
    border-color: var(--border-clr);
}

.forgot-pass {
    text-align: center;
    margin-top: 35px;
}

.forget-text {
    font-family: "Satoshi-Regular";
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;

    vertical-align: middle;
    color: var(--text-color);
}

.reset-pass {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;

    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: var(--secondary-color);
}

.password-eye .eye-close {
    background-image: url(../images/eye-close.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.password-eye .eye-open {
    background-image: url(../images/eye-open.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

/* .login-page {
  overflow-x: hidden;
} */

/* LOGIN PAGE LAYOUT FIX */
.login-page {
    height: 100vh;
    overflow: hidden;
}

.login-page .left-login {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.login-page .right-login {
    height: 100vh;
    overflow: hidden;
    position: sticky;
    top: 0;
    right: 0;
}

/*Scroll on login page*/
.login-page .left-login::-webkit-scrollbar {
    width: 8px;
}

.login-page .left-login::-webkit-scrollbar-track {
    background: #e6e6e6;
}

.login-page .left-login::-webkit-scrollbar-thumb {
    background: #b13a7e;
    border-radius: 10px;
}

.login-page .left-login::-webkit-scrollbar-button:start:decrement,
.login-page .left-login::-webkit-scrollbar-button:start:increment,
.login-page .left-login::-webkit-scrollbar-button:end:decrement,
.login-page .left-login::-webkit-scrollbar-button:end:increment {
    display: none;
    width: 0;
    height: 0;
}

/*.login-page .left-login input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}*/

/* Firefox */
.login-page .left-login {
    scrollbar-width: thin;
    scrollbar-color: #b13a7e #e6e6e6;
}

.main-heading {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;

    vertical-align: middle;
    margin-bottom: 20px;
}

/*Wave animation Top*/
.shape-img {
    position: absolute;
    width: 500px;
    height: 70%;
}

.shape-img img {
    transform-origin: bottom right;
    /* 👈 Anchor set */
    animation: wave-strong 5s ease-in-out infinite;
}

@keyframes wave-strong {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(3deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1.05);
    }

    75% {
        transform: rotate(-3deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }

}

/*Wave animation Top*/

/*Wave animation bottom img*/


.shape-img-2 img {
    animation: wave 4s ease-in-out infinite;
    transform-origin: top left;
}

@keyframes wave {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(1deg);
    }

    50% {
        transform: scale(1.05) rotate(-1deg);
    }

    75% {
        transform: scale(1.1) rotate(1deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }

}

/*Wave animation bottom img*/
.main-text {
    font-family: "Satoshi-Regular";
    font-weight: 400;
    font-size: 16px;

    line-height: 25px;
    letter-spacing: 0.5%;
    vertical-align: middle;
    color: var(--text-color);
}

.small-modal .modal-dialog {
    max-width: 400px;
}

.small-modal .modal-dialog .btn-close {
    opacity: 1;
    border: 1px solid var(--border-clr);
}

.popup-login-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 16px;
}

.modal-header {
    padding: 1rem 1rem 0 1rem;
    border-bottom: none;
}

.small-modal .modal-body h2 {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 24px;
    line-height: normal;

    text-align: center;
    color: var(primary-light-color);
}

.small-modal .modal-body p {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 18px;
    line-height: normal;

    text-align: center;
    color: var(--text-color);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.login-text-w {
    width: 203px;
}

.login-text-w-b {
    width: 210px;
}

.left-login.forgot p {
    margin-bottom: 30px;
}

/*OTP*/
.input-multigrp {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.input-field-code-in {
    display: block;
    width: 60px;
    height: 55px;
    padding: 0px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: var(--placeholder);
    background: var(--white);
    border: 1px solid var(--border-clr);
    outline: none;
    border-radius: 10px !important;
}

/*OTP*/

/*----------------------------------------------------------------------------------*/

/* Anamika */

/* Anamika */
.cta-btn {
    width: 40px;
    height: 40px;
}

.side-options {
    margin-top: 20px;
}

.sidebarDash {
    width: 270px;
    background: #000000;
    color: #fff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px;
    padding-bottom: 0;
    transition: width 0.3s ease;
    /*overflow-y: auto;*/
    overflow-y: hidden;
}

.sidebarDash.hidden {
    width: 0;
    padding: 0;
}

.hamburger {
    cursor: pointer;

    @media screen and (max-width: 600px) {
        position: relative;
        left: 260px;
    }

}

.navbar-Dash {
    height: 75px;
    background: #F8F8F8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 277px;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;

    @media screen and (max-width: 600px) {
        left: auto;
    }

}

.sidebarDash.hidden~.navbar-Dash {
    left: 0;
}

.content {
    margin-left: 270px;
    padding: 100px 20px 20px;
    background-color: #F8F8F8;
    transition: all 0.3s ease;

    @media screen and (max-width: 900px) {
        margin-left: 0;
    }

}

.sidebarDash.hidden~.layout-dash .content {
    margin-left: 0;
}

.layout-dash {
    margin-top: 0;
}

.upper-gradient {
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    z-index: -1;
    object-fit: contain;
    object-position: top;
}

.lower-gradient {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    z-index: 0;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

.content-main {
    overflow-y: auto;
    overflow-x: hidden;
}

.p2p-logo {
    width: 140px;
    height: 40px;
}

.sidebar-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.side-option {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    padding: 15px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.side-option:hover {
    color: #B13A7E;
    cursor: pointer;
}

.side-option.active {
    color: #B13A7E;
}

.side-option.active img {
    filter: brightness(1) invert(0);
}

.side-content {
    position: relative;
    z-index: 5;
    height: 95vh;
}

.side-option img {
    filter: brightness(0) invert(1);
}

.side-option:hover img {
    filter: brightness(1) invert(0);
}

.other {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 100%;

    margin-top: 10px;
    margin-bottom: 10px;
}

.logout-icon {
    position: absolute;
    bottom: 0;
}

.flag {
    width: 24px;
    height: 24px;
}

.Chevrondown {
    width: 25px;
    height: 25px;
}

.navbar-Dash .flag-dropdown {
    padding: 5px;
    border-radius: 10px;
    background: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    border: none;
}

.flag-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.flag-toggle img.flag {
    width: 22px;
}

/*.flag-toggle img.chevron {
    width: 25px;
    height: 25px;
    transform: rotate(180deg);
}*/

.flag-menu {
    position: absolute;
    top: 51px;
    right: 0;
    background: #fff;
    border-radius: 0 0 6px 6px;
    padding: 6px 0;
    width: 139px;
    z-index: 999;
    box-shadow: 0px 0px 30px 0px #0000001A;
    border-radius: 10px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.flag-menu.show {
    display: block;
    transform: scaleY(1);
    opacity: 1;
}

.flag-item {
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-item img {
    width: 20px;
}

.flag-item:hover {
    background: #f5f5f5;
}

.notify {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
}

.right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown-nav {
    width: 25px;
    height: 25px;
}

.name-dropdwn p:first-child {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 17px;

    line-height: 20px;

    margin: 0;
}

.name-dropdwn p:last-child {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;

    line-height: 20px;

    color: #444444;
    margin: 0;
}

.name-dropdwn {
    width: max-content;
}

.name-column {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;

    @media screen and (max-width: 767px) {
        display: none;
    }

}

.name-column>p {
    margin: 0;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    width: 48px;
    height: 40px;
    gap: 5px;
    angle: 0 deg;
    opacity: 1;
    border-right-width: 1px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 10px;
    background: #B13A7E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-dd {
    display: none;
    position: absolute;
    background: #fff;
    top: 78px;
    right: 18px;
    z-index: 99;
    width: 252px;
    height: 76px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    box-shadow: 0px 0px 30px 0px #0000001A;
}

.small-dd.show {
    display: block;
}

.small-dd p {
    margin: 0;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;

    line-height: 20px;

    text-align: start;
    color: #0F0D1C;
    display: flex;
    align-items: center;
    height: 28px;
}

.small-dd p:first-child {
    border-bottom: 1px solid #CCCCCC;
}

.plus {
    width: 22px;
    height: 22px;
}

.create-btn:hover .plus {
    filter: invert(1) !important;
}


.create-btn {
    width: auto;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    padding: 10px;
    border-radius: 10px;
    background: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}

.create-btn:hover {
    background-color: #fff;
    color: #000;
}

.create-btn:hover .plus {
    filter: brightness(1) invert(0);
}

.list-heading {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;

    line-height: 20px;

    color: #0F0D1C;
    margin: 0;
}

.list-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.list-main {
    padding: 20px;
    border: 1px solid #CCCCCC;
    border-radius: 0 10px 10px 10px;
    overflow-x: auto;
}

.list-btns button {
    width: auto;
    height: 500x;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    background: #FFFFFF;
    border-width: 1px, 1px, 0px, 1px;
    border-style: solid;
    border-bottom: 0;
    border-color: #CCCCCC;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #444444;
    cursor: pointer;
}

.list-btns .active {
    background: #0F62FE;
    color: #fff;
}

.two-dropdowns {
    display: flex;
    gap: 20px;
}

.custom-dropdown {

    /* width: auto; */
    height: 50px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #696969;
    font-weight: 500;
    font-family: Satoshi-Medium;
    appearance: none;
    background: #fff url('./../images/grey-arrow.svg') no-repeat;
    background-position: right 12px center;
    background-size: 25px;
    cursor: pointer;
}

.custom-dropdown:first-child {
    width: 198px;
}

.custom-dropdown:last-child {
    width: 287px;
}

.actions-column {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: underline;
}

.users-table thead tr th {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 100%;

    vertical-align: bottom;
    color: #444444;
    text-align: start;
    padding: 20px;
    /* padding-left: 0; */
}

.users-table tbody tr td {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 15px;

    line-height: 100%;

    vertical-align: middle;
    color: #0F0D1C;
    padding: 20px;
    /* padding-left: 0; */
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

.users-table tbody tr td:first-child {
    border-left: 1px solid #CCCCCC;
    border-radius: 10px 0 0 10px;
}

.users-table tbody tr td:last-child {
    border-right: 1px solid #CCCCCC;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 27px;
}

.users-table tr {
    padding: 20px;
    border-radius: 10px;
    border-collapse: separate;
}

.users-table thead tr:first-child {
    border: none;
}

.users-table {
    width: max-content;
    overflow-x: auto;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0 12px;

    @media screen and (min-width: 1920px) {
        width: 100%;
    }

}

.users-table tbody tr {
    border-radius: 10px;
}

.slash-img {
    width: 7px;
    height: 20px;
}

.actions-img {
    width: 15px;
    height: 15px;
}

.active-btn {
    background: #B13A7E !important;
    color: #fff !important;
}

.common-table {
    display: none;
}

.active-table {
    display: table;
    width: max-content;
        min-width: 1050px;
}
#settings-container .custome-tab-table .active-table {
    display: table;
    width: max-content;
        min-width: 1100px;
}
.limit-modal {
    border-radius: 20px;
    padding: 20px !important;
}

.x-circle {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.limit-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.req-mid {
    padding: 0 20px;
}

.modal-title {
    font-family: Satoshi-Bold;
    font-size: 24px;
    color: #0F0D1C;
}

.subtitle {
    font-family: Satoshi-Regular;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;

    line-height: 20px;
    text-align: start;

    color: #0F0D1C;
    margin-top: 5px;
}

.label-text {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.upload-box {
    width: 100%;
    height: 150px;
    border: 2px dashed #CFCFCF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-img {
    width: 40px;
    opacity: 0.7;
}

.download-btn {
    background: #0F0D1C;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.download-btn img {
    width: 18px;
}

.reject-btn {
    width: 48%;
    border: 2px solid #0F0D1C;
    background: transparent;
    border-radius: 10px;
    padding: 10px 0;
    font-weight: 600;
}

.approve-btn {
    width: 48%;
    background: #B02078;
    border-radius: 10px;
    padding: 10px 0;
    color: white;
    font-weight: 600;
    border: 1px solid #B02078;
}

.modal-content {
    border-radius: 15px !important;
    padding: 20px 40px;
}

#viewLimitModal .modal-dialog {
    max-width: 550px !important;
}

.col-md-5 {
    width: 50% !important;
}

.col-border {
    border: 1px solid #CCCCCC;
    padding: 10px 10px;
    border-radius: 10px;
}

.col-border-in {
    border: 1px solid #CCCCCC;
    padding: 10px 10px;
    border-radius: 10px;
}

.row-gap {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap !important;
}

/* 25-11-2025 Anamika */
.search-icon {
    width: 12px;
    height: 12px;
    position: absolute;
    left: 14px;
    top: 19px;
}

.search-area {
    position: relative;
}

.search-area input {
    width: 230px;
    height: 50px;
    gap: 8px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 32px;
    border: 1px solid #CCCCCC;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #696969;
}

.search-area input:focus {
    outline: none;
}

.expo-btn {
    width: 128px;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    background: #0F0D1C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #fff;
}

.expo-btn img {
    width: 22px;
    height: 22px;
}

.right-search {
    display: flex;
    gap: 20px;
}

.table-top {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    position: sticky;
    left: 0;
    gap: 10px;

    @media screen and (max-width: 900px) {
        flex-direction: column;
        gap: 20px;
    }

}

.modal-body {
    padding: 0 !important;
}

.name-column.active {
    background-color: #fff !important;
    box-shadow: 0px 0px 30px 0px #0000001A !important;
}

.right-arrow {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-color: #DDDDDD;
    border-radius: 5px;
}

.left-arrow {
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-color: #DDDDDD;
    border-radius: 5px;
}

.page-btns {
    display: flex;
    gap: 20px;
    align-items: start;
}

.page-btns button {
    width: 32px;
    height: 32px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 5px;
    padding: 5px;
    background-color: #DDDDDD;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: bottom;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.pagination p {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: bottom;
    color: #0F0D1C;
    margin: 0;
}

.pagination {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    justify-content: center;
    position: sticky;
    left: 0;
}

.active-page {
    background: #B13A7E !important;
    color: #fff !important;
}

/* notification */
.notify-container {
    position: relative;
    display: inline-block;
}

.notify-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #FF0000;
    color: white;
    padding: 2px 5px;
    border-radius: 50%;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;

    line-height: 20px;

    text-align: center;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-dropdown {
    background: #fff;
    position: absolute;
    top: 54px;
    /* dropdown below icon */
    right: 0;
    display: none;
    /* hidden by default */
    z-index: 100;
    width: 505px;
    height: 300px;
    gap: 50px;
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
    box-shadow: 0px 0px 30px 0px #0000001A;
}

.nd-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nd-item {
    padding: 10px 0;
    border-bottom: 1px solid #CCCCCC;
}

.nd-item:last-child {
    border-bottom: none;
}

.highlight {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 100%;

    color: #B13A7E;
}

.time {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    color: #696969;
}

.notify-dropdown.open {
    display: block;
}

.notify.active-shadow {
    box-shadow: 0px 0px 30px 0px #0000001A;
}

.notify-dropdown h4 {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
}

.notify-dropdown a {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    text-decoration: underline !important;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #0F0D1C !important;
}

.nd-second {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 100%;

}

/* test popup */
.test-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black */
    display: none;
    /* Hide by default */
    z-index: 999;
    /* Place overlay above other content */
}

/* General styles for the popup */
.test-popup {

    /* display: none; */
        position: fixed;
    z-index: 1000;
    top: auto;
    left: 0;
    right: 0;
    margin: 30px auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 550px;
    height: auto;
    gap: 25px;
    opacity: 1;
    border-radius: 15px;
    padding: 20px;
}

.slide-btn {
    width: 30px;
    height: 30px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 50px;
    background: #E2692B;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.slider-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sider-line {
    height: 6px !important;
    width: 40%;
    /* adjust length */
    background: #CCCCCC;
    opacity: 1;
    border: none;
    margin: 0;
    border-radius: 10px;
}

.sider-line.first {
    background: linear-gradient(to right, #E2692B 0%, #E2692B 50%, #CCCCCC 50%, #CCCCCC 100%);
    opacity: 1;
}

.next-step {
    width: 510px;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    border: none;
    border: 1px solid #B13A7E;
}

.next-step:hover {
    background-color: #fff;
    color: #B13A7E;
}

.previous-step {
    width: 205px;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-width: 1px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    border: 1px solid #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
    background-color: #fff;
}

.next-second {
    width: 205px;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #B13A7E;
    border: 1px solid #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
}

.next-second:hover {
    background-color: #fff;
    color: #B13A7E;
}

.Test-second {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.test-acc-heading {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 100%;

    color: #0F0D1C;
}

.heading-test-inside {
    margin: 0;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 20px;

    margin: 20px 0;
    color: #0F0D1C;
}

.account-label {
    margin: 0;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    margin-bottom: 5px;
    line-height: 100%;

    vertical-align: middle;
    color: #444444;
}

.text-account {
    width: 100%;
    height: 50px;
    gap: 8px;
    angle: 0 deg;
    opacity: 1;
    border-width: 1px;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #CCCCCC;
    margin-bottom: 20px;
}

.acc-dd-container {
    width: 100%;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}

.acc-dd-selected {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #D3D3D3;
    border-radius: 8px;
    color: #B13A7E;
     appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23B13A7E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    outline: none;
    /* default selected text color */
}

.acc-dd-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #D3D3D3;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 20;
}

.acc-dd-item {
    padding: 10px 12px;
    color: #B13A7E;
    /* option text color */
}

.acc-dd-item:hover {
    background: #F4E7EF;
}

.acc-dd-show {
    display: block !important;
}

.dd-acc {
    position: absolute;
    right: 5px;
    top: 12px;
}

.doc-area {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-size: 16px;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.file-icons p {
    margin-bottom: 0;
}

.doc-file {
    width: 30px;
    height: 30px;
}

.file-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 1rem 0rem 1.5rem 0rem;
    border: 1px solid #CCCCCC;
    padding: 12px 12px;
    border-radius: 10px;
}

.image-container {
    background-color: white;
    text-align: center;
    width: 100%;
    height: 150px;
    gap: 8px;
    border-width: 1px;
    border-radius: 10px;
    padding: 20px;
    border-style: dashed;
    border: 1px dashed #CCCCCC;
    margin: 15px 0 10px 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-container h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.image-container p {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;

    line-height: 100%;

    vertical-align: middle;
    color: #0F0D1C;
    margin: 10px 0;
}

.image-container p span {
    color: #B13A7E;
    text-decoration: underline;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;

    line-height: 100%;

    vertical-align: middle;
    color: #B13A7E;
}

.cross-close {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.test-top-part {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* 26-11-25 */

.modal-content-ux9a3 {
    width: 400px;
    height: 199px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 15px;
    padding: 20px;

}

.modal-title-ux9a3 {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    color: #0F0D1C;
    border-bottom: none !important;
}

.modal-header-ux9a3 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.modal-body-ux9a3 {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 100%;

    color: #0F0D1C;
    margin-top: 20px;
    margin: 0;
}

.modal-footer-ux9a3 {
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.btn-cancel-ux9a3 {
    width: 165px;
    height: 50px;
    gap: 10px;
    opacity: 1;
    border-radius: 10px !important;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #B13A7E !important;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    border: 1px solid #B13A7E !important;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
}

.btn-cancel-ux9a3:hover {
    background-color: #fff !important;
    color: #b13a7e !important;
}

.btn-confirm-ux9a3 {
    width: 165px;
    height: 50px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px !important;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    border-width: 1px;
    border: 1px solid #0F0D1C !important;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C !important;
    background-color: #fff !important;
}

.modal-content-ux9a3 {
    width: 423px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 199px;
    gap: 20px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 15px;
    padding: 20px;
    background: #FFFFFF;

}

.modal-dialog-ux9a3 {
    display: flex;
    justify-content: center;
}

.Senegal {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}

.list-heading {
    display: flex;
    align-items: center;
    gap: 10px;

}

.icon-down {
    width: 99px;
    height: 38px;
    gap: 8px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 8px;
    padding-right: 20px;
    padding-bottom: 8px;
    padding-left: 20px;
    background: #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: bottom;

    color: #b13a7e !important;
}

.icon-down img {
    width: 20px;
    height: 20px;
}

.ts {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    color: #0F0D1C;
    margin-left: -18px;
    margin-top: -18px;
}

.custom-dropdown-down {
    width: 22px;
    height: 22px;
}

.user-btn-select {
    width: 195px;
    height: 40px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    gap: 10px;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #696969;
}

.is-star {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.is-star span {
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    gap: 5px;
    padding-right: 10px;
    padding-left: 10px;
    border-right-width: 1px;
    background: #B13A7E;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}

.user-phone {
    margin: 0;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;

    color: #FFFFFF;
}

.user-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 18px;
}

.sn-upper-area {
    background: #000;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.view-limit {
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 30px 10px;
    background: #E2692B;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
    border-radius: 0 20px 0 0;
    border: none;
}

.user-active {
    width: 100%;
    height: 100%;
    opacity: 1;
    height: 100%;
    gap: 10px;
    padding: 10px;
    padding-left: 20px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    border: none;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
    border: none;
    border-radius: 0 0 20px 0;
}

.Delete-user {
    width: 100%;
    height: 100%;
    gap: 10px;
    padding: 30px 10px;
    background: #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
    border: none;
    border-radius: 0 0 20px 0;
}

.sn-user-btns {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.sn-right-area {
    display: flex;
    position: relative;
    z-index: 7;
    /*width: 60%;*/
    width: auto;
    height: 200px;
}

.type-acc {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #444444;
    margin-bottom: 12px;
}

.type-user {
    font-family: Satoshi-Black;
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 20px;
    color: #0F0D1C;
}

.type-user:last-child {
    margin-bottom: 0;
}

.user-acc-texts {
    height: 100%;
    display: flex;
    flex-direction: column;
        gap: 10px;
    /*justify-content: flex-start;*/
    /*justify-content: center;*/
}
.bank-acc-left .user-acc-texts{
    justify-content: center;
}
.user-acc-left {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 20px;
    position: relative;
    z-index: 7;
    border: 1px solid #CCCCCC;
    width: 100%;
}

.bank-acc-left {
    width: 100%;
    display: flex;
    gap: 20px;
    border-radius: 20px 0 0 20px;
    padding: 20px;
    position: relative;
    z-index: 7;
    background: #F7EBF2;
    border: 1px solid #CCCCCC;
    justify-content: space-between;
}

.type-user-btn {
    width: 118px;
    height: 38px;
    gap: 10px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    border-width: 1px;
    /* padding-top: 20px; */
    /* padding-right: 20px; */
    /* padding-bottom: 20px; */
    /* padding-left: 20px; */
    border: 1px solid #0F0D1C;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 20px;

    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #0F0D1C;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.shape-blur {
    position: absolute;
    right: -90px;
    top: auto;
    z-index: -1;
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: right;
}

@media (min-width: 768px) and (max-width: 819px) {

    .user-btn-select {
        font-size: 13px;
        padding: 6px 12px;
    }

    .is-star {
        font-size: 13px;
    }

    .user-phone {
        font-size: 12px;
    }

    .type-acc {
        font-size: 11px;
    }

    .type-user {
        font-size: 16px;
    }

    .type-user-btn {
        font-size: 13px;
        padding: 4px 10px;
    }

    .user-acc-texts {
        width: 30%;
    }

    .sn-user-btns button {
        font-size: 12px;
        padding: 6px 10px;
    }

    .shape-blur {
        width: 110px;
    }
}

.calndr {
    width: 25px;
    height: 25px;
}

.btn-date {
    width: 273px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #696969;
    cursor: pointer;
}

.rebalance-popup {
    width: 550px !important;
    height: 575px;
    angle: 0 deg;
    opacity: 1;
    gap: 25px;
    border-radius: 15px;

}

.rebalance-content {
    width: 100%;
    padding: 20px;
}

.rebalance-title {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
}

.rebal-heading {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #444444;
    margin-top: 20px;
    margin-bottom: 5px;
}


.radio-btns-rebal p {
    margin: 0;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #0F0D1C;
}

.radio-btns-rebal {
    display: flex;
    gap: 20px;
}

.rebal-input {
    width: 100%;
    height: 50px;
    justify-content: space-between;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #0F0D1C;
    border: 1px solid #CCCCCC
}

.xof {
    width: 76px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    position: absolute;
    right: 0;
}

.btn-hold {
    width: 245px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    border: 1px solid #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
    background: #fff;
}

.btn-val {
    width: 245px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding: 10px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;
    border: none;

    text-align: center;
    color: #FFFFFF;
}

.rebal-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}

.note-rebal {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    margin-top: 20px;
    color: #FF0000;
    text-align: center;
}

.action-heading {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 100%;

    color: #444444;
    margin: 0;
}

.validate {
    width: 155px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 40px;
    background: #B13A7E;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;

    line-height: 20px;

    border: none;
    text-align: center;
    color: #FFFFFF;
}

.refuse {
    width: 143px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 40px;
    background: #0F0D1C;
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;

    border: none;
    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
}

.validate-btns {
    display: flex;
    justify-content: start;
    gap: 20px;
}

.logout-content {
    width: 400px;
    height: auto;
    angle: 0 deg;
    opacity: 1;
    gap: 25px;
    border-radius: 15px;
    padding: 20px;
    background: #FFFFFF;

}

.logout-popup {
    display: flex;
    justify-content: center;
    width: 400px !important;
    height: auto;
}

.logout-txt {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;

    line-height: 20px;

    color: #0F0D1C;
    margin: 0;
}

.logout-btn {
    width: 165px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    border: none;
    text-align: center;
    color: #FFFFFF;
        display: flex;
    justify-content: center;
    align-items: center;
}
.logout-btn:hover {
    color: #000;
}
.logout-no {
    width: 165px;
    height: 50px;
    background-color: #fff;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    border-width: 1px;
    border: 1px solid #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
}

.settings-content {
    width: 550px;
    height: 660px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 15px;
    padding: 20px;
    background: #FFFFFF;

}

.phone-no {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #696969;
    margin: 0;
}

.share-cred {
    width: auto;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #FFFFFF;
    border: 1px solid #0F0D1C;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #0F0D1C;
}

.add-cred {
    width: 114px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;
    border: none;

    text-align: center;
    color: #FFFFFF;
}

/* Anamika */

/*--------------------------------------------------------------------------------*/
.rej-pop-view {
    width: 25%;
}

.mod-pop-vd {
    padding: 10px 30px;
}

.modal-content.limit-modal.mod-pop-vd .modal-header {
    padding-left: 0;
}

.new-btn-popup {
    display: flex;
    gap: 20px;
    width: 130px;
}

.input-cre-popup {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-clr);
    margin-bottom: 10px;
    width: 94%;
}

.crt-pop-up-input {
    text-align: left;
}

.ac-text {
    text-align: left;
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;

    vertical-align: middle;
}

.bd-rgt {
    border-right: 1px solid var(--border-clr);
    overflow: hidden;
    padding-left: 0;
}

#viewNewAccount {
    z-index: 9999;
}

/*.custom-new-ac{
max-width: 990px;
}*/
.new-btn-popup .secondry-cta {
    /*width: 45%;*/
    margin-bottom: 10px;
}

.new-btn-popup .primary-cta {
    /*width: 45%;*/
    margin-bottom: 10px;
}

.nav-item-1 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #0F0D1C !important;
    background-color: var(--white);
    border-color: #dee2e6 #dee2e6 #fff;
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;

    text-align: center;
}

.nav-tabs .nav-link {
    color: #0F0D1C;
    font-family: "Satoshi-Medium";
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;

    text-align: center;
}

.nav-link:focus,
.nav-link:hover {
    color: #0F0D1C !important;
}


.selft-tab.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.selft-tab.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #555;
}

.selft-tab.nav-tabs .nav-link.active {
    border-bottom: 3px solid #E2692B;
    color: #E2692B;
    background: transparent;
}

.nav-tab-heading {
    padding-top: 29px;
}

.account-heading {
    border-bottom: 1px solid var(--border-clr);
}

.input-text-heading {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-clr);
}

.tab-label {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;

    margin-bottom: 10px;
    margin-top: 10px;
}

.my-place {
    background: var(--border-clr);
    border: 1px solid #696969;
}

.profile-parent {
    border-bottom: 1px solid var(--border-clr);
    padding-bottom: 12px;
}

.username-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    height: 48px;
    background: var(--white);
    width: 50%;
}

/* Left background text */
.username-wrapper .prefix {
    background: #f7e9ef;
    padding: 0 14px;
    color: #000;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #ddd;
    white-space: nowrap;
}

/* Input field */
.username-wrapper input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0 14px;
    font-size: 14px;
}

/* Right icon */
.username-wrapper .info-icon {
    padding: 0 14px;
    font-size: 14px;
    color: #e2692b;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.username-wrapper .info-icon img {
    width: 16px;
    height: 16px;
}

.profile-pic-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.profile-avatar {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.btn-edit {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-delete {
    background: #0b0b1d;
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.btn-edit:hover {
    opacity: 0.9;
}

.btn-delete:hover {
    opacity: 0.9;
}

.notification-box {
    padding: 14px;
    display: flex;
    border-radius: 8px;
}

.add-new-role {
    display: flex;
}

select.form-select.tab-custom-select {
    width: 16%;
    border-radius: 10px;
}

.all-select {
    display: flex;
    gap: 10px;
    width: 100%;
}

.parent-head-btn {
    display: flex;
    justify-content: space-between;
}

.mid-boder {
    padding-left: 25px;
    padding-right: 25px;
}

.acc-bottom-btn {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--border-clr);
    border-radius: 4px;
    background: var(--white);
    position: relative;
}


.custom-checkbox:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.custom-checkbox:checked::after {
    content: "✔";
    color: var(--white);
    font-size: 14px;
    position: absolute;
    left: -2px;
    top: -4px;
}

.notification-label {
    border-bottom: 1px solid var(--border-clr);
}

.user-label {
    border-bottom: 1px solid var(--border-clr);
    padding-bottom: 12px;
}

.phone-label-ac {
    border-bottom: 1px solid var(--border-clr);
    padding-bottom: 12px;
}

.pro-pic-label {
    border-bottom: 1px solid var(--border-clr);
    padding-bottom: 12px;
}

.phone-width {
    width: 50%;
}


.custom-flag-dropdown {
    display: inline-block;
    position: relative;
}


.custom-dropdown-btn {
    display: flex;
    align-items: center;
    background-color: #B13A7E1A;
    color: var(--white);
    /* text color */
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    font-size: 14px;
}

/* Flag icon */
.custom-dropdown-btn .flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

/* Custom arrow */
.custom-dropdown-btn .custom-arrow {
    margin-left: auto;
    font-size: 12px;
}

/* Custom dropdown menu */
.custom-dropdown-menu {
    min-width: 140px;
    padding: 0;
}

/* Dropdown items */
.custom-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
}

/* Flag icon in menu */
.custom-dropdown-menu .flag-icon {
    margin-right: 8px;
    width: 20px;
    height: 14px;
}

/* Hover effect */
.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
}

.phone-label-ac input.form-control.input-text-heading {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.notify-text {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 100%;

    vertical-align: middle;
}

.notify-body {
    padding-left: 12px;
}

.email-notify {
    display: flex;
}

select.form-select.tab-custom-select-1 {
    width: 16%;
    border-radius: 10px;
}

select.form-select.tab-custom-select-2 {
    width: 19%;
    border-radius: 10px;
}

.custome-tab-table {
    overflow-x: auto;
    width: 100%;
}

.pagination.custom-pg {
    padding: 10px;
}

.role-left-body {
    height: 900px;
    border: 1px solid var(--border-clr);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

table.table.table-bordered.role-tabel th {
    background: #B13A7E33;
}

.right-inner-table {
    padding: 15px;
    border: 1px solid var(--border-clr);
    border-radius: 10px;
}

.right-inner-table table {
    border-radius: 10px;
}




.role-tabel {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-clr);
    border-radius: 10px;
    overflow: hidden;

}


.role-tabel thead th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-clr);
    border: 1px solid var(--border-clr);
}

/* Table body cells */
.role-tabel tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-clr);
}


.role-tabel tbody tr:last-child td {
    border-bottom: none;
}


.role-tabel tbody tr:hover {
    background-color: #f9f9f9;
}


.role-tabel tbody td p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.settings {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

table.table.table-bordered.role-tabel {
    margin-bottom: 0;
}

.role-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-clr);
    padding: 8px;
}

.ac-role-in {
    padding: 10px 0 10px 0;
}

.custom-checkbox-inner-table {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid var(--border-clr);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    border-color: var(--primary-color) !important;
}

/* Checked state */
.custom-checkbox-inner-table:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.custom-checkbox-inner-table:checked::after {
    content: "✔";
    color: var(--white);
    font-size: 14px;
    position: absolute;
    left: 2px;
    top: -4px;
}

.left-side {
    width: 20px;
    height: 20px;
}

.table-bottom-btn {
    gap: 10px;
    opacity: 1;
    border-width: 1px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-clr);
    color: #CCCCCC;
    background-color: var(--white);
}

.table-right-btn {
    gap: 10px;
    padding: 10px 30px;
    opacity: 1;
    border-width: 1px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    color: var(--white);
    background-color: var(--primary-color);
}

.next-pre-btn {
    padding: 20px 0px;
}

.can-btn-role {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.table-top {
    display: none;
}

.table-top-active {
    display: flex !important;
}


.acc-req {
    position: relative;
    width: 249px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
}

.req-badge {

    background: #FF0000;
    color: white;
    padding: 2px 5px;
    border-radius: 50%;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;

    line-height: 20px;

    text-align: center;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rebalanced {
    margin-top: 0;
    margin-bottom: 10px;
}

.manage-txt {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 100%;

    color: #444444;
}

.no-data-txt {
    font-family: Satoshi-Black;
    font-weight: 900;
    font-style: Black;
    font-size: 40px;

    line-height: 100%;

    vertical-align: middle;
    color: #0F0D1C;
}

.no-data-btn {
    width: 252px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border: 1px solid #b13a7e;
}

.no-data-btn img {
    width: 25px;
    height: 25px;
}

.no-data-btn:hover {
    color: #b13a7e;
    background: #fff;
}

.no-data-area {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
}

.error-img {
    width: 502.9874267578125px;
    height: 369.6615295410156px;
    angle: 0 deg;
    opacity: 1;


}

.u-turn {
    width: 27.15322494506836px;
    height: 27.15322494506836px;
    angle: 0 deg;
    opacity: 1;

}

.back-btn {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 100%;

    text-align: center;
    color: #B13A7E;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: underline;
}

.btn-date input {
    border: none;
    outline: none;
}

.logout-content .modal-header {
    padding-left: 0;
}


.role-dd-wrapper-uniqeX9 {
    position: relative;
    width: 100%;
}

.role-dd-input-uniqeX9 {
    cursor: pointer;
    width: 252px;
    height: 50px;
    justify-content: space-between;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    border-width: 1px;
    padding: 20px;
    border: 1px solid #CCCCCC;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #B13A7E;
}

.role-dd-input-uniqeX9::placeholder {
    color: #b13a7e;
}

.role-dd-list-uniqeX9 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    display: none;
    z-index: 9999;
}

.role-dd-item-uniqeX9 {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
}

.role-dd-item-uniqeX9:hover {
    background: #f2f2f2;
}

/* bank panel */

.type-acc-bank {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #444444;
    margin-right: 40px;
}

.bank-profile {
    width: 22px;
    height: 22px;
}

.amount-input {
    width: 100%;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    gap: 8px;
    border-radius: 10px;
    padding: 20px;
    border-width: 1px;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    border: 1px solid #CCCCCC;
    margin-bottom: 30px;
}


.popup-content-UX993 {
    width: 100%;
    height: auto;
    opacity: 1;
    border-radius: 15px;
    gap: 25px;
    padding: 20px;

}

.popup-dialog-UX993 {
    width: 450px;
    height: 247px;
}

.openSecondPopup-btnUX993 {
    display: flex !important;
    justify-content: end !important;
    background-color: #fff !important;
    border: none !important;
    margin: 0 0 0 auto;
}

.openSecondPopup-btnUX993 span {
    width: 147px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 40px;
    gap: 10px;
    background: #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.cross-icon {
    width: 30px;
    height: 30px;
}

.purchase-heading {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    color: #0F0D1C;
    margin: 0;
}

.purchase-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.amount-label-UX01 {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #444444;
}

.amount-input-UX01 {
    width: 100%;
    height: 50PX;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    gap: 8px;
    padding: 20px;
    border-width: 1px;
    border: 1px solid #CCCCCC;
}

.amount-field-wrapper-UX01 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.openSecondPopup-btnUX993:focus {
    outline: none !important;
    border: none !important;
}

.warning-heading {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;

    line-height: 20px;

    color: #0F0D1C;
}

.warning-text {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;

    line-height: 100%;

    vertical-align: middle;
    color: #444444;
    margin-bottom: 10px;
}

.warning-bold {
    font-family: Satoshi-Black;
    font-weight: 900;
    font-style: Black;
    font-size: 32px;

    line-height: 100%;

    vertical-align: middle;
    color: #B13A7E;
}

.openSecondPopup-btnUX993 span:hover {
    background-color: #fff;
    border: 1px solid #b13a7e;
    color: #b13a7e;
}

.generate {
    width: 259px;
    height: 50px;
    angle: 0 deg;
    opacity: 1;
    border-radius: 10px;
    gap: 10px;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 13px;
    padding-bottom: 10px;
    padding-left: 13px;
    background: #B13A7E;
    border: 1px solid #B13A7E;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.generate img {
    width: 25px;
    height: 25px;
}

.download-table img {
    width: 25px;
    height: 25px;
}

.download-table {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #fff;
    border: none;
    text-decoration: underline;
    padding-bottom: 5px;
}

.export-bank {
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    background-color: #fff;
    border: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.export-bank img {
    width: 24px;
    height: 24px;
}

.bank-trash img {
    width: 20px;
    height: 20px;
}

.bank-trash {
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    font-family: Satoshi-Medium;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;

    line-height: 20px;

    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    color: #FF0000;
    gap: 10px;
}

.actions-reports {
    display: flex;
    align-items: center;
    gap: 10px;
}

.an-btn {
    border: none;
}

.send-btn {
    width: 100%;
}

.input-grp input::placeholder {
    color: #696969;
}

th.table-head {
    text-align: left;
    padding-bottom: 12px;
}

/*.modal-dialog.modal-dialog-centered.modal-xl.custom-modal-width {
  max-width: 800px; 
}*/

.tbl-bdy {
    padding: 10px;
}

/*.tbl-bdy table tr td {
    border-right: 1px solid #ccc;
}*/
.tbl-bdy table tr td:first-child {
    border-right: 1px solid #ccc;
}

.tbl-bdy table tr td:nth-child(2) {
    border-right: 1px solid #ccc;
    padding-left: 20px;
}

.tbl-bdy table tr td:nth-child(3) {
    padding-left: 20px;
}

.side-option a {
    color: white;
    text-decoration: none;
    /* optional: underline hatane ke liye */
}

.side-option a:hover {
    color: #B13A7E;
}

.slide-btn.btn-side-2 {
    color: #444444;
    background: #CCCCCC;
}

.sn-left-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
    position: relative;
    padding: 20px;
    height: -webkit-fill-available;
    isolation: isolate;
}

.doc-list-scroll {
    height: 300px;
    overflow: auto;
}

.sn-upper-area.user-details .user-area {
    width: 30%;
    justify-content: center;
    padding: 20px;
}

.sn-upper-area.user-details .sn-right-area {
    width: 70%;
}

.sn-upper-area.user-details .sn-right-area .user-acc-left .user-acc-texts {
    justify-content: flex-start;
}

.sn-upper-area.user-details .sn-right-area .user-acc-left .user-acc-texts .type-user {
    font-size: 20px;
}

.sn-upper-area.user-details .sn-right-area .user-acc-left .user-acc-texts .type-acc {
    min-height: 32px;
}

.sn-upper-area.user-details .sn-right-area .user-acc-left {
    width: 70%;
}

.sn-upper-area.user-details .sn-right-area img.shape-blur {
    left: -150px;
}

.right-icon-tbl {
    width: 20px;
    height: 20px;
}

.green-clr {
    color: #008000;
}

#viewLimitMarchent .modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 1030px;
}

.account-heading h2 {
    font-size: 18px;
    font-weight: 600;
}

.account-heading p {
    font-size: 14px;
    color: #6b7280;
}

.country-parent {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}

.country-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.country-row .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-row .number {
    font-family: "Satoshi-Medium";
    font-weight: 500;
    font-size: 17px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #0F0D1C;
}

.country-flag {
    width: 30px;
    height: 30px;
    border-radius: 4px;
}

.country-name {
    font-family: "Satoshi-Medium";
    font-weight: 500;
    font-size: 17px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #0F0D1C;
}

.country-row .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-text {
    font-family: "Satoshi-Medium";
    font-weight: 500;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #444444;
}

.status-text.enable {}

/* Bootstrap switch tweak */
.form-switch .form-check-input {
    width: 42px;
    height: 22px;
    cursor: pointer;
}

/* Toggle ON color */
.right .form-switch .form-check-input:checked {
    background-color: #008000;
    border-color: #008000;
}

/* Optional: focus glow bhi blue */
.right .form-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.commission-label {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #444444;
    font-family: "Satoshi-Bold";
}

.com-cos {
    width: auto;
    height: 50px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #696969;
    font-weight: 500;
    font-family: Satoshi-Medium;
    appearance: none;
    background: #fff url(./../images/grey-arrow.svg) no-repeat;
    background-position: right 12px center;
    background-size: 25px;
    cursor: pointer;
}

#commissionTier .modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 883px;
}

#editcommissionTier .modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 883px;
}

input.form-control.cos-inp {
    height: 50px;
}

.modal-content.commission-modal .modal-header {
    padding: 0;
}

.chevron {
    transition: transform 0.3s ease;
}

.flag-menu {
    display: none;
}

/* OPEN state */
.flag-dropdown:has(.flag-toggle:focus-visible) .flag-menu {
    display: block;
}

.flag-dropdown:has(.flag-toggle:focus-visible) .chevron {
    transform: rotate(180deg);
}

.no-data-btn img {
    transition: filter 0.3s ease;
    filter: none;
    /* default color */
}

.no-data-btn:hover img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(56%) saturate(1925%) hue-rotate(300deg) brightness(90%) contrast(90%);
}

.add-new-role h2 {
    font-family: "Satoshi-Bold";
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    text-align: center;
}

.chevron {
    transition: transform 0.3s ease;
}

.flag-toggle.active .chevron {
    transform: rotate(180deg);
}


.sn-left-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
    position: relative;
    padding: 20px;
    height: -webkit-fill-available;
    isolation: isolate;
}
.bank-acc-left h1.type-user {
    font-size: 18px;
}

.modal-body.modal-body-ux9a3.text-field textarea {
    width: 100%;
    height: 50px;
    outline: none;
        border: 1px solid #ccc;
    border-radius: 7px;
    padding-left: 12px;
    padding-top: 12px;
}
#rejectReasonMerchant::placeholder {
  color: #999;        
  font-size: 16px;    
}
p.side-option {
    font-family: Satoshi-Bold;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}