*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    outline: none;
}

:root {
    --white-color: #ffffff;
}

body {
    overflow: hidden;
}

.white {
    color: var(--white-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
section,
img,
div {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

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

dl,
dt,
dd {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.w-100 {
    width: 100% !important;
}

label,
.form-label {
    font-weight: 500;
    color: #344767;
    margin-bottom: 5px;
}

#sidenav-main.show .logo-icon .logo {
    max-width: 34px;
}

/* ====== Table Fixed and Scroll Start ========================================================== */
.table-scroll {
    height: 585px;
    overflow-y: auto;
    position: relative;
}

.diff-table-scroll {
    height: 655px !important;
}

.table-scroll-max {
    height: 608px;
}

.table-scroll-md-max {
    height: 600px;
}

.table-scroll-max1 {
    height: 655px;
}

.table-scroll.diff-table-scroll-1 {
    height: 500px;
}

.table-scroll.diff-table-scroll-3 {
    height: 687px;
}

.table-scroll.diff-table-scroll-2 {
    height: 475px;
}

.table-scroll.diff-table-scroll-md {
    height: 460px;
}

.table-scroll.diff-table-scroll-sm {
    height: 440px;
}

.table-scroll.diff-table-scroll-4 {
    height: 520px;
}

.table-scroll.diff-table-scroll-5 {
    height: 520px;
}

.table-scroll .dataTables_wrapper {
    position: relative;
    z-index: 99;
    background-color: var(--white-color);
}

/* ===== Table show pagination ================================================================= */

.table-scroll .dataTables_wrapper .dataTables_length {
    width: 40% !important;
}

.table-scroll .dataTables_length {
    position: sticky;
    top: 0px;
    background-color: var(--white-color);
    z-index: 9;
}

.table-scroll .table > thead {
    position: sticky;
    top: 37px;
    background-color: var(--white-color);
    z-index: 9;
}

table.dataTable .btn {
    font-size: 12px;
    margin-bottom: 0;
    padding: 0.275rem 0.55rem;
}

table.dataTable tbody td {
    padding: 10px 18px !important;
}

.card-header {
    border-radius: 0.5rem !important;
}

.table thead th {
    padding: 0.75rem 0.4rem !important;
}

.table td,
.table th {
    border-top: none !important;
}

.table tbody tr:last-child td {
    border-width: inherit !important;
}

.table tbody tr:last-child {
    border-bottom: 1px solid #f0f2f5 !important;
}

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting {
    border-top: 1px solid #aaa !important;
    border-bottom: 1px solid #aaa !important;
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 10px 18px !important;
}

/* ===== Table Fixed and Scroll End ==================================================================== */

.payment-status-icon img {
    width: 100%;
    max-width: 60px;
}

/* ===== Color Change Css Start =================================================================== */
.sign-in-form .input-group > .custom-file,
.sign-in-form .input-group > .custom-select,
.sign-in-form .input-group > .form-control,
.sign-in-form .input-group > .form-control-plaintext {
    width: 100% !important;
}

.navbar-vertical .navbar-nav .nav-link {
    font-weight: 400 !important;
    color: #344767 !important;
}

.input-group.input-group-outline.is-focused .form-label,
.input-group.input-group-outline.is-filled .form-label {
    color: #007bff !important;
}

.input-group.input-group-outline.is-focused .form-label:before,
.input-group.input-group-outline.is-focused .form-label:after,
.input-group.input-group-outline.is-filled .form-label:before,
.input-group.input-group-outline.is-filled .form-label:after {
    border-top-color: #007bff !important;
    box-shadow: inset 0 1px #007bff !important;
}

.input-group.input-group-outline.is-focused .form-label + .form-control,
.input-group.input-group-outline.is-filled .form-label + .form-control {
    border-color: #007bff !important;
    border-top-color: transparent !important;
    box-shadow: inset 1px 0 #007bff, inset -1px 0 #007bff, inset 0 -1px #007bff !important;
}

.input-group.input-group-outline.is-focused .is-focus {
    border-top-color: #007bff !important;
}

/* ===== Color Change Css End =================================================================================== */

/* ===== Load Icon ============================================================================= */
.load-icon {
    width: 100px;
    height: 20px;
    display: none;
}

.load-icon span {
    position: absolute;
    display: inline-block;
    background: rgb(23, 143, 255);
    width: 20%;
    height: 100%;
    border-radius: 100px;
}

.load-icon span:nth-of-type(1) {
    left: 0;
}

.load-icon span:nth-of-type(2) {
    left: 40%;
}

.load-icon span:nth-of-type(3) {
    right: 0;
}

/* ===== Load Icon End ================================================================ */

/* ===== Animation =================================================================== */
.load-icon span {
    animation-name: loading;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.load-icon span:nth-of-type(2) {
    animation-delay: 0.2s;
}

.load-icon span:nth-of-type(3) {
    animation-delay: 0.4s;
}

/* === Keyframes ========================== */
@keyframes loading {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.center {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* ===== Sidebar Menu Css Start ================================================================== */
.navbar-vertical.navbar-expand-xs .navbar-nav .nav-link {
    margin: 0 0.625rem !important;
    position: relative;
}

.navbar-vertical.navbar-expand-xs .navbar-nav .nav-link .sub-menu-icon {
    position: absolute;
    right: 8px;
    top: 25%;
}

.navbar-vertical.navbar-expand-xs .navbar-nav .nav-link .sub-menu-icon svg {
    fill: #344767;
}

/* ===== Sidebar Menu Css End ==================================================================== */

/* ===== Disable Start ============================================================================ */
.input-group.input-group-outline .form-control[disabled] {
    background-color: #f7f7f7 !important;
}

/* ===== Switch Start ============================================================================= */
.switch {
    padding-left: 10px;
}

.switch input[type="checkbox"] {
    position: relative;
    width: 36px;
    height: 18px;
    -webkit-appearance: none;
    appearance: none;
    background: #dc3545;
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    /* box-shadow: inset 0 0 5px rgb(0 0 0 / 50%); */
}

.switch input[type="checkbox"]::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white-color);
    top: 1px;
    left: 2px;
    transition: 0.5s;
}

.switch input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: var(--white-color);
}

.switch input[type="checkbox"]:checked {
    background: #28a745;
}

/* ===== Switch End ===================================================================== */

.navbar-main {
    transition: none !important;
}

.blur {
    background-color: transparent !important;
}

.shadow-none {
    box-shadow: none !important;
}

.shadow-blur {
    box-shadow: none !important;
    background-color: transparent !important;
}

/* .navbar {
  box-shadow: none !important;
} */

/* #navbar {
  background-color: var(--white-color);
  padding: 8px 20px;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,.125);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
} */
#navbar {
    background-color: var(--white-color);
    padding: 8px 10px;
    border-radius: 0.5rem;
    border: 1px solid #9b9b9bb5 !important;
    /* box-shadow: 0 0 5px #2ba191; */
}

.badge {
    font-size: 70% !important;
    font-weight: 500 !important;
    padding: 0.45em 0.5em !important;
    min-width: 88px !important;
}

.text-red {
    color: #dc3545;
    font-weight: bold;
}

/* ===== Image modal start =========================================================== */
#imageModal .modal-dialog {
    max-width: 340px !important;
}

#imageModal .modal-header {
    padding: 10px 10px;
}

