* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* fonts */
/* Poppins - Black */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* Poppins - Black Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

/* Poppins - Bold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/* Poppins - Bold Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* Poppins - ExtraBold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

/* Poppins - ExtraBold Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
    font-weight: 800;
    font-style: italic;
}

/* Poppins - ExtraLight */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

/* Poppins - ExtraLight Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

/* Poppins - Italic (Regular Italic) */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* Poppins - Light */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

/* Poppins - Light Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

/* Poppins - Medium */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

/* Poppins - Medium Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

/* Poppins - Regular */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

/* Poppins - SemiBold */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

/* Poppins - SemiBold Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}

/* Poppins - Thin */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

/* Poppins - Thin Italic */
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

a {
    text-decoration: none;
}

input {
    outline: none;
}

.gradientBg {
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
}

/* ---------------------------------------------
CUSTOM MODAL
---------------------------------------------- */
/* ===== Modal Overlay ===== */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    /* z-index: 1000; */
    z-index: 1000;
}

.custom-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Modal Box ===== */
.custom-modal {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    will-change: transform, opacity;
}

.custom-modal.show {
    transform: scale(1);
    opacity: 1;
}

/* Modal Sizes */
.modal-sm {
    width: 20vw;
}

.modal-md {
    /* width: 50vw; */
    width: 620px;
}

.modal-lg {
    /* width: 80vw; */
    width: 1148px;
}

/* Close Button */
.custom-modal .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.rejection-history-modal .rejection-history-box {
    width: min(860px, calc(100vw - 40px));
    max-height: min(680px, calc(100vh - 72px));
    overflow: hidden;
    padding: 0;
    border-radius: 8px;
}

.rejection-history-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 24px;
    border-bottom: 1px solid #ece9e6;
    background: #f9fafe;
}

.rejection-history-header h2 {
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.rejection-history-header p {
    margin: 3px 0 0;
    color: #6b6b6b;
    font-size: 11px;
    font-weight: 400;
}

.rejection-history-header .close-btn {
    position: static;
    flex: 0 0 auto;
    border: none;
    background: none;
    color: #121212;
    font-size: 1.5rem;
}

.rejection-history-body {
    padding: 10px 24px;
    overflow: auto;
}

.rejection-history-table-wrap {
    overflow: auto;
    border: 1px solid #ece9e6;
    border-radius: 8px;
}

.rejection-history-table {
    width: 100%;
    min-width: 560px;
    border-collapse: separate;
    border-spacing: 0;
}

.rejection-history-table th,
.rejection-history-table td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #0078d133;
    color: #121212;
    font-size: 12px;
    line-height: 1.45;
    white-space: normal;
}

.rejection-history-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #000000;
    font-weight: 500;
    background: #f9fafe;
}

.rejection-history-table td:first-child,
.rejection-history-table td:nth-child(2) {
    white-space: nowrap;
}

.rejection-history-table tbody tr:last-child td {
    border-bottom: 0;
}

.rejection-history-table tbody tr:hover td {
    background-color: #e9f3ff;
}

.rejection-history-footer {
    display: flex;
    justify-content: center;
    padding: 12px 24px 16px;
    border-top: none;
}

@media (max-width: 576px) {
    .rejection-history-header,
    .rejection-history-body,
    .rejection-history-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@keyframes fadeIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---------------------------------------------
      LAYOUTS
---------------------------------------------- */

.layoutBody {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 60px;
    background: linear-gradient(180deg, #ece9e6 0%, #cff4f1 100%);
    color: white;
    position: relative;
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.menu-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 1rem 0; */
}

.menu-icons img {
    margin: 0.5rem 0;
    cursor: pointer;
}

.menu-icons a {
    width: 100%;
    margin-left: 1em;
    padding: 0 1em;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

.menu-icons a:hover {
    border-radius: 8px 0 0 8px;
    background-color: rgba(245, 245, 245, 0.5);
}

.menu-icons .activeMenu {
    border-radius: 8px 0 0 8px;
    background-color: white;
}

.menu-icons .sidebarLogo {
    /* margin: 0.5rem 0;
  margin-bottom: 1.5rem; */
    margin: 1rem 0;
}

/* Offcanvas Sidebar */

.offcanvas-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 230px;
    height: 100%;
    background: linear-gradient(180deg, #ece9e6 0%, #cff4f1 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 9999999;
    padding: 0 0.5rem;
    padding-right: 0;
}

.offcanvas-sidebar.active {
    transform: translateX(0);
}

.offcanvas-sidebar .menu-icons {
    display: flex;
    flex-direction: column;
    /* padding: 1rem 0; */
    align-items: start !important;
    overflow-x: auto;
    height: 100%;
}

.offcanvas-sidebar .menu-icons::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.offcanvas-sidebar .menu-icons::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas-sidebar .menu-icons::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.offcanvas-sidebar .menu-icons::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.offcanvas-sidebar .menu-icons a {
    margin-left: 0;
}

.offcanvas-sidebar .menu-icons p {
    font-size: 12px;
    margin: 0;
    margin-left: 10px;
    color: black;
}

/* Submenu styling */
.submenu {
    list-style: none;
    padding-left: 25px;
    margin: 5px 0;
    display: none;
    /* hidden by default */
}

.submenu li a {
    font-size: 12px;
    color: #333;
    /* display: block; */
    /* padding: 3px 0; */
    text-decoration: none;
    padding: 0.4em 1em;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submenu li a p {
    margin: 0px !important;
}

.has-submenu.open>.submenu {
    display: block;
    /* show when parent has 'open' */
}

.has-submenu {
    width: 100%;
    display: block;
    position: relative;
}

/* Default: right arrow */
.has-submenu>.submenu-toggle::after {
    content: url(../img/leftArrow.png);
    position: absolute;
    right: 15px;
    top: 8px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
    font-size: 14px;
}

/* When open: rotate arrow down */
.has-submenu.open>.submenu-toggle::after {
    transform: rotate(90deg);
}

/* Topbar */
.topbar {
    /* height: 60px; */
    height: 34px;
    /* background: #ecf0f1; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.topbar .left img {
    cursor: pointer;
}

.topbar .right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.topbar .right .profileIcon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.topbar .right img {
    cursor: pointer;
}

/* Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content-body {
    flex: 1;
    overflow-y: auto;
    background: #f9f9f9;
    padding: 16px;
}

/* Overlay for offcanvas */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1500;
}

.overlay.active {
    display: block;
}

/* ---------------------------------------------
LOGIN PAGE
---------------------------------------------- */

#loginPageBox {
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-image: url(../Img/loginBg.png);
    background-size: contain;
    background-position: left bottom;
}

#loginPageBox h1 {
    font-size: 24px;
    font-weight: 500;
    line-height: 56px;
}

#loginPageBox h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 100px;
    line-height: 30px;
}

/* .leftSide {
  width: 53%;
}

.rightSide {
  width: 47%;
} */

#loginPageBox>div {
    flex-wrap: wrap;
}

#loginPageBox .leftSide {
    display: flex;
    flex-direction: column;
    flex: 1 1 53%;
    /* border: 1px solid; */
}

#loginPageBox .leftSide .leftContent {
    flex: 1;
    /* border: 1px solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 47%;
}

#loginPageBox .leftSide2 {
    padding-bottom: 70px !important;
}

#loginPageBox .leftSide p {
    font-size: 10px;
}

#loginPageBox .leftSide h5 {
    font-size: 16px;
    font-weight: normal;
    margin-left: 10px;
}

#loginPageBox .leftSide h5 span {
    color: #14996f;
    font-weight: 500;
}

#loginPageBox .newGoFxUser .newGoFxUserbtn {
    padding: 6px 14px;
    border: none;
    background: #14996f;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

#loginPageBox .newGoFxUser a:last-child {
    color: #00618f;
    text-decoration: underline;
}

.loginCard {
    border: 1px solid #b3b3b3;
    padding: 20px 40px;
    /* padding: 40px; */
    /* height: 75%; */
    width: 480px;
    min-height: 512px;
    /* height: 550px; */
    /* max-height: 900px; */
    /* height: auto; */
    margin: auto;
    border-radius: 16px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 246, 255, 1) 101%), url(../Img/login-img2.png);
    background-size: 170%;
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 20%;
    display: flex;
    flex-direction: column;
}

.loginStep {
    display: none;
}

.loginStep.activeLoginCard {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.loginStep h2 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 5px;
}

.loginStep p {
    color: #6b6b6b;
    font-size: 12px;
    /* margin-bottom: 20px; */
    margin-bottom: 8px;
}

.loginStep>div {
    margin-bottom: 10px;
}

.step1 label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.step1Inp {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    padding: 0 10px;
    border: 1px solid #6b6b6b;
}

.loginStep a {
    font-size: 12px;
    color: #00618f;
    line-height: 20px;
    margin-left: auto;
    text-align: end;
    display: block;
    width: fit-content;
    text-decoration: underline;
}

.BtnBox {
    text-align: center;
}

.blueBtn {
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.backBtn {
    background: none;
    border: none;
    outline: none;
    margin: auto;
    margin-top: 10px;
    font-size: 16px;
    color: black;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
}

.loginStep .emptyFillBox {
    flex: 1;
}

.passInpBox {
    position: relative;
}

.passInpBox img {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    /* height: 20px; */
    cursor: pointer;
    user-select: none;
}

/*  */
.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-label {
    display: flex;
    /* align-items: center; */
    /* padding: 0 1em; */
    padding: 0.5em 1em 0.5em;
    margin-bottom: 0.5em;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background-color 0.2s, border-color 0.2s;
    min-height: 50px;
    cursor: pointer;
    gap: 6px;
    user-select: none;
}

.radio-label:hover {
    background-color: #e6e6e6;
}

.radio-input {
    position: absolute;
    opacity: 0;
}

.radio-input:checked+.radio-label {
    /* background-color: #ffc3c3; */
    border-color: #888;
}

.radio-input:focus+.radio-label {
    outline: 1px solid #888;
}

.radio-input:disabled+.radio-label {
    /* background: #b3b3b3 !important; */
    /* background: #b3b3b37a !important; */
    background: #d0d0d0 !important;
}

.radio-input:disabled+.radio-label p {
    color: #6b6b6b !important;
}

.radio-input:disabled+.radio-label small {
    color: #6b6b6b !important;
}

.radio-inner-circle {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 1px solid #888;
    border-radius: 50%;
    margin-right: 0.5em;
    transition: border-color 0.2s;
    position: relative;
    margin-top: 0.3em;
}

.radio-label:hover .radio-inner-circle {
    border-color: #555;
}

.radio-input:checked+.radio-label .radio-inner-circle {
    border-color: black;
}

.radio-input:checked+.radio-label .radio-inner-circle::after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-group p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.radio-group small {
    font-size: 11px;
}

.digit-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    /* margin-top: 10px; */
    -ms-flex-pack: distribute;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.digit-input {
    width: 56px !important;
    height: 36px !important;
    /* width: 35px !important;
  height: 31px !important; */
    font-size: 15px !important;
    text-align: center;
    border: 1px solid #6b6b6b !important;
    border-radius: 5px;
    outline: none;
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

.digit-input:focus {
    border-color: #67319b;
}

.iconInpGroup {
    position: relative;
}

.iconInpGroup>div {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
}

.verifyBtnSm {
    /* width: 56px; */
    min-width: 56px;
    height: 24px;
    background-color: #14996f;
    color: white;
    font-style: 12px;
    padding: 2px 5px;
    border-radius: 2px;
    border: none;
    outline: none;
    cursor: pointer;
}

.verifyBtnSm:disabled {
    background-color: #b3b3b3 !important;
}

.otpTimerBox {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 12px;
}

.otpTimerBox .disableTxt {
    color: #b3b3b3;
}

.resendBtn {
    cursor: pointer;
}

/* ---------------------------------------------
      DASHBOARD 
---------------------------------------------- */

.dashboardBodyContent {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* gap: 10px; */
    gap: 15px;
}

.dashboardBodyContent .leftBody {
    /* width: 67%; */
    flex: 1 1 calc(66% - 10px);
}

.dashboardBodyContent .leftBody section:first-child {
    margin-bottom: 15px;
}

.dashboardBodyContent>.rightBody {
    /* width: 33%; */
    flex: 1 1 33%;
    /* border: 1px solid red; */
}

.card {
    background-color: white;
    border-radius: 9.5px;
    border: 1px solid #f0f0f0;
}

.card-shadow {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.07);
}

.tabHeaders {
    list-style: none;
    padding: 0;
    display: flex;
    border-bottom: 1px solid rgba(204, 204, 204, 0.308);
    font-size: 14px;
    font-weight: 500;
}

.tabHeaders .tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    width: 120px;
    text-align: center;
    margin-right: 5px;
    transition: background 0.3s;
    position: relative;
    color: #6b6b6b;
    font-weight: normal;
}

.tabHeaders .tab:hover {
    background: #e0e0e033;
}

.tabHeaders .tab.active {
    color: black;
    font-weight: 500;
}

.tabHeaders .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
}

.tabContent {
    display: none;
    /* padding: 10px; */
    padding: 15px;
    /* border: 1px solid #ccc; */
}

.tabContent.active {
    display: block;
}

.tabContent h6 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
}

.tabContent .tabPills {
    display: flex;
    flex-wrap: wrap;
    /* gap: 10px; */
    gap: 15px;
    justify-content: space-evenly;
}

.tabContent .tabPill {
    display: flex;
    gap: 10px;
    align-items: center;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    width: 100%;
    /* padding: 20px; */
    padding: 16px;
    flex: 1 1 200px;
    border-radius: 4px;
    position: relative;
}

.tabContent .tabPill p {
    font-size: 16px;
    font-weight: normal;
    color: #e6e6e6;
}

.tabContent .tabPill h5 {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

/*  */

.SellForexBox {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    /* gap: 5px; */
}

.SellForexBox>div {
    flex: 0 0 20% !important;
    width: 20%;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 5px;
}

.SellForexBox>div:last-child {
    text-align: end;
}

.SellForexBox>div label {
    font-size: 11.5px;
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

.SellForexBox>div label span {
    font-size: 10px;
}

.SellForexBox>div input:not([type="checkbox"]) {
    width: 154px;
    height: 32px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #6b6b6b;
    font-size: 11px;
}

.SellForexBox>div select {
    width: 154px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #6b6b6b;
    font-size: 11px;
}

.SellForexBox .select2-container {
    width: 154px !important;
    height: 32px !important;
    border-radius: 4px !important;
    border: 1px solid #6b6b6b !important;
    font-size: 11px !important;
}

.SellForexBox .select2-container--default .select2-selection--single {
    border: none;
}

.SellForexBox>div button {
    width: 78px;
    height: 32px;
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
    font-size: 12px;
    border: none;
    color: white;
    padding: 9.5px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: auto; */
}

.currencyCard {
    border: 0.7px solid #b3b3b3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 246, 255, 1) 101%);
    /* margin-bottom: 10px; */
    margin-bottom: 15px;
}

.currencyCard>div {
    border-bottom: 1px solid lightgray;
    padding: 4px 8px;
}

.currencyCard>div h5 {
    font-size: 12px !important;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 500;
}

.currencyCard .currencyPills {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    gap: 10px;
}

.currencyCard .currencyPill {
    background-color: white;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.07);
    flex: 1 1 114px;
    border-radius: 4px;
}

.currencyCard .currencyPill p {
    font-size: 10px;
    color: #6b6b6b;
}

.currencyCard .currencyPill h5 {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.currencyCard .currencyPill h5 {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.currencyCard .currencyPill:last-child p {
    color: white;
}

.currencyCard .currencyPill:last-child h5 {
    color: white;
}

.settlementCard {
    border: 0.7px solid #b3b3b3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 246, 255, 1) 101%);
    /* margin-bottom: 10px; */
    margin-bottom: 15px;
}

.settlementCard>div {
    border-bottom: 1px solid lightgray;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.settlementCard>div h5 {
    font-size: 12px;
    font-weight: 500;
}

.settlementCard>div h6 {
    /* font-size: 8px; */
    font-size: 10px;
    font-weight: normal;
}

.settlementCard .settlementCardRows {
    padding: 8px;
}

.settlementCard .settlementCardRow {
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
}

.settlementCard .settlementCardRow p:first-child {
    font-size: 10px;
    line-height: 14px;
    color: #6b6b6b;
    white-space: wrap;
}

.settlementCard .settlementCardRow p:last-child {
    /* font-size: 10px; */
    font-size: 11px;
    color: #121212;
}

.settlementCard .settlementCardRow>div:first-child {
    border: 1px solid #f0f0f0;
    /* padding: 8px; */
    padding: 4px 8px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    flex: 1;
}

.settlementCard .settlementCardRow>div:last-child {
    /*height: 28px;*/
    width: 38px;
    font-size: 10px;
    border-radius: 4px;
    border: 1px solid #14996f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphCard {
    border: 0.7px solid #b3b3b3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 246, 255, 1) 101%);
    /* margin-bottom: 10px; */
}

.graphCard>div {
    border-bottom: 1px solid lightgray;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graphCard>div div:first-child h5 {
    font-size: 11px;
    font-weight: 500;
}

.graphCard>div div:first-child h6 {
    font-size: 9px;
    font-weight: normal;
}

.graphCard>div div:nth-child(2) {
    font-size: 9px;
}

.graphCard>div div:last-child img {
    cursor: pointer;
}

.graphCard section img {
    width: 100%;
    /* min-height: 66px; */
}

.activityGraphBox {
    display: flex;
    flex-wrap: wrap;
    /* gap: 8px; */
    gap: 15px;
}

/* .navTabsBox{
  margin-bottom: 15px;
} */

.activityGraphBox>.activityCard {
    flex: 1 1 calc(52% - 10px);
    /* padding: 10px; */
    padding: 12px;
    /* border: 1px solid red; */
}

.activityGraphBox>div:last-child {
    flex: 1 1 44%;
    padding: 10px;
}

.activityCard>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activityCard>div>h6 {
    /* font-size: 12px; */
    font-size: 14px;
    font-weight: 500;
}

.activityCard>div>a {
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    color: #333333;
}

.activityRows {
    height: 214px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 4px;
}

.activityRow {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 12px;
    /* border: 1px solid red; */
    width: 100%;
    height: 44px;
    overflow: hidden;
    margin-top: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #38a184;
    border-top: 1px solid whitesmoke;
    border-bottom: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
}

.activityRow>div:last-child {
    margin-left: auto;
}

.activityRow h5 {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 11px;
}

.activityRow h5 div {
    /* font-size: 9px;
  color: #6b6b6b;
  width: 65px; */
    font-size: 10px;
    color: #6b6b6b;
    width: 71px;
    font-weight: normal;
}

.activityRow h6 {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    font-size: 10px;
    color: #6b6b6b;
    font-weight: normal;
}

.activityRow h6 div {
    font-weight: 500;
    font-size: 11px;
    margin-left: 5px;
    color: #121212;
}

/* activity Status */

/* chart */

#statusCard {
    background: linear-gradient(180deg, #ece9e6 0%, #cff4f1 100%);
}

#statusCard h3 {
    /* font-size: 12px; */
    font-size: 14px;
    font-weight: 500;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* gap: 15px; */
    gap: 30px;
    margin-top: 40px;
    padding: 0 15px;
}

.chart-box {
    width: 130px;
    height: 130px;
    /* width: 160px;
  height: 160px; */
}

.chart-data {
    flex: 1;
    white-space: nowrap;
    /* margin-right: 15px; */
}

.chart-data ul {
    list-style: none;
    padding: 0;
}

.chart-data li {
    margin-bottom: 6px;
    /* font-size: 0.8rem; */
    font-size: 10px;
}

/* .chart-data .left{
  font-size: 10px;
} */

.legend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1rem;
}

.legend-item .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.dashboardBottomTable {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 8px; */
    gap: 15px;
    width: 100%;
}

.dashboardBottomTable>div {
    /* flex: 1 1 calc(50% - 4px); */
    width: 50%;
    padding: 10px;
    border-radius: 8px;
    /* height: 324px; */
    height: 340px;
}

.tableCards>div:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tableCards>div:first-child h3 {
    font-size: 13px;
    font-weight: 500;
}

/* .tableCards > div:first-child div {
  width: fit-content;
  padding: 5px;
  height: 22px;
  border-radius: 4px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 4px #00000040;
} */

/* .tableCards > div:first-child div select {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 11px;
  font-family: "Poppins", sans-serif;
}

.tableCards > div:first-child div input {
  border: none;
  outline: none;
  width: 60px;
  transition: width 0.8s ease;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
}

.tableCards > div:first-child div input:focus {
  width: 100px !important;
}

.tableCards > div:first-child div input::placeholder {
  font-size: 11px;
} */

.tableCards>div:first-child div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#statusCard .legend-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

#statusCard .left,
#statusCard .right {
    display: flex;
    align-items: center;
}

#statusCard .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

/* Color classes (match JS `colorClasses` array) */
.color-deal {
    background-color: #4a7bd4;
}

.color-order {
    background-color: #169873;
}

.color-cancelled {
    background-color: #aa5b00;
}

.color-negotiation {
    background-color: #7d7516;
}

.color-withdrawn {
    background-color: #a03838;
}

/* order table and marketPlace */

.table-responsive {
    overflow: auto;
    height: 100%;
    /* max-height: 300px; */
    max-height: 260px;
    /* max-height: 120px; */
}

.orderMarketTable {
    flex: 1 1 calc(50% - 10px);
    box-shadow: 0px 4.75px 9.5px 0px #00000012;
    border: 1.19px solid #f0f0f0;
    border-radius: 9.5px;
}

/* .mainOrderMarketTable {
  min-height: 250px;
} */

.orderMarketTable h4 {
    font-weight: 500;
}

.orderMarketTable .tableHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.orderMarketTable button {
    background: #14996f;
    border: none;
    padding: 5px 8px;
    color: white;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.8rem;
    border-radius: 4px;
}

.orderMarketTable .inputWrapper {
    position: relative;
    display: inline-block;
}

.orderMarketTable .tableFilterInp {
    border: 1px solid lightgray;
    padding: 4px 24px 4px 4px;
    width: 120px;
    border-radius: 4px;
    outline: none;
}

.orderMarketTable .tableFilterInp:focus {
    border: 2px solid #14996f;
}

.orderMarketTable .clearIcon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 12px;
    color: #666;
    user-select: none;
}

.orderMarketTable table {
    font-size: 0.8rem;
    width: 100%;
    border-collapse: collapse;
    /* border: 1px solid lightgray; */
    /* overflow: hidden; */
    /* border-spacing: 0 15px; */
    /* margin-top: 20px; */
}

.orderMarketTable table thead {
    background-color: #f9fafe !important;
}

.orderMarketTable table thead th {
    font-weight: 600;
    text-align: start;
    /* border-right: 1px solid #ccc; */
    padding: 8px 0px;
    vertical-align: top;
    font-size: 10px;
    white-space: nowrap;
    min-width: 60px;
    /* text-align: center; */
    cursor: pointer;
    border-bottom: 1px solid #0078d133;
}

.orderMarketTable table thead th>div {
    border-right: 1px solid #ccc;
    padding: 0 8px;
}

.orderMarketTable table thead th:last-child>div {
    border: none;
    padding: 0 8px;
}

.orderMarketTable table thead th img {
    position: relative;
    transform: translateY(1px) translateX(2px);
}

.orderMarketTable table thead th:last-child {
    border-right: none;
}

.orderMarketTable table tbody td {
    font-size: 0.8rem;
    padding: 8px;
    font-weight: 500;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 10px;
    border-bottom: 1px solid #0078d133;
    /* text-align: center; */
}

/* .orderMarketTable table tbody td:nth-child(2) {
  text-decoration: underline;
  color: #4a7bd4;
  font-weight: 500;
} */

#myOrderTableBox table tbody td:nth-child(3) a {
    text-decoration: underline;
    color: #4a7bd4;
    font-weight: 500;
}

