/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --header-height: 70px;
    --border-radius: 6px;
}

html {
    font-size: 14px;
}

body {
    line-height: 1.5;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

[data-bs-toggle="tooltip"] {
    cursor: pointer;
    color: var(--bs-primary);
}

textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover,
select:hover,
select.form-control:hover,
.uneditable-input:hover {
    outline: 0 none;
    box-shadow: none;
}


textarea:focus,
textarea.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
select.form-control:focus,
.uneditable-input:focus {
    border: 2px solid #0b5ed7;
    transition: .3s border-color;
    outline: 0 none;
    box-shadow: none;
}

textarea, textarea.form-control:not(.restaurant-menu-description) {
    min-height: 10rem;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select {
    height: 40px;
}

input[type="time" i]::-webkit-calendar-picker-indicator {
    display: none !important;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--bs-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: white;
    line-height: 0;
}

.back-to-top:hover {
    background: #0b5ed7;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: var(--header-height);
    transition: all 0.5s;
    z-index: 997;
    background: white;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 15%);
}

#header .logo img {
    max-height: 50px;
}

#header .logo a {
    font-weight: 600;
    font-size: 2rem;
}

@media (max-width: 767px) {
    #header .logo a {
        font-size: 1.2rem;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

@media (min-width: 991px) {
    .navbar {
        /* adjust number of pixels when changing logo */
        width: calc(100% - 100px);
    }

    .navbar > ul {
        width: 100%;
    }

    .navbar > ul > li {
        margin-left: 32px;
    }

    .navbar > ul > li:first-of-type {
        margin-left: 0;
    }

    .navbar > ul > li:last-of-type {
        margin-left: auto;
    }
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    color: var(--bs-body-color);
    transition: 0.3s color;
}

.navbar a i, .navbar a:focus i {
    font-size: 1rem;
    line-height: 0;
    margin-left: .3rem;
    color: var(--bs-primary);
    transition: .3s transform;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: black;
}

.navbar .navbar-dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: .5rem 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: white;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: var(--border-radius);
}

.navbar .navbar-dropdown ul li {
    min-width: 200px;
}

.navbar .navbar-dropdown ul a {
    padding: .5rem 1.5rem;
    font-size: .9rem;
    font-weight: 400;
    transition: .3s color;
    color: var(--bs-body-color);
}

.navbar .navbar-dropdown ul a:hover, .navbar .navbar-dropdown ul .active:hover, .navbar .navbar-dropdown ul li:hover > a {
    background-color: #eee;
    color: black;
}

.navbar .navbar-dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .navbar-dropdown .navbar-dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .navbar-dropdown .navbar-dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .navbar-dropdown .navbar-dropdown ul {
        left: -90%;
    }

    .navbar .navbar-dropdown .navbar-dropdown:hover > ul {
        left: -100%;
    }
}

