/* Minification failed. Returning unminified contents.
(176,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '&'
(804,41): run-time error CSS1046: Expect comma, found '113'
(804,49): run-time error CSS1046: Expect comma, found '/'
(837,41): run-time error CSS1046: Expect comma, found '113'
(837,49): run-time error CSS1046: Expect comma, found '/'
(848,41): run-time error CSS1046: Expect comma, found '113'
(848,49): run-time error CSS1046: Expect comma, found '/'
(861,41): run-time error CSS1046: Expect comma, found '113'
(861,49): run-time error CSS1046: Expect comma, found '/'
(947,40): run-time error CSS1046: Expect comma, found '0'
(947,44): run-time error CSS1046: Expect comma, found '/'
(1032,41): run-time error CSS1046: Expect comma, found '113'
(1032,49): run-time error CSS1046: Expect comma, found '/'
(1081,12): run-time error CSS1038: Expected hex color, found '#ffff'
(1085,12): run-time error CSS1038: Expected hex color, found '#ffff'
 */
/*LAYOUT : START */

body {
    padding-top: 70px;
}
/*LAYOUT: END */

.ui-select-bootstrap .ui-select-choices-row>span {
    white-space: normal;
    /* width: 600px; */
}

.w-300 .ui-select-choices-row>span {
    width: 300px;
}

.w-600 .ui-select-choices-row>span {
    width: 600px;
}

.mx-5 {
    margin-left: 5px;
    margin-right: 5px;
}

.popover-content {
    white-space: nowrap;
}

.note-number.clickable-text {
    color: #000;
}
.note-number.clickable-text:hover, .note-number.clickable-text:focus {
    text-decoration:none;
}

@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width:1200px;
    }
}

/* Prevent angular js from showing {{variable}} upon page load*/
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak, .ng-hide {
    display: none !important;
}

.tr-ng-grid .tr-ng-column-header .tr-ng-title {
    text-align: left;
    padding-top: 0px;
}

.table > tbody > tr > td,
.table > tbody > tr > td > .tr-ng-cell {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.table thead th {
    background-color: darkgray;
}

.row-item-warning {
    background-color: #F47DB0 !important;
}

.row-item-summary {
    background-color: darkseagreen !important;
    font-weight: bold !important;   
}

.bg-warning {
    background-color: #f4c57d !important;
}

.bg-danger {
    background-color: #F47DB0 !important;
}

.row-item-connectivity {
    background-color: lightgreen !important;
}

.row-item-ordered {
    background-color: darkseagreen !important;
}

.row-item-disabled {
    background-color: lightgray !important;
}

.center-div {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 2px;
}

#noticeViewContainer {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 100000;
}

div.control-label {
    text-align: left !important;
}

.revenue-value {
    color: red;
    font: bold;
    font-weight: bold;
}

.number-value {
    text-align: right;
}

.report-title {
    font-size: 30px;
    text-align: center !important;
    color: green;
    padding: 0px;
    font: bold;
}

.inner {
    display: table;
    margin: 0 auto;
}

.report-box {
    border: 1px solid lightgray;
    padding: 20px;
    overflow-y: auto;
}

.ajax-loader {
    position: fixed;
    left: 50%;
    top: 15%;
    margin-left: -32px; /* -1 * image width / 2 */
    margin-top: -32px; /* -1 * image height / 2 */
    display: block;
}

/* -------------Start - Datetime picker for lable or div-------------------*/
/*.daterange-picker {
    position: relative;
}

    .daterange-picker input {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: 0;
        pointer-events: none;
    }
*/
.clickable-text {
    display: inline-block;
    /*border-bottom: 2px dotted #ccc;*/
    user-select: none;
    cursor: pointer;
    padding: 0 2px;
    /*color: #000;*/
    &:hover

{
    color: blue;
    background: #f5f5f5;
    border-bottom-color: blue;
}

}
/* -------------End - Datetime picker for lable or div-------------------*/


/* -------------Start - Loading Spinner-------------------*/
/*
 *  Usage:
 *
 *    <div class="sk-spinner sk-spinner-double-bounce">
 *      <div class="sk-double-bounce1"></div>
 *      <div class="sk-double-bounce2"></div>
 *    </div>
 *
 */
.sk-spinner-double-bounce.sk-spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0 auto;
}