#myOrderTableBox2 table tbody td:nth-child(3) a {
    text-decoration: underline;
    color: #4a7bd4;
    font-weight: 500;
}

/* .orderMarketTable table tbody td:nth-child(2) a,
.orderMarketTable table tbody td:nth-child(3) a {
  text-decoration: underline;
  color: #4a7bd4;
  font-weight: 500;
} */

.orderMarketTable table thead th:first-child,
.orderMarketTable table tbody td:first-child {
    width: fit-content;
}

/* .orderMarketTable table tbody tr td:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
} */

/*.orderMarketTable table tbody tr td:nth-child(4),
.orderMarketTable table tbody tr td:nth-child(7),
.orderMarketTable table tbody tr td:nth-child(5) {
  text-align: end;
}
*/
.orderMarketTable-GreenPill {
    border: 0.6px solid #086e4e;
    width: fit-content;
    padding: 1px 5px;
    background-color: #f0fffa;
    color: #086e4e !important;
    font-size: 10px;
    white-space: nowrap;
    border-radius: 30px;
}

.orderMarketTable-RedPill {
    border: 0.6px solid #9c000b;
    width: fit-content;
    padding: 1px 5px;
    background-color: #fff5f4;
    color: #9c000b !important;
    font-size: 10px;
    white-space: nowrap;
    border-radius: 30px;
}

/* animate table rows */

.marketTable {
    position: relative;
    width: 100%;
    border-collapse: collapse;
}

.animate-move {
    will-change: transform, opacity;
    z-index: 2;
    position: relative;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/*  */

#areaChart {
    height: 400px !important;
    width: 100% !important;
}

.chartModal h2 {
    font-size: 18px;
    font-weight: 500;
}

.chartModal h2 span:first-child {
    color: #950f24;
}

.chartModal h2 span:last-child {
    font-size: 15px;
    font-weight: 400;
}

#welcomeModal .modal-md {
    width: 620px;
    height: 330px;
    text-align: center;
    padding: 28px;
}

#welcomeModal img {
    margin-bottom: 17px;
}

#welcomeModal h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 5px;
}

#welcomeModal p {
    font-size: 16px;
    font-family: 400;
    color: #6b6b6b;
}

.greenBtn {
    background-color: #14996f;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

.greenBtn-Outline {
    background-color: white;
    border: 1px solid #14996f;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    outline: none;
    color: #14996f;
    cursor: pointer;
}

.grayBtn {
    background-color: #d9d9d9;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: #121212;
    cursor: pointer;
}

.redBtn {
    background-color: #e33e3e;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

#SignupCompletedModal .modal-md {
    width: 620px;
    height: 330px;
    text-align: center;
    padding: 28px;
}

#SignupCompletedModal img {
    margin-bottom: 17px;
}

#SignupCompletedModal h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 5px;
}

#SignupCompletedModal p {
    font-size: 16px;
    font-family: 400;
    color: #6b6b6b;
}

#SignupCompletedModal .greenBtn {
    background-color: #14996f;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

.signupMobileInp {
    display: flex;
    align-items: center;
    width: 100%;
    /*    border: 1px solid #6b6b6b;*/
    border: 0.7px solid #6b6b6b !important;
    position: relative;
    border-radius: 4px;
    height: 36px;
/*    padding-right: 10px;*/
    margin-bottom: 10px;
}

.signupMobileInp input {
    width: 100%;
    height: 34px;
    padding: 0 10px;
    border: none;
    border-left: 1px solid #6b6b6b71;
    border-radius: 0;
}

.signupMobileInp .select2-container {
    width: 84px !important;
}

.signupMobileInp .select2-container--default .select2-selection--single {
    height: 34px !important;
    display: flex;
    align-items: center;
    border: none !important;
    border-radius: 4px 0 0 4px !important;
    padding-left: 6px;
}

.signupMobileInp .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    line-height: 34px !important;
}

.signupMobileInp .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px !important;
    top: 0 !important;
}

.signupMobileInp .select2-results {
    width: 200px !important;
    background-color: white !important;
}

.signupMobileInp .flag-option {
    display: flex;
    align-items: center;
}

.signupMobileInp .flag-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

/* ---------------------------------------------
MEDIA QUERY
---------------------------------------------- */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        width: 100%;
    }

    .sidebar {
        display: none;
    }
}

@media (max-width: 1163px) {}

/* ---------------------------------------------
CUSTOM SCROLLBAR
---------------------------------------------- */

.activityRows::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.activityRows::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.activityRows::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

.activityRows::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.activityRows,
.table-responsive {
    scrollbar-width: thin;
    /* scrollbar-color: #888 #f1f1f1; */
    scrollbar-color: #38a184 #f1f1f1;
}

/* ---------------------------------------------
TABLE PAGES AND BTN
---------------------------------------------- */

.tableWrapperHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageHeadingTxt {
    font-size: 18px;
    font-weight: 500;
    color: #121212;
}

.mainTablePageBody {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.tableWrapperBody {
    flex: 1;
}

.btnGroup {
    display: flex;
    gap: 14px;
}

.tblRedBtn {
    outline: none;
    border: none;
    width: 135px;
    height: 32px;
    font-size: 12px;
    color: white;
    background-color: #e33e3e;
    box-shadow: 0 4px 4px #00000040;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.tblGreenBtn {
    outline: none;
    border: none;
    width: 135px;
    height: 32px;
    font-size: 12px;
    color: white;
    background-color: #14996f;
    box-shadow: 0 4px 4px #00000040;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.tblWhiteBtn {
    outline: none;
    border: none;
    width: 112px;
    height: 32px;
    font-size: 12px;
    color: #333333;
    background-color: #ffffff;
    box-shadow: 0 4px 4px #00000040;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.tblWhiteBtnRs {
    outline: none;
    border: none;
    min-width: 112px;
    height: 32px;
    font-size: 12px;
    color: #333333;
    background-color: #ffffff;
    box-shadow: 0 4px 4px #00000040;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0 8px;
}

.tableWrapperBody {
    overflow-x: auto;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    /* border: 0.5px solid #4b7bd5; */
    box-shadow: 0 4px 4px #00000040;
    background: white;
    border: 1px solid #ece9e6;
}

.tableWrapperFooter {
    /* border: 1px solid rgba(204, 204, 204, 0.2); */
    border: 1px solid #ece9e6;
}

.tableWrapperBody table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
}

.tableWrapperBody table thead {
    background-color: #f9fafe !important;
    position: sticky;
    top: 0;
    height: 39px;
    z-index: 999;
}

.tableWrapperBody table th {
    /* padding: 10px 0px; */
    padding: 10px 0px 10px 20px;
    white-space: nowrap;
    color: #000000;
    text-align: start !important;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #0078d133;
    min-width: 80px;
}

.tableWrapperBody table th div.d-flex {
    justify-content: start !important;
}

.tableWrapperBody table td .badge {
    margin-left: 0 !important;
}

.tableWrapperBody table th>div {
    border-right: 1px solid lightgray;
    width: 100%;
    /* padding: 0 10px; */
    padding: 0 20px 0 0;
}

.tableWrapperBody table th:last-child div {
    border: none !important;
}

.tableWrapperBody table tbody td {
    vertical-align: middle;
    /* padding: 4px 12px; */
    padding: 4px 12px 4px 20px;
    font-size: 12px !important;
    color: #121212;
    border-bottom: 1px solid #0078d133;
    /* text-align: center; */
}

/* .tableWrapperBody table tbody tr {
  height: 40px !important;
  min-height: 40px !important;
} */
.tableWrapperBody table tbody tr:hover {
    background-color: #e9f3ff;
}

/* pagination */

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
    gap: 10px;
}

.results-per-page {
    display: flex;
    align-items: center;
    font-size: 14px;
    /*    width:100%;*/
}

.results-per-page label {
    margin-right: 10px;
    font-weight: 400;
    text-wrap: nowrap;
}

.results-per-page select {
    /* padding: 6px 10px; */
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: #313131;
    font-weight: 700;
    cursor: pointer;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
}

.pagination button {
    padding: 6px 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #313131;
}

.pagination button.pills {
    width: 33px;
}

.pagination button.prev,
.pagination button.next,
.pagination button.page-btn:first-child,
.pagination button.page-btn:last-child {
    width: auto;
    min-width: 58px;
}

.pagination button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.pagination button:disabled:hover {
    background: #fff;
}

.pagination .pagination-ellipsis {
    min-width: 22px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #313131;
    font-weight: 700;
}

.pagination .pagination-hidden-page {
    display: none !important;
}

.pagination button:hover {
    background: #f0f0f0;
}

.pagination .active:hover {
    background: #f0f0f0;
    color: black;
}

.pagination .active {
    background-color: #14996f;
    color: white;
    border-color: #14996f;
}

/* ---------------------------------------------
USER ADD MODAL
---------------------------------------------- */

#userModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#userModal .custom-modal {
    padding: 0;
}

#userModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#userModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#userModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#userModal .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#userModal .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#userModal .modal-body>div select {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    /* padding: 9px 12px; */
    border-radius: 4px;
    font-size: 12px;
}

/* ---------------------------------------------
USER ADD MODAL
---------------------------------------------- */

#rolesModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#rolesModal .custom-modal {
    padding: 0;
}

#rolesModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#rolesModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#rolesModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#rolesModal .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#rolesModal .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
    justify-content: space-between;
    padding-right: 20px;
    margin-bottom: 16px;
}

#rolesModal .checkbox-wrapper {
    flex: 1 1 50%;
}

.checkbox-wrapper label {
    margin-right: 10px;
    cursor: pointer !important;
    user-select: none !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.custom-checkbox {
    position: relative;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #333333 !important;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    background-color: white;
    padding: 0 !important;
}

.custom-checkbox:checked::after {
    content: url(../img/checkBoxCheck.png);
    position: absolute;
    top: -1px;
    left: 2px;
    color: black;
    font-size: 13px;
    line-height: 18px;
}

.radio-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: sans-serif;
}

.radio-wrapper label {
    margin-right: 10px;
    cursor: pointer !important;
    user-select: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}

.custom-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 16px !important;
    height: 16px !important;
    border: 2px solid #555;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    background-color: white;
    padding: 0 !important;
}

.custom-radio:checked::after {
    content: url(../img/checkBoxCheck.png);
    position: absolute;
    left: 2px;
    /* top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%; */
}

#userModal .modal-body h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

#userModal .modal-body section {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

#userModal .modal-body section>div {
    flex: 1;
}

#rolesModal .modal-body h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

#rolesModal .modal-body section {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    max-height: 210px;
    overflow: auto;
}

#rolesModal .modal-body section>div {
    /* flex: 1; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------------------------------------------
PROFILE PAGE
---------------------------------------------- */

.profilePageHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profilePageHeader>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profilePageHeader>div>img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.profilePageHeader>div a {
    font-size: 14px;
    text-decoration: underline;
    color: #118c82;
    margin-left: 10px;
    margin-top: 4px;
}

.profilePageHeader h4 {
    font-size: 20px;
    font-weight: 500;
}

.profilePageHeader>a {
    color: #0052b4;
    font-size: 12px;
    text-decoration: underline;
}

.profileGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.profileGrid>div {
    /* padding: 50px; */
    /* border: 1px dotted gray; */
    flex: 0 0 396px;
}

.profileGrid>div:first-child {
    flex: 1 1 440px;
}

.profileCard {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.profileCard-header {
    background: #e9f9f9;
    display: flex;
    gap: 8px;
    padding: 8px 24px;
    align-items: center;
}

.profileCard-header h5 {
    font-size: 16px;
    font-weight: 400;
}

.profileCard-body {
    background-color: white;
    padding: 16px 24px;
}

.profileCard-body .profileCard-body-grid {
    display: flex;
    margin-bottom: 10px;
    gap: 20px;
}

.profileCard-body .profileCard-body-grid h5 {
    /* flex: 2; */
    flex: 1;
    color: #404040;
    font-size: 12px;
    font-weight: 500;
}

.profileCard-body .profileCard-body-grid p {
    flex: 1;
    color: #868fa0;
    font-size: 12px;
    font-weight: 400;
}

.profileCard-body .profileCard-body-grid h5 span {
    font-size: 11px;
}

.profileSecurityCard button {
    border: none;
    outline: none;
    width: 100%;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    color: white;
    font-size: 12px;
    font-weight: 500;
    margin: 7px 0;
    margin-top: 20px;
    cursor: pointer;
}

/* ---------------------------------------------
PROFILE PAGE 2FA MODAL
---------------------------------------------- */

#Modal-2FA h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-2FA h3 {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}

#Modal-2FA p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

#Modal-2FA p b {
    color: #121212;
    font-weight: 600;
}

#Modal-2FA label {
    font-size: 14px;
    color: #121212;
    font-weight: 500;
    margin-right: 20px;
}

#Modal-2FA input {
    border: none;
    outline: none;
    width: 250px;
    height: 23px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    padding: 3px 8px;
    font-size: 12px;
}

#Modal-2FA input::placeholder {
    font-size: 12px;
}

/* signup tabs */

.step1>div:first-child {
    margin-bottom: 0;
}

#signuptabs {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#signuptabs .nav-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
    margin: 0;
}

#signuptabs .tab {
    cursor: pointer;
    flex: 1;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    text-align: center;
    font-size: 14px;
    color: #121212;
    font-weight: 300;
}

#signuptabs .tab.active {
    border-bottom: 2px solid #14996f;
    font-weight: 500;
}

#signuptabs .tab-content {
    display: none;
    padding-top: 12px;
}

#signuptabs .tab-content.active {
    /* display: block; */
    display: flex;
    flex-direction: column;
    flex: 1;
}

#signuptabs .tab-content>div:last-child {
    margin-bottom: 0;
}

#signuptabs .tab-content>div {
    margin-bottom: 10px;
}

/*  */

.edit-profile-tabs {
    display: flex;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    gap: 10px;
}

.edit-profile-tabs .tabs-sidebar {
    width: 240px;
    background: #f8f8f8;
    align-self: baseline;
    background-color: white;
}

.edit-profile-tabs .nav-vertical-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edit-profile-tabs .nav-vertical-tabs .tab {
    padding: 12px 16px;
    cursor: pointer;
    border-right: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.edit-profile-tabs .nav-vertical-tabs .tab.active {
    border-right: 2px solid #14996f;
    background-color: #fff;
    font-weight: 500;
    background-color: #e9f9f9;
}

.edit-profile-tabs .tabs-content-area {
    flex: 1;
    /* padding: 30px; */
    background-color: #fff;
    border: 0.5px solid #cff4f1;
}

.edit-profile-tabs .tab-content {
    display: none;
    height: 100%;
    padding: 30px;
}

.edit-profile-tabs .tab-content.active {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* padding: 34px; */
}

.edit-profile-tabs .tab-content.active>section {
    flex: 1;
}

.editProfileParent {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#basicInfo>div:first-child {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

#basicInfo>div:first-child img {
    margin-right: 24px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.inputGrid label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
}

.inputGrid .cInp {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    padding: 0 10px;
    border: 1px solid #6b6b6b;
    padding-right: 30px;
    /* space for custom arrow */
}

.inputGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.inputGrid>div {
    flex: 0 1 calc(33.333% - 13.33px);
}

.gradientBtn {
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    width: 108px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

.gradientBtn-Outline {
    background-color: white;
    border: 1px solid #14996f;
    width: 108px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    outline: none;
    color: #14996f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-content-area .footerBtn {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.tab-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 4px 4px 0 0;
    border: 0.5px solid #118c82;
    height: 62px;
    padding: 30px;
}

#editProfileParent #tab2,
#editProfileParent #tab3,
#editProfileParent #tab4,
#editProfileParent #tab5 {
    padding: 0;
}

#editProfileParent #tab2 .inputGrid,
#editProfileParent #tab3 .inputGrid,
#editProfileParent #tab4 .inputGrid,
#editProfileParent #tab5 .inputGrid {
    padding: 0 30px;
}