#imageModal .modal-body {
    padding: 10px;
}

#imageModal .modal-content .modal-image-box img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: contain;
}

/* ===== Image modal end ================================================================== */

td.fixed-colum {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== marchant start =================================================================== */
.marchant-data .form-label {
    font-size: 15px;
    font-weight: 700;
    color: #344767;
}

/*.marchant-data .code-visible-box {
  position: absolute;
  right: 22px;
  top: 9px;
} */

/* .marchant-data .input-group .form-control {
  padding: 0.625rem 36px 0.75rem 0.75rem !important;
}

/* ===== marchant end ================================================================= */

body.qr-card-main {
    overflow: visible;
}

.card.qr_card {
    margin: 20px 0;
}

h2.title {
    text-align: center;
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 40px;
    text-transform: capitalize;
}

.qr_card {
    width: 100%;
    display: inline-block;
    padding: 0 0 0 0;
}

.qr_card .card-body {
    padding: 0 !important;
}

.qr_card .orderid {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px 0 40px 0;
    display: inline-block;
    font-size: 18px;
    color: var(--white-color);
    background: linear-gradient(to right, #ff902f 0%, #fc6075 100%) !important;
    border-radius: 0.75rem 0.75rem 0 0;
}

.timeout {
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 18px;
}

.amount p {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 4px 0;
    color: #344767;
}

.text_amount {
    font-weight: 600;
    font-size: 18px;
    color: #344767;
}

.titmer_text {
    font-weight: 600;
    font-size: 18px;
    color: #344767;
}

.qrcode {
    text-align: center;
    border-top: 1px dashed;
    border-color: #9b9b9bb5;
    margin: 0 0 16px 0;
}

.qr-btm-text-box {
    text-align: center;
}

.qr-btm-text-top {
    border-bottom: 1px dashed;
}

.qr-btm-text-btm p {
    margin-bottom: 12px;
}

.qr-btm-text-btm {
    padding: 10px 0 30px;
}

.qrcode p {
    font-size: 18px;
    font-weight: 700 !important;
    padding: 10px 0 10px 0;
    color: #344767;
    margin-bottom: 0;
}

.qr_copy {
    margin: 0 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #cacacbb5;
}

.qr_copy #textToCopy {
    padding: 5px 0 5px 20px;
    color: #344767;
    font-weight: 500;
}

.timeout_second {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.transaction-right-bx .titmer_text {
    display: flex;
    align-items: center;
    column-gap: 4px;
    line-height: 26px;
}

.transaction-right-bx .titmer_text p {
    margin-bottom: 0;
}

.generate_payment h5 {
    font-weight: 500;
    margin-bottom: 20px;
}

.generate_payment h5 span {
    font-weight: 600;
}

.qr-btm-text-top .utr-copy-box {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qr-btm-text-top .copy-text-icon img {
    max-width: 16px;
}

.qr-btm-text-top .utr-copy-box span {
    color: #4caf50;
}

.qr-btm-text-btm p a {
    font-weight: 700;
    color: #344767;
    text-decoration: underline;
}

.important-note-box-main .title-box {
    text-align: left;
    margin-bottom: 10px;
}

.secure-payment-box .title-box {
    text-align: center;
    margin-bottom: 16px;
}

.secure-payment-box .title-box p {
    font-size: 11px !important;
    font-weight: 700;
    color: #344767;
}

.important-note-box-main .title-box p {
    font-size: 18px;
    font-weight: 700;
    color: #344767;
}

.payment-option-box {
    border: 1px dashed #344767;
    padding: 10px 10px 0 10px;
    border-radius: 8px;
}

.payment-option-box ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-direction: column;
    row-gap: 10px;
}

.payment-option-box ul li {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    font-size: 15px;
}

.payment-option-box ul li:not(:last-child) {
    border-bottom: 1px dashed #344767;
}

.payment-option-box ul li a {
    color: #344767;
    padding: 0 0 8px 0;
}

.payment-option-box ul li a img {
    width: 100%;
    max-width: 35px;
    margin-right: 10px;
}

.important-note-box {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.important-note-box .content-box p {
    margin-bottom: 0;
}

.important-note-box .icon-box {
    background-color: #eaeaed;
    padding: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.important-note-box .icon-box.business-icon {
    width: 58px;
}

.important-note-box .icon-box img {
    max-width: 22px;
}

.secure-payment-box ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.secure-payment-box ul li {
    font-size: 11px;
}

.secure-payment-box ul li img {
    width: 100%;
    max-width: 55px;
}

.qr_card p {
    line-height: 1.2 !important;
}

.qr_copy button {
    background: linear-gradient(to right, #ff902f 0%, #fc6075 100%) !important;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    padding: 10px 30px;
    border: 0;
}

.transation_details {
    padding: 10px 17px;
}

.cancel-payment-box ul {
    align-items: center;
    display: flex;
    margin-top: 26px;
    justify-content: center;
    padding-left: 0;
}

.cancel-pay-btn {
    font-size: 13px;
    color: red;
    padding: 8px 14px;
    background: #eaeaed;
    border-radius: 8px;
}

.information {
    width: 100%;
    display: inline-block;
    padding: 100px 0 0 0;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    color: #344767;
}

.information h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    color: #344767;
}

.information p {
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    color: #344767;
}

.loader {
    font-size: 5px;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #34476780;
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 0px;
}

.redirct_btn {
    padding: 8px 36px;
    background-color: transparent !important;
    border: 0;
    border-radius: 5px;
    color: #1a73e8 !important;
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px !important;
}

.loader:before {
    width: 50%;
    height: 50%;
    background: #344767c7;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
}

.payment_div {
    position: relative;
}

.loader:after {
    background: #fff;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

img {
    max-width: 100%;
}

.card.transparent {
    background: transparent;
    border: none;
    box-shadow: none;
}

.sign-in-form {
    /* box-shadow: 0 0 10px #2ba19166; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* .card {
	font-family: "Roboto";
	box-shadow: 0 0 5px #2ba191 !important;
	border: none !important;
} */
.card p {
    font-weight: 400;
}

.navbar-vertical .navbar-nav .nav-link .nav-icon {
    max-width: 20px;
}

.navbar-vertical .navbar-nav .nav-link .nav-icon.white {
    display: none;
}

.navbar-vertical .navbar-nav .nav-link.active .nav-icon.black {
    display: none;
}

.navbar-vertical .navbar-nav .nav-link.active .nav-icon.white {
    display: block;
}

.sidenav .nav-link-text {
    margin-left: 10px !important;
}

.sidenav-header .toggle-menu {
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 16px;
    color: var(--white-color);
    background: linear-gradient(to right, #367df2 0%, #0743a7 100%) !important;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#sidenav-main.show {
    max-width: 90px !important;
}

#sidenav-main main .main-content {
    margin-left: 110px !important;
}

#sidenav-main.show .sidenav-header .toggle-menu {
    right: 3px;
    font-size: 12px;
    width: 25px;
    height: 25px;
}

#sidenav-main .navbar-brand.show span.font-weight-bolder.nav-link-text {
    display: none;
}

#sidenav-main .navbar-collapse.show .nav-item .nav-link-text {
    display: none;
}

/**/
/* #sidenav-main {
	display: none;
} */
/* #sidenav-main .dNone {
	display: none;
} */

#sidenav-main:hover .dNone {
    display: inline-block;
}

#sidenav-main:hover .dBlock {
    display: none;
}

#sidenav-main {
    max-width: 250px !important;
}