.sk-spinner-double-bounce .sk-double-bounce1,
.sk-spinner-double-bounce .sk-double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1ab394;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
    animation: sk-doubleBounce 2s infinite ease-in-out;
}

.sk-spinner-double-bounce .sk-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-doubleBounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* -------------End - Loading Spinner-------------------*/

#block-container {
    text-align: left;
    height: 100%;
}

#bloc1, #bloc2 {
    display: inline;
}

.count-info .label {
    line-height: 12px;
    padding: 2px 5px;
    position: absolute;
    /*right: 6px;*/
    left: 99px;
    top: 30px;
}

.ui-select-choices {
    width: auto !important;
    /*position: fixed;
    top: auto;
    left: auto;*/
    /*width: inherit;*/
}

.select2 > .select2-choice.ui-select-match {
    /* Because of the inclusion of Bootstrap */
    height: 29px;
}

.selectize-control > .selectize-dropdown {
    top: 36px;
}
/* Some additional styling to demonstrate that append-to-body helps achieve the proper z-index layering. */
.select-box {
    background: #fff;
    position: relative;
    z-index: 1;
}

.alert-info.positioned {
    margin-top: 1em;
    position: relative;
    z-index: 10000; /* The select2 dropdown has a z-index of 9999 */
}

.ui-select-multiple.ui-select-bootstrap {
    height: auto;
}

/* -------------Start - Status Bar-------------------*/
.status-bar {
    position: fixed;
    left: 50px;
    top: 50px;
    background-color: #e3ff4f;
    background-color: rgba(255, 255, 255, 0.8);
    width: 200px;
    height: 150px;
    margin-right: 22px;
    margin-bottom: 25px;
    padding: 10px;
}

    .status-bar:hover {
        cursor: ns-resize;
    }
/* -------------End - Status Bar-------------------*/

/* -------------Start - Collapsible Panel With Up/Down Arrow Icon-------------------*/
.wrapper {
    width: 100%;
}

@media(max-width:992px) {
    .wrapper {
        width: 100%;
    }
}

.panel-heading {
    padding: 0;
    border: 0;
}

.panel-title > a, .panel-title > a:active {
    display: block;
    padding: 10px;
    color: #555;
    font-size: 14px;
    font-weight: bold;
    text-transform: inherit;
    /*letter-spacing: 1px;*/
    word-spacing: 1.5px;
    text-decoration: none;
}

.panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
}

.panel-heading-cart a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e116";
    float: right;
    transition: all 0.5s;
    color:seagreen;
}

.panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* -------------End - Collapsible Panel With Up/Down Arrow Icon-------------------*/

/* -------------Start - Image-------------------*/

/* -------------End - Image-------------------*/


/* -------------Start - Validation-------------------*/
input:invalid {
    border: 1px solid red;
}

.ng-invalid {
    border-color: red;
    outline-color: red;
}

/*.ng-valid {
    border-color: green;
    outline-color: green;
}*/

.messages {
    font-size: smaller;
    padding-top: 5px;
    padding-bottom: 10px;
    color: red;
}
/* -------------End - Validation-------------------*/


/*Related to dropdown tree START */

.dropdown-with-ivhTreeView {
    position: relative;
    display: inline-block;
    min-width: 10em;
    width: 20em;
    z-index: inherit;
}

.dropdown-with-ivhTreeView .dropDown {
    min-width: inherit;
    width: inherit;
    height: 1.5em;
    border: 1px solid black;
    cursor: pointer;
    text-align: middle;
    overflow: hidden;
    z-index: inherit;
    line-height: 1.5em;
    padding-left: 0.2em;
}

.dropdown-with-ivhTreeView .dropDown .dropDownButton {
    float: right;
    background-color: #3399ff;
    border-left: inherit;
    width: 20px;
    height: 100%;
    text-align: center;
    z-index: inherit;
}

.dropdown-with-ivhTreeView .dropDown .dropDownButton .dropDownButtonIcon {
    width: 0px !important;
    height: 0px !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 8px solid white !important;
    border-bottom: 0px solid transparent !important;
    top: 35%;
    left: 30%;
    position: relative !important;
}

.dropdown-with-ivhTreeView .dropDownContent {
    background-color: white;
    min-width: inherit;
    max-height: 20em;
    width: inherit;
    overflow: auto;
    display: none;
    position: absolute !important;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid black;
    z-index: inherit;
}