#editProfileParent #tab2 .footerBtn,
#editProfileParent #tab3 .footerBtn,
#editProfileParent #tab4 .footerBtn,
#editProfileParent #tab5 .footerBtn {
    padding: 30px;
}

.footerBtn1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px 0px;
}

.tab-content-header>div {
    flex: 1;
}

.tab-content-header>div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-content-header>div:first-child h2 {
    font-size: 20px;
    font-weight: 500;
    color: #118c82;
    text-decoration: underline;
}

#editProfileParent #tab5 .tab-content-header {
    margin: 0;
}

#editProfileParent #tab5 .tab-content-header-body {
    /* background-color: red !important; */
    overflow: auto;
    height: 420px;
}

.file-upload-form {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label h6 {
    font-size: 14px;
    color: #000000;
    font-weight: normal;
}

.file-upload-label p {
    font-size: 10px;
    color: #000000;
}

.file-upload-label {
    cursor: pointer;
    padding: 10px 90px;
    border-radius: 7.55px;
    border: 0.75px dashed #00000080;
    box-shadow: 0px 0px 200px -50px rgba(0, 0, 0, 0.719);
}

.file-upload-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.browse-button {
    width: 77px;
    height: 23px;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.browse-button:hover {
    background-color: rgb(14, 14, 14);
}

/* Drag over effect */
.file-upload-label.dragover {
    background-color: #c4f0d6;
    border-color: #14996f;
}

.uploadDocCard {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
    box-shadow: 0px 0px 7px 0px #0000002e;
    margin-bottom: 10px;
    background-color: white;
}

.uploadDocCard img {
    cursor: pointer;
}

.uploadDocCard div:first-child label {
    display: block;
    font-size: 16px;
    color: #000000;
}

.uploadDocCard div:first-child input {
    display: block;
    font-size: 16px;
    width: 340px;
    color: #000000;
    border: 0.71px solid #121212;
    height: 34px;
    padding: 10px;
    font-size: 12px;
    border-radius: 4px;
}

#Modal-KYC h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin: 20px 0;
}

#Modal-KYC p {
    font-size: 20px;
    color: #121212;
    font-weight: 400;
}

.limitCard {
    padding: 16px;
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.limitCard h5 {
    font-size: 16px;
    font-weight: normal;
    color: #e6e6e6;
}

.limitCard h4 {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

#userDashboardTable .table-responsive {
    min-height: 320px;
    border-radius: 10px;
    border: 1px solid lightgray;
}

#userDashboardTable .filterBtn .radio-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 10px 0;
}

#userDashboardTable .filterBtn .radio-group input[type="radio"] {
    display: none;
}

#userDashboardTable .filterBtn .radio-group label {
    background: none;
    outline: none;
    border: none;
    min-width: 104.6px;
    height: 20px;
    background-color: white;
    font-size: 10px;
    color: #121212;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.08px 3.08px 0 0;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

#userDashboardTable .filterBtn .radio-group input[type="radio"]:checked+label {
    background: none;
    outline: none;
    border: none;
    min-width: 104.6px;
    height: 20px;
    background-color: #14996f;
    font-size: 10px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.08px 3.08px 0 0;
}

#userDashboardTable table tbody td:nth-child(2) a {
    text-decoration: underline;
    color: #4a7bd4;
    font-weight: 500;
}

.ledgerPage .balanceCard {
    height: 100px;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    border-radius: 32px 0 0 32px;
    padding: 10px;
}

.ledgerPage .balanceCard section {
    display: flex;
    align-items: center;
}

.ledgerPage .balanceCard section>div {
    flex: 0 0 calc(100% / 4);
    padding: 5px 20px;
}

.ledgerPage .balanceCard section>div:first-child {
    border-right: 2px solid white;
}

.ledgerPage .balanceCard section>div h6 {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.ledgerPage .balanceCard section>div h1 {
    font-size: 32px;
    color: white;
    font-weight: 500;
}

.ledgerPage .widgetCards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ledgerPage .widgetCards>div {
    flex: 0 0 312px;
    border: 1px solid #14996f;
    /* border: 1px solid ; */
    /* border-image-source: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
  border-image-slice: 1; */
    background-color: white;
    /* white background */
    padding: 8px 16px;
    background-size: 96px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-position-y: 85%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 90px;
    box-shadow: 0px 0px 4px 0px #00000040;
    /* justify-content: center; */
}

.ledgerPage .widgetCards>div:first-child {
    background-image: url(../img/currentTagBg.png);
}

.ledgerPage .widgetCards>div:nth-child(2) {
    background-image: url(../img/tillDateTagBg.png);
}

.ledgerPage .widgetCards>div:last-child {
    background-image: url(../img/tillDateTagBg.png);
}

.ledgerPage .widgetCards>div h5 {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
}

.ledgerPage .widgetCards>div h1 {
    font-size: 26px;
    font-weight: 500;
    color: #121212;
}

#ledgerTable tbody tr td:nth-child(2) a {
    color: #00618f;
    text-decoration: underline;
    cursor: pointer;
}

.ledgerPage .tableFilter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ledgerPage .tableFilter>div {
    display: flex;
    align-self: center;
    gap: 10px;
}

.ledgerPage .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 30px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.ledgerPage .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.ledgerPage .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.ledgerPage .selectFilter input:focus {
    width: 100px !important;
}

.ledgerPage .selectFilter input::placeholder {
    font-size: 11px;
}

.ledgerPage .exportBtn {
    box-shadow: 0 4px 4px #00000040;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.ledgerPage .tableFilter .greenBtn {
    width: 110px;
}

.ledgerPage .tableFilter>div:first-child label {
    font-size: 12px;
    color: #000000;
    margin-right: 9px;
}

.ledgerPage .tableFilter>div:first-child input {
    border: none;
    outline: none;
    /* width: 76px; */
    width: fit-content;
    height: 25px;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #000000;
    border-radius: 2px;
    border-radius: 4px;
}

.ledgerPage .tableFilter>div:first-child input:disabled {
    background: #ece9e6 !important;
}

.sortByFilterSelect {
    display: inline-block;
    position: relative;
}

/* .sortByFilterSelect::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25%;
  width: 12px;
  height: 10px;
  background: url(../img/doubleSort.png) no-repeat center/contain;
  transform: translateY(-50%);
  pointer-events: none;
} */

.sortByFilterSelect select {
    padding: 5px 8px;
    /* appearance: none; */
    /* -webkit-appearance: none;
  -moz-appearance: none; */
    background-color: #14996f;
    min-width: 110px;
    height: 30px;
    border-radius: 4px;
    font-size: 12px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
}

/* Dropdown list options */
.sortByFilterSelect select option {
    background-color: white;
    color: black;
    /* padding: 8px !important; */
}

/* View Order Request Page */
.ViewOrderRequestPage .orderCard {
    height: 137px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #14996f;
    padding: 8px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ViewOrderRequestPage .orderCard>div {
    flex: 0 0 calc(100% / 3);
    /* border: 1px solid gray; */
    display: flex;
    width: 100%;
    gap: 10px;
}

.ViewOrderRequestPage .orderCard>div p {
    flex: 1 1 calc(35%);
    /* border: 1px solid red; */
    font-size: 11px;
    color: #121212;
}

.ViewOrderRequestPage .orderCard>div h6 {
    flex: 1 1 calc(60%);
    /* border: 1px solid red; */
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ViewOrderRequestTable {
    border-collapse: separate !important;
    border-spacing: 10px !important;
}

.ViewOrderRequestTable tr {
    height: 76px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
    margin-bottom: 10px !important;
}

.ViewOrderRequestTable tr:hover {
    background: none !important;
}

.ViewOrderRequestTable tr td p {
    font-size: 11px;
    color: #121212;
}

.ViewOrderRequestTable tr td h5 {
    font-size: 14px;
    color: #121212;
    font-weight: 500 !important;
}

.ViewOrderRequestTable button {
    width: 110px;
}

.ViewOrderRequestTable .transparent {
    border: none;
    text-decoration: underline;
}

.ViewOrderRequestTable tr td:nth-child(5),
.ViewOrderRequestTable tr td:nth-child(6),
.ViewOrderRequestTable tr td:nth-child(7) {
    width: 100px;
}

.tableWrapperBody::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.tableWrapperBody::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.tableWrapperBody::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

.tableWrapperBody::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.tableWrapperBody {
    scrollbar-width: thin;
    /* scrollbar-color: #888 #f1f1f1; */
    scrollbar-color: #38a184 #f1f1f1;
}

#ViewOrderRequestTableModal .modal-header {
    display: flex;
    justify-content: space-between;
}

#ViewOrderRequestTableModal .modal-header>div:first-child h1 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
}

#ViewOrderRequestTableModal .modal-header>div:last-child h2 {
    font-size: 12px;
    font-weight: 400;
}

#ViewOrderRequestTableModal .modal-header>div:last-child h2::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    vertical-align: middle;
}

#ViewOrderRequestTableModal .modal-header>div:last-child h2:first-child::before {
    background-color: #159872;
}

#ViewOrderRequestTableModal .modal-header>div:last-child h2:last-child::before {
    background-color: #4a7bd4;
}

#ViewOrderRequestTableModal .modal-body {
    height: 350px;
    overflow: auto;
}

#ViewOrderRequestTableModal .modal-body table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 10px !important;
}

#ViewOrderRequestTableModal .modal-body table td {
    padding: 10px;
}

#ViewOrderRequestTableModal .singleRow {
    width: 100%;
    position: relative;
    height: 60px;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 0 8px 8px 0;
}

#ViewOrderRequestTableModal .singleRow p {
    font-size: 11px;
    color: #121212;
    margin-bottom: 5px;
}

#ViewOrderRequestTableModal .singleRow h6 {
    font-size: 14px;
    color: #121212;
    font-weight: 500;
}

#ViewOrderRequestTableModal .singleRow h5 {
    font-size: 14px;
    font-weight: 500;
}

.respo {
    color: #4a7bd4 !important;
}

.closed {
    color: #159872 !important;
}

#ViewOrderRequestTableModal .respo {
    color: #4a7bd4;
}

#ViewOrderRequestTableModal .closed {
    color: #159872;
}

#ViewOrderRequestTableModal .singleRow>div {
    padding: 10px;
}

.SellerViewOrderRequestPageTable tbody tr td:first-child {
    padding: 0px !important;
    width: 70px !important;
    height: 70px !important;
}

.SellerViewOrderRequestPageTable tbody tr td {
    padding: 4px 12px 4px 0px !important;
}

.SellerViewOrderRequestPageTable {
    border-spacing: 0 10px !important;
    padding-left: 10px;
    padding-right: 10px;
}

.TraderRow::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background-color: #159872;
    border-radius: 8px 0 0 8px;
}

.GoldbodRow::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background-color: #4a7bd4;
    border-radius: 8px 0 0 8px;
}

.customScrollBar::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.customScrollBar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.customScrollBar::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
    border: 3px solid #f1f1f1;
}

.customScrollBar::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.customScrollBar {
    scrollbar-width: thin;
    scrollbar-color: #38a184 #f1f1f1;
}

#Modal-Success h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Success h3 {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}

#Modal-Success p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

#Modal-Success p b {
    color: #121212;
    font-weight: 600;
}

#Modal-Success label {
    font-size: 14px;
    color: #121212;
    font-weight: 500;
    margin-right: 20px;
}

#Modal-Success input {
    border: none;
    outline: none;
    width: 250px;
    height: 23px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    padding: 3px 8px;
    font-size: 12px;
}

#Modal-Success input::placeholder {
    font-size: 12px;
}

#Modal-Bid h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Bid h3 {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}

#Modal-Bid p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

#Modal-Bid p b {
    color: #121212;
    font-weight: 600;
}

#Modal-Bid label {
    font-size: 10px;
    color: #121212;
    font-weight: 500;
    margin-right: 20px;
    display: block;
}

#Modal-Bid input {
    border: none;
    outline: none;
    max-width: 478px;
    width: 100%;
    height: 32px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    padding: 8px;
    font-size: 12px;
}

#Modal-Bid input::placeholder {
    font-size: 12px;
}

#Modal-Bid .modal-body div:last-child {
    /* width: fit-content; */
    width: 478px;
    margin: auto !important;
    padding: 20px 0px;
}

#Modal-Hurray h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Hurray h6 {
    font-size: 16px;
    color: #cc2c3d;
    font-weight: 500;
}

#Modal-Hurray p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

.emptyDataBox {
    height: 100%;
    width: 75%;
    margin: auto;
    text-align: center;
    /* min-height: 300px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.emptyDataBox h2 {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}

.emptyDataBox h6 {
    font-size: 16px;
    color: #121212;
    font-weight: 400;
}

#auctionTableWrapper {
    position: relative;
}

#auctionTableWrapper #auctionEmptyState {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    margin: 0;
}

#Modal-Alert h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Alert p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

.dashboardBodyContent input:disabled {
    background: #ece9e6 !important;
}

/* OrderReviewPage */

.OrderReviewPage .mainBox {
    background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
    padding: 16px 24px;
    border: 1px solid #b3b3b3;
    border-radius: 8px;
    padding-bottom: 24px;
}

.OrderReviewPage .mainBox h5 {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.OrderReviewPage .mainBox .innerBox {
    background-color: white;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 8px;
    padding: 24px;
    display: flex;
}

.OrderReviewPage .mainBox .innerBox section {
    flex: 1;
}

.OrderReviewPage .mainBox .innerBox section>div {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.OrderReviewPage .mainBox .innerBox section>div p {
    width: 30%;
    font-size: 11px;
    color: #000000;
}

.OrderReviewPage .mainBox .innerBox section>div h6 {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.OrderReviewPage-BTN {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    justify-content: end;
    padding-right: 20px;
}

.OrderReviewPage-BTN p:first-child {
    font-size: 15.15px;
    color: #ff1f2c;
    cursor: pointer;
}

.OrderReviewPage-BTN p:last-child {
    font-size: 15.15px;
    color: #121212;
    cursor: pointer;
}

.OrderReviewPage .OrderReviewPageBtn {
    width: 134px;
    height: 32px;
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
    font-size: 12px;
    border: none;
    color: white;
    padding: 9.5px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 4px 4px #00000040;
}

#Modal-Submit h2 {
    font-weight: 500;
    font-size: 24px;
    color: #121212;
    margin-bottom: 5px;
}

#Modal-Submit h5 {
    font-size: 20px;
    color: #14996f;
    font-weight: normal;
    margin-bottom: 5px;
}

#Modal-Submit h5 span {
    text-decoration: underline;
}

#Modal-Submit h6 {
    font-size: 20px;
    color: #6b6b6b;
    font-weight: normal;
    margin-bottom: 5px;
}

#Modal-Submit P {
    font-size: 20px;
    color: #121212;
}

.dashboardBodyContent .flag-option {
    display: flex;
    align-items: center;
}

.dashboardBodyContent .flag-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

.BuyerLedgerPage .balanceCard section {
    align-items: start !important;
}

.BuyerLedgerPage .balanceCard section div:last-child {
    /* width: fit-content; */
    /* border: 1px solid red; */
    text-align: end;
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1 1 200px;
    gap: 10px;
}

.BuyerLedgerPage .balanceCard section div:last-child label {
    /* font-size: 16px; */
    display: inline;
    color: white;
}

.BuyerLedgerPage .balanceCard section div:last-child select {
    display: inline;
    padding: 3px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.BuyerLedgerPage .widgetCards>div:nth-child(2) {
    background-image: none;
}

.BuyerLedgerPage .widgetCards>div:last-child {
    background-image: none;
}

.BuyerLedgerPage .tableWrapperBody table th>div {
    /* padding-left: 10px !important;
  padding-right: 10px !important; */
    white-space: nowrap;
}

.BuyerLedgerPage .tableWrapperBody table td {
    white-space: nowrap;
}

.BuyerLedgerPage .tableWrapperBody .btnTag {
    background-color: #effff4;
}

.BuyerLedgerPage .tableWrapperBody .btnTag button {
    width: 136px;
    height: 26px;
    background-color: #14996f;
    color: white;
    border: none;
    outline: none;
    margin-left: 10px;
    border-radius: 4px 4px 0 0;
    margin: 7px;
}

.OngoingPage .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 32px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.OngoingPage .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.OngoingPage .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.OngoingPage .selectFilter input:focus {
    width: 100px !important;
}

.OngoingPage .selectFilter input::placeholder {
    font-size: 11px;
}

.OngoingPage .tableWrapperBody table th>div {
    /* padding-left: 10px !important;
  padding-right: 10px !important; */
    white-space: nowrap;
}

.OngoingPage .tableWrapperBody table td {
    white-space: nowrap;
}

.OngoingPage tbody tr td:nth-child(2) a {
    color: #00618f;
    text-decoration: underline;
    cursor: pointer;
}

.userBidTable .modal-header {
    display: flex;
    justify-content: space-between;
}

.userBidTable .modal-header>div:first-child h1 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
}

.userBidTable .modal-header>div:last-child h2 {
    font-size: 12px;
    font-weight: 400;
}

.userBidTable .modal-header>div:last-child h2::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    vertical-align: middle;
}

.userBidTable .modal-header>div:last-child h2:first-child::before {
    background-color: #159872;
}

.userBidTable .modal-header>div:last-child h2:last-child::before {
    background-color: #4a7bd4;
}

/* .userBidTable .modal-body {
  height: 350px;
  overflow: auto;
} */

.userBidTable table {
    width: 100%;
    border-collapse: separate !important;
    border-spacing: 10px !important;
}

.userBidTable table td {
    padding: 10px;
}

.userBidTable .singleRow {
    width: 100%;
    position: relative;
    height: 60px;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 0 8px 8px 0;
}

.userBidTable .singleRow p {
    font-size: 11px;
    color: #121212;
    margin-bottom: 5px;
}

.userBidTable .singleRow h6 {
    font-size: 14px;
    color: #121212;
    font-weight: 500;
}

.userBidTable .singleRow h5 {
    font-size: 14px;
    font-weight: 500;
}

.userBidTable .respo {
    color: #4a7bd4;
}

.userBidTable .closed {
    color: #159872;
}

.userBidTable .singleRow>div {
    padding: 10px;
}

.userBidTable table tbody tr:hover {
    background: none;
}

#Modal-NewBid h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-NewBid .myModalGrid .divRow {
    display: flex;
    margin-bottom: 10px;
}

#Modal-NewBid .myModalGrid .divRow p {
    width: 40%;
}

#Modal-NewBid .myModalGrid .divRow input {
    width: 100%;
    padding: 5px;
    border: 0.71px solid #12121291;
    outline: none;
    border-radius: 4px;
}

#Modal-NewBid .myModalGrid .divRow input:disabled {
    background: #e7ecf2;
}

#Modal-Bid .myModalGrid .divRow {
    display: flex;
    margin-bottom: 10px;
}

#Modal-Bid .myModalGrid .divRow p {
    width: 40%;
}

#Modal-Bid .myModalGrid .divRow input {
    width: 100%;
    padding: 5px;
    border: 0.71px solid #12121291;
    outline: none;
    border-radius: 4px;
}

#Modal-Bid .myModalGrid .divRow input:disabled {
    background: #e7ecf2;
}

#Modal-Bid p {
    font-size: 13px;
    color: #121212 !important;
    font-weight: 400;
    line-height: 28px;
}

#Modal-Bid .modal-body div:first-child {
    padding: 0;
    padding-top: 10px;
}