.navbar:not(.navbar-mobile) .navbar-dropdown:hover a i {
    transition: .3s;
    transform: rotate(180deg);
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(33, 38, 42, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: white;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #0b5ed7;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 1rem;
}

.navbar-mobile .navbar-dropdown ul {
    position: static;
    /*display: none;*/
    margin: 10px 20px;
    padding: .5rem 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: white;
    /*box-shadow: 0 0 2rem rgba(0, 0, 0, 0.08);*/
}

.navbar-mobile .navbar-dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .navbar-dropdown ul a {
    padding: .5rem 1.5rem;
}

.navbar-mobile .navbar-dropdown ul a i {
    font-size: 1rem;
}

.navbar.navbar-mobile .navbar-dropdown.open > a {
    color: var(--bs-primary);
}

.navbar.navbar-mobile .navbar-dropdown.open a i {
    transition: .3s;
    transform: rotate(180deg);
}

.navbar-mobile .navbar-dropdown ul a:hover, .navbar-mobile .navbar-dropdown ul .active:hover, .navbar-mobile .navbar-dropdown ul li:hover > a {
    background-color: white;
    color: #0b5ed7;
}

.navbar-mobile .navbar-dropdown > .dropdown-active {
    display: block;
}

.navbar-mobile .navbar-dropdown ul a.selected-role {
    color: var(--bs-primary);
}

/*--------------------------------------------------------------
# Radio Button
--------------------------------------------------------------*/
label.form-label {
    margin-bottom: .5rem;
    font-weight: 500;
}

input[type="radio"] + label, input[type="checkbox"] + label {
    width: 100%;
    font-size: .9rem;
    padding: 0;
    cursor: pointer;
    transition: color .3s, border-color .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

input[type="radio"] + label svg, input[type="checkbox"] + label svg {
    height: 1rem;
    width: 1rem;
    margin-bottom: 4px;
    color: var(--bs-primary);
}

input[type="radio"] + label svg + span, input[type="checkbox"] + label svg + span {
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    margin-left: .5rem;

}

input[type="radio"] + label:hover, input[type="checkbox"] + label:hover {
    color: #0b5ed7;
}

input[type="radio"]:checked + label.radio, input[type="checkbox"]:checked + label.radio {
    display: none;
}

input[type="radio"] + label .radio circle, input[type="checkbox"] + label .radio circle {
    transition: fill .3s;
}

input[type="radio"]:not(:checked) + label .radio circle, input[type="checkbox"]:not(:checked) + label .radio circle {
    fill: white
}

input[type="radio"]:checked + label .radio circle, input[type="checkbox"]:checked + label .radio circle.marker {
    fill: #0b5ed7;
}

/*--------------------------------------------------------------
# Dropdowns
--------------------------------------------------------------*/
.dropdown-toggler {
    cursor: pointer;
    transition: 0.3s color;
}

.dropdown-toggler.open {
    color: var(--bs-primary);
}

.dropdown-toggler svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .3rem;
    color: var(--bs-primary);
}

.dropdown-toggler i {
    font-size: 1rem;
    line-height: 0;
    margin-left: .3rem;
    color: var(--bs-primary);
}

.dropdown-toggler i::before {
    transition: .3s transform;
}

.dropdown-toggler.open i::before, .dropdown-toggler.open-permanent i::before {
    transform: rotate(180deg);
}

.dropdown-toggler ul {
    list-style: none;
    display: block;
    position: absolute;
    margin: 2.5rem 0 0 0;
    padding: .5rem 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: 0.3s;
    border-radius: var(--border-radius);
}

.dropdown-toggler.open > ul, .dropdown-toggler.open-permanent > ul {
    opacity: 1;
    margin-top: .5rem;
    visibility: visible;
}

.dropdown-toggler ul li {
    min-width: 200px;
}

.dropdown-toggler ul a {
    display: block;
    padding: .5rem 1.5rem;
    font-size: .9rem;
    font-weight: 400;
}

.dropdown-toggler ul a:hover, .dropdown-toggler ul .active:hover, .dropdown-toggler ul li:hover > a, .dropdown-toggler ul a.active {
    color: var(--bs-primary);
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    padding-top: var(--header-height);
}


.bottom-toolbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1a1a1f;
    left: 0;
    z-index: 995;
    padding: 1rem 0;
}

.bottom-toolbar .btn:focus {
    color: white;
}

.fs-6 {
    font-size: 1.15rem !important;
}

/*--------------------------------------------------------------
# Select2
--------------------------------------------------------------*/
.select2-container.select2-container--default .select2-selection--single {
    /*height: auto;*/
    border-radius: var(--border-radius);
    display: block;
    width: 100%;
    height: 40px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-primary);
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #fff;
    transition: .3s border-color;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select2-container.select2-container--default .select2-selection--single:hover {
    border: 2px solid #0b5ed7;
}

.select2-container.select2-container--default .select2-selection--single:focus {
    border: 2px solid var(--bs-primary);
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 18px;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__clear {
    font-weight: 300;
    margin-top: -7px;
    color: #666666;
    font-size: 24px;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: #000000;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    color: white;
    padding: 0;
}

.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: .5rem;
    right: .5rem;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #eee;
    margin-top: 30px;
}

#footer .footer-top {
    padding: 30px 0 30px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 500;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top .footer-contact p strong {
    font-weight: 600;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--bs-primary);
    font-size: 24px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #0b5ed7;
}

/*[list]::-webkit-calendar-picker-indicator{*/
/*  display: initial;*/
/*  top:0;*/
/*  left:0;*/
/*  position: relative;*/
/*}*/
[list]::-webkit-calendar-picker-indicator {
    display: none;
}

.spinner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    display: inline-block;
}

.goverlay {
    z-index: 99999999999;
}