/* #sidenav-main:hover, #sidenav-main.show {
 #sidenav-main.show,
    #sidenav-main {
  max-width: 250px !important;
   max-width: 280px !important;
}*/
/* #sidenav-main:hover .nav-icon, #sidenav-main.show .nav-icon {
	margin: unset;
} */

#sidenav-main .logo-icon .logo {
    max-width: 130px;
    width: 100%;
    max-height: unset;
}

table,
.dataTables_info,
.dataTables_paginate {
    font-size: 14px;
}

.form-control,
.input-group.input-group-outline .form-control {
    font-size: 14px !important;
    height: auto !important;
    padding: 10px 15px !important;
    line-height: unset !important;
    border: 1px solid #9b9b9bb5 !important;
}

.real-time-main .date-filter {
    position: relative;
}

.real-time-main .insetCalender {
    position: absolute;
    right: 30px;
    top: 14px;
    font-size: 14px;
}

input.set-date.date-filter.transaction-date-range {
    position: relative;
}

.transaction-date-range-insetCalender {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 14px;
}

/* .datepicker {
    top: 112px;
    left: 140px;
    display: block;
    z-index: 999 !important;
    /* This is commented out
} */

/* .bg-gradient-info {
  background-color: #2ba191 !important;
}
.shadow-dark {
    box-shadow: 0 0 5px #2ba191;
} */

