/*All*/
:root {
    --login-box-fill: #e5e8ee;
    /*--login-box: rgba(229,232,238,0.2);*/
    --login-box:rgb(247 247 247);
    --green: #4fbc08;
    --light-green: #82d1ad;
    --yellow: #efdd00;
    --break-column: 40px;
    --break-column-inner: 36px;
    --break-header: 35px;
    --quantity: #edeeef;
    --grid: 15px;
    --min-grid: -15px;
    --cashier-grid: 15px;
    --blue: #0ebee6;
    --soft-gray: #e7e5e5;
    --footer-gray: rgb(151 151 151);
    /*--prmary: black;*/
}
html {
    overflow: hidden;
}
body {
    overflow: hidden;
    color: var(--black);
}

.bg-black-15 { background-color: rgba(0,0,0,0.15) !important; }

.bg-soft-gray { background-color: var(--soft-gray) !important; }

.bg-footer{
    background-color: var(--footer-gray) !important;
}

.arrow {
    width: 0.45em;
    height: 0.45em;
    display: inline-block;
    border-top: 1px solid;
    border-right: 1px solid;
    vertical-align: 0.1em;
}
.arrow.left {
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.arrow.right {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sk-main-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
}

/*Pagination*/
.sk-pagination .pagination {
    font-size: 13px;
    align-items: center;
}
.pagination .page-link,
.page-item.disabled .page-link {
    min-width: auto;
    min-height: auto;
    line-height: 13px;
    color: inherit;
    font-size: 13px;
    border-radius: 0 !important;
    border: 0;
}
.page-item.disabled .page-link {
    opacity: 0.2;
}
#custom-pagination .pagination .page-link,
.page-item.disabled .page-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-item.active .page-link {
    color: inherit;
}
.pagination .active .page-link,
.pagination .page-link:hover {
    border-top: none;
    border: 0;
    background-color: transparent !important;
    color: inherit !important;
}
.pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    color: var(--secondary) !important;
}
.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    top: -0.25em;
}
.pagination .page-item {
    margin: 5px;
}
.pagination .page-item:not(:first-child):not(:last-child) .page-link {
    border-bottom: 1px solid transparent !important;
}
.pagination .page-item.active:not(:first-child):not(:last-child) .page-link {
    border-color: inherit !important;
}

/*Header*/
.company-app-header {
    position: relative;
    z-index: 10000 !important;
}
header .megamenu-toggle {
    position: relative;
}
.header-bottom {
    background-color: #F0EFEF;
}
.header-right {
    max-width: 1560px;
}

/*Megamenu*/
.megamenu-toggle {
    width: 40px;
    height: 40px;
    background-color: var(--black);
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}
.megamenu-toggle .icon {
    width: 24px;
    border-bottom: 2px solid var(--white);
    position: relative;
    border-top: 2px solid var(--white);
    height: 9px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top,
.megamenu-toggle .icon .bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top {
    top: -9px;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}
.megamenu-toggle .icon .bottom {
    top: 12px;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
}
.megamenu-toggle.open .icon {
    border-color: transparent !important;
}
.megamenu-toggle.open .icon .top {
    -webkit-transform: rotate(-45deg) translate(-5px, 0px);
    -moz-transform: rotate(-45deg) translate(-5px, 0px);
    -ms-transform: rotate(-45deg) translate(-5px, 0px);
    -o-transform: rotate(-45deg) translate(-5px, 0px);
    transform: rotate(-45deg) translate(-5px, 0px);
    top: -11px;
}
.megamenu-toggle.open .icon .bottom {
    -webkit-transform: rotate(45deg) translate(-4px, 2px);
    -moz-transform: rotate(45deg) translate(-4px, 2px);
    -ms-transform: rotate(45deg) translate(-4px, 2px);
    -o-transform: rotate(45deg) translate(-4px, 2px);
    transform: rotate(45deg) translate(-4px, 2px);
    top: 10px;
}
.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f6f8;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1002;
}
.megamenu-scroll {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
body.megamenu-opened .megamenu {
    opacity: 1;
    pointer-events: all;
}
.megamenu-body ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}
.megamenu-body ul li:not(:last-child) {
    margin-bottom: 30px;
}
.megamenu-body ul li a:hover {
    color: var(--secondary);
}


