/*your custom css goes here*/

/* ============================================
   BLACK & WHITE THEME OVERRIDES
   Pure black (#000) and white (#fff) design
   ============================================ */

:root {
    --primary: #000000 !important;
    --hov-primary: #333333 !important;
    --soft-primary: rgba(0, 0, 0, 0.1) !important;
    --secondary: #666666 !important;
    --soft-secondary: rgba(102, 102, 102, 0.15) !important;
    --dark: #000000 !important;
    --light: #ffffff !important;
    --gray: #888888 !important;
    --gray-dark: #333333 !important;
    --brand-accent: #E86A1E;
    /* Orange accent for logo/highlights */
}

/* Main background and text */
body {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Sidebar / Navigation - Pure Black */
.aiz-sidebar {
    background-color: #000000 !important;
}

.aiz-sidebar .aiz-side-nav-list>li>a,
.aiz-sidebar .aiz-side-nav-list>li>a span {
    color: #ffffff !important;
}

.aiz-sidebar .aiz-side-nav-list>li>a:hover,
.aiz-sidebar .aiz-side-nav-list>li.mm-active>a {
    background-color: #222222 !important;
    color: #ffffff !important;
}

.aiz-sidebar .aiz-side-nav-list .aiz-side-nav-list a {
    color: #cccccc !important;
}

.aiz-sidebar .aiz-side-nav-list .aiz-side-nav-list a:hover,
.aiz-sidebar .aiz-side-nav-list .aiz-side-nav-list li.mm-active>a {
    color: #ffffff !important;
    background-color: #333333 !important;
}

/* Header - Pure White with black text */
.aiz-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #000000 !important;
}

.aiz-header a,
.aiz-header .nav-link {
    color: #000000 !important;
}

/* Cards - White with black borders */
.card {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
    box-shadow: none !important;
}

.card-header {
    background-color: #f8f8f8 !important;
    border-bottom: 1px solid #000000 !important;
    color: #000000 !important;
}

.card-footer {
    background-color: #f8f8f8 !important;
    border-top: 1px solid #000000 !important;
}

/* Buttons - Black primary */
.btn-primary {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-outline-primary {
    color: #000000 !important;
    border-color: #000000 !important;
}

.btn-outline-primary:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Secondary buttons */
.btn-secondary {
    background-color: #666666 !important;
    border-color: #666666 !important;
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #444444 !important;
    border-color: #444444 !important;
}

/* Tables - Clean black and white */
.table {
    color: #000000 !important;
}

.table thead th {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.table td,
.table th {
    border-color: #cccccc !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f8f8 !important;
}

.table-hover tbody tr:hover {
    background-color: #eeeeee !important;
}

/* Forms - Clean borders */
.form-control {
    border: 1px solid #000000 !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.form-control:focus {
    border-color: #333333 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

/* Select2 styling */
.select2-container--default .select2-selection--single {
    border: 1px solid #000000 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000 !important;
}

/* Badges */
.badge-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Pagination */
.page-link {
    color: #000000 !important;
    border-color: #000000 !important;
}

.page-item.active .page-link {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

/* Links */
a {
    color: #000000;
}

a:hover {
    color: #333333;
}

/* Text colors override */
.text-primary {
    color: #000000 !important;
}

/* Background colors override */
.bg-primary {
    background-color: #000000 !important;
}

.bg-soft-primary {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

/* Border colors */
.border-primary {
    border-color: #000000 !important;
}

/* Dashboard stats cards */
.bg-grad-1,
.bg-grad-2,
.bg-grad-3,
.bg-grad-4 {
    background: #000000 !important;
}

/* Modal headers */
.modal-header {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-bottom: none !important;
}

.modal-header .close {
    color: #ffffff !important;
}

.modal-content {
    border: 2px solid #000000 !important;
}

/* Dropdown menus */
.dropdown-menu {
    border: 1px solid #000000 !important;
}

.dropdown-item:hover {
    background-color: #f0f0f0 !important;
}

/* Alert/notification styling */
.alert-primary {
    background-color: #f0f0f0 !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

/* Progress bars */
.progress-bar {
    background-color: #000000 !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}

/* Logo area styling */
.aiz-sidebar-logo {
    background-color: #000000 !important;
    padding: 15px !important;
}

.aiz-sidebar-logo img {
    filter: brightness(0) invert(1);
}

/* END BLACK & WHITE THEME */

#aizUploaderModal .modal-dialog {
    max-width: 90% !important;
}

#aizUploaderModal .modal-dialog .modal-content .modal-body {
    padding: 20px 0px;
    max-width: 100%;
    margin: 0;
}

.side_left_wrapper,
.side_right_wrapper {
    width: 50%;
}

.side_left_wrapper input#client-title {
    width: 93%;
}

.side_left_wrapper input#receiver-title {
    width: 93%;
}

.payment_Type_field {
    padding: 31px 15px 25px;
}

.card.card-custom.card-stretch .card-body {
    overflow: auto;
}

.card.card-custom.card-stretch .card-body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.card.card-custom.card-stretch .card-body::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.card.card-custom.card-stretch .card-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #0b2339;
}

p.total_wrapper {
    text-align: right;
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;
    padding: 0 29px;
}

@media only screen and (max-width: 1999px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 90%;
    }
}

/*1920*/
@media only screen and (max-width: 1919px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 89%;
    }

    .form-group label {
        font-size: 13px;
    }
}