.dropdown-with-ivhTreeView .dropDownContent .searchBox {
    position: relative !important;
    top: 6px;
    left: 6px;
    width: 95%;
}

.dropdown-with-ivhTreeView .show {
    display: block;
}

.dropdown-with-ivhTreeView .dropDownContent .ivhTree {
    position: relative !important;
    left: 3px;
    max-width: 95%;
}
/*Related to dropdown tree End */

/*Related to Inner Tree View Colasable icon : START */
.arrow-right {
    width: 0px !important;
    height: 0px !important;
    border-top: 4px solid transparent !important;
    border-bottom: 4px solid transparent !important;
    border-left: 8px solid black !important;
    border-right: 0px solid transparent !important;
    top: -2px;
    left: 3px;
    position: relative !important;
    display: inline-block;
}

.arrow-down {
    width: 0px !important;
    height: 0px !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 8px solid black !important;
    border-bottom: 0px solid transparent !important;
    top: -2px;
    left: 3px;
    position: relative !important;
    display: inline-block;
}
/*Related to Inner Tree View Colasable icon : END */

/*Related to Panel : Begin */
.panel-heading {
    padding: 0;
    border: 0;
}

.panel-title > a, .panel-title > a:active {
    display: block;
    color: #555;
    font-size: 15px;
    /*font-weight: bold;
    text-transform: uppercase;
    word-spacing: 3px;
    letter-spacing: 1px;
    padding: 15px;
    */
    text-decoration: none;
}
/*Related to Panel : End */

.store-link {
    display: inline;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis !important;
    white-space: nowrap;
}

.dropdown-menu > li > a {
    padding-left: 5px;
}

/*Related to order item : START */
.styles-button-container {
    justify-self: center;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: 0;
}
.styles-root-card {
    display: flex;
    flex-direction: row;
    position: relative;
    height: inherit;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.styles-product-card {
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: unset !important;
}

.MuiCard-root {
    overflow: hidden;
}
.styles-product-image {
    flex: 15% 1;
    justify-self: start;
    max-width: 50px;
    margin-right: 10px !important;
    /*margin-bottom: 0 !important;*/
    margin-bottom: 0.5rem !important;
}
.styles-product-content-column {
    max-width: 520px;
    width: 100%;
    margin-bottom: 0 !important;
}

.styles-product-content {
    padding: 0 !important;
}
/*Related to order item : END */



/*Input Spinner: START */
.spinner {
    width: 100px;
}

.spinner input {
    text-align: right;
}

.input-group-btn-vertical {
    position: relative;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle;
    display: table-cell;
}

.input-group-btn-vertical > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin-left: -1px;
    position: relative;
    border-radius: 0;
}

.input-group-btn-vertical > .btn:first-child {
    border-top-right-radius: 4px;
}

.input-group-btn-vertical > .btn:last-child {
    margin-top: -2px;
    border-bottom-right-radius: 4px;
}

.input-group-btn-vertical i {
    position: absolute;
    top: 0;
    left: 4px;
}
/*Input Spinner: END */

/*Input Spinner 2: START */
.quantity {
    position: relative;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.quantity input {
    width: 85px;
    height: 34px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    /*font-size: 1rem;*/
    border-radius: 4px;
}
.quantity input:focus {
    outline: 0;
}
.quantity-nav {
    float: left;
    position: relative;
    height: 34px;
}
.quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.quantity-button:active {
    background: #EAEAEA;
}
.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "FontAwesome";
    border-radius: 0 4px 0 0;
    line-height: 1.6
}
.quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    font-family: "FontAwesome";
    border-radius: 0 0 4px 0;
}
/*Input Spinner 2: END */


.span-text-trim-dot {
    display: inline-block;
    width: 85%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    text-align: left;
}

.ui-select-match-text-with-info-btn {
    width:100%;
    overflow: hidden!important;
    text-overflow: clip;
    position: absolute;
    padding-right: 22px;
    padding-top: 1px;
}

.navbar-default .navbar-nav > li > a {
    color: black;
    font:bold;
    font-size:14px;
}

.tr-ng-grid > thead > tr > th {
    text-align: center;
    vertical-align: top;
    background-color:lightskyblue;
}

.panel-title > a, .panel-title > a:active {
    background-color: #e8eaee;
}