/*--------------------------------------------------------------
# Animation keyframes
--------------------------------------------------------------*/
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#login-form-wrapper {
    max-width: 400px;
    width: 100%;
}

#registerBtn {
    background: white;
    font-weight: 500;
    padding: .5rem 1rem;
    font-size: 1.1rem;
    color: var(--bs-primary);
    display: flex;
    margin: 1rem auto;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: 100%;
    border: thin solid var(--bs-primary);
    border-radius: var(--border-radius);
    transition: background-color .3s;
}

#registerBtn:hover {
    cursor: pointer;
    background-color: #0b5ed7;
}

#fbLoginBtn {
    background: white;
    font-weight: bold;
    padding: .5rem 1rem;
    font-size: 1.1rem;
    color: #1877F2;
    display: flex;
    margin: 1rem auto;
    justify-content: center;
    align-items: center;
    width: 400px;
    max-width: 100%;
    border: thin solid #1877F2;
    border-radius: var(--border-radius);
    transition: background-color .3s;
}

#fbLoginBtn img {
    margin-right: .5rem;
}

#fbLoginBtn:hover {
    cursor: pointer;
    background-color: #1877F211;
}

@media (max-width: 575.5px) {
    #fbLoginBtn span {
        display: none;
    }

    #fbLoginBtn {
        width: auto;
        display: inline-flex;
        margin: 0 1rem 0 0;
        vertical-align: top;
        padding: 10px;
    }

    #fbLoginBtn img {
        margin-right: 0;
        width: 18px;
        height: 18px;
    }
}


.g_id_signin {
    display: flex;
    justify-content: center;
}

.g_id_signin.d-sm-none {
    display: inline-flex;
}


.divider::before {
    height: 1px;
    content: "";
    background-color: #ccc;
    width: 50%;
}

hr.hr-text {
    line-height: 1em;
    position: relative;
    outline: 0;
    border: 0;
    text-align: center;
    height: 1.5em;
    background: none;
    opacity: 1;
}

hr.hr-text:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    padding: 0 0.5em;
    line-height: 1.5em;
    color: #aaa;
    background-color: #fff;
}

hr.hr-text:before {
    content: "";
    background: #aaa;
    position: absolute;
    left: 0;
    margin: 0 1em;
    top: 50%;
    width: calc(100% - 2em);
    height: 1px;
}

/*--------------------------------------------------------------
# Registration
--------------------------------------------------------------*/
.registration-steps {
    padding: 1.5rem;
}

.registration-steps a,
.registration-steps button {
    width: 128px;
}

.registration-save svg {
    padding-bottom: 2px;
    width: 18px;
    height: 18px;
}

li.select2-results__option {
    color: white;
}

.select2-container--default .select2-results__option--selected {
    background-color: white !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: white !important;
    background-color: var(--light-hover-color) !important;
}

#business-information .gallery-image #logo-drop-container {
    position: absolute;
    transition: opacity .3s;
    opacity: 0;
}


select.decoration option:hover {
    box-shadow: 0 0 10px 100px #a88b18 inset !important;
}

.ag-row-focus, .ag-header-cell .dropdown {
    z-index: 999;
}
.ag-cell .dropdown, .ag-header-cell .dropdown {
    cursor: pointer;
}
/*div[col-id='action'] .ag-cell-value,*/
/*div[col-id='action'] .ag-cell,*/
div[col-id='action'] .ag-cell-label-container,
div[col-id='action'].ag-header-cell,
/*.ag-header-viewport,*/
div[col-id='action'] .ag-header-cell-comp-wrapper,
.ag-header,
div[col-id='action'] .ag-header-cell-text,
div[col-id='action'] .ag-header-cell-label {
    overflow: visible !important;
}
.overflow-none {
    overflow: visible !important;
}
.mtz-tab .nav-line-tabs .nav-item .nav-link.active, .nav-line-tabs .nav-item .nav-link:hover:not(.disabled), .nav-line-tabs .nav-item.show .nav-link{
    color:#009ef7;
}

.mtz-tab .nav-line-tabs .nav-item .nav-link, .nav-line-tabs .nav-item .nav-link:hover:not(.disabled), .nav-line-tabs .nav-item.show .nav-link{
    font-size: 15px;
    font-weight: bold;
    color:#cdcdde;
}

.footer-bottom{
    min-height: calc(100vh - 109px);
}