#Modal-Bid .modal-body div:last-child {
    padding: 0;
}

/* Loader overlay */
#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loaderOverlay img {
    width: 100px;
    /* adjust your GIF size */
    height: 100px;
}

.OpenReq .tableWrapperBody table tbody tr {
    height: 40px !important;
}

.OpenReq .tableWrapperBody {
    position: relative;
}

.OpenReq .tableWrapperBody .emptyDataBox {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    margin: 0;
}

.AllocationSheetsPage .tableWrapperBody {
    position: relative;
}

.AllocationSheetsPage .tableWrapperBody .emptyDataBox {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    margin: 0;
}

#openReqModal .modal-header h4 {
    font-size: 30px;
    font-weight: 500;
    padding: 0 16px;
}

#openReqModal .modal-body h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 0 16px;
}

#openReqModal .modal-body section {
    /* border: 1px solid; */
    padding: 7px 16px;
    box-shadow: 0px 0px 24px 0px #00000017;
    margin-bottom: 10px;
}

#openReqModal .modal-body section p {
    font-weight: 500;
}

#openReqModal .modal-body section span {
    font-weight: 400;
}

#openReqModal .modal-body .singleLineData span {
    margin-left: 40px;
}

#openReqModal .modal-body .multiLineData {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#openReqModal .custom-modal {
    padding: 10px 0;
}

#openReqModal .verifyAccountBtn {
    width: 572px;
    height: 23px;
    border-radius: 4px;
    background: #14996f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: none;
    outline: none;
    margin: auto;
    cursor: pointer;
    margin-bottom: 32px;
    margin-top: 23px;
}

#openReqModal .verifiedBadge {
    text-align: center;
}

#openReqModal .verifiedBadge p {
    font-size: 10px !important;
    color: #14996f;
    font-weight: normal !important;
}

#openReqModal .modal-body .multiLineData .multiLineDataLast {
    display: flex;
}

#openReqModal .modal-body .multiLineData .multiLineDataLast p {
    margin-right: 40px;
}

#openReqModal .verifyAccountBtn:disabled {
    background-color: #c1c1c1 !important;
    margin-bottom: 20px;
}

/* #openReqModal .verifiedPart{
  padding: 0 16px;
  } */
#openReqModal .verifiedPart>div {
    display: flex;
    padding: 0 16px;
    margin-bottom: 23px;
    gap: 10px;
}

#openReqModal .verifiedPart>div>div {
    flex: 1;
}

#openReqModal .verifiedPart>div label {
    font-size: 9.96px;
    color: #121212;
    display: block;
    margin-bottom: 5px;
}

#openReqModal .verifiedPart>div input,
#openReqModal .verifiedPart>div select {
    height: 32px;
    border: none;
    outline: none;
    border: 0.71px solid #121212;
    width: 100%;
    border-radius: 4px;
}

#openReqModal .verifiedPart>div input {
    padding: 8px;
}

#openReqModal .verifiedPart>div input::placeholder {
    font-size: 9.96px;
}

#openReqModal .verifiedPart>div select {
    font-size: 9.96px;
    font-weight: 500;
}

.OpenReq-reject .modal-body div {
/*    width: 478px !important;*/
    margin: auto !important;
    padding: 10px 0px !important;
}

.OpenReq-reject .modal-body select {
    border: none;
    outline: none;
    max-width: 478px;
    width: 100%;
    height: 32px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    padding: 8px;
    font-size: 12px;
}

#Modal-Reject h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Reject h3 {
    font-size: 16px;
    color: #121212;
    font-weight: 500;
}

#Modal-Reject p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

#Modal-Reject p b {
    color: #121212;
    font-weight: 600;
}

#Modal-Reject label {
    font-size: 10px;
    color: #121212;
    font-weight: 500;
    margin-right: 20px;
    display: block;
}

#Modal-Reject input {
    border: none;
    outline: none;
    max-width: 478px;
    width: 100%;
    height: 32px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    padding: 8px;
    font-size: 12px;
}

#Modal-Reject input::placeholder {
    font-size: 12px;
}

#Modal-Reject .modal-body div:last-child {
    /* width: fit-content; */
    width: 478px;
    margin: auto !important;
    padding: 20px 0px;
}

#Modal-Reject-Alert h2 {
    font-size: 24px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 5px;
}

#Modal-Reject-Alert p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    line-height: 28px;
}

.GOFXAccountsPage .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 32px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.GOFXAccountsPage .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.GOFXAccountsPage .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.GOFXAccountsPage .selectFilter input:focus {
    width: 100px !important;
}

.GOFXAccountsPage .selectFilter input::placeholder {
    font-size: 11px;
}

.GOFXAccountsPage .tableWrapperBody table th>div {
    /* padding-left: 10px !important;
  padding-right: 10px !important; */
    white-space: nowrap;
}

.GOFXAccountsPage .tableWrapperBody table td {
    white-space: nowrap;
}

.GOFXAccountsPage tbody tr td:nth-child(2) a {
    color: #00618f;
    text-decoration: underline;
    cursor: pointer;
}

.GOFXAccountsPage .btnGroup .greenBtn-Outline {
    width: fit-content;
    padding: 0 8px;
}

.tblGreenBtn.fitWidth {
    width: fit-content !important;
    padding: 0 8px !important;
}

.greenBtn-Outline.fitWidth {
    width: fit-content !important;
    padding: 0 8px !important;
}

.BankAccountsPage .myGridBox {
    display: flex;
    justify-content: space-around;
}

.BankAccountsPage .myGridBox .mainBox {
    width: 283px;
    height: 218px;
    border-radius: 4px;
    background-color: #f8f8f8;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.BankAccountsPage .myGridBox .mainBox>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 12px 16px;
    border-bottom: 1px solid #0078d133;
    background-color: white;
}

.BankAccountsPage .myGridBox .mainBox>div p {
    font-size: 14px;
}

.BankAccountsPage .myGridBox .mainBox>div h6 {
    font-size: 36px;
    font-weight: 400;
}

.BankAccountsPage .myGridBox .mainBox>div a {
    color: #467dcc;
    text-decoration: underline;
}

.BankAccountsPage .myGridBox .mainBox>div:first-child p {
    font-size: 16px;
}

.BankAccountsPage .myGridBox .mainBox>div:last-child a {
    border-bottom: none;
    text-align: center;
    margin: auto;
    text-decoration: none;
}

.BankAccountsPage .bankCard {
    width: 452px;
    height: 333px;
    box-shadow: 0px 4px 4px 0px #00000040;
    background-color: white;
    display: flex;
    flex-direction: column;
    /* padding: 16px;
  padding-bottom: 0; */
}

.BankAccountsPage .bankCard .bankCardBox {
    padding: 16px 16px 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.BankAccountsPage .bankCard .bankCardBox .mainCardBox {
    height: 202px;
    display: flex;
    flex-direction: column;
}

.bankbg1 {
    background: url(../img/bankbg1.png);
}

.bankbg2 {
    background: url(../img/bankbg2.png);
}

.bankCardBox .topRow {
    display: flex;
    /* margin-bottom: 25px; */
    /* justify-content: space-between; */
}

.blueCard .bankCardBox .topRow div:first-child {
    background-image: url(../img/bankVector1.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 12px;
    height: 32px;
    width: 150px;
    display: flex;
    align-items: center;
    padding: 2px;
    padding-left: 7px !important;
    margin-right: 10px;
}

.greenCard .bankCardBox .topRow div:first-child {
    background-image: url(../img/bankVector2.png);
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 12px;
    height: 32px;
    width: 150px;
    display: flex;
    align-items: center;
    padding: 2px;
    padding-left: 7px !important;
    margin-right: 10px;
}

.bankCardBox .topRow div:nth-child(2) {
    margin-right: 40px;
    padding: 2px;
}

.bankCardBox .topRow .Verified {
    padding: 2px;
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 32px;
    padding-right: 7px !important;
}

.bankCardBox .topRow .NonVerified {
    padding: 2px;
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 32px;
    padding-right: 7px !important;
}

.bankCardBox .middleContent {
    padding: 18px;
    padding-bottom: 0;
    flex: 1;
}

.bankCardBox .middleContent h3 {
    font-size: 18px;
    font-weight: 500;
    /* line-height: 16.73px; */
    color: #ffffff;
}

.bankCardBox .middleContent p {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #ffffff;
}

.bankCardBox .lastRow {
    min-width: 71px;
    height: 26px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 2px;
    margin-left: auto;
    border: none;
    outline: none;
    padding: 0 4px;
}

.bankCardBox .lastRow>div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #14996f;
}

.bankCardBox .lastRow p {
    color: #14996f;
    font-weight: 600;
    font-size: 12px;
}

.bankCardBox .lastRow:disabled>div {
    background-color: #b3b3b3;
}

.bankCardBox .lastRow:disabled>p {
    color: #b3b3b3;
}

.checkBalanceRow {
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1;
}

.checkBalanceRow>button {
    border: none;
    outline: none;
    width: 160px;
    height: 34px;
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    background-color: #def7ff;
    box-shadow: 0px 4px 4px 0px #00000040;
    cursor: pointer;
}

.blueCard .bottomStatusRow {
    height: 25px;
    background-color: #ddf7ff;
    display: flex;
    justify-content: center !important;
}

.greenCard .bottomStatusRow {
    height: 25px;
    background: #dff3d4;
    display: flex;
    justify-content: center !important;
}

.bottomStatusRow button {
    min-width: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 2px;
    border: none;
    outline: none;
    padding: 0 4px;
    background: none;
}

.bottomStatusRow button>div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #14996f;
}

.bottomStatusRow button p {
    color: #14996f;
    font-weight: 600;
    font-size: 12px;
}

.bottomStatusRow button:disabled>div {
    background-color: #b3b3b3;
}

.bottomStatusRow button:disabled>p {
    color: #b3b3b3;
}

.bottomStatusRow>div {
    height: 25px;
    width: 1.5px;
    background-color: #121212;
    margin: 0 10px;
}

/* ---------------------------------------------
BANK PIN MODAL
---------------------------------------------- */

#bankPinModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#bankPinModal .custom-modal {
    padding: 0;
}

#bankPinModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#bankPinModal .modal-body {
    padding: 10px 24px;
}

#bankPinModal h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
}

#bankPinModal .digit-input {
    width: 80px !important;
    height: 44px !important;
}

#bankPinModal .digit-group {
    margin-bottom: 20px;
}

.UserOpenOrder .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 32px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.UserOpenOrder .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.UserOpenOrder .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.UserOpenOrder .selectFilter input:focus {
    width: 100px !important;
}

.UserOpenOrder .selectFilter input::placeholder {
    font-size: 11px;
}

.UserOpenOrder .tabs {
    display: flex;
    gap: 10px;
    padding: 5px;
    background-color: #effff4;
    border-radius: 4px 4px 0 0;
}

.UserOpenOrder .tabs button {
    cursor: pointer;
    width: 136px;
    height: 26px;
    border: none;
    outline: none;
    border-radius: 4px 4px 0 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
}

.UserOpenOrder .tabs button.active {
    background: #14996f;
    color: white;
    border-radius: 4px 4px 0 0;
}

.UserOpenOrder .tab-content {
    display: none;
}

.UserOpenOrder .tab-content.active {
    /* display: block; */
    display: flex;
}

.UserOpenOrder .tableWrapperBody table tbody tr {
    height: 40px !important;
}

.tableWrapperBody.active {
    display: block !important;
}

.CurrencyPage .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 30px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.CurrencyPage .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.CurrencyPage .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.CurrencyPage .selectFilter input:focus {
    width: 100px !important;
}

.CurrencyPage .selectFilter input::placeholder {
    font-size: 11px;
}

.CurrencyPage .tableWrapperBody table thead th:first-child div {
    gap: 5px;
}

#CurrencyModal .modal-header,
#DocumentModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#CurrencyModal .custom-modal,
#DocumentModal .custom-modal {
    padding: 0;
}

#CurrencyModal .modal-header h4,
#DocumentModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#CurrencyModal .modal-body,
#DocumentModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#CurrencyModal .modal-body>div,
#DocumentModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#CurrencyModal .modal-body>div label,
#DocumentModal .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#CurrencyModal .modal-body>div input,
#DocumentModal .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 1px solid #6b6b6b;
    padding: 6px 10px;
    border-radius: 4px;
    padding-right: 30px;
}

#CurrencyModal .modal-body input::placeholder,
#DocumentModal .modal-body input::placeholder {
    font-size: 10px;
}

#CurrencyModal .fileInpBox>div label,
#DocumentModal .fileInpBox>div label {
    height: 32px;
    border: 1px dotted #6b6b6b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#CurrencyModal .fileInpBox span,
#DocumentModal .fileInpBox span {
    margin-left: 10px;
}

.BaseCurrencyPage .selectFilter {
    width: fit-content;
    padding: 5px;
    height: 30px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.BaseCurrencyPage .selectFilter select {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 11px;
    font-family: "Poppins", sans-serif;
}

.BaseCurrencyPage .selectFilter input {
    border: none;
    outline: none;
    width: 60px;
    transition: width 0.8s ease;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.BaseCurrencyPage .selectFilter input:focus {
    width: 100px !important;
}

.BaseCurrencyPage .selectFilter input::placeholder {
    font-size: 11px;
}

.BaseCurrencyPage .tableWrapperBody table thead th:first-child div {
    gap: 5px;
}

#BaseCurrencyModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#BaseCurrencyModal .custom-modal {
    padding: 0;
}

#BaseCurrencyModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#BaseCurrencyModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#BaseCurrencyModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#BaseCurrencyModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#BaseCurrencyModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#BaseCurrencyModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#BaseCurrencyModal .fileInpBox .inp label {
    height: 32px;
    border: 1px dotted #6b6b6b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#BaseCurrencyModal .fileInpBox span {
    margin-left: 10px;
}

.breadcrumb {
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #708bc5;
}

.breadcrumb p:first-child {
    font-weight: normal;
    color: #467dcc;
}

#BaseCurrencyModal .flag-option {
    display: flex;
    align-items: center;
    z-index: 1121;
}

#BaseCurrencyModal .flag-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

#BaseCurrencyModal .select2-container {
    width: 270px !important;
    height: 32px !important;
    border-radius: 4px !important;
    border: 1px solid #6b6b6b !important;
    font-size: 11px !important;
}

#BaseCurrencyModal .select2-container--default .select2-selection--single {
    border: none !important;
}

#BaseCurrencyModal .select2-container--default .select2-results>.select2-results__options {
    max-height: 105px !important;
}

.switch-label {
    padding: 0 20px 0 10px;
}

.switch-label i {
    margin-right: 5px;
}

.switch-toggle {
    height: 26px;
}

.switch-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
}

.switch-toggle input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    width: 98px;
    height: 26px;
    /* border-radius: 20px; */
    border-radius: 5px;
    margin: 0;
    cursor: pointer;
    /* box-shadow: inset -8px -8px 15px rgba(255, 255, 255, 0.6),
    inset 10px 10px 10px rgba(0, 0, 0, 0.25); */
    background-color: #086e4e49;
}

.switch-toggle input[type="checkbox"]+label::before {
    position: absolute;
    content: "Inactive";
    font-size: 11px;
    text-align: center;
    line-height: 20px;
    top: 3px;
    left: 3px;
    /* width: 65px; */
    width: 53px;
    height: 20px;
    /* border-radius: 20px; */
    border-radius: 5px;
    background-color: #eeeeee;
    /* box-shadow: -3px -3px 5px rgba(255, 255, 255, 0.5),
    3px 3px 5px rgba(0, 0, 0, 0.25); */
    transition: 0.3s ease-in-out;
}

.switch-toggle input[type="checkbox"]:checked+label::before {
    left: 43%;
    content: "Active";
    color: #fff;
    background-color: #14996f;
    /* box-shadow: -3px -3px 5px rgba(255, 255, 255, 0.5), 3px 3px 5px #00b33c; */
}

.profileProgress .skill-box {
    width: 100%;
    margin-bottom: 10px;
}

.profileProgress .skill-box .skill-bar {
    height: 8px;
    width: 100%;
    border-radius: 6px;
    margin-top: 6px;
    background: rgba(236, 236, 236, 0.7);
}

.profileProgress .skill-bar .skill-per {
    position: relative;
    display: block;
    height: 100%;
    width: 90%;
    border-radius: 6px;
    background: red;
    animation: progress 0.4s ease-in-out forwards;
    opacity: 0;
}

.profileProgress .skill-per.html {
    width: 30%;
    animation-delay: 0.1s;
}

@keyframes progress {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.profileProgress .skill-per .tooltip {
    position: absolute;
    right: -14px;
    top: -28px;
    font-size: 9px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgb(226, 226, 226);
    z-index: 1;
}

.profileProgress .tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 10px;
    width: 10px;
    z-index: -1;
    background-color: rgb(226, 226, 226);
    transform: translateX(-50%) rotate(45deg);
}

.profileProgress>div:first-child {
    width: 150px;
    /* border: 1px solid red; */
}

.profileProgress>div:nth-child(2) {
    width: 1px;
    height: 60px;
    border-left: 0.5px solid #000000;
}

.profileProgress>div:last-child {
    flex: 1;
    /* border: 1px solid red;s */
}

.profileProgress {
    gap: 40px;
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.profileProgress>div:first-child h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 3px;
}

.profileProgress>div:first-child p {
    font-size: 14px;
    font-weight: 300;
    color: #121212;
    line-height: 16px;
}

.profileProgress>div:last-child div>h2 {
    font-size: 16px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 6px;
}

.profileProgress>div:last-child div>h3 {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.profileProgress>div:last-child div>div p:first-child {
    font-size: 12px;
    font-weight: 300;
    color: #121212;
}

.profileProgress>div:last-child div>div p:last-child {
    font-size: 12px;
    font-weight: 500;
    color: #006b3f;
}

.profilePageHeader #profileImage {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.editProfileParent #profileImage {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

#TransactionCurrencyModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#TransactionCurrencyModal .custom-modal {
    padding: 0;
}

#TransactionCurrencyModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#TransactionCurrencyModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#TransactionCurrencyModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#TransactionCurrencyModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#TransactionCurrencyModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#TransactionCurrencyModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#TransactionCurrencyModal .fileInpBox .inp label {
    height: 32px;
    border: 1px dotted #6b6b6b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#TransactionCurrencyModal .fileInpBox span {
    margin-left: 10px;
}

#TransactionCurrencyModal .flag-option {
    display: flex;
    align-items: center;
    z-index: 1121;
}

#TransactionCurrencyModal .flag-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

#TransactionCurrencyModal .select2-container {
    width: 270px !important;
    height: 32px !important;
    border-radius: 4px !important;
    border: 1px solid #6b6b6b !important;
    font-size: 11px !important;
}

#TransactionCurrencyModal .select2-container--default .select2-selection--single {
    border: none !important;
}

#TransactionCurrencyModal .select2-container--default .select2-results>.select2-results__options {
    max-height: 105px !important;
}

#BaseTransactionMapping .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#BaseTransactionMapping .custom-modal {
    padding: 0;
}

#BaseTransactionMapping .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#BaseTransactionMapping .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#BaseTransactionMapping .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#BaseTransactionMapping .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#BaseTransactionMapping .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#BaseTransactionMapping .modal-body .inp input::placeholder {
    font-size: 10px;
}

#BaseTransactionMapping .fileInpBox .inp label {
    height: 32px;
    border: 1px dotted #6b6b6b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#BaseTransactionMapping .fileInpBox span {
    margin-left: 10px;
}

#BaseTransactionMapping .flag-option {
    display: flex;
    align-items: center;
    z-index: 1121;
}

#BaseTransactionMapping .flag-option img {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
}