/******************** New Css Start **************************************************************************************/

.bg-gradient-info {
    background: linear-gradient(to right, #367df2 0%, #0743a7 100%) !important;
}

.btn-primary {
    background: linear-gradient(to top, #4481eb 0%, #04befe 100%);
    box-shadow: none;
}

.btn-primary:hover,
.btn.bg-gradient-primary:hover,
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: none;
}

.bg-gradient-danger {
    background: linear-gradient(
        195deg,
        rgba(231, 95, 93, 1) 0%,
        rgb(219 52 49) 100%
    );
}

.btn-danger {
    background: linear-gradient(
        to top,
        rgba(231, 95, 93, 1) 0%,
        rgb(219 52 49) 100%
    );
}

.btn-success {
    background: linear-gradient(195deg, #66bb6a 0%, #43a047 100%);
    box-shadow: none;
}

.btn-success:hover {
    background: linear-gradient(195deg, #66bb6a 0%, #43a047 100%);
    border-color: transparent;
    box-shadow: none;
}

.btn-success:focus {
    box-shadow: none;
}

.btn-danger:hover {
    border-color: transparent !important;
    box-shadow: none !important;
}

.btn-danger,
.btn.bg-gradient-danger {
    box-shadow: none;
}

.bx-shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

hr {
    border-top: 1px solid #1c1c1ccf !important;
}

.bg-gray-200 {
    /* background-color: #f3f3f9 !important; */
    background: linear-gradient(45deg, #96c4f554, #dceaf9);
}

.form-check {
    padding-left: 2.375rem;
}

.a-diff-btn {
    padding: 7px 9px !important;
}

.card-header h6 {
    font-size: 18px;
    padding: 3px 0;
}

.btn.bg-gradient-info {
    box-shadow: none !important;
}

/* table.dataTable thead .sorting_asc {
  background-image: none !important;
} */
.btn.bg-gradient-info:hover {
    box-shadow: none;
}

.btn.bg-gradient-info {
    box-shadow: none;
}

.icon-lg {
    max-width: 45px;
    width: 100%;
    height: 45px;
}

.icon-lg i {
    top: 25%;
}

.navbar-vertical.navbar-expand-xs .navbar-collapse {
    height: calc(100vh - 145px);
}

.form-control[readonly] {
    background-color: var(--white-color);
    border-radius: 8px;
}

.navbar-vertical.navbar-expand-xs {
    border: 1px solid #9b9b9bb5 !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* background: linear-gradient(45deg, #5eacff54, #7ebaff); */
}

.card {
    font-family: "Roboto";
    box-shadow: none;
    border: 1px solid #9b9b9bb5 !important;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.real-time-tra-date-time-bx {
    margin: 0 auto;
    max-width: 250px;
}

.date-time-box {
    padding: 10px 2px;
    box-shadow: none;
}

.date-time-box h6 {
    font-size: 13px;
}

a.btn-delete i {
    color: var(--white-color);
}

/* User header */
.user-active-bx-main {
    padding: 8px 14px;
    border-radius: 0.5rem;
    border: 1px solid #9b9b9bb5 !important;
    background-color: var(--white-color);
}

.user-active-bx {
    display: flex;
    align-items: center;
}

.user-active-bx .name {
    color: #344767;
    margin-right: 10px;
}

/* Sub menu */
.navbar-vertical.navbar-expand-xs .navbar-nav > .nav-item .sub-menu {
    display: none;
    margin: 4px 10px 0 10px;
    transition: 0.1s all;
}

.nav-link.subdrop + .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    /* Ensure sub-menus are hidden by default */
}

.navbar-vertical.navbar-expand-xs .navbar-nav > .nav-item .sub-menu .nav-link {
    font-size: 13px;
    margin: 0 0;
    padding-left: 34px;
    margin-bottom: 3px !important;
    width: 92% !important;
}

.navbar-vertical .navbar-nav > .nav-item .nav-link.active .sub-menu-icon svg {
    fill: var(--white-color);
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}

.total-amount-box {
    padding: 10px 8px;
    margin: 0 auto;
    max-width: 260px;
    border-radius: 10px;
    border: 1px solid #9b9b9bb5 !important;
    background: linear-gradient(45deg, #96c4f554, #dceaf9);
}

.total-amount-box h6 {
    font-weight: 500;
}

.navbar-vertical .nav-item:hover .sub-menu .nav-link {
    background-color: transparent;
}

.breadcrumb {
    margin-bottom: 0;
    background-color: var(--white-color);
    border-radius: 0.5rem;
    border: 1px solid #9b9b9bb5 !important;
    padding: 9px 16px;
}

.breadcrumb .breadcrumb-item a {
    font-size: 14px;
    font-weight: 700;
    color: #344767;
}

.breadcrumb .breadcrumb-item a:hover {
    text-decoration: none;
}

.breadcrumb-item.active a {
    font-size: 14px;
    font-weight: 500;
    color: #344767;
}

.admin-type {
    color: #344767;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #344767;
}

.navbar .nav-link i {
    color: #344767;
}

.navbar-vertical .nav-item:hover ul.sub-menu li {
    width: 100% !important;
}

.navbar-vertical ul.sub-menu li:hover .nav-link {
    width: 90% !important;
    background-color: rgba(199, 199, 199, 0.2) !important;
}

.navbar-vertical .nav-item ul.sub-menu .nav-link.active {
    color: #344767 !important;
    background-color: rgba(199, 199, 199, 0.2) !important;
    border-radius: 0.375rem !important;
    width: 100% !important;
}

#updateAppTable_wrapper table.dataTable .btn {
    margin: 0 4px;
}

/* Click main */
.sidenav.fixed-start + .main-content {
    margin-left: 280px !important;
}

.sidenav.fixed-start + .main-content.show {
    margin-left: 110px !important;
}

.dataTables_wrapper .dataTables_length label {
    margin-bottom: 0.5rem;
}

/* Table fixed width */
td.m-description {
    width: 500px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
}

td.m-description-1 {
    width: 400px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 8-10-24 css start */
table.dataTable {
    overflow-x: auto;
    width: 100% !important;
}

/* 8-10-24 css end */

/* sms_note_log_list */
td.sr-no {
    width: 60px !important;
}

th.sender-id,
td.sender-id {
    width: 80px !important;
}

td.action {
    width: 100px !important;
}

.alert {
    margin: 0 18px;
}

small.invalid-credentials {
    font-size: 14px;
    font-weight: 500;
}

.timeout .text-start {
    font-size: 16px;
    color: #344767;
    display: flex;
}

.order-id .text-start {
    font-size: 16px;
}

.timeout .text-start span {
    margin-right: 6px;
    font-weight: 500;
}

.transaction-right-bx .titmer_text span {
    font-weight: 500;
}

.navbar-vertical.navbar-expand-xs .navbar-nav > .nav-item {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}

.signin .card {
    margin-bottom: 0;
}

/**/
#MerchantPaymentAmountDetailTable_wrapper table {
    width: 100%;
}

#MerchantPaymentAmountDetailTable_wrapper table th,
#MerchantPaymentAmountDetailTable_wrapper table td {
    padding: 10px 18px !important;
}

#MerchantPaymentAmountDetailTable_wrapper table tr th,
#MerchantPaymentAmountDetailTable_wrapper table tr td {
    /* border-top: 1px solid #aaa !important; */
    border-bottom: 1px solid #aaa !important;
}

#reEnterUtr {
    cursor: pointer;
    color: #003eff;
    text-decoration: underline;
}