.excel-style-table {
    border-collapse: collapse;
    width: 100%;
}

.excel-style-table th, .excel-style-table td {
    border: 1px solid #dddddd;
    padding: 8px;
    text-align: left;
}

.excel-style-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.excel-style-table th {
    background-color: lightseagreen;
    color: white;
}

.button-transparent {
    border: none;
    background-color: transparent;
    color: #337ab7;
}

.button-transparent-for-remove {
    border: none;
    background-color: transparent;
    color: darkred;
}

div > div.ui-select-match > span > span.ui-select-match-text.pull-left > span {
    text-align: center;
}

.dqg-icon {
    background: url(/Content/https:/duocquocgia.com.vn/favicon.ico);
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: cover;
    display: inline-block;
    text-align: center;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.pull-right {
    margin-right: 5px;
    margin-bottom: 3px
}

body {
    background-color: #6c717021;
}

.baocao-container {
    background-color: #ffffff;
    border: 0.5px solid #ffffff;
    border-radius: 5px;
    box-shadow: 5px 3px 5px 0px rgb(118 113 113 / 75%);
}

    .baocao-container .row {
        padding-bottom: 1px !important;
    }

.tablescroll {
    max-height: 800px;
    overflow-y: auto;
    z-index: 1;
    position: relative;
}

    .tablescroll table {
        position: relative;
        margin-top: -2px;
        border: none !important;
    }

        .tablescroll table thead th {
            position: sticky;
            top: 0;
            z-index: 2;
            background-color: #e8eaee !important;
        }



.ibox-content {
    background-color: #ffffff;
    border: 0.5px solid #cfc2c2;
    border-radius: 5px;
    box-shadow: 5px 3px 5px 0px rgb(118 113 113 / 75%);
}

    .ibox-content .row {
        padding-bottom: 1px !important;
    }

.tabs-container {
    background-color: #ffffff;
    border: 0.5px solid #cfc2c2;
    border-radius: 5px;
    box-shadow: 5px 3px 5px 0px rgb(118 113 113 / 75%);
}

    .tabs-container .row {
        padding-bottom: 1px !important;
    }



.CreateReserve {
    background-color: #ffffff;
    border: 0.5px solid #cfc2c2;
    border-radius: 5px;
    box-shadow: 5px 3px 5px 0px rgb(118 113 113 / 75%);
}



    .CreateReserve input {
        height: 30px;
    }

.style-video {
    background-color: #d1d1d1;
    padding: 10px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    width: 95%;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    display: flex;
}


@media screen and (max-width: 1024px) {
    .baocao-container {
        max-width: 93vw;
    }

        .baocao-container h4 b {
            margin-left: 15px;
        }

    .ibox-content {
        max-width: 93vw;
    }

    .tabs-container {
        max-width: 93vw;
    }

    .CreateReserve {
        max-width: 93vw;
    }

        .CreateReserve h4 b {
            margin-left: 15px;
        }
    .style-video .col-lg-10 {
        width: 250px
    }
}




h4 {
    text-align: center;
    color: #186faa;
    font-size: 23px;
    margin-bottom: 0 !important;
    text-transform: uppercase;
}

.style-action {
    margin-right: 20px;
}


.boder-search {
    background-color: #ffffff;
    border: 0.5px solid #cfc2c2;
    border-radius: 3px;
    position: fixed;
    z-index: 999;
}

.boder-search-nomal {
    background-color: #ffffff;
    border: 0.5px solid #cfc2c2;
    border-radius: 1rem;
    padding:10px;    
}
.border-shadow {
    background-color: #ffffff;
    border: 1rem solid #ffffff;
    border-radius: 1rem;
    padding: 10px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.25) !important;
}

.row > .col-md-10 {
    float: right !important;
}

.row > .col-md-9 {
    float: right !important;
}

fieldset {
    margin-bottom: 5px;
    margin-top: 5px;
}