/*1819*/
@media only screen and (max-width: 1817px) {
    .group_wrapper>div {
        display: block;
        max-width: 50%;
        flex: 0 0 50%;
    }

    .select2-container {
        width: 100% !important;
    }
}

/*1750*/
@media only screen and (max-width: 1749px) {}

/*1680*/
@media only screen and (max-width: 1679px) {}

/*1620*/
@media only screen and (max-width: 1619px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 87%;
    }
}

/*1600*/
@media only screen and (max-width: 1599px) {}

/*1536*/
@media only screen and (max-width: 1535px) {}

/*1440*/
@media only screen and (max-width: 1439px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 85%;
    }
}

/*1400*/
@media only screen and (max-width: 1399px) {
    .side_left_wrapper .form-group label.col-2 {
        max-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 0;
    }

    .side_right_wrapper .form-group label.col-2 {
        max-width: 100%;
        flex: 0 0 100%;
        padding-bottom: 13px;
    }

    .side_left_wrapper .col-10.col-form-label {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .side_right_wrapper .col-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*1360*/
@media only screen and (max-width: 1359px) {}

/*1336*/
@media only screen and (max-width: 1335px) {}

/*1280*/
@media only screen and (max-width: 1279px) {

    .side_left_wrapper,
    .side_right_wrapper {
        width: 100%;
        padding: 0 !important;
    }

    .payment_Type_field {
        padding-top: 0;
    }

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 90%;
    }

    div#kt_header_mobile img {
        max-width: 100px;
    }
}

/*1024*/
@media only screen and (max-width: 1023px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 93%;
    }
}

/*980*/
@media only screen and (max-width: 979px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 91%;
    }
}

/*768*/
@media only screen and (max-width: 767px) {}

/*734*/
@media only screen and (max-width: 733px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 90%;
    }
}

/*650*/
@media only screen and (max-width: 649px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 89%;
    }
}

/*598*/
@media only screen and (max-width:597px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 89%;
    }
}

/*568*/
@media only screen and (max-width: 567px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 86%;
    }
}

/*480*/
@media only screen and (max-width: 479px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 83%;
    }
}

/*414*/
@media only screen and (max-width: 413px) {

    .side_left_wrapper input#client-title,
    .side_left_wrapper input#receiver-title {
        width: 81%;
    }

    .group_wrapper>div {
        display: block;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*360*/
li.headersearchrow input {
    width: 100%;
    padding: 8px 13px;
    border: none;
    font-size: 13px;
    border-radius: 6px;
    margin-top: 15px;
}

li.headersearchrow>a {
    background: #ff7324;
    position: absolute;
    top: 15px;
    right: 0px;
    bottom: 14px;
    border-radius: 6px;
    padding: 0 11px;
}

li.headersearchrow {
    position: relative;
    width: 81%;
}

li.headersearchrow>a i {
    position: relative;
    top: 43%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
}

img.headerfloatimg {
    position: absolute;
    left: 0;
    top: 0;
}

.dashboardmiddle>div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    text-align: center;
}

.dashboardmiddle h1 {
    text-align: center;
    display: block;
    color: #ff7324;
    font-size: 33px;
    margin: 20px 0;
}

.dashboardleft,
.dashboardright {
    text-align: center;
}