#BaseTransactionMapping .select2-container {
    width: 275px !important;
    /* width: 100% !important; */
    height: 32px !important;
    border-radius: 4px !important;
    border: 1px solid #6b6b6b !important;
    font-size: 11px !important;
}

#BaseTransactionMapping .select2-container--default .select2-selection--single {
    border: none !important;
}

#BaseTransactionMapping .select2-container--default .select2-results>.select2-results__options {
    max-height: 105px !important;
}

#MasterBankModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#MasterBankModal .custom-modal {
    padding: 0;
}

#MasterBankModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#MasterBankModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#MasterBankModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#MasterBankModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#MasterBankModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#MasterBankModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#MasterBankModal .modal-body .inp textarea::placeholder {
    font-size: 10px;
}

#MasterBankModal .modal-body .inp textarea {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 8px 12px 0 12px;
    border-radius: 4px;
    resize: vertical;
}

.fixRowsHeight tbody tr {
    height: 44px !important;
}

#MasterProductModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#MasterProductModal .custom-modal {
    padding: 0;
}

#MasterProductModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#MasterProductModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#MasterProductModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#MasterProductModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#MasterProductModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#MasterProductModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#MasterProductModal .modal-body .inp textarea::placeholder {
    font-size: 10px;
}

#MasterProductModal .modal-body .inp textarea {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 8px 12px 0 12px;
    border-radius: 4px;
    resize: vertical;
}

.MasterCustomerTypeBtn {
    min-width: 140px !important;
    padding: 0 10px;
    white-space: nowrap;
}

#MasterCustomerTypeModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#MasterCustomerTypeModal .custom-modal {
    padding: 0;
}

#MasterCustomerTypeModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#MasterCustomerTypeModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#MasterCustomerTypeModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#MasterCustomerTypeModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#MasterCustomerTypeModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#MasterCustomerTypeModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#MasterCustomerTypeModal .modal-body .inp textarea::placeholder {
    font-size: 10px;
}

#MasterCustomerTypeModal .modal-body .inp textarea {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 8px 12px 0 12px;
    border-radius: 4px;
    resize: vertical;
}

.BaseCurrencyPage .default-limit-input {
    width: 140px;
    height: 26px;
    border: 0.7px solid #c2c2c2;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    color: #121212;
    outline: none;
    transition: border-color 0.15s ease;
}

.BaseCurrencyPage .default-limit-input::placeholder {
    color: #9a9a9a;
}

.BaseCurrencyPage .default-limit-input:focus {
    border-color: #14996f;
    box-shadow: 0 0 0 2px rgba(20, 153, 111, 0.12);
}

#BaseTransactionMapping .switch-toggle input[type="checkbox"]:checked+label::before {
    left: 43%;
    content: "Active";
    color: #fff;
    background-color: #14996f;
    /* box-shadow: -3px -3px 5px rgba(255, 255, 255, 0.5), 3px 3px 5px #00b33c; */
}

.UserOpenOrder .tblRedBtn {
    width: 170px !important;
}

.sidebarCloseBtn {
    border: none;
    background: none;
    outline: none;
    font-size: 22px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.712);
}

.disableBg {
    background: rgba(179, 179, 179, 0.2) !important;
}

/* Toast container for stacking */
.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    position: relative;
    max-width: 400px;
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease-in-out forwards, fadeOut 0.5s ease-in-out forwards 5s;
    transform: translateX(110%);
}

.toast.closing {
    animation: slideOutRight 0.5s ease-in-out forwards;
}

.toast-progress {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #b7b7b7;
    animation: toastProgress 5s linear forwards;
}

.toast-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-icon {
    padding: 0.35rem 0.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-message {
    flex: 1;
    font-size: 0.75rem;
    color: #000000;
    padding: 0.5rem;
}

.toast-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    color: #333;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #000;
}

.toast.toast-success .toast-progress {
    background-color: #2ecc71;
}

.toast.toast-danger .toast-progress {
    background-color: #e74c3c;
}

.toast.toast-info .toast-progress {
    background-color: #3498db;
}

.toast.toast-warning .toast-progress {
    background-color: #f1c40f;
}

@keyframes slideInRight {
    0% {
        transform: translateX(110%);
    }

    75% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(110%);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes toastProgress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

.myLink {
    color: #00618f;
    text-decoration: none;
}

.myLink:hover {
    color: #00618f;
    cursor: pointer;
    text-decoration: underline;
}

.profileMenu {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
    width: 230px;
    padding: 10px;
}

.profileMenu .grid1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profileMenu .grid1 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.profileMenu .grid1>div h6 {
    font-size: 13px;
    margin: 0;
    padding: 0;
    line-height: 16px;
    font-weight: normal;
}

.profileMenu .grid1>div p {
    font-size: 10px;
    margin: 0;
    padding: 0;
    line-height: 10px;
}

.profileMenu .grid1>div .password-expiry-badge {
    display: inline-block;
    margin-top: 6px;
}

#passwordExpiryBadgeMobile {
    display: none;
}

.profileMenu ul {
    list-style: none;
    margin: 0;
    /* padding: 8px 0; */
    padding-top: 10px;
}

.profileMenu ul li {
    padding: 10px 15px;
}

.profileMenu ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}

.profileMenu ul li a>div {
    display: flex;
    align-items: center;
}

.profileMenu ul li:hover {
    background: #f2f2f2;
    border-radius: 4px;
}

.profileMenu ul li:last-child a {
    color: #ac0510;
}

.profileMenu hr {
    border: none;
    height: 1px;
    background-color: rgba(211, 211, 211, 0.616);
    margin: 5px 0;
}

.notificationMenu {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    min-width: 160px;
    z-index: 1000;
    width: 350px;
    padding: 10px;
}

.notificationItems {
    padding: 10px 0;
    max-height: 250px;
    overflow: auto;
}

.notificationMenuHeader h6 {
    font-size: 13px;
    color: #121212;
    font-weight: 500;
}

.notificationMenuHeader p {
    font-size: 9.5px;
    color: #121212;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notificationMenuHeader {
    font-size: 11px;
    color: #121212;
}

.notificationFooter a {
    font-size: 11px;
    color: #121212;
}

.notificationItems img {
    width: 20px;
    height: 20px;
}

.notificationItems a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
    border-bottom: 1px solid rgba(211, 211, 211, 0.616);
}

.notificationItems p {
    font-size: 11px;
    color: #121212;
}

.notificationItems small {
    font-size: 9.5px;
    color: #121212;
    display: block;
}

.notificationMenu ul li:hover {
    background: #f2f2f2;
    border-radius: 4px;
}

.notificationMenu ul li:last-child a {
    color: #ac0510;
}

.notificationMenu hr {
    border: none;
    height: 1px;
    background-color: rgba(211, 211, 211, 0.616);
    margin: 5px 0;
}

/* Tooltip basic styles */
.tooltip-custom {
    position: absolute;
    z-index: 99999;
    display: inline-block;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    transform-origin: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Visible state */
.tooltip-custom.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Slight offset for appear animation */
.tooltip-custom[data-placement="top"] {
    transform: translateY(6px) scale(0.98);
}

.tooltip-custom[data-placement="bottom"] {
    transform: translateY(-6px) scale(0.98);
}

.tooltip-custom[data-placement="left"] {
    transform: translateX(6px) scale(0.98);
}

.tooltip-custom[data-placement="right"] {
    transform: translateX(-6px) scale(0.98);
}

/* Arrow */
.tooltip-custom .tooltip-arrow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: inherit;
    transform: rotate(45deg);
    box-shadow: inherit;
}

/* Positioning arrow for placements */
.tooltip-custom[data-placement="top"] .tooltip-arrow {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip-custom[data-placement="bottom"] .tooltip-arrow {
    top: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.tooltip-custom[data-placement="left"] .tooltip-arrow {
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.tooltip-custom[data-placement="right"] .tooltip-arrow {
    left: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

/* Small helper for visually-hidden text if needed */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.tableSearchBtn {
    width: 60px;
    height: 22px;
    font-size: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #14996f;
    color: white;
    outline: none;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 4px #00000040;
}

.tableSearchBtnLg {
    width: 70px;
    height: 32px;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #14996f;
    color: white;
    outline: none;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 4px #00000040;
}

#changePassword .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#changePassword .custom-modal {
    padding: 0;
}

#changePassword .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#changePassword .modal-body h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

#changePassword .modal-body section {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}

#changePassword .modal-body section>div {
    flex: 1;
}

#changePassword .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#changePassword .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#changePassword .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#changePassword .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#changePassword .modal-body>div select {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    /* padding: 9px 12px; */
    border-radius: 4px;
    font-size: 12px;
}

#changePassword a {
    font-size: 10px;
    color: #0052b4;
}

#changePassword .togglePasswd {
    width: 17px;
    height: 17px;
    position: absolute;
    right: 5px;
    top: 50%;
    cursor: pointer;
}

#changePassword .togglePasswd2 {
    top: 38% !important;
}

#checkStatusModal h6 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 5px;
}

#checkStatusModal p {
    color: #6b6b6b;
    font-size: 12px;
    margin-bottom: 8px;
}

#checkStatusModal .radio-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

#checkStatusModal .radio-container input[type="radio"] {
    margin-right: 10px;
    margin-top: 5px;
}

#checkStatusModal .box {
    /* border: 1px solid #ccc; */
    /* padding: 10px; */
    border-radius: 5px;
    width: 100%;
}

/* #checkStatusModal .box input:disabled {
  background-color: #f0f0f0;
} */

/* #checkStatusModal .radio-container .box input {
  border: none;
  border: 1px solid #ccc;
  outline: none;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  padding-left: 20px;
} */

#checkStatusModal .select2-container--default .select2-results>.select2-results__options {
    max-height: 110px !important;
}

#checkStatusModal #divPhoneOTP {
    margin-left: 23px;
}

#checkStatusModal #divPhoneOTP .digit-input {
    width: 70px !important;
    height: 40px !important;
}

.checkStatusPage {
    background-color: #e3f0ff;
    position: relative;
    height: 100vh;
}

.checkStatusPage .logo {
    /* position: absolute;
  top: 5px;
  left: 30px; */
    padding-top: 5px;
    padding-left: 30px;
}

.checkStatusPage h1 {
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%);
    -webkit-background-clip: text;
    /* Clips the background to the text */
    -webkit-text-fill-color: transparent;
    /* Makes text transparent so gradient shows */
    background-clip: text;
    /* Standard property for newer browsers */
    color: transparent;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 22px;
}

.checkStatusPage .mainCards {
    width: 1048px;
    margin: auto;
}

.checkStatusPage .mainCards .card01 {
    background: white;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0px 3.55px 3.55px 0px #00000040;
}

.checkStatusPage .mainCards .card02 {
    background: white;
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0px 3.55px 3.55px 0px #00000040;
}

.checkStatusPage .mainCards h2 {
    color: #07038d;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.checkStatusPage .mainCards .card-grid {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
}

.checkStatusPage .mainCards .card-grid>div {
    flex: 0 0 300px;
    height: 76px;
    padding: 5px;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 20.42px 0px #0000000a;
    border-radius: 4px;
}

.checkStatusPage .card-sm h5 {
    font-size: 17px;
    color: #121212;
    font-weight: 500;
    margin-bottom: 2px;
}

.checkStatusPage .card-sm p {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 400;
    margin-bottom: 2px;
}

.card-grid-1 {
    background-color: #fef5ce;
}

.card-grid-2 {
    background-color: #e5f9fb;
}

.card-grid-3 {
    background-color: #e3fcf1;
}

.card-grid-4 {
    background-color: #f4edfd;
}

.card-grid-5 {
    background-color: #e2e9fb;
}

.card-grid-6 {
    background-color: #f2ffd5;
}

.card-green {
    background-color: #14996f;
}

.card-gray {
    background-color: #b3b3b3;
}

.card-grid-7 p {
    color: white !important;
}

.card-grid-8 p {
    color: white !important;
}

.card-grid-9 a {
    text-decoration: underline;
    color: #00618f;
    font-size: 16px;
    font-weight: 500;
}

.card-red {
    background-color: #fe8285;
}

.rejectAlert {
    position: absolute;
    bottom: -6%;
    right: 2%;
}

.masterSelect2 .select2-container {
    width: 100% !important;
    height: 32px !important;
    /* border: 0.7px solid #121212 !important; */
}

.masterSelect2 .select2-container--default .select2-selection--single {
    height: 32px !important;
}

.masterSelect2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    font-size: 11px !important;
}

.masterSelect2 .select2-container--default .select2-selection--single {
    font-size: 11px !important;
    border: 0.7px solid #121212 !important;
}

/* #MarginSetupModal .modal-body > div input[type="date"] { */
#MarginSetupModal .modal-body>div input,
#MarginSetupModal .modal-body>div select {
    font-size: 11px !important;
}

#MarginSetupModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#MarginSetupModal .custom-modal {
    padding: 0;
}

#MarginSetupModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#MarginSetupModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

#MarginSetupModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#MarginSetupModal .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#MarginSetupModal .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#MarginSetupModal .modal-body input::placeholder {
    font-size: 10px;
}

#MarginSetupModal .fileInpBox>div label {
    height: 32px;
    border: 1px dotted #6b6b6b;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#MarginSetupModal .fileInpBox span {
    margin-left: 10px;
}

.marginSetupFilter label {
    font-size: 12px;
}

.marginSetupFilter input {
    height: 24px;
    border-radius: 4px;
    border: 0.71px solid #121212;
    font-size: 10px;
    padding: 0 8px;
}

.marginSetupTableInp {
    width: 91px;
    height: 24px;
    border: 1px solid #a8a8a8;
    border-radius: 4px;
    font-size: 12px;
    background: #f5f5f5;
    padding: 3px 5px;
}

.currencySymBox {
    width: 52px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #b5f0e7;
    font-size: 10px;
}

.tableSearchBtn-hAuto {
    height: 30px !important;
}

.SingleBankSetup .orderCard {
    height: auto !important;
    border-radius: 8px;
    background-color: white;
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #ece9e6;
}

.SingleBankSetup .orderCard .select2-container {
    width: 270px !important;
    height: 32px !important;
    background-color: #e9f9f9 !important;
    /* border: 0.7px solid #121212 !important; */
}

.SingleBankSetup .orderCard .select2-container--default .select2-selection--single {
    height: 32px !important;
}

.SingleBankSetup .orderCard .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    font-size: 11px !important;
}

.SingleBankSetup .orderCard .select2-container--default .select2-selection--single {
    font-size: 11px !important;
    border: 0.5px solid #118c82 !important;
}

/* accordion */

.SingleBankSetup .accordion {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 6px 18px rgba(27, 31, 35, 0.08); */
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.SingleBankSetup .acc-item+.SingleBankSetup .acc-item {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

/* header (clickable) */
.SingleBankSetup .acc-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0rem 1.25rem;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(74, 123, 212, 0.06), rgba(20, 153, 111, 0.03));
    border: none;
    text-align: left;
    outline: none;
    display: flex;
    align-items: center;
    height: 45px;
}

/* .SingleBankSetup .acc-header:focus {
  box-shadow: inset 0 0 0 3px rgba(74, 123, 212, 0.12);
} */

.SingleBankSetup .acc-title {
    flex: 1;
    user-select: none;
}

/* content panel */
.SingleBankSetup .acc-panel {
    padding: 1rem;
    font-size: 0.95rem;
    display: none;
}

/* open state styles (for visual cue without icons) */
.SingleBankSetup .acc-header[aria-expanded="true"] {
    background: #e9f9f9;
}

/* small helper for optional description line */
.SingleBankSetup .acc-sub {
    display: block;
    font-weight: 400;
    font-size: 0.88rem;
    color: #475569;
    margin-top: 0.25rem;
}

.SingleBankSetup .panel-1 {
    display: block;
}

.SingleBankSetup .panel-2 {
    display: none;
}

.SingleBankSetup .panel-3 {
    display: none;
}

.simpleAccPanelInp label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
}

.simpleAccPanelInp input {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 5px;
    width: 254px;
    height: 32px;
    background-color: #e9f9f9 !important;
    border: 0.5px solid #118c82 !important;
    padding-left: 8px;
    border-radius: 4px;
}

.SingleBankSetup .tableWrapperBody {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    height: 200px;
    /* flex: 1; */
}

.SingleBankSetup .accordion {
    flex: 1;
}


.sattleLag {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

    .sattleLag .date-filter {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .sattleLag .date-filter label {
            margin: 0;
            white-space: nowrap;
        }

        .sattleLag .date-filter input {
            height: 32px;
            width: 150px;
            border: 1px solid lightgray;
            border-radius: 4px;
            font-size: 12px;
            padding: 5px;
        }



.select-date {
    display: flex
}

.date-filter,
.date-filter label {
    margin-right: 4px
}

.SellSettlementReportPage .pageHeadingTxt span {
    font-weight: 300;
    font-size: 14px;
    color: #1d1d1d;
    padding-left: 5px;
}

.misReportSubHeading {
    margin: 2px 0 0;
    font-size: 11px;
    font-weight: 400;
    color: #6b6b6b;
}

.MisReportExportPage .select-date.sattleLag {
    align-items: end;
}

.MisReportExportPage .tableWrapperBody table tbody tr {
    height: 44px;
}

.MisReportExportPage .tableWrapperBody table tbody td {
    height: 44px;
}

.resetTogglePasswd {
    position: absolute;
    right: 10px;
    transform: translateY(40%);
    cursor: pointer;
    font-size: 12px;
    color: #666;
    user-select: none;
    z-index: 111;
}

#divPhoneOTPCheckStatus {
    padding-left: 24px;
}

#signuptabs .digit-input {
    width: 35px !important;
    height: 31px !important;
}

.light-row {
    /* background-color: #f9f9f9; */
    background-color: white;
    border: none !important;
}

.dark-row {
    background-color: #f4f4f4 !important;
    border: none !important;
}

.newBodyBg {
    /* background-color: #f4f4f4; */
    background-color: #f9fafe !important;
}

.newCardBox {
    background-color: white !important;
    box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07) !important;
}

.striped thead th {
    /* background-color: #d3d1d0; */
    background-color: #d9d9d9;
    border-bottom: 1px solid #d3d1d0 !important;
}

.striped thead.nonStriped th {
    background-color: white !important;
    border-bottom: 1px solid #d3d1d0 !important;
}

.striped th>div {
    border-right: 1px solid darkgray !important;
}

.striped tbody td {
    border: none !important;
    border-bottom: 1px solid #d3d1d0 !important;
}

/* Stripe effect for odd and even rows */
.striped tbody tr:nth-child(odd) {
    background-color: white;
    border: none !important;
}

.striped tbody tr:nth-child(even) {
    background-color: #f4f4f4 !important;
    border: none !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.linkSmSize {
    font-size: 14px;
}

#SettlementModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#SettlementModal .custom-modal {
    padding: 0;
}

#SettlementModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#SettlementModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#SettlementModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#SettlementModal .modal-body .inp label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#SettlementModal .modal-body .inp input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#SettlementModal .modal-body .inp input::placeholder {
    font-size: 10px;
}

#SettlementModal .modal-body .inp textarea::placeholder {
    font-size: 10px;
}

#SettlementModal .modal-body .inp textarea {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 8px 12px 0 12px;
    border-radius: 4px;
    resize: vertical;
}

.SettlementModalSelect1 {
    width: 40%;
}

.SettlementModalSelect2 {
    width: 40%;
}

.SettlementModalSelect3 {
    width: 30%;
    margin-left: 10px;
}

.SettlementModalSelect3 input {
    height: 32px !important;
    padding: 0 7px;
    border-radius: 4px;
    font-size: 11px !important;
    border: 0.7px solid #121212 !important;
}