/*Login Box*/
.login-box {
    border: 4px solid var(--login-box);
    border-radius: 20px;
    max-width: 450px;
    margin: auto;
    background-color: var(--login-box);
}
.login-box .form-control {
    border-color: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.login-logo-box{
    border: 1px solid transparent;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--white);
}

.btn-company-app{
    border: 2px solid rgba(0,0,0);
    border-radius: 10px !important;
}

.min-h-100vh{
    min-height: 100vh;
}

.wrapper-login-width{
    /*min-height: calc(100vh - 20px);*/
}

.min-w-200px{
    min-width: 200px;
}

.min-w-170px{
    min-width: 170px;
}

.company-nav-link{
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.05rem;
    text-underline-offset: 2px;
    color: rgba(35,31,32,0.5);
    font-weight: 600;
}

.company-nav-link.active,
.company-nav-link:hover {
    color: var(--tertiary);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.05rem;
    text-underline-offset: 2px;
}

.nav-company-btn{
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
    border: 1px solid rgba(0,0,0);
    border-radius: 5px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.05rem;
    text-underline-offset: 3px;
    position: relative;
}

.nav-company-btn svg {
    fill: var(--black);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-company-btn .cart-number {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--black);
}

.nav-company-btn:not(:disabled):not(.disabled):hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0.05rem;
    text-underline-offset: 3px;
}

.nav-company-btn:not(:disabled):not(.disabled):hover svg {
    fill: var(--white);
}

.nav-company-btn:not(:disabled):not(.disabled):hover .cart-number {
    background-color: var(--white);
    color: var(--primary);
}

.mx-10px{
    margin-left: 10px;
    margin-right: 10px;
}

.mx-20px{
    margin-left: 20px;
    margin-right: 20px;
}

/* lg */
@media (min-width: 992px) {
    .mx-lg-20px,
    .ml-lg-20px {
        margin-left: 20px;
    }

    .mx-lg-20px,
    .mr-lg-20px {
        margin-right: 20px;
    }

    .lg-min-w-1000px{
        min-width: 1000px;
    }

    .lg-min-w-900px{
        min-width: 900px;
    }

    .lg-min-w-800px{
        min-width: 800px;
    }
}