.btn-custom {
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.btn-violet {
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    background-color: #673ab7;
}
    .btn-violet:hover,
    .btn-violet:focus,
    .btn-violet:active,
    .btn-violet.active,
    .open .dropdown-toggle.btn-violet {
        color: #ffffff;
        background-color: #3e1884;
    }
.btn-violet-nomal {
    color: #fff;
    background-color: #673ab7;
    border-color: #673ab7;
}
    .btn-violet-nomal:hover,
    .btn-violet-nomal:focus,
    .btn-violet-nomal:active,
    .btn-violet-nomal.active,
    .open .dropdown-toggle.btn-violet-nomal {
        color: #ffffff;
        background-color: #3e1884;
    }
.space-label label {
    margin-top: 5px
}

.baocao-filter fieldset legend {
    font-size: 12px !important;
}

.report-title {
    font-size: 20px !important;
    text-align: center !important;
    color: #186faa !important;
    padding: 0px;
    font: bold;
}

/*.btn-sm {
    padding: 3px 6px !important;
}*/
.syle-uiselect .ui-select-container .input-group-btn a {
    margin-right: 0;
}
.style-search input{

    height:30px;
}
.boder-content {
    width: 100%;
    padding: 6px;
    background-color: #ffffff;
    border: 1px solid #66686d54;
    border-radius: 7px;
    box-shadow: 5px 3px 5px 0px rgb(118 113 113 / 75%);
}
.focus-input .input-xs {
    width:144px!important;
}
.product-name {
    color:black;
}
.input-search .btn-xs{
    height:25px!important;
    padding:3px!important;
}
.flex {
    display: flex;
}
.width30 {
    width: 30%;
}
.size-20 {
    padding-right: 5px;
    font-size: 20px !important;
}
.d-flex {
    display: flex;
    justify-content: space-between;
}
.width47 {
    width: 47% !important;
}
.width100 {
    width: 100% !important;
}
.width20 {
    width: 20% !important;
}
.width80 {
    width: 80% !important;
}
.width68 {
    width: 68% !important;
}
.width50 {
    width: 50% !important;
}
.padding-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.input-name {
    color: #ffff;
    background: #4dc1b8;
}
.btn-add {
    color: #ffff;
    background: #4dc1b8;
}
.cell-center {
    vertical-align: middle !important;
    text-align: center;
}
.bold-span {
    width: 35%;
    font-weight: 700;
}
.pro-box {
    border: 1px solid #e1e3e6;
    background-color: #fbfbfb;
    margin-top: 2.5rem;
    border-radius: 5px;
}
.margin-1 {
    margin: 1rem 1rem 1rem 1rem;
}
.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
    border-radius: 6px !important;
}
/*.margin-10{
    margin-bottom: 11rem !important;
}*/


/*New*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sales-page-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 20px;
    padding: 20px;
    background: #f5f7fa;
    min-height: calc(100vh - 90px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-section {
    background: white;
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px !important;
}

    .section-title i {
        color: #0B948B;
    }

.search-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 8px;
}

/* Style for item-search-filter directive */
.product-search-directive {
    flex: 1;
    width: 100%;
}

    .product-search-directive .form-control,
    .product-search-directive input {
        width: 100% !important;
        padding: 12px 16px !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        transition: all 0.3s ease !important;
    }

        .product-search-directive .form-control:focus,
        .product-search-directive input:focus {
            outline: none !important;
            border-color: #0B948B !important;
            box-shadow: 0 0 0 3px rgba(11, 148, 139, 0.1) !important;
        }

    .product-search-directive .dropdown-menu {
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        margin-top: 4px !important;
        max-height: 400px !important;
        overflow-y: auto !important;
    }

        .product-search-directive .dropdown-menu > li > a {
            padding: 10px 16px !important;
            transition: all 0.2s ease !important;
        }

            .product-search-directive .dropdown-menu > li > a:hover {
                background: linear-gradient(135deg, #0B948B 0%, #097773 100%) !important;
                color: white !important;
            }

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .search-input:focus {
        outline: none;
        border-color: #0B948B;
        box-shadow: 0 0 0 3px rgba(11, 148, 139, 0.1);
    }

.search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0B948B 0%, #097773 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(11, 148, 139, 0.4);
    }

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    white-space: nowrap;
}