.innderDivBox {
    font-size: 11px;
    color: #121212;
    font-weight: 500;
    background-color: #effff4;
    height: 25px;
    padding-left: 22px;
    display: flex;
    align-items: center;
}

.pageSubHeadingTxt {
    font-size: 14px;
    font-weight: 500;
    margin: auto;
}

.ViewCloseDealPage .pageHeadingTxt {
    font-size: 20px;
}

.deal-slip-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d8dee7;
}

.deal-slip-brand img {
    width: 70px;
    max-height: 42px;
    object-fit: contain;
}

.deal-slip-title {
    text-align: center;
}

.deal-slip-brand h2 {
    margin: 0;
    color: #121212;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.deal-slip-brand h6 {
    margin: 4px 0 0;
    color: #111827;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.deal-slip-brand p {
    margin: 2px 0 0;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.ViewCloseDealPage .header {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
}

.ViewCloseDealPage .header div:first-child {
    /* width: 600px; */
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 10px; */
}

.ViewCloseDealPage .header div:last-child {
    width: 440px;
}

.ViewCloseDealPage .header .details>div {
    /* flex: 0 0 250px; */
    flex: 1 1 250px;
    display: flex;
    margin-bottom: 12px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.ViewCloseDealPage .header .details>div p {
    width: 120px;
    font-size: 12px;
    color: #121212;
}

.ViewCloseDealPage .header .details>div h6 {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    padding-right: 40px;
}

.ViewCloseDealPage .topTable table {
    border-collapse: collapse;
}

.ViewCloseDealPage .topTable thead {
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
}

.ViewCloseDealPage .topTable th {
    height: 40px;
    padding-left: 30px;
    color: white;
}

.ViewCloseDealPage .topTable th:first-child {
    border-radius: 4px 0 0 4px;
}

.ViewCloseDealPage .topTable th:last-child {
    border-radius: 0 4px 4px 0;
}

.ViewCloseDealPage .topTable tr td {
    height: 50px;
    background-color: #d5dee9;
    padding-left: 30px;
}

.ViewCloseDealPage .orderDetails {
    display: flex;
    margin-top: 10px;
    gap: 28px;
    flex-wrap: wrap;
    align-items: start;
}

.ViewCloseDealPage .orderDetails>div:last-child {
    width: 311px;
    /* margin: auto; */
    padding: 24px;
    background: linear-gradient(180deg, #ece9e6 0%, #cff4f1 100%);
    border-radius: 12px;
    box-shadow: 0px 0px 20.42px 0px #0000000a;
}

.ViewCloseDealPage .OrderSummaryCard h3 {
    font-size: 20px;
    font-weight: 500;
    color: #121212;
    padding-right: 40px;
    padding-bottom: 20px;
}

.ViewCloseDealPage .OrderSummaryCard p {
    font-size: 12px;
    color: #121212;
}

.ViewCloseDealPage .OrderSummaryCard h6 {
    font-size: 15px;
    font-weight: 500;
    color: #121212;
    text-wrap: nowrap;
}

.ViewCloseDealPage .OrderSummaryCard h5 {
    font-size: 18px;
    font-weight: 500;
    color: #121212;
}

.ViewCloseDealPage .OrderSummaryCard>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.ViewCloseDealPage .orderDetailsTable>div {
    height: 40px;
    /* background-color: #f9fafe; */
    background-color: #d5dee9;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.orderDetailsTable .head {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
}

.orderDetailsTable .head span {
    font-size: 12px;
    font-weight: 400 !important;
    color: #121212;
}

.ViewCloseDealPage .orderDetailsTable>section {
    display: flex;
    flex-wrap: wrap;
}

.ViewCloseDealPage .orderDetailsTable>section>div {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 36px;
    padding-left: 24px;
}

.ViewCloseDealPage .orderDetailsTable>section>div p {
    width: 190px;
    /* border: 1px solid; */
}

.ViewCloseDealPage .orderDetailsTable>section>div h6 {
    font-size: 15px;
    font-weight: 500;
    color: #121212;
    text-wrap: nowrap;
}

/* Bounce effect */
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.custom-modal.bounce {
    animation: bounce 0.5s ease;
}

#GOFXAccView .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#GOFXAccView .custom-modal {
    padding: 0;
}

#GOFXAccView .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#GOFXAccView .modal-body {
    padding: 10px 24px;
    /* display: flex;
  flex-wrap: wrap; */
    /* gap: 20px; */
    padding-top: 20px;
    /* margin-bottom: 50px; */
}

#GOFXAccView .modal-body>div {
    /* flex: 1 1 calc(50% - 10px); */
    display: flex;
    margin-bottom: 20px;
}

#GOFXAccView .modal-body p {
    font-size: 12px;
    color: #121212;
    padding-right: 30px;
}

#GOFXAccView .modal-body h6 {
    font-size: 12px;
    font-weight: 500;
    color: #121212;
    text-wrap: nowrap;
}

.NotificationsPage .btnGroup button {
    width: 120px !important;
}

.NotificationsPage {
    display: flex;
    flex-direction: column;
}

.notificationArea {
    flex: 1;
    overflow: auto;
    /* margin-top: 10px; */
    padding: 10px 5px;
}

.notificationItem {
    background-color: white;
    height: 93px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
}

.notificationItem .midBox {
    flex: 1;
}

.notificationItem p {
    font-weight: 500;
    color: #333333;
    font-size: 14px;
}

.notificationItem div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageNotFound {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pageNotFound h2 {
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    font-size: 150px;
    font-weight: 700;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 130px;
}

.pageNotFound h4 {
    color: #121212;
    font-size: 32px;
    font-weight: 600;
}

.pageNotFound p {
    color: #121212;
    font-size: 16px;
    font-weight: 500;
}

.pageNotFound button {
    width: 148px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    font-size: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: auto;
    margin-top: 60px;
}

.ViewCloseDealMailPage {
    max-width: 1250px;
    margin: auto;
    margin-top: 40px;
    /* outline: 1px solid red; */
}

.ViewCloseDealMailPage .pageHeadingTxt {
    font-size: 20px;
}

@media only screen and (max-width: 794px) {
    .ViewCloseDealMailPage {
        width: 100%;
    }

    .topTable {
        overflow: auto;
        width: 100%;
    }

    .ViewCloseDealPage .orderDetails>div:last-child {
        width: 100%;
        margin: auto;
    }

    .ViewCloseDealPage .orderDetailsTable>section>div p {
        width: 50%;
        text-wrap: wrap;
    }

    .ViewCloseDealPage .orderDetailsTable>section>div h6 {
        width: 50%;
        text-wrap: wrap;
    }
}

#TradeTable thead th {
    text-wrap: nowrap;
}

#TradeTable tbody td {
    text-wrap: nowrap !important;
}

#WatchlistTable thead th {
    text-wrap: nowrap;
}

#WatchlistTable tbody td {
    text-wrap: nowrap !important;
}

#MarketPlaceTable thead th {
    text-wrap: nowrap;
}

#MarketPlaceTable tbody td {
    text-wrap: nowrap !important;
}

.disableBgWithTxt {
    background: rgba(179, 179, 179, 0.2) !important;
    color: #595959 !important;
    cursor: not-allowed !important;
}

#ledgerTable tr td {
    text-wrap: nowrap;
}

.masterSelect2New .select2-container {
    width: 100% !important;
    height: 25px !important;
}

.masterSelect2New .select2-container--default .select2-selection--single {
    height: 25px !important;
}

.masterSelect2New .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 25px !important;
    font-size: 11px !important;
}

.masterSelect2New .select2-container--default .select2-selection--single {
    font-size: 11px !important;
    border: 0.7px solid lightgray !important;
}

.bankSetupTable tr input:not([type="checkbox"]) {
    height: 25px;
    width: 100%;
    min-width: 60px;
    border: 0.7px solid lightgray !important;
    border-radius: 4px;
}

.z100 {
    z-index: 100;
}

.tableFilterBox {
    display: flex;
    align-items: center;
    background: white;
    box-shadow: 0 4px 4px #00000040;
    border-radius: 4px;
    overflow: hidden;
    padding-left: 5px;
}

.tableFilterBox>select {
    height: 32px;
    border: none;
    width: fit-content;
    /* font-size: 10px; */
    font-size: 12px;
    border-radius: 4px 0 0 4px;
    border: none !important;
}

.tableFilterBox select:focus {
    outline: none;
    border: none;
}

.tableFilterBox input:focus {
    outline: none;
    border: none;
}

.tableFilterBox>div select {
    height: 22px;
    width: fit-content;
    border: none;
    border-left: 1px solid lightgray;
    font-size: 11px;
    padding: 5px;
    margin: 5px;
}

.tableFilterBox>div input {
    height: 22px;
    /* width: fit-content; */
    width: 150px;
    border: none;
    border-left: 1px solid lightgray;
    font-size: 12px;
    padding: 5px;
    margin: 5px;
}

.tableFilterBox button {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
    background-color: #14996f;
    border: none;
    cursor: pointer;
}

.tableFilterBox.h30>select {
    height: 30px;
}

.tableFilterBox.h30>div select {
    height: 20px;
}

.tableFilterBox.h30>div input {
    height: 20px;
}

.tableFilterBox.h30 button {
    height: 30px;
    width: 30px;
}

.h30 {
    height: 30px !important;
}

.DashboardRateCreation .tableWrapperBody {
    padding: 20px;
}

.DashboardRateCreation .tableWrapperBody section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.DashboardRateCreation .tableWrapperBody section div {
    /* border: 1px solid; */
    width: 100%;
}

.DashboardRateCreation .tableWrapperBody section label {
    width: 40%;
    margin-bottom: 5px;
}

.DashboardRateCreation .tableWrapperBody section input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

.DashboardRateCreation .tableWrapperBody {
    flex: unset !important;
    height: auto !important;
}

.dualCurrencyBox {
    width: 20px;
    height: 15px;
    position: relative;
    margin-right: 5px;
}

.dualCurrencyBox img:first-child {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.dualCurrencyBox img:last-child {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 4px;
    left: 8px;
}

.results-per-page .pageCount {
    font-size: 0.9rem;
    text-wrap: nowrap;
}

.mainDashboardTable {
    border-radius: 10px;
    border: 1px solid lightgray;
    height: auto !important;
    margin-top: 5px;
    height: 100% !important;
}

.mainDashboardTable tbody tr:hover {
    background-color: #e9f3ff;
}

#userres tbody tr:hover {
    background-color: #e9f3ff;
}

.tabPillsInfo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

#Modal-Limit .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#Modal-Limit .custom-modal {
    padding: 0;
}

#Modal-Limit .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#Modal-Limit .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

#Modal-Limit .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#Modal-Limit .modal-body>div label {
    font-size: 10px;
    font-weight: 500;
    display: block;
    color: #121212;
    margin-bottom: 3px;
}

#Modal-Limit .modal-body>div input {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    border: 0.7px solid #121212;
    padding: 9px 12px;
    border-radius: 4px;
}

#Modal-Limit .modal-body input::placeholder {
    font-size: 10px;
}

#Modal-Limit .modal-body>div section {
    height: 32px;
    border-radius: 4px;
    border: 0.7px solid #121212;
    padding-left: 12px;
}

#LimitEnhancementRequestsModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
    border-bottom: 1px solid #ece9e6;
}

#LimitEnhancementRequestsModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    padding: 0;
}

#LimitEnhancementRequestsModal .modal-body h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 0 16px;
}

#LimitEnhancementRequestsModal .modal-body section {
    /* border: 1px solid; */
    padding: 7px 16px;
    box-shadow: 0px 0px 24px 0px #00000017;
    margin-bottom: 10px;
}

#LimitEnhancementRequestsModal .modal-body section p {
    font-weight: 500;
}

#LimitEnhancementRequestsModal .modal-body section span {
    font-weight: 400;
}

#LimitEnhancementRequestsModal .modal-body .singleLineData span {
    margin-left: 40px;
}

#LimitEnhancementRequestsModal .modal-body .multiLineData {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#LimitEnhancementRequestsModal .custom-modal {
    padding: 0;
}

#LimitEnhancementRequestsModal .gradeBg {
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
}

#LimitEnhancementRequestsModal .cInput {
    height: 32px;
    border: none;
    outline: none;
    border: 0.71px solid #121212;
    width: 100%;
    border-radius: 4px;
    width: 50%;
}

/*---------------------------------------------
Review Order MODAL
---------------------------------------------- */

#reviewOrderModal .modal-header {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

#reviewOrderModal .modal-md {
    width: 700px;
}

#reviewOrderModal .custom-modal {
    padding: 0;
}

#reviewOrderModal .modal-header h4 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

#reviewOrderModal .modal-body {
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#reviewOrderModal .modal-body>div {
    flex: 1 1 calc(50% - 10px);
}

#reviewOrderModal .reviewOrder div {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    height: 42px;
}

#reviewOrderModal .reviewOrder div p,
#reviewOrderModal .reviewOrder div h5 {
    width: 50%;
    margin: 0;
}

#reviewOrderModal .orderReviewSize {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 16px;
}

.redBtn-Outline {
    background-color: white;
    border: 1px solid #e33e3e;
    width: 134px;
    height: 32px;
    border-radius: 4px;
    font-size: 12px;
    outline: none;
    color: #e33e3e;
    cursor: pointer;
}


.notificationWrapper {
    position: relative;
    display: inline-block;
}

.notificationBadge {
    position: absolute;
    top: -2px;
    right: -4px;
    background-color: #ff3b30;
    color: white;
    border-radius: 50%;
    padding: 0px 4px;
    font-size: 8px;
    font-weight: bold;
}



.gradientBtn-Outline img {
    width: 14px;
    height: 14px;
}


.dropdownBtn {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 36px;
    left: 0px;
    background-color: #fff;
    min-width: 107px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #e3e3e3;
}

.dropdown-item {
    width: 100%;
    padding: 4px 10px;
    background: white;
    /*    color: #14996f;*/
    border: none;
    text-align: left;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #f2fef9;
}

.dropdownBtn.show .dropdown-menu {
    display: block;
}



.select-date>div>input {
    height: 32px;
    /* width: fit-content; */
    width: 150px;
    border: none;
    border: 1px solid lightgray;
    font-size: 12px;
    padding: 5px;
    border-radius: 4px;
}


.SellForexBoxDedicatedPage {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 4px #00000040;
    background-color: white;
}

.SellForexBoxDedicatedPage>div input:not([type="checkbox"]) {
    width: 95%;
}

.SellForexBoxDedicatedPage>div select {
    width: 95%;
}

.SellForexBoxDedicatedPage>div button {
    width: fit-content;
}

.SellForexBoxDedicatedPage>div:last-child {
    text-align: left;
}

.SellForexBoxDedicatedPage>div {
    flex: 0 0 33% !important;
}

.SellForexBoxDedicatedPage table {
    width: 100%;
    border-collapse: collapse;
    /*        font-size: 14px;*/
    background: #fff;
}

.SellForexBoxDedicatedPage th,
.SellForexBoxDedicatedPage td {
    border: 1px solid #dcdcdc;
    padding: 10px 12px;
    text-align: left;
    vertical-align: middle;
}

.SellForexBoxDedicatedPage thead {
    background-color: #f5f7fa;
}

.SellForexBoxDedicatedPage th {
    /*        font-weight: 600;*/
    color: #333;
    font-size: 11px;
}

.SellForexBoxDedicatedPage tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.SellForexBoxDedicatedPage input[type="text"] {
    /*        width: 100%;
        padding: 6px 8px;
        border: 1px solid #cfcfcf;
        border-radius: 4px;
        box-sizing: border-box;*/
    height: 32px;
    border-radius: 4px;
    border: 1px solid #6b6b6b;
    font-size: 11px;
    width: 100%;
    padding: 10px;
}

.remove-column {
    width: 70px;
    text-align: center;
    white-space: nowrap;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #c82333;
}

.SellForexBoxDedicatedPage>div button {
    width: fit-content;
}

.SellForexBoxDedicatedPage:last-child {
    margin-bottom: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: none !important;
}


/* ── Customer Type Multiselect ── */
#auctionCustMs {
    position: relative;
}

.acms-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    height: 32px;
    width: 95%;
    padding: 0 10px;
    border: 1px solid #6b6b6b;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 11px;
    color: #333;
    user-select: none;
}

.acms-trigger:hover {
    border-color: #444;
}

.acms-trigger-text {
    flex: 1;
    color: #6b6b6b;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acms-trigger-text.has-val {
    color: #333;
}

.acms-chevron {
    font-size: 11px;
    color: #6b6b6b;
    transition: transform 0.18s;
    flex-shrink: 0;
}

#auctionCustMs.open .acms-chevron {
    transform: rotate(180deg);
}

.acms-badge {
    background: #0d6efd;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    padding: 1px 6px;
    font-weight: 600;
    display: none;
    flex-shrink: 0;
}

.acms-panel {
    display: none;
    position: absolute;
    width: 95%;
    background: #fff;
    border: 1px solid #6b6b6b;
    border-radius: 4px;
    z-index: 1050;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

#auctionCustMs.open .acms-panel {
    display: block;
}

#auctionCustMs .acms-panel {
    display: none;
}

.acms-actions {
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.acms-act-btn {
    font-size: 10px;
    color: #0d6efd;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.acms-act-btn:hover {
    color: #0a58ca;
}

.acms-list {
    max-height: 180px;
    overflow-y: auto;
}

.acms-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 11px;
    color: #333;
}

.acms-opt:hover {
    background: #f5f7fa;
}

.acms-opt.is-checked {
    background: #eef3ff;
}

.acms-opt input[type="checkbox"] {
    width: 13px;
    height: 13px;
    accent-color: #0d6efd;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}

.acms-opt-lbl {
    font-size: 11px;
    color: #333;
    cursor: pointer;
}

.acms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.acms-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e8f0ff;
    color: #0d6efd;
    border-radius: 12px;
    font-size: 10px;
    border: 1px solid #b8d0ff;
}

.acms-tag-x {
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    color: #0d6efd;
    margin-left: 2px;
}

.acms-tag-x:hover {
    color: #dc3545;
}

.SellForexBoxDedicatedPage>div select {
    width: 95%;
}

.SellForexBoxDedicatedPage>div button {
    width: fit-content;
}

#userModal .signupMobileInp {
    height: auto !important;
    margin-bottom: 0px;
}

#userModal .signupMobileInp input {
    border: none !important
}

#userModal .signupMobileInp .select2-container--default .select2-selection--single {
    height: 32px !important;
}

#userModal .signupMobileInp {
    border: 0.7px solid #121212;
}

#userModal .signupMobileInp .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px !important;
    top: 0 !important;
}

.w-fit {
    width: fit-content !important;
}

.percent-input {
    position: relative;
    display: inline-block;
}

.percent-input input {
    padding-right: 20px;
}

.percent-input span {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 12px;
}

/*#SPBidModal .custom-modal {
    max-width: 560px;
}*/

.auction-bid-post-form {
    display: inline-block;
    margin: 0;
}

.auction-bid-post-form button,
.btn-post-create-FX Sale {
    border: 0;
}

.auction-bid-post-form button[class=""] {
    background: transparent;
    padding: 0;
    color: inherit;
    font: inherit;
}

#SPBidModal .spBidModalHeader img {
    max-width: 72px;
    margin-bottom: 8px;
}

#SPBidModal .spBidModalHeader h2 {
    margin-bottom: 4px;
}

#SPBidModal .spBidModalHeader p {
    color: #667085;
    font-size: 14px;
    margin: 0;
}

#SPBidModal .spBidModalSummary {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

#SPBidModal .spBidModalSummary div {
    border: 1px solid #EAECF0;
    border-radius: 8px;
    padding: 10px;
    background: #F9FAFB;
}

#SPBidModal .spBidModalSummary p {
    color: #667085;
    font-size: 12px;
    margin-bottom: 4px;
}