#transactionCancel {
    cursor: pointer;
    color: #ff0a0a;
}

.top-box span {
    /* font-size: 13px; */
    font-weight: bold;
    margin-right: 6px;
}

.box.box {
    text-align: left;
}

#transactionFilerForm {
    position: relative;
}

/* ================== Qr code Page ================================================= */

.rupess-box {
    font-size: 24px;
    color: #fff;
    padding: 20px 0 50px 0;
    text-align: center;
    border-radius: 0.75rem 0.75rem 0 0;
    background: linear-gradient(to right, #367df2 0%, #0743a7 100%) !important;
    width: 100%;
}

.rupess-box img {
    max-width: 16px;
}

.formdiv{
    margin-bottom: 0.7rem !important
}

 /* Hide the ugly default input */
.custom-file-upload input[type="file"] {
    display: none;
}

/* Style the label to look like a button */
.custom-file-upload {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-file-upload:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
}

/* Change text when a file is selected */
#fileLabel {
    font-size: 14px;
}

.timeout .text-start .copy-text-icon {
    margin-left: 5px;
}

.timeout .text-start .copy-text-icon img,
.transaction-right-bx .titmer_text img {
    max-width: 16px;
}

/* .card.qr_card {
    position: relative;
} */

.btm-part {
    background-color: var(--white-color);
    z-index: 11;
    position: relative;
    margin: 0 20px;
    border-radius: 14px 14px 0 0;
}