.quantity-input {
    width: 80%;
    padding: 5px 6px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.unit-select {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Product Table */
.product-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

    .product-table thead {
        background: linear-gradient(135deg, #0B948B 0%, #097773 100%);
        color: white;
    }

    .product-table th {
        padding: 14px 12px;
        text-align: left;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-table tbody tr {
        border-bottom: 1px solid #e2e8f0;
        transition: background 0.2s ease;
    }

        .product-table tbody tr:hover {
            background: #f8fafc;
        }

    .product-table td {
        padding: 12px;
        font-size: 14px;
        color: #4a5568;
    }

.empty-state {
    height: 400px;
}

.empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #94a3b8;
}

    .empty-message i {
        font-size: 48px;
        opacity: 0.5;
    }

    .empty-message p {
        font-size: 16px;
        font-weight: 600;
    }

    .empty-message small {
        font-size: 13px;
    }

/* Footer Info */
.footer-info {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.store-code {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

    .store-code i {
        color: #0B948B;
    }

/* Right Section */
.right-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.invoice-header-card {
    background: linear-gradient(135deg, #0B948B 0%, #097773 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(11, 148, 139, 0.3);
}

.invoice-title-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.invoice-number {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 16px;
}

.date-picker-group {
    width: 100%;
    text-align: right;
    align-content: end;
}

.date-label {
    font-size: 14px;
    font-weight: 600;
    color: black;
}

.daterange-picker {
    position: relative;
    flex: 1;
}

    .daterange-picker input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.date-display {
    display: block;
    /*padding: 8px 16px;*/
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #0B948B;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

    .date-display:hover {
        background: white;
        transform: translateY(-1px);
    }

/* Cards */
.payment-card,
.payment-method-card {
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.customer-input-group {
    display: flex;
    gap: 8px;
}

.customer-search-wrapper {
    width: 100% !important;
    flex: 1;
}

/* Style for customer search directive */
.customer-search-directive {
    z-index: 2;
    width: 100% !important;
}

    .customer-search-directive .form-control,
    .customer-search-directive input {
        width: 100% !important;
        padding: 12px 16px !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }

        .customer-search-directive .form-control:focus,
        .customer-search-directive input:focus {
            outline: none !important;
            border-color: #0B948B !important;
            box-shadow: 0 0 0 3px rgba(11, 148, 139, 0.1) !important;
        }

    .customer-search-directive .dropdown-menu {
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        margin-top: 4px !important;
        max-height: 400px !important;
        overflow-y: auto !important;
        z-index: 9999 !important;
    }

        .customer-search-directive .dropdown-menu > li > a {
            padding: 10px 16px !important;
            transition: all 0.2s ease !important;
        }

            .customer-search-directive .dropdown-menu > li > a:hover {
                background: linear-gradient(135deg, #0B948B 0%, #097773 100%) !important;
                color: white !important;
            }

    .customer-search-directive .input-group-btn {
        display: inline-flex !important;
        gap: 4px;
    }

    .customer-search-directive .btn {
        padding: 10px 12px !important;
        border-radius: 8px !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .customer-search-directive .btn-default {
        background: #dbeafe !important;
        color: #3b82f6 !important;
    }

        .customer-search-directive .btn-default:hover {
            background: #3b82f6 !important;
            color: white !important;
        }

    .customer-search-directive .btn-success {
        background: #d1fae5 !important;
        color: #10b981 !important;
    }

        .customer-search-directive .btn-success:hover {
            background: #10b981 !important;
            color: white !important;
        }

.customer-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.delete-btn {
    background: #fee;
    color: #ef4444;
}

    .delete-btn:hover {
        background: #ef4444;
        color: white;
    }

.add-btn {
    background: #d1fae5;
    color: #10b981;
}

    .add-btn:hover {
        background: #10b981;
        color: white;
    }

.refresh-btn {
    background: #dbeafe;
    color: #3b82f6;
}

    .refresh-btn:hover {
        background: #3b82f6;
        color: white;
    }

/* Payment Card */
.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .card-title i {
        color: #0B948B;
    }

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .payment-row:last-child {
        border-bottom: none;
    }

.payment-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

    .status-badge.success {
        background: #d1fae5;
        color: #065f46;
    }

.payment-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #0B948B;
}

.currency {
    font-size: 13px;
    color: #94a3b8;
}

.payment-input-group {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 250px;
}

.payment-type-btn {
    width: 40px;
    height: 40px;
    background: #0B948B;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .payment-type-btn:hover {
        background: #097773;
        transform: scale(1.05);
    }

.payment-amount-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: right;
    font-weight: 600;
    font-size: 16px;
}

.debt-amount {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

    .radio-option:hover {
        background: #f1f5f9;
    }

    .radio-option input {
        position: absolute;
        opacity: 0;
    }

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input:checked ~ .radio-circle {
    border-color: #0B948B;
    background: #0B948B;
}

    .radio-option input:checked ~ .radio-circle::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

.radio-label {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
}

.radio-option.active .radio-label {
    color: #0B948B;
    font-weight: 600;
}

.more-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

    .more-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e0;
    }

/* Action Buttons */
.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.action-btn {
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #0B948B 0%, #097773 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(11, 148, 139, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(11, 148, 139, 0.5);
    }

.btn-secondary {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

    .btn-secondary:hover {
        background: #f8fafc;
        border-color: #cbd5e0;
    }

.btn-info {
    background: linear-gradient(135deg, #0B948B 0%, #097773 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(11, 148, 139, 0.4);
}

    .btn-info:hover {
        background: linear-gradient(135deg, #097773 0%, #086663 100%);
        transform: translateY(-2px);
    }

.btn-outline {
    background: white;
    color: #0B948B;
    border: 2px solid #0B948B;
}

    .btn-outline:hover {
        background: #0B948B;
        color: white;
    }

/* Responsive */
@media (max-width: 1200px) {
    .sales-page-container {
        grid-template-columns: 1fr;
    }

    .right-section {
        position: sticky;
        top: 110px;
    }
}

@media (max-width: 768px) {
    .sales-page-container {
        padding: 10px;
        gap: 10px;
    }

    .search-controls {
        flex-direction: column;
    }

    .search-input-group {
        min-width: 100%;
    }

    .quantity-controls {
        width: 100%;
        justify-content: space-between;
    }

    .action-buttons-grid {
        grid-template-columns: 1fr;
    }

    .invoice-title {
        font-size: 14px;
    }

    .product-table {
        font-size: 12px;
    }

        .product-table th,
        .product-table td {
            padding: 8px 6px;
        }
}
.batch-expiry-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 1rem;
}

    .batch-expiry-inputs .form-control {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 6px 12px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

        .batch-expiry-inputs .form-control:focus {
            border-color: #42a29b;
            outline: none;
            box-shadow: 0 0 0 2px rgba(66, 162, 155, 0.1);
        }

    .batch-expiry-inputs label {
        color: #757c99;
        white-space: nowrap;
        margin-bottom: 0;
        font-size: 14px;
    }

/* Style cho datepicker của hạn dùng */
.batch-expiry-date {
    cursor: pointer;
}

/* Đảm bảo datepicker hiển thị đúng */
.datepicker {
    z-index: 9999 !important;
}

.datepicker-dropdown {
    z-index: 10000 !important;
}
.print-dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.print-btn-group {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.print-main-btn {
    flex: 1;
    padding: 12px 16px;
    background-color: #28a745;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 48px;
}

    .print-main-btn:hover {
        background-color: #218838;
    }

.print-dropdown-toggle {
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 40px;
}

    .print-dropdown-toggle:hover {
        background-color: #218838;
    }

    .print-dropdown-toggle i {
        font-size: 12px;
    }

/* Dropdown menu */
.print-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    min-width: 200px;
}

    .print-dropdown-menu.show {
        display: block;
        animation: dropdownFadeIn 0.2s ease;
    }

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.print-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 10px;
}

    .print-dropdown-menu a:hover {
        background-color: #f8f9fa;
        color: #28a745;
    }

    .print-dropdown-menu a i {
        font-size: 14px;
        width: 20px;
    }

/* Responsive */
@media (max-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
    }
}
.box {
    position: relative;
    border: solid 1px #E8E8E8;
    float: left;
    padding: 15px;
    /*overflow: hidden;*/
    overflow-y: auto;
    overflow-x: hidden;
}

.box-proditems
{
    top:0;
    width:70%;
    height:550px;
}

.box-summary
{
    top:0;
    width:30%;
    height:550px;
}

.header-bg {
    background-color: #e9eaeb !important;
}
.header-item {
    background-color: #12a59b !important;
}

/* borderless table */
.table.table-borderless td, .table.table-borderless th {
    border: 0 !important;
}

.table.table-borderless {
    margin-bottom: 0px;
}

.borderless td, .borderless th {
    border: none;
}
.col-right {
    height: 100%;
    width: 40%;
    float: right;
    padding: 2rem 1.6rem 1.1rem;
}