#SPBidModal .spBidModalSummary h6 {
    color: #101828;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    word-break: break-word;
}

#SPBidModal .spBidFormGrid {
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
}

#SPBidModal .spBidFormGrid .divRow {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

#SPBidModal .spBidFormGrid .divRow p {
    margin: 0;
}

#SPBidModal .spBidFormGrid input,
#SPBidModal .spBidFormGrid select {
    width: 100%;
    min-height: 34px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 8px;
    background: #fff;
    font-size: 13px;
}

.AllocationSheetPage .allocation-summary-grid>div h6,
.AllocationSheetPage .allocation-header-grid>div h6 {
    min-height: 20px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    word-break: break-word;
}

.AllocationSheetPage .allocation-header-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.AllocationSheetPage .allocation-header-title h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #101828;
}

.AllocationSheetPage .allocation-header-title>div {
    min-width: 280px;
}

.AllocationSheetPage .allocation-header-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
}

.AllocationSheetPage .allocation-header-grid>div {
    display: grid;
    grid-template-columns: minmax(150px, 0.82fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
    min-height: 28px;
}

.AllocationSheetPage .allocation-header-grid label,
.AllocationSheetPage .allocation-header-title label {
    margin: 0;
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.AllocationSheetPage .allocation-grid-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px;
}

.decision-counts-pills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.decision-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 3px 8px;
    background: #fff;
    font-size: 12px;
}

.decision-pill-label {
    color: #667085;
    font-weight: 500;
}

.decision-pill-value {
    color: #101828;
    font-weight: 700;
}

.decision-pill-success {
    border-color: #b7e4c7;
    background: #e1f6ea;
}

.decision-pill-success .decision-pill-value {
    color: #17603a;
}

.decision-pill-warning {
    border-color: #f5d9a8;
    background: #fff3cd;
}

.decision-pill-warning .decision-pill-value {
    color: #755c00;
}

.decision-pill-danger {
    border-color: #f3b7b7;
    background: #fdeaea;
}

.decision-pill-danger .decision-pill-value {
    color: #b42318;
}

.AllocationSheetPage .allocated-qty {
    width: 92px;
    height: 28px;
    padding: 4px 6px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
}

.AllocationSheetPage .decision-select {
    min-width: 92px;
    height: 28px;
    padding: 0px 5px 2px;
}

.AllocationSheetPage .allocation-summary-grid select,
.AllocationSheetPage .allocation-header-title select,
.AllocationSheetPage #allocationInputValue {
    width: 100%;
    min-height: 34px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 8px;
    background: #fff;
    font-size: 13px;
}

.AllocationSheetPage .allocation-customer-ms {
    position: relative;
    min-width: 260px;
}

.AllocationSheetPage .allocation-ms-trigger {
    width: 100%;
    min-height: 36px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #101828;
    font-size: 13px;
}

.AllocationSheetPage .allocation-ms-badge {
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #e1f6ea;
    color: #17603a;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 600;
}

.AllocationSheetPage .allocation-ms-panel {
    position: absolute;
    z-index: 5;
    top: 40px;
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow: auto;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.14);
    padding: 8px;
    display: none;
}

.AllocationSheetPage .allocation-customer-ms.open .allocation-ms-panel {
    display: block;
}

.AllocationSheetPage .allocation-ms-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.AllocationSheetPage .allocation-ms-actions button {
    border: 0;
    background: transparent;
    color: #097969;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 0;
}

.AllocationSheetPage .acms-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 6px;
    border-radius: 4px;
    cursor: pointer;
}

.AllocationSheetPage .acms-opt:hover,
.AllocationSheetPage .acms-opt.is-checked {
    background: #f3faf7;
}

.AllocationSheetPage .acms-opt input {
    width: 14px;
    height: 14px;
}

.AllocationSheetPage .acms-opt-lbl {
    margin: 0;
    font-size: 13px;
    color: #344054;
}

.AllocationSheetPage .allocation-row-reject td {
    background: #ffe2e2 !important;
    color: #8a1f1f;
}

.AllocationSheetPage .allocation-row-invalid td {
    background: #ffe2e2 !important;
    color: #8a1f1f;
}

.AllocationSheetPage .allocation-row-accept td {
    background: #e1f6ea !important;
    color: #17603a;
}

.AllocationSheetPage .allocation-row-partial td {
    background: #fff3cd !important;
    color: #755c00;
}

.auction-allocation-workspace {
    padding-top: 10px;
}

.auction-allocation-workspace .tableWrapperHeading {
    margin-bottom: 10px;
}

.auction-allocation-workspace .pageHeadingTxt {
    font-size: 16px;
    line-height: 1.2;
}

.auction-allocation-workspace .allocation-ref-chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 3px 8px;
    color: #344054;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}

.auction-allocation-workspace .allocation-ref-chip strong {
    margin-left: 4px;
    color: #101828;
}

.auction-allocation-workspace .allocation-v2-accordion {
    margin-bottom: 10px;
}

.auction-allocation-workspace .allocation-header-title {
    margin-bottom: 8px;
}

.auction-allocation-workspace .allocation-header-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px 12px;
}

.auction-allocation-workspace .allocation-header-grid>div {
    min-height: 20px;
    grid-template-columns: minmax(112px, 0.68fr) minmax(0, 1fr);
    gap: 5px;
}

.auction-allocation-workspace .allocation-header-grid label,
.auction-allocation-workspace .allocation-header-title label {
    font-size: 11px;
}

.auction-allocation-workspace .allocation-header-grid>div h6 {
    font-size: 11px;
    line-height: 1.2;
    min-height: 14px;
}

.auction-allocation-workspace .allocation-v2-method-bar {
    margin-bottom: 10px;
}

.auction-allocation-workspace .allocation-v2-method-bar label {
    font-size: 12px;
    margin-bottom: 3px;
}

.auction-allocation-workspace .allocation-v2-method-bar select,
.auction-allocation-workspace .allocation-v2-method-bar input {
    min-height: 32px;
    font-size: 12px;
}

.auction-allocation-workspace .allocation-v2-table-wrap {
    margin-bottom: 10px !important;
    overflow-x: auto;
    /* min-height: 400px; */
    min-height: 200px;
}

.auction-allocation-workspace .allocation-v2-table-wrap table {
    min-width: 1080px;
}

.auction-allocation-workspace .allocation-v2-table-wrap th,
.auction-allocation-workspace .allocation-v2-table-wrap td {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.25;
    vertical-align: middle;
}

.auction-allocation-workspace .allocation-grid-heading {
    margin: 6px 8px 6px 6px;
    flex-wrap: wrap;
    min-height: 23px;
}

.auction-allocation-workspace #allocationDecisionCounts {
    justify-content: flex-end;
}

.auction-allocation-workspace #allocationDecisionCounts .decision-pill {
    font-size: 11px;
    padding: 2px 7px;
}

.auction-allocation-workspace .allocated-qty,
.auction-allocation-workspace .decision-select {
    height: 26px;
    font-size: 12px;
}

.auction-allocation-workspace .allocation-customer-ms {
    min-width: 190px;
}

.auction-allocation-workspace .allocation-ms-trigger {
    min-height: 30px;
    padding: 4px 8px;
    font-size: 12px;
}

.auction-allocation-workspace .allocation-ms-panel {
    top: 34px;
}

.linkBtn,
.pending-FX Sale-link {
    border: 0;
    background: transparent;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.AllocationSheetsPage .allocation-sheet-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.AllocationSheetsPage .allocation-sheet-pagination button {
    min-width: 70px;
    height: 30px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    background: #fff;
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

.AllocationSheetsPage .allocation-sheet-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.AllocationSheetsPage .allocation-sheet-pagination span {
    color: #344054;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .AllocationSheetPage .allocation-header-grid {
        grid-template-columns: 1fr;
    }

    .AllocationSheetPage .allocation-header-title {
        align-items: stretch;
        flex-direction: column;
    }

    .AllocationSheetPage .allocation-header-title>div {
        min-width: 0;
    }
}

@media (max-width: 576px) {
    #SPBidModal .spBidModalSummary {
        grid-template-columns: 1fr;
    }

    #SPBidModal .spBidFormGrid {
        padding: 0;
    }

    #SPBidModal .spBidFormGrid .divRow {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}



/* Bootstrap-like gap utility classes */

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.gap-6 {
    gap: 4rem;
}

.gap-7 {
    gap: 5rem;
}

.gap-8 {
    gap: 6rem;
}

.gap-9 {
    gap: 7rem;
}

.gap-10 {
    gap: 8rem;
}

.text-wrap {
    text-wrap: nowrap !important;
}

height: 32px !important;
top: 0 !important;
}

.w-fit {
    width: fit-content !important;
}


.onboarding-document {
    width: 300px;
    height: 36px;
    border-radius: 4px;
    padding: 6px 10px;
    border: 1px solid #6b6b6b;
    padding-right: 30px;
}

.cModalParant {
    padding: 0;
}

.cModalHeader {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f9fafe;
    padding: 10px 24px;
}

.cModalBody {
    padding: 10px 24px;
}


#CurrencyModal .modal-body .supporting {
    font-size: 12px;
}

#CurrencyModal .modal-body .supporting {
    font-size: 12px;
}


#ApprovalMatrixModal .cModalBody>div {
    display: flex;
    margin-bottom: 10px;
}

#ApprovalMatrixModal label {
    width: 25%;
    display: block;
}

#ApprovalMatrixModal .cInput {
    width: 75%;
    height: 36px;
    border-radius: 4px;
    padding: 0 10px;
    border: 1px solid #6b6b6b;
    padding-right: 30px;
}


/* ==============================================
   Allocation Sheet — Accordion Summary Styles
   Scoped under #allocationSummaryAccordion
   ============================================== */

#allocationSummaryAccordion {
    border: 1px solid #dde1ea;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #ffffff;
}

#allocationSummaryAccordion .acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 5px;
    background: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid transparent;
    border-radius: 10px;
}

#allocationSummaryAccordion .acc-header:hover {
    background: #f6f8fb;
}

#allocationSummaryAccordion .acc-header.open {
    background: #f6f8fb;
    border-bottom-color: #dde1ea;
    border-radius: 10px 10px 0 0;
}

#allocationSummaryAccordion .acc-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #1c2033;
}

#allocationSummaryAccordion .acc-title svg {
    color: #3aaa6e;
    flex-shrink: 0;
}

#allocationSummaryAccordion .acc-badge {
    font-size: 11px;
    font-weight: 500;
    background: #e7f6ef;
    color: #257a4a;
    border-radius: 20px;
    padding: 2px 10px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

#allocationSummaryAccordion .acc-chevron {
    color: #8a92a6;
    flex-shrink: 0;
    transition: transform 0.22s ease;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 8px;
}

#allocationSummaryAccordion .acc-chevron.open {
    transform: rotate(225deg);
}

#allocationSummaryAccordion .acc-body {
    display: none;
    padding: 0;
}

#allocationSummaryAccordion .acc-body.open {
    display: block;
    padding: 10px;
}

/* --- 3 Cards Row --- */

#allocationSummaryAccordion .alloc-cards-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
}

#allocationSummaryAccordion .alloc-card {
    flex: 1;
    background: #f6f8fb;
    border: 1px solid #dde1ea;
    border-radius: 8px;
    overflow: hidden;
}

#allocationSummaryAccordion .alloc-card-heading {
    font-size: 12px;
    font-weight: 600;
    color: #1c2033;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 12px;
    background: #eceef4;
    border-bottom: 1px solid #dde1ea;
}

#allocationSummaryAccordion .alloc-card-heading-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

#allocationSummaryAccordion .allocation-info-btn {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1px solid #98a2b3;
    border-radius: 50%;
    background: #fff;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    cursor: help;
}

#allocationSummaryAccordion .allocation-info-btn:focus-visible {
    outline: 2px solid #14996f;
    outline-offset: 2px;
}

#allocationSummaryAccordion .alloc-card .allocation-header-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 0;
    padding: 4px;
}

/* --- Grid cells inside cards --- */

#allocationSummaryAccordion .alloc-card .allocation-header-grid>div {
    padding: 8px 10px;
    border-right: 1px solid #eceef4;
    border-bottom: 1px solid #eceef4;
}

#allocationSummaryAccordion .alloc-card .allocation-header-grid>div:nth-child(2n) {
    border-right: none;
}

#allocationSummaryAccordion .alloc-card .allocation-header-grid>div:nth-last-child(-n+2):nth-child(odd),
#allocationSummaryAccordion .alloc-card .allocation-header-grid>div:last-child {
    border-bottom: none;
}

#allocationSummaryAccordion .alloc-card .allocation-header-grid label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #1c2033;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    cursor: default;
}

#allocationSummaryAccordion .alloc-card .allocation-header-grid h6 {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: #1c2033;
    line-height: 1.4;
}

/* --- allocation-header-title (bank select row) --- */

#allocationSummaryAccordion .allocation-header-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#allocationSummaryAccordion .allocation-header-title label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #9199ad;
    margin-bottom: 4px;
}

#allocationSummaryAccordion .allocation-header-title select {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #dde1ea;
    border-radius: 6px;
    background: #ffffff;
    color: #1c2033;
    min-width: 180px;
}

/* Modal width + spacing */
#DealSlipSettlementModal .custom-modal {
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
}

/* Section header (green strip) */
.innderDivBox {
    background: #e6f4ef;
    color: #2c7a7b;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 10px;
}

/* Row layout */
#DealSlipSettlementModal .modalBox.d-flex {
    gap: 20px;
}

/* Input groups */
.masterSelect2 {
    width: 100%;
}

/* Half width columns */
.SettlementModalSelect2,
.SettlementModalSelect3 {
    width: 50%;
}

/* Labels */
#DealSlipSettlementModal label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
    color: #333;
}

/* Inputs */
#DealSlipSettlementModal input[type="text"],
#DealSlipSettlementModal input[type="datetime-local"] {
    width: 100%;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    font-size: 13px;
}

/* Disabled state (important for your JS logic) */
#DealSlipSettlementModal input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Checkbox row */
#DealSlipSettlementModal .modalBox.pb-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*    gap: 15px;*/
}

/* Checkbox spacing */
#DealSlipSettlementModal input[type="checkbox"] {
    margin-right: 6px;
}

/* Revoke input full width */
#DealSlipSettlementModal .modalBox.pb-2 .masterSelect2 {
    width: 100%;
}

/* Footer buttons */
#DealSlipSettlementModal .modal-footer {
    border-top: 1px solid #eee;
}

/* Buttons polish */
.greenBtn,
.greenBtn-Outline {
    min-width: 120px;
    height: 32px;
    border-radius: 6px;
    /* font-size: 14px; */
    font-size: 12px;
}

@media print {
    @page {
        size: A4;
        margin: 10mm;
    }

    /* Hide everything */
    body * {
        visibility: hidden;
    }

    /* Show only printable area */
    #printableArea,
    #printableArea * {
        visibility: visible;
    }

    #printableArea {
        position: static !important;
        left: 0;
        top: 0;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: white;
        box-sizing: border-box;
        overflow: visible !important;
        color: #111827 !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-weight: 400 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Remove UI junk */
    .tableWrapperHeading,
    .greenBtn,
    .greenBtn-Outline,
    .custom-modal-overlay {
        display: none !important;
    }

    .mainTablePageBody {
        padding: 0 !important;
        margin: 0 !important;
        background: white !important;
    }

    .pageHeadingTxt,
    .pageSubHeadingTxt {
        display: none !important;
    }

    .deal-slip-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        margin: 0 0 8px !important;
        padding: 0 0 8px !important;
        border-bottom: 1px solid #bbb !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .deal-slip-brand img {
        width: 50px !important;
        max-height: 32px !important;
        object-fit: contain !important;
    }

    .deal-slip-title {
        text-align: center !important;
    }

    .deal-slip-brand h2 {
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
        text-align: center !important;
    }

    .deal-slip-brand h6 {
        margin: 2px 0 0 !important;
        font-size: 10px !important;
        line-height: 1.25 !important;
        font-weight: 500 !important;
        text-align: center !important;
    }

    .deal-slip-brand p {
        margin: 2px 0 0 !important;
        font-size: 10px !important;
        font-weight: 400 !important;
        text-align: center !important;
    }

    /* Clean layout */
    .ViewCloseDealPage .orderDetails {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        margin-top: 8px !important;
    }

    .ViewCloseDealPage .orderDetails .flex-1 {
        width: calc(100% - 220px) !important;
        min-width: 0 !important;
    }

    .ViewCloseDealPage .OrderSummaryCard {
        width: 210px !important;
        border: 1px solid #ccc;
        padding: 8px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: #f4fbfa !important;
    }

    /* Table styling */
    #printableArea table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    #printableArea th,
    #printableArea td {
        border: 1px solid #ccc;
        padding: 4px 5px !important;
        font-size: 10px !important;
        font-weight: 400 !important;
        line-height: 1.35 !important;
        text-align: left;
        vertical-align: top;
        word-break: break-word;
    }

    #printableArea th {
        font-weight: 500 !important;
    }

    /* Typography */
    #printableArea h3,
    #printableArea h4 {
        margin: 0 0 5px !important;
        font-weight: 600 !important;
    }

    #printableArea p {
        margin: 0;
        font-size: 10px !important;
        font-weight: 400 !important;
        line-height: 1.35 !important;
    }

    #printableArea h5,
    #printableArea h6 {
        margin: 0;
        font-size: 10px !important;
        font-weight: 500 !important;
        line-height: 1.35 !important;
        white-space: normal !important;
    }

    #printableArea strong {
        font-weight: 600 !important;
    }

    /* Prevent breaking sections */
    .orderDetailsTable,
    .OrderSummaryCard {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .ViewCloseDealPage .header .details {
        max-width: none !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .ViewCloseDealPage .header .details>div {
        flex: 0 0 33.333% !important;
        margin-bottom: 6px !important;
        padding-right: 8px !important;
    }

    .ViewCloseDealPage .header .details>div p {
        width: 95px !important;
        font-size: 9px !important;
        font-weight: 400 !important;
    }

    .ViewCloseDealPage .header .details>div h6 {
        padding-right: 0 !important;
        font-size: 10px !important;
        font-weight: 500 !important;
    }

    .ViewCloseDealPage .topTable th,
    .ViewCloseDealPage .topTable tr td {
        height: auto !important;
        padding-left: 5px !important;
    }

    .ViewCloseDealPage .orderDetailsTable>div {
        height: auto !important;
        min-height: 26px !important;
        padding: 5px 8px !important;
    }

    .ViewCloseDealPage .orderDetailsTable>section>div {
        height: auto !important;
        min-height: 26px !important;
        padding-left: 8px !important;
        flex: 0 0 50% !important;
        align-items: flex-start !important;
    }

    .ViewCloseDealPage .orderDetailsTable>section>div p {
        width: 110px !important;
    }

    .ViewCloseDealPage .OrderSummaryCard h3 {
        font-size: 12px !important;
        font-weight: 600 !important;
        padding: 0 0 6px !important;
    }

    .ViewCloseDealPage .OrderSummaryCard>div {
        padding-bottom: 6px !important;
    }

    .dealTicketPage .ticketHeaderTable {
        width: 100% !important;
        table-layout: fixed !important;
        margin-bottom: 6px !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .dealTicketPage .ticketHeaderTable td {
        padding: 3px 5px !important;
        height: auto !important;
    }

    .dealTicketPage .ticketHeaderTable .label,
    .dealTicketPage .ticketHeaderTable .value {
        font-size: 9px !important;
    }

    .dealTicketPage .ticketHeaderTable .label {
        font-weight: 400 !important;
        color: #374151 !important;
    }

    .dealTicketPage .ticketHeaderTable .value {
        font-weight: 500 !important;
        color: #111827 !important;
    }

    .dealTicketPage .topTable {
        margin-bottom: 6px !important;
        overflow: visible !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .dealTicketPage .topTable th,
    .dealTicketPage .topTable tr td {
        height: auto !important;
        padding-left: 5px !important;
        white-space: normal !important;
    }

    .dealTicketPage .settlementSummary {
        margin: 6px 0 0 !important;
        overflow: visible !important;
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .dealTicketPage .settlementSummary .summaryTitle {
        padding: 4px !important;
        font-size: 10px !important;
        font-weight: 600 !important;
    }

    .dealTicketPage .settlementSummary table td {
        padding: 3px 5px !important;
        font-size: 9px !important;
        font-weight: 400 !important;
        white-space: normal !important;
    }

    .dealTicketPage .settlementSummary .sLabel {
        font-weight: 500 !important;
    }

    .ViewCloseDealPage #printableArea::before,
    .dealTicketPage #printableArea::before {
        content: none !important;
    }

    #printableArea::before {
        content: "GOFX - FX Sale Deal Sheet";
        font-size: 16px;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }

    #printableArea::after {
        content: "Generated on: " attr(data-date);
        font-size: 10px;
        display: block;
        margin-top: 20px;
        text-align: right;
    }
}




/* ── SimpleSelect2 ── */
.ss2-wrap {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.ss2-wrap select {
    width: 180px !important;
    height: 36px !important;
    border-radius: 8px !important;
    border: 1px solid #e8edf5 !important;
    background: #f4f6fa !important;
    font-size: 13px !important;
    color: #1a2535 !important;
    padding: 0 10px !important;
}

.ss2-wrap .select2-container {
    width: 180px !important;
    height: 36px !important;
}

.ss2-wrap .select2-container--default .select2-selection--single {
    height: 36px !important;
    max-height: 36px !important;
    min-height: 36px !important;
    border-radius: 8px !important;
    border: 1px solid #e8edf5 !important;
    background: #f4f6fa !important;
    padding: 0 10px !important;
    display: flex !important;
    align-items: center !important;
}

.ss2-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 13px !important;
    color: #1a2535 !important;
    line-height: normal !important;
    padding: 0 !important;
}

.ss2-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
}