.btm-part .btm-part-inner {
    margin-top: -40px;
    background-color: var(--white-color);
    border-radius: 12px 12px 0 0;
}

.utr-box {
    position: relative;
}

.utr-box .form-control {
    padding: 8px 100px 8px 15px !important;
}

.utr-box .utr-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.button-box ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 6px;
    padding: 0;
    margin: 0;
}

/**/
.payment-options-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.payment-options-main .payment-box .button-box ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-options-main .payment-box .bg-gradient-info {
    font-size: 14px;
    font-weight: 400;
}

table.merchant-data-table {
    border: 1px solid #9b9b9bb5 !important;
    width: 100%;
    border-collapse: collapse;
}

table.merchant-data-table tr th,
table.merchant-data-table tr td {
    border: 1px solid #9b9b9bb5 !important;
    padding: 6px 6px;
}

table.merchant-data-table input {
    border: 0;
    background-color: transparent;
}

.date-filter-box label.form-label.mt-2 {
    min-width: 90px;
}

.table-scroll.transaction-list-table .dataTables_wrapper .dataTables_length {
    width: 40% !important;
}

.dataTables_wrapper .dataTables_filter {
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    width: 60%;
}

#authModal #authSecretKey {
    font-weight: 600 !important;
}

#authModal .authForm li {
    margin: 3px 0 !important;
}