.border-radius-left-10px{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.border-radius-right-10px{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*Table*/
.sk-table .footable-toggle {
    color: var(--tertiary) !important;
    background-color: rgba(35,31,32,0.1) !important;
}
.sk-table .footable-details tbody th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: calc(1em - 2px);
    color: rgba(35,31,32,0.5);
}

table.footable-details > tbody > tr > th:nth-child(1) {
    width: 90px;
}

.sk-table .footable-details tbody tr:last-child th,
.sk-table .footable-details tbody tr:last-child td {
    border-bottom: 0 !important;
}

.sk-table.footable-details {
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: -1px;
}

.footer-bar {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
}

.border-black{
    border-color: black!important;
}

.border-black-90{
    border-color: rgba(0, 0, 0, 0.9) !important;
}

.border-black-80{
    border-color: rgba(0, 0, 0, 0.8) !important;
}

.border-black-40{
    border-color: rgba(0, 0, 0, 0.4) !important;
}
.radius-30px {
    border-radius: 30px;
}
.allergens-warning .contains-allergens-eye {
    display: inline-flex; 
    justify-content: center; 
    align-items: center; 
    background-color: var(--secondary); 
    border-radius: 50%; 
    padding: 0px; 
    line-height: 1; 
    vertical-align: middle;
    width: 15px;
    height: 15px;
}

.allergens-warning .icon-wrapper {
    display: flex; 
    justify-content: center;
    align-items: center; 
    width: 16px; 
    height: 16px;
}

.allergens-warning .icon {
    width: 80%; 
    height: 100%; 
}

.allergens-warning .allergen-text {
    font-size: 12px;
    margin-left: 0.4em; 
    color: var(--text-color);
    vertical-align: middle;
    display: inline-block;
}


.contains-allergens .icon {
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    width: 0.7em;
    height: 0.7em;
    display: inline-block;
    line-height: 0.6;
    text-align: center;
}



.loader {
    position: relative;
    pointer-events: none;
}
.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.btn.loader:before,
.btn.loader:after {
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
/*.loader:not(.square):before {*/
/*    content: "";*/
/*    background-color: rgba(255,255,255,0.7);*/
/*}*/
.loader:after {
    content: "";
    color: var(--primary);
    width: 30px;
    height: 30px;
    margin: auto;
    -webkit-animation: none;
    animation: none;
    background-image: url('/public/assets/img/icons/loader-square.gif');
    width: 40px;
    height: 40px;

}

.users_list_table th{
    border-bottom: 2px solid black;
    padding: .5em 0;
    text-align: left;
    font-weight: 500;

}

.users_list_table td{
    padding: .5em 0 ;
    text-align: left;
    font-weight: 500;
}

.users_list_table tbody tr:hover{
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/*!* Hide the default radio button *!*/
/*input[type="radio"] {*/
/*    display: none;*/
/*}*/

/*!* Style the custom radio button *!*/
/*input[type="radio"] + label {*/
/*    position: relative;*/
/*    padding-left: 30px; !* Adjust the padding as needed *!*/

/*    cursor: pointer;*/
/*}*/

/*input[type="radio"] + label::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 20px; !* Adjust the width as needed *!*/
/*    height: 20px; !* Adjust the height as needed *!*/
/*    background-color: #3498db; !* Set the desired background color *!*/
/*    border-radius: 50%;*/
/*    border: 2px solid #2980b9; !* Set the desired border color *!*/
/*}*/

/*!* Style the custom radio button when selected *!*/
/*input[type="radio"]:checked + label::before {*/
/*    background-color: #2ecc71; !* Set the desired background color when selected *!*/
/*    border-color: #27ae60; !* Set the desired border color when selected *!*/
/*}*/

input[type="radio"]:checked + label + div.radio-box {
    border: 2px solid red; /* You can customize the border style and color */
}
.modal-backdrop {
    z-index: 100000 !important;
}

/*Modal*/
.modal {
    z-index: 100001 !important;
}

.modal .close.with-stroke svg {
    fill: none;
    stroke: #818181 !important;
    stroke-miterlimit: 10;
    stroke-width: 3px;
}

.modal-content.company-modal{
    border-radius: 15px;
}

.modal-content.company-modal .btn-outline-black {
    border-radius: 5px;
}
.modal-content.company-modal .btn-underline {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.5) !important;
    color: rgba(0,0,0,0.5);
    font-size: 16px;
    line-height: 1;
    text-decoration: none !important;
    margin: 15px 0 10px !important;
    text-transform: uppercase;
}
.modal-content.company-modal .btn-underline:hover {
    color: black;
}

.company-modal .modal-header{
    border: none;
    min-height: unset;
}

.company-modal.modal-content .modal-body{
    padding: 10px 25px;
}
.modal .close svg {
    stroke: none !important;
}

/*Product Modal*/
.product-details-popup-image {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.sk-side-nav-wrap{
    padding: 40px 0;
}

/* online shop side category bar*/
.online-shop-sidebar.left {
    position: fixed;
    top: 60px;
    bottom: 0;
    left: -190px;
    overflow-y: unset;
    z-index: 99;
    background-color: #ececec;
    width: 240px;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    -webkit-box-shadow: 10px -4px 5px -5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 10px -4px 5px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 10px -4px 5px -5px rgba(0, 0, 0, 0.2);
}

.online-shop-sidebar.left.open {
    left: 0;
}

.online-shop-sidebar .sidebar-overflow{
    overflow-y: auto;
    overflow-x: hidden;
}


.online-shop-sidebar .categories-icon{
    position: absolute;
    top: 15px;
    right: 5px;
}

.online-shop-sidebar.open .categories-icon{
    display: none;
    transition: all 0.5s ease;
}

.online-shop-sidebar .close-side-bar{
    position: absolute;
    top: 50px;
    right: -20px;
    font-size: 11px;
    color: #9d9b9b;
    border-radius: 5px;
}

.online-shop-sidebar .sk-side-nav-list .sk-side-nav-link,
.online-shop-sidebar .sk-side-nav-list .sk-side-nav-link:hover
/*.sk-side-nav-list .sk-side-nav-link.level-2-active,*/
/*.sk-side-nav-list .sk-side-nav-link.level-3-active,*/
/*.sk-side-nav-list .sk-side-nav-link.active */
{
    color: black;
    background-color: transparent;
    font-weight: 500;
}

.online-shop-sidebar .product-categories .sk-side-nav-link .sk-side-nav-text{
    border-bottom: 1px solid black;
}


.sk-side-nav-link.active .red-line::after {
    width: 70px;
    border-bottom: 4px solid red;
    content: "";
    position: absolute;
    /* padding: 5px; */
    bottom: -1px;
    left: 0;
    z-index: 100!important;
}

.sk-side-nav-list .sk-side-nav-link {
    padding: 5px 10px;
    margin: 0;
}
@media (min-width: 768px) {
    .sk-side-nav-list .sk-side-nav-link {
        padding: 5px 50px 5px 25px;
    }
}
.open-text {
    display: none;
}

@media (max-width: 1724.98px) {
    .close-text {
        display: none;
    }
    .open-text {
        display: inline;
    }
}


@media (max-width: 1724.98px) {
    /* online shop side category bar*/
    .online-shop-sidebar.left {
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        top: 0;
        height: auto;
        z-index: 100000;
    }
    .online-shop-sidebar.left:not(.open) {
        bottom: auto;
        left: -200px;
        top: 60px;
    }
    .online-shop-sidebar.left:not(.open) .sk-side-nav-wrap {
        padding: 30px 0;
    }
    .online-shop-sidebar.left:not(.open) .close-side-bar {
        top: 35px;
        right: 0;
        border-radius: 0;
        padding-right: 2px !important;
    }
    .online-shop-sidebar.left:not(.open) .categories-icon {
        position: absolute;
        top: 5px;
        right: 9px;
    }
    .online-shop-sidebar.left:not(.open) .sk-side-nav-list {
        display: none;
    }
}

@media (max-width: 1499.98px) {
    .online-shop-sidebar.left:not(.open) {
        top: 125px;
    }
}

@media (max-width: 1199.98px) {
    .online-shop-sidebar.left:not(.open) {
        top: 97px;
    }
}
@media (max-width: 767.98px) {
    .online-shop-sidebar .close-side-bar {
        right: 0;
        border-radius: 5px 0 0 5px;
        padding-right: 2px !important;
    }
    .online-shop-sidebar.left.open .sk-side-nav-wrap {
        padding: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .online-shop-sidebar.left:not(.open) {
        top: 91px;
    }
}

.pointer-events-none{
    pointer-events: none!important;
}

.min-h-100vh{
    min-height: 100vh!important;
}

.pt-80px{
    padding-top: 80px;
}

.radio-box {
    border: 2px solid rgba(29,39,88,0.1);
    padding: 5px 7px;
}

.radio-box.transparent {
    border-color: transparent;
}

.employ-radio {
    margin-bottom: 0;
}

.employ-radio .text {
    color: rgba(29,39,88,0.8);
    border-bottom: 2px solid rgba(29,39,88,0.2);
}

.employ-radio .sk-rounded-check {
    border: 2px solid  rgba(29,39,88,0.2);
}

.employ-radio .sk-rounded-check::after {
    background: rgba(29,39,88,0.2);
}

.employ-radio > input:checked ~ .sk-rounded-check {
    border-color: var(--primary);
}

.employ-radio > input:checked ~ .sk-rounded-check::after {
    background: var(--primary);
}

.employ-radio > input:checked ~ .text {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.employ-check {
    color: rgba(29,39,88,0.6);
}
.employ-check .sk-square-check {
    border: 2px solid rgba(29,39,88,0.2);
}
.employ-check > input:checked ~ .text {
    color: var(--primary);
}

/*

*/
.snack-res-image.square {
    position: relative;
    padding-top: 100%;
}

.snack-res-add {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: var(--quantity);
}
.snack-res-add .plus,
.snack-res-add .quantity,
.snack-res-add .added {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: var(--quantity);
    border-radius: 3px;
}
.snack-res-add.added-quantity .plus,
.snack-res-add.open-quantity .plus,
.snack-res-add .quantity,
.snack-res-add:not(.added-quantity) .added,
.snack-res-add.open-quantity .added {
    opacity: 0;
    pointer-events: none;
}
.snack-res-add.open-quantity .quantity {
    opacity: 1;
    pointer-events: all;
}
.snack-res-add .plus {
    width: 20px;
    height: 20px;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
}
.snack-res-add .quantity {
    width: 70px;
    height: 20px;
    padding: 1px;
}
.snack-res-add .quantity .control {
    background-color: #dbdbdb;
    font-size: 18px;
    line-height: 1;
    height: 18px;
    width: 15px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.snack-res-add .quantity .quantity-total {
    text-align: center;
    font-size: 15px;
}
.snack-res-add .added {
    height: 20px;
    font-size: 17px;
    min-width: 20px;
    padding: 0 1px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.snack-res-add .added .arrow {
    width: 5px;
    height: 5px;
    display: inline-block;
    vertical-align: 0.3em;
    border-top: 1px solid;
    border-right: 1px solid;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.snack-res-text {
    padding: 5px;
}
.snack-res-add .plus:hover,
.snack-res-add .quantity .control:hover,
.snack-res-add .added:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-outline-black:not(.disabled) {
    border-radius: 20px;
}

.btn-outline-black:not(.disabled),
.btn-outline-black:not(.disabled):hover {
    /*border-width: 1px;*/
    border-color: black!important;
}

/*Side Popup*/
.side-popup,
.megamenu-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.side-popup.active,
body.megamenu-opened .megamenu-popup {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.side-popup-box,
.megamenu-popup-box {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.side-popup-close,
.megamenu-popup-close {
    color: #b2b2b2;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: transparent;
}
.side-popup-close:hover,
.megamenu-popup-close:hover {
    background-color: transparent;
    color: black;
}

.side-popup-close-icon,
.megamenu-popup-close-icon {
    position: relative;
    width: 1em;
    height: 1em;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.side-popup-close-icon::before,
.megamenu-popup-close-icon::before {
    content: "";
    display: block;
    border-left: 2px solid;
    height: 1em;
    width: 0;
    margin: auto;
}
.side-popup-close-icon::after,
.megamenu-popup-close-icon::after {
    content: "";
    border-bottom: 2px solid;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 0;
}
.side-popup-head h3 {
    line-height: 1;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0,0,0,0.1);
    font-weight: 700;
}
.side-popup-close-text {
    white-space: nowrap;
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: translateX(-100%) rotate(-90deg);
    -moz-transform: translateX(-100%) rotate(-90deg);
    -ms-transform: translateX(-100%) rotate(-90deg);
    -o-transform: translateX(-100%) rotate(-90deg);
    transform: translateX(-100%) rotate(-90deg);
    display: inline-block;
    position: relative;
    left: 25px;
    bottom: 1em;
}

.side-popup-container,
.megamenu-popup-container {
    background-color: #eeeeee;
    width: 260px;
    height: 100%;
}
.side-popup-scroll,
.megamenu-popup-scroll {
    height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
}
.background-fixed-popup {
    pointer-events: none;
    background-color: rgba(169,168,169,0.05);
    /*background-color: transparent;*/
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*opacity: 0;*/
}
body.side-popup-opened .background-fixed-popup,
body.megamenu-opened .background-fixed-popup {
    z-index: 1100;
    /*opacity: 1;*/
    pointer-events: all;
}

body.side-popup-opened header,
body.side-popup-opened footer,
body.megamenu-opened header,
body.megamenu-opened footer,
body.megamenu-opened .sk-main-wrapper > div:not(.background-fixed-popup):not(.side-popup),
body.megamenu-opened .sk-main-wrapper > header,
body.megamenu-opened .sk-main-wrapper > footer,
body.megamenu-opened .sk-main-wrapper > section {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*Megamenu*/
.megamenu-popup .company-nav-link {
    margin-bottom: 10px;
    text-decoration: none !important;
}
.megamenu-popup .company-nav-link a {
    display: block;
    border-bottom: 1px solid;
}

.cart-number {
    position: absolute;
    top: -3px;
    right: -5px;
    min-width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    /* font-weight: 500; */
    line-height: 1;
    font-size: 10px;
    padding-top: 1px;
}

.menu-cart .list-group-item,
.modal .list-group-item {
    background-color: transparent;
    border-bottom: 1px solid var(--tertiary) !important;
}

.right-5{
    right: 5px!important;
}

.btn-outline-black:not(:disabled):not(.disabled):hover,
.btn-black:not(:disabled):not(.disabled):hover {
    background-color: var(--black);
    color: var(--white)
}

.table.order-history-table th{
    padding: 10px 5px;
    font-weight: 500;
    font-size: 13px;
}

.table.order-history-table td{
    padding: 7px 5px;
    font-size: 15px;
    font-weight: 500;
}

.table.order-history-table tbody tr:not(.static):hover{
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.table.order-history-table td, .table.order-history-table th{
    border-top: none!important;
    vertical-align: middle;
}

.table.order-history-table td{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.table.order-history-table tbody tr.no-border td{
    border: none;
}

#product-search-box .list-group-item{
    background-color: rgb(227 227 227) !important;
}

#product-search-box .list-group-item{
    padding-bottom: 0px!important;
}

#product-search-box .list-group-item:last-child{
    padding-bottom: 5px!important;
}

#product-search-box .list-group-item a:hover{
    background-color: rgb(175, 174, 174);
    transition: all 0.3s ease;
}

.bg-light-gray{
    background-color: rgb(227 227 227) !important;
}

.search-results-box{
    position: absolute;
    top: -4px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
}

/* Change the width, height, and color of the scrollbar track */
.search-results-box::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
}

/* Change the color of the scrollbar handle */
.search-results-box::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;
    border-radius: 10px;
    height: 10px;
}

/* Add a border radius to the scrollbar handle */
.search-results-box::-webkit-scrollbar-thumb:hover {
    background-color: #868686;
    transition: all 0.3s ease;
}

/* Change the color of the scrollbar track */
.search-results-box::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

/* Add a box shadow to the scrollbar track */
.search-results-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.border-top-black{
    border-top: 1px solid black!important;
}

.cart-res-box span{
    color: var(--red);
}

.form-control.sm-padding{
    padding: 0.6rem 1.2rem;
}

.btn.sm-padding{
    padding: 0.6rem 1.2rem;
}

.pt-120px{
    padding-top: 120px;
}

.terms-res-item a{
    font-weight: 400;
}

.min-height-cacl-100vh{
    min-height: calc(100vh - 15px)!important;
}

/*Meal Description*/
.meal-description-box {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px !important;
}
.meal-description-image-wrap {
    position: relative;
}
.meal-description-images-wrap.two-img .meal-description-image-wrap:nth-child(1) {
    margin-bottom: 2px;
}
.meal-description-images-wrap.two-img .meal-description-image-wrap:nth-child(2) {
    margin-top: 2px;
}
.meal-description-images-wrap.three-img .meal-description-image-wrap {
    margin-top: 2px;
    margin-bottom: 2px;
}
.meal-description-images-wrap.three-img .meal-description-image-wrap:nth-child(1) {
    margin-top: 0;
}
.meal-description-images-wrap.three-img .meal-description-image-wrap:nth-child(3) {
    margin-bottom: 0;
}
.meal-description-no-orders {
    border-bottom: 1px solid var(--tertiary);
    position: relative;
}
.meal-description-no-orders::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 2px solid var(--tertiary);
    opacity: 0;
}
.meal-description-no-orders::after {
    content: "";
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    width: 0;
    margin: auto;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid var(--tertiary);
}
.meal-description.selected .meal-description-no-orders::before,
.meal-description.selected .meal-description-no-orders::after {
    opacity: 1;
}

/*Login*/
.login-main-wrapper {
    height: calc(100svh - 15px);
}

/*Cart Popup*/
.cart-popup-res-image {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: var(--white);
}

/*Order Completed*/
.order-completed-description {
    position: relative;
    z-index: 1;
}
.order-completed-description::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100px;
    right: -100px;
    background-color: rgba(214,214,214,0.4);
    z-index: -1;
}

/*Terms*/
.terms-res-item {
    margin-bottom: 15px;
}
.terms-res-item a::after {
    margin-left: 1em;
}
.users-list {
    background-color: unset !important;
    border: none !important;
}

.quantity-input {
    width: 32px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    background-color: #ffffff00;
    text-align: center;
}

/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {

}
/* md */
@media (min-width: 768px) {
    :root {
        --grid: 20px;
        --min-grid: -20px;
        --cashier-grid: 20px;
    }
    /*Double Modal*/
    #double-meals-modal .modal-dialog {
        max-width: 630px;
    }
}
/* lg */
@media (min-width: 992px) {
    /*Modal*/
    .modal-xl {
        max-width: 945px;
    }
    .modal-xl.lg-mw-600px {
        max-width: 600px;
    }
    /*Cart*/
    .menu-cart .list-group-item,
    .modal .list-group-item {
        border-bottom: 2px solid rgba(0, 0, 0, 0.05)!important;
    }
}
/* xl */
@media (min-width: 1200px) {

}
/* xxl */
@media (min-width: 1500px) {
    /*Header*/
    .nav-company-btn svg {
        margin-left: 5px;
    }
}
/* xxxl */
@media (min-width: 1750px) {

}

/*Responsive - Desktop First*/
/* xl */
@media (max-width: 1499.98px) {
    .nav-company-btn:not(.not-square) {
        width: 30px;
        height: 30px;
        padding: 2px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* lg */
@media (max-width: 1199.98px) {

}
/* md */
@media (max-width: 991.98px) {
    .users_list_table thead {
        display: none;
    }
}
/* sm */
@media (max-width: 767.98px) {
    /*Terms*/
    .terms-text h1,
    .terms-text h2,
    .terms-text h3,
    .terms-text h4,
    .terms-text h5,
    .terms-text h6 {
        font-size: 1.2em;
    }
    .terms-text ul {
        padding-left: 1em;
    }
}
/* xs */
@media (max-width: 575.98px) {

}

.close{
    z-index:2 !important;
 }
 
.comments-area-submit-order textarea {
    width: 100%;
    border: 1px solid grey;
    border-radius: 5px;
    padding: 10px;
    height: 107px; 
    resize: none;
    border-radius: 15px; 
    
}

.comments-area-submit-order textarea::-webkit-scrollbar {
    width: 2px; /* Adjust the width of the scrollbar */
}

.comments-area-submit-order textarea::-webkit-scrollbar-button {
    display: none; /* Hides the up and down arrow buttons */
}

.comments-area-submit-order textarea::-webkit-scrollbar-thumb {
    background: grey; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounded corners for the scrollbar thumb */
    border-radius: 50px;
}

.comments-area-submit-order textarea::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    padding-top: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