.ss2-wrap .select2-container--default.select2-container--open .select2-selection--single,
.ss2-wrap .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #1D9E75 !important;
    box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1) !important;
    background: #fff !important;
}

/* dropdown panel */
.ss2-dropdown {
    border-radius: 8px !important;
    border: 1px solid #e8edf5 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    font-size: 13px !important;
    overflow: hidden !important;
}

.ss2-dropdown .select2-results__option {
    padding: 8px 12px !important;
    color: #1a2535 !important;
}

.ss2-dropdown .select2-results__option--highlighted {
    background: #e1f5ee !important;
    color: #0f6e56 !important;
}

/* optional btn */
.ss2-btn {
    height: 36px !important;
    padding: 0 16px !important;
    border-radius: 8px !important;
    border: none !important;
    background: linear-gradient(90deg, #4a7bd4 0%, #14996f 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    transition: opacity 0.15s ease !important;
}

.ss2-btn:hover {
    opacity: 0.88 !important;
}


.w-100 {
    width: 100% !important;
}


.ss2-wrap .select2-container--default .select2-results>.select2-results__options {
    max-height: 150px !important;
    height: 150px !important;
}




/* ── Customer Types Grid Table (AuctionCustomerGridModal, AllocationCustomerGridModal) ── */
.acg-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 13px !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.acg-table thead tr {
    background: #d9d9d9 !important;
}

.acg-table thead th {
    padding: 10px 14px !important;
    font-weight: 500 !important;
    text-align: left !important;
    border-bottom: 1px solid #e8edf5 !important;
}

.acg-table thead th:first-child {
    width: 60px !important;
    text-align: center !important;
}

.acg-table tbody tr {
    border-bottom: 1px solid #e8edf5 !important;
}

.acg-table tbody tr:last-child td {
    border-bottom: none !important;
}

.acg-table tbody td {
    padding: 10px 14px !important;
    color: #1a2535 !important;
    vertical-align: middle !important;
}

.acg-table tbody td:first-child {
    text-align: center !important;
    color: #66758a !important;
}


/* ==============================================
   Bulk Settlement — Accordion Styles
   Scoped under #bulkSettlementSummaryAccordion
   ============================================== */

#bulkSettlementSummaryAccordion {
    border: 1px solid #dde1ea;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #ffffff;
}

#bulkSettlementSummaryAccordion .bs-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 5px;
    background: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease;
    border-bottom: 1px solid transparent;
    border-radius: 10px;
}

#bulkSettlementSummaryAccordion .bs-acc-header:hover {
    background: #f6f8fb;
}

#bulkSettlementSummaryAccordion .bs-acc-header.open {
    background: #f6f8fb;
    border-bottom-color: #dde1ea;
    border-radius: 10px 10px 0 0;
}

#bulkSettlementSummaryAccordion .bs-acc-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    color: #1c2033;
}

#bulkSettlementSummaryAccordion .bs-acc-badge {
    font-size: 11px;
    font-weight: 500;
    background: #e7f6ef;
    color: #257a4a;
    border-radius: 20px;
    padding: 2px 10px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

#bulkSettlementSummaryAccordion .bs-acc-chevron {
    color: #8a92a6;
    flex-shrink: 0;
    transition: transform 0.22s ease;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 8px;
}

#bulkSettlementSummaryAccordion .bs-acc-chevron.open {
    transform: rotate(225deg);
}

#bulkSettlementSummaryAccordion .bs-acc-body {
    display: none;
    padding: 0;
}

#bulkSettlementSummaryAccordion .bs-acc-body.open {
    display: block;
    padding: 10px;
}



#bulkSettlementDetailBody input:not(.bulk-settlement-select),
#bulkSettlementDetailBody select,
.bulk-settlement-batch-bar input,
.bulk-settlement-batch-bar select {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 13px;
    /*    padding: 6px 10px;
    height: 30px;*/
    height: 28px;
    padding: 0px 5px 2px;
}

.bulk-settlement-batch-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
    padding: 8px;
    border-top: 1px solid #eceef4;
    border-bottom: 1px solid #eceef4;
    background: #f8fafc;
}

.bulk-settlement-batch-bar>div {
    min-width: 190px;
}

.bulk-settlement-batch-bar .bulk-settlement-batch-counter {
    min-width: 82px;
}

.bulk-settlement-batch-bar .bulk-settlement-batch-counter strong {
    display: block;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    color: #111827;
}

.bulk-settlement-batch-bar label {
    display: block;
    margin-bottom: 3px;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
}

.bulk-settlement-check-col {
    width: 42px;
    min-width: 42px;
    text-align: center;
}

#bulkSettlementDetailBody .bulk-settlement-select,
#bulkSettlementSelectAll {
    width: 16px;
    height: 16px;
    margin: 0;
}

#bulkSettlementDetailBody .bulk-settlement-locked-row {
    background: #f3f4f6;
}

#bulkSettlementDetailBody .bulk-settlement-locked-row input,
#bulkSettlementDetailBody .bulk-settlement-locked-row select {
    color: #667085;
    background: #eef0f4;
    cursor: not-allowed;
}

.common-settlement-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.common-settlement-modal-grid h4 {
    color: #757575;
}

.common-settlement-modal-grid input,
select {
    width: 100%;
    height: 34px;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    padding: 4px 8px;
}

@media (max-width: 767px) {
    .common-settlement-modal-grid {
        grid-template-columns: 1fr;
    }
}

.flex-0 {
    flex: none !important;
}

.w-full {
    width: 100% !important;
}



.table-header-bordered {
    border-collapse: collapse;
}

.table-header-bordered th {
    border: 1px solid #a9a9a9 !important;
    background-color: #d9d9d9 !important;
}

.AuctionAuditTrailReportPage .audit-report-toolbar {
    display: flex;
    align-items: end;
    gap: 12px;
    flex-wrap: wrap;
}

.AuctionAuditTrailReportPage .audit-search-field {
    min-width: 260px;
}

.AuctionAuditTrailReportPage .audit-search-field input,
.AuctionAuditTrailReportPage .audit-search-field select {
    width: 100%;
    min-height: 34px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
}

.AuctionAuditTrailReportPage .audit-search-field input {
    width: 100%;
    min-height: 34px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
}

.AuctionAuditTrailReportPage .audit-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.AuctionAuditTrailReportPage .audit-summary-grid>div {
    border: 1px solid #dde1ea;
    background: #f8fafc;
    border-radius: 6px;
    padding: 9px 10px;
    min-height: 58px;
}

.AuctionAuditTrailReportPage .audit-summary-grid label {
    display: block;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}

.AuctionAuditTrailReportPage .audit-summary-grid h6 {
    margin: 0;
    color: #101828;
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
}

.AuctionAuditTrailReportPage .audit-report-table-wrap {
    overflow-x: auto;
}

.AuctionAuditTrailReportPage .audit-report-table-wrap table {
    min-width: 1320px;
}

.AuctionAuditTrailReportPage .audit-report-table-wrap th,
.AuctionAuditTrailReportPage .audit-report-table-wrap td {
    font-size: 12px;
    line-height: 1.3;
    vertical-align: top;
}

.AuctionAuditTrailReportPage .audit-details-cell {
    min-width: 260px;
    max-width: 420px;
}

@media (max-width: 900px) {
    .AuctionAuditTrailReportPage .audit-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.customer-dashboard-sheet {
    display: block;
    background: #fff;
    color: #111827;
}

.customer-dashboard-sheet .cd-title-row {
    display: inline-block;
    min-width: 180px;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    margin-bottom: 10px;
}

.customer-dashboard-sheet .cd-title-row h1 {
    margin: 0;
    padding: 3px 6px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.customer-dashboard-sheet .cd-top-grid {
    display: grid;
    grid-template-columns: 260px 260px;
    gap: 26px;
    align-items: start;
    margin-bottom: 12px;
}

.customer-dashboard-sheet .cd-box-title,
.customer-dashboard-sheet .cd-section-title {
    display: inline-block;
    min-width: 120px;
    padding: 3px 6px;
    border: 1px solid #111;
    background: #f3f4f6;
    font-size: 11px;
    font-weight: 700;
}

.customer-dashboard-sheet .cd-info-table,
.customer-dashboard-sheet .cd-grid-table {
    border-collapse: collapse;
    width: 100%;
}

.customer-dashboard-sheet .cd-info-table {
    margin-top: 2px;
    table-layout: fixed;
}

.customer-dashboard-sheet .cd-info-table th,
.customer-dashboard-sheet .cd-info-table td,
.customer-dashboard-sheet .cd-grid-table th,
.customer-dashboard-sheet .cd-grid-table td {
    border: 1px solid #111;
    padding: 4px 6px;
    font-size: 11px;
    line-height: 1.25;
    vertical-align: middle;
}

.customer-dashboard-sheet .cd-info-table th {
    width: 62%;
    text-align: left;
    font-weight: 600;
    background: #f9fafb;
}

.customer-dashboard-sheet .cd-info-table td {
    text-align: right;
    font-weight: 500;
}

.customer-dashboard-sheet .cd-chart-grid {
    display: grid;
    grid-template-columns: 300px 360px;
    gap: 28px;
    align-items: start;
    margin: 10px 0 14px;
}

.customer-dashboard-sheet .cd-chart-panel {
    border: 1px solid #d1d5db;
    padding: 6px;
    background: #fff;
}

.customer-dashboard-sheet .cd-chart-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}

.customer-dashboard-sheet .cd-chart-box {
    position: relative;
    height: 210px;
}

.customer-dashboard-sheet .cd-table-wrap {
    max-width: 980px;
    overflow-x: auto;
    margin: 2px 0 12px;
}

.customer-dashboard-sheet .cd-grid-table {
    min-width: 900px;
    table-layout: fixed;
}

.customer-dashboard-sheet .cd-grid-table th {
    background: #e5e7eb;
    text-align: center;
    font-weight: 700;
    white-space: normal;
}

.customer-dashboard-sheet .cd-grid-table td {
    height: 24px;
    white-space: nowrap;
}

.customer-dashboard-sheet .cd-empty-cell {
    text-align: center;
    color: #6b7280;
}

@media (max-width: 900px) {

    .customer-dashboard-sheet .cd-top-grid,
    .customer-dashboard-sheet .cd-chart-grid {
        grid-template-columns: 1fr;
    }
}







.dealTicketPage .headerDetails {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border: 1px solid #f2f2f2;
    background: white;
}

.dealTicketPage .headerDetails>div {
    padding: 4px 10px;
    border: 1px solid #f2f2f2;
}

.dealTicketPage .headerDetails .label {
    font-size: 12px;
    color: #121212;
}

.dealTicketPage .headerDetails .value {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.dealTicketPage .topTable table {
    border-collapse: collapse;
}

.dealTicketPage .topTable thead {
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
}

.dealTicketPage .topTable th {
    height: 35px;
    padding-left: 10px;
    color: white;
    width: 25%;
    font-weight: 400;
}

.dealTicketPage .topTable th:first-child {
    border-radius: 4px 0 0 4px;
}

.dealTicketPage .topTable th:last-child {
    border-radius: 0 4px 4px 0;
}

.dealTicketPage .topTable tr td {
    height: 38px;
    background-color: #d5dee9;
    padding-left: 10px;
}

/* Settlement Summary Styles */
.dealTicketPage .settlementSummary {
    border: 1px solid #ccc;
    margin-top: 10px;
}

.dealTicketPage .settlementSummary .summaryTitle {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 6px;
    border-bottom: 1px solid #ccc;
    background: linear-gradient(90.64deg, #4a7bd5 1.88%, #14996f 101.69%);
    color: white;
}

.dealTicketPage .settlementSummary table {
    width: 100%;
    border-collapse: collapse;
}

.dealTicketPage .settlementSummary table td {
    padding: 5px 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.dealTicketPage .settlementSummary .sLabel {
    font-weight: 500;
    color: #333;
    background: #f9f9f9;
    width: 20%;
}

.dealTicketPage .settlementSummary .sValue {
    color: #121212;
    width: 30%;
}

.dealTicketPage .settlementSummary .totalRow td {
    font-weight: 700;
}

.dealTicketPage .settlementSummary .remarkRow td {
    height: 30px;
}

/* ===================== */
/* RESPONSIVE - MOBILE   */
/* ===================== */
@media (max-width: 767px) {

    /* Header Details: 4-col → 2-col on mobile */
    .dealTicketPage .headerDetails {
        grid-template-columns: 1fr 1fr;
    }

    /* Top Tables: allow horizontal scroll */
    .dealTicketPage .topTable {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dealTicketPage .topTable table {
        min-width: 480px;
    }

    .dealTicketPage .topTable th,
    .dealTicketPage .topTable tr td {
        white-space: nowrap;
        font-size: 12px;
        padding-left: 8px;
    }

    /* Settlement Summary: allow horizontal scroll */
    .dealTicketPage .settlementSummary {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dealTicketPage .settlementSummary table {
        min-width: 480px;
    }

    .dealTicketPage .settlementSummary table td {
        font-size: 12px;
        padding: 4px 8px;
        white-space: nowrap;
    }

    /* Print button full-width on mobile */
    .dealTicketPage #btnPrintDealSlip {
        width: 100%;
    }
}

.highlightedRow {
    background-color: #d0ebd9 !important;
}

.deal-logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* ── Dashboard Skeleton Loading ─────────────────────────── */
@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite linear !important;
    border-radius: 4px;
    display: block !important;
    color: transparent !important;
}

.skeleton-text {
    width: 80px;
    height: 1em;
    display: inline-block !important;
    vertical-align: middle;
}

.skeleton-activity {
    width: 100%;
    height: 56px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.skeleton-legend-line {
    width: 100%;
    height: 18px;
    margin-bottom: 10px;
    border-radius: 4px;
    list-style: none;
}

.skeleton-circle {
    width: 150px;
    height: 150px;
    border-radius: 50% !important;
}

.chart-skeleton-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.chart-box {
    position: relative;
}

.skeleton-td {
    height: 14px;
    border-radius: 3px;
    width: 80%;
}

/* ── UserDashboard Skeleton ─────────────────────────────── */
.userDashboardPage .ud-skeleton-value {
    min-width: 72px;
    min-height: 16px;
    border-radius: 4px;
    color: transparent !important;
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite linear !important;
    display: inline-block;
}

.userDashboardPage .ud-skeleton-line {
    display: block;
    width: 82%;
    height: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite linear !important;
}

.userDashboardPage .ud-skeleton-row td:nth-child(1) .ud-skeleton-line,
.userDashboardPage .ud-skeleton-row td:nth-child(2) .ud-skeleton-line {
    width: 62%;
}

.userDashboardPage .ud-skeleton-row td:nth-child(7) .ud-skeleton-line {
    width: 54%;
}

.userDashboardPage .ud-chart-loading .cd-chart-box {
    position: relative;
}

.userDashboardPage .ud-chart-loading .cd-chart-box::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%) !important;
    background-size: 200% 100% !important;
    animation: skeletonShimmer 1.5s infinite linear !important;
    z-index: 1;
}

/* ── GoldbodDashboard Skeleton ──────────────────────────── */
.gbd-skeleton-metric {
    flex: 1 1 calc(50% - 5px);
    height: 60px;
    border-radius: 4px;
}

.gbd-skeleton-line {
    display: block;
    height: 14px;
    width: 80%;
    border-radius: 3px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite linear;
}

.goldbodDashboardPage .gbd-chart-loading .gbd-chart-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite linear;
    z-index: 1;
}


.required-label {
    color: red !important;
}



@media (max-width: 991px) {

    .goldbodDashboardPage .row,
    .goldbodDashboardPage .gbd-charts-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .goldbodDashboardPage .gbd-panel-left,
    .goldbodDashboardPage .gbd-panel-right {
        width: 100%;
    }

    .required-label {
        color: red !important;
    }

    .goldbodDashboardPage .gbd-chart-box {
        height: 180px;
    }
}


.tableHeading {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
}


.pt-2-imp {
    padding-top: 7px !important;
}


#premiumWrapper .percent-input {
    width: 100% !important;
}

#premiumWrapper .percent-input span{
    right: 32px !important;
}


.tooltipBtnIcon{
        width: 11px;
    height: 11px;
    flex: 0 0 14px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: help;
}

.tooltipBtnIcon img{
    width: 100%;
    height: auto;
}

.tooltipBtnIconParant{
    display: flex;
    align-items: center;
    gap: 4px;
}
.pt-2-imp{
    padding-top:7px !important;
}


.layoutCorporateLogo{
    height:23px;
    width:92px;
}

.password-expiry-badge {
    border: 1px solid #d8e2df;
    border-radius: 6px;
    color: #295046;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 8px;
    white-space: nowrap;
}

.password-expiry-badge.warning {
    border-color: #d9a441;
    color: #8a5a00;
}

.password-expiry-badge.danger {
    border-color: #c74646;
    color: #a32121;
}

.select2-hidden-accessible .cInp {
    border:none !important;
}



.tblHeading {
    font-size: 17px;
    font-weight: 500;
    color: #121212;
}


.disabled-btn-light-green {
    background-color: #14996f54;
}


.disabled-btn-light-red {
    background-color: #a03838a3 !important;
}


.filterWithOption .tableFilterBox{
    padding-left:0 !important;
}

.filterWithOption .tableFilterBox>div input{
    border: none !important;
}

.h-fit{
    min-height: fit-content !important;
    height: fit-content !important;
}

.align-items-end-imp{
    align-items: end !important;
}


.myCustomScrollBar {
    scrollbar-width: thin;
    scrollbar-color: #38a184 #f1f1f1;
}
.brakeword {
    word-break: break-all;
}