#authModal .modal-content {
    border: 1px solid #9b9b9bb5 !important;
    border-radius: 8px;
}

#authModal .btn-close {
    opacity: 1;
}

#authModal .modal-body {
    padding: 10px 10px !important;
    position: relative;
}

#authModal #verification li {
    font-size: 15px;
}

#authModal .modal-header {
    align-items: center;
    padding: 10px 12px;
}

#authModal .modal-title {
    color: var(--white-color);
}

#authModal .verification-right img {
    width: 100%;
    max-width: 95%;
}

#authForm .form-control {
    padding: 6px 10px !important;
}

#authForm small.invalid-otp {
    margin-bottom: 20px;
    display: block;
}

/* === Date filter ======= */
.datepicker.datepicker-dropdown.dropdown-menu {
    z-index: 99999 !important;
}

.transation_details_inn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.transation_details_inn button#copyButton {
    border: 0;
    background: no-repeat;
}

button#copyButton img {
    width: 100%;
    max-width: 18px;
}

.cmn-cpy-txt-btn {
    border: 0;
    background: none;
}

.cmn-cpy-txt-btn .copy-text-icon img {
    max-width: 15px !important;
}

/* Marchant Setting Key */
.key-bx-main input#secret-key {
    max-width: 274px;
    width: 100%;
}

.iv-key-bx-main input#secret-iv {
    max-width: 140px;
    width: 100%;
}

/* ================== New Changes ================================================================ */
@media (max-width: 1399px) {
    .timeout {
        padding: 10px 10px;
    }

    .transation_details {
        padding: 10px 7px;
    }
}

@media (min-width: 1200px) {
    /* .sidenav.fixed-start + .main-content.show {
      margin-left: 280px !important;
  } */
    #sidenav-main main .main-content.show {
        margin-left: 110px !important;
    }
}