.ag-root-wrapper {
    border: var(--ag-borders) var(--bs-border-color)!important;
}

.ag-theme-alpine .ag-header {
    border-color: var(--bs-border-color);
}

.ag-theme-alpine .ag-header-cell {
    background: transparent;
    font-weight: normal;
    border-bottom-color:red;
}

.loginmenu{
    font-size: 15px;
}

form[name=component-form] div {
    padding-top: 4px;
    padding-bottom: 4px;
}

.dropdown-toggle.no-arrow-down::after {
    content: none;
}

/*@media screen {
    body > *:not(.info-panel.invoice-layout,.info-panel-row.invoice-layout,.drawer-overlay) {
        display: none;
    }
}*/

@media print {
    body > *:not(.info-panel.invoice-layout), body > *:not(.info-panel-row.invoice-layout) {
        display: none;
    }
    body > *:not(.info-panel.invoice-layout), body > *:not(.info-panel-row.invoice-layout) {
        display: none;
    }
    body, .app-default {
        background-color: #fff;
    }
    * {
        overflow: hidden !important;
    }
    #kt_app_header, #kt_app_footer {
        display: none !important;
    }
    #kt_app_wrapper, #kt_app_content, .app-container, .container-fluid {
        margin: 0 !important;
        padding: 0 !important;
    }
    /*.invoice-layout {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    /*.invoice-layout .supplier-block,
    .invoice-layout .customer-block {
        width: calc(50% - 2px) !important;
    }
    .invoice-layout .mtz-table:not(.invoice-summary) {
        width: calc(100% - 4px) !important;
    }
    .invoice-layout .invoice-summary.mtz-table {
        width: calc(41.666666% - 4px) !important;
    }*/
    /*@page {
        border: none;
        padding: 0;
    }*/
}

.info-panel.invoice-layout, .info-panel-row.invoice-layout {
    display: block;
    width: 210mm;
    height: 297mm;
    margin: 0 auto;
    padding: 20mm;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: scroll;
}

.invoice-layout .supplier-block,
.invoice-layout .customer-block {
    padding: 10px;
    border: 2px solid #000;
    box-sizing: border-box; /* Add this property */
}

.invoice-layout .supplier-block {
    border-right: none; /* Remove the right border of the supplier block */
}

.invoice-layout .supplier-block .info-panel-text,
.invoice-layout .customer-block .info-panel-text {
    margin-bottom: 20px;
}

.invoice-layout .customer-block .info-panel-row:last-child {
    margin-bottom: 0; /* Remove the margin-bottom to prevent overflow */
}

.invoice-layout .customer-block .info-panel-row:last-child .info-panel {
    height: calc(100% - 20px); /* Adjust for the margin-bottom in the previous line */
    overflow-y: auto; /* Add scroll if necessary */
}

.invoice-layout .invoice-items {
    /* Update the class name */
    border-collapse: collapse; /* Collapse table borders */
    width: 100%;
    border: 2px solid #000; /* Add black border to the table */
    border-top: none;
}

.invoice-layout .invoice-items.packing-list {
    border-collapse: collapse; /* Collapse table borders */
    width: 100%;
    border: 1px solid #000; /* Add black border to the table */
}

.invoice-layout .invoice-items th,
.invoice-layout .invoice-items td {
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Add light gray lines between table rows */
    text-align: left; /* Align text information to the left */
}

.invoice-layout .invoice-items th {
    font-weight: bold; /* Style the first row as table heading */
}

.invoice-layout .invoice-items td:last-child {
    text-align: right; /* Align numeric information to the right */
}

.invoice-layout .invoice-items.packing-list tr:last-child td {
    border-bottom: 1px solid #000; /* Add light gray lines between table rows */
}

.invoice-layout .invoice-items.packing-list {
    margin-bottom: 20px;
}

.invoice-layout .text-right {
    text-align: right;
}

.invoice-layout .invoice-summary {
    /* Update the class name */
    margin-top: 30px; /* Add margin to the top of the table */
    border-collapse: collapse; /* Collapse table borders */
    border: 2px solid #000; /* Add black border to the table */
}

.invoice-layout .invoice-summary th,
.invoice-layout .invoice-summary td {
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Add light gray lines between table rows */
    text-align: left; /* Align text information to the left */
}

.invoice-layout .invoice-summary th {
    font-weight: bold; /* Style the first row as table heading */
}

.invoice-layout .invoice-summary td:last-child {
    text-align: right; /* Align numeric information to the right */
}

label[for=component_form_check] {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    display: inline-block;
    margin-right: 10px;
}

body.atlas-background {
    position: relative;
}

body.atlas-background::before {
    content: ""; /* Required for pseudo-elements */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/MTZ/atlas/background/b07.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    opacity: 0.5;
    z-index: -1;
}

.grid-filter form {
    margin-left: 5px;
}

.grid-filter input:not(input[type=submit]), .grid-filter select {
    max-width: 160px;
    margin-left: -5px;
}
.grid-filter input.btn, .grid-filter input[type=submit], .grid-filter button {
    max-width: 20px;
    /*margin-left: 5px;*/
}
.grid-filter button {
    max-height: 40px;
    margin-top: 20px;
}
.grid-filter button i {
    margin-left: -5px;
}

.grid-filter-row label {
    width: inherit;
}

.grid-filter .input-group {
    width: auto;
}

.mtz-logo-business-name {
    position: absolute;
    bottom: -16px;
    right: 0;
}

.mtz-tab.card {
    padding: 15px;
    margin-left: 8px;
    width: calc(100% - 15px) !important;
}

.with-paddings {
    padding: 15px;
    margin-left: 8px;
    width: calc(100% - 15px) !important;
}

.mtz-tab .tab-content, .card.with-paddings {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.grid-filter-row {
    background: var(--bs-gray-100);
    padding-top: 6px;
    padding-bottom: 6px;
    border: 1px solid var(--bs-gray-100);
    border-radius: var(--bs-border-radius);
    margin-left: -5px;
    margin-right: -13px;
}

.info-panel-grid {
    padding-bottom: 15px;
}

.info-panel-breadcrumb .card-header {
    min-height: 0;
}

.info-panel-breadcrumb .card {
    width: calc(100% + 17px);
    min-height: 0;
    height: 30px;
}

[name=component_form] div {
    margin-bottom: 15px;
}

.rpb-product-table th, .rpb-product-table td {
    vertical-align: middle !important;
}

.rpb-product-table th {
    font-weight: bold !important;
}

.m-list-record {
    padding: 10px;
}

.accordion-header {
    width: 100%;
}

.mtz-input-spinner {
    position: absolute;
    right: 40px;
    top: 40%;
}
.mtz-input-spinner-top-20 {
    top: 60%;
}
.fs-xs {
    font-size: 0.8rem !important;
}
.bg-yellow {
    background: yellow;
}

.app-content {
    padding-top: 15px;
}

.ajax-results, .ajax-results-template {
    z-index: 200;
}

.ajax-results .ar-ul, .ajax-results-template .ar-ul {
    list-style-type: none;
    padding: 0;
}

.ajax-results .ar-ul li, .ajax-results-template .ar-ul li {
    padding: 10px;
    cursor: pointer;
}

.ajax-results .ar-ul li:hover, .ajax-results-template .ar-ul li:hover {
    background-color: #f0f0f0;
}

.ajax-results li.active, .ajax-results-template li.active {
    background-color: #ccc;
}

.not-valid {
    border: 1px solid red;
}

.form-check-input {
    border: 1px solid #fff !important;
    border-radius: 0.65rem;
    padding: .775rem 1rem;
}

.form-check-input:focus {
    border: 1px solid #00524F !important;
    border-radius: 0.65rem;
}
.form-check-input[type="checkbox"]:indeterminate {
    background-color: white;
    background-size: 100% 100% !important;
    color: #00524F;
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2300524F' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.table-container {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 600px;
}


.mw-70 {min-width: 70px;}
.mw-90 {min-width: 90px;}
.mw-100 {min-width: 100px;}
.mw-140 {min-width: 140px;}
.mw-180 {min-width: 180px;}
.mw-240 {min-width: 240px;}
.mw-510 {min-width: 510px;}
.mw-350 {min-width: 350px;}
.w-60 {width: 60px;}
.w-70 {width: 70px;}
.w-140 {width: 140px;}
.w-240 {width: 240px;}
.row-yellow {
    background: var(--bs-text-warning);
    margin-left: -10px !important;
    padding-left: 10px !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    padding-top: 4px !important;
}
.row-yellow input {
    background: #fff !important;
    color: var(--bs-gray-800) !important;
}