@media (max-width: 1299px) {
    /* .diff-table-scroll {
        height: 565px !important;
    } */
    .diff-table-scroll-2 {
        height: 350px !important;
    }

    .table-scroll {
        height: 470px;
    }

    .table-scroll.diff-table-scroll-3 {
        height: 565px;
    }

    .diff-table-scroll {
        height: 532px !important;
    }

    .diff-table-scroll-sm {
        height: 440px;
    }
}

@media (max-width: 1199.98px) {
    #sidenav-main {
        max-width: 280px !important;
    }

    #sidenav-main .dNone {
        display: block;
    }

    #sidenav-main .dBlock {
        display: none;
    }

    .sidenav-header .toggle-menu {
        display: none;
    }

    .navbar-vertical .navbar-nav .nav-link .nav-icon {
        margin: unset;
    }
}

@media (max-width: 1199px) {
    .table-scroll.diff-table-scroll-3 {
        height: 505px;
    }

    .diff-table-scroll {
        height: 472px !important;
    }

    .real-time-tra-date-time-bx {
        max-width: unset;
    }
}

@media (max-width: 991px) {
    .empty-label {
        display: none;
    }

    .signin .img-box {
        background-color: #e6f0ff;
    }

    .signin .img-box img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .signin .card-body {
        padding: 16px;
    }
}

@media screen and (max-width: 640px) {
    .table-scroll.transaction-list-table
        .dataTables_wrapper
        .dataTables_length {
        width: 100% !important;
    }

    .dataTables_wrapper .dataTables_filter {
        width: 100%;
    }

    .table-scroll .dataTables_wrapper .dataTables_length {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .balance-ledger-header .top-btn.text-end {
        text-align: center !important;
    }

    .pending-data-filter-main .pending-check-box.text-end {
        text-align: center !important;
    }

    #authModal .row {
        flex-direction: column-reverse;
    }

    #authModal .verification-right img {
        max-width: 45%;
    }
}

@media (max-width: 479px) {
    /* #sidenav-main .logo-icon .logo {
        max-width: 30px;
    } */

    .qr_card .orderid {
        font-size: 16px;
    }

    .signin .card-body {
        padding: 12px;
    }

    .signin h4 {
        font-size: 20px;
    }

    .payment-status-icon img {
        max-width: 45px;
    }

    table.merchant-data-table {
        width: 500px;
    }

    .transation_details {
        padding: 10px 2px;
    }

    .qr-btm-text-btm {
        padding: 10px 0 15px;
    }

    .navbar-vertical.navbar-expand-xs .navbar-nav .nav-link {
        margin: 0 0.425rem !important;
    }

    #authModal #verification li {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    #sidenav-main {
        max-width: 240px !important;
    }

    .navbar-vertical.navbar-expand-xs.fixed-start {
        left: -10px;
    }

    .qr_copy {
        margin: 0 10px 10px 10px;
    }

    .btm-part {
        margin: 0 14px;
    }

    .qrcode p {
        font-size: 16px !important;
    }

    .qr-card-main .qr_card p {
        font-size: 14px;
    }

    .qr-btm-text-btm p a {
        font-size: 14px !important;
    }

    .order-id .text-start {
        font-size: 15px;
    }

    .timeout .text-start {
        font-size: 15px;
    }

    .date-filter-box label.form-label.mt-2 {
        min-width: 80px;
    }
}

@media (max-width: 320px) {
    #sidenav-main {
        max-width: 210px !important;
    }

    #order-id {
        font-size: 14px;
    }

    .qrcode p {
        margin-bottom: 0;
    }

    p.notification-msg.text-center {
        line-height: 20px;
    }

    .qr_copy #textToCopy {
        padding: 5px 0 5px 10px;
        font-size: 14px;
    }

    .qr_copy button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .order-id .text-start {
        font-size: 14px;
    }

    .timeout {
        padding: 10px 6px;
    }

    .timeout .text-start {
        font-size: 14px;
    }

    .date-filter-box label.form-label.mt-2 {
        min-width: 78px;
    }

    .signin .img-box img {
        max-width: 60%;
    }

    #authModal #verification li {
        font-size: 13.5px;
    }
}

/* ===== page loader ==================================================================================== */
.list-loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/**/
.btn-disabled[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
