@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,400;0,500;0,600;0,700;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #ced4da;
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email] {
    height: 50px;
    padding: 0 15px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    outline-style: none;
    box-shadow: none;
    border-color: #ced4da;

}


body {
    overflow-x: hidden !important;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    font-size: 16px;
}


a {
    transition: 0.5s;
    outline-style: none;
    text-decoration: none;
    color: #006E2F;
}

a:hover,
a:active,
a:visited,
a:focus {
    outline: none;
    text-decoration: none;
    color: #006E2F;
}

p {
    padding: 0;
    margin: 0;
    font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 500;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

section {
    display: block;
    float: left;
    width: 100%;
}

.left_pannel {
    display: block;
    float: left;
    width: 240px;
    background: #000000;
    min-height: 100vh;
    transition: all .3s;
    transition-timing-function: ease-out;
    position: fixed;
}

.left_pannel.active {
    margin-left: -240px;
}

.left_pannel .inside {
    display: block;
    float: left;
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    left: 0;
    top: 0;
}

.left_pannel .inside {
    display: block;
    float: left;
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    left: 0;
    top: 0;
}

.left_pannel .inside::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.left_pannel .inside::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.left_pannel .inside::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}

.left_pannel .logo {
    display: block;
    float: left;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.left_pannel .logo img {
    width: 100%;
    max-width: 120px;
    cursor: pointer;
}

.left_pannel .menu_area {
    display: block;
    float: left;
    width: 100%;
    padding: 10px 0 20px 0;
}

.left_pannel .nav-link {
    padding: 12px 15px;
    display: inline-block;
    width: 100%;
    color: #fff;
    margin: 7px 0;
    cursor: pointer;
    position: relative;
}

.left_pannel .nav-link::before {
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    content: '\f0da';
}

.left_pannel .nav-link:hover {
    background: #242428;
    -webkit-box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
    -moz-box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
    box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
}

.left_pannel .active {
    background: #242428;
    color: #fff;
    -webkit-box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
    -moz-box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
    box-shadow: inset 5px 0px 0px 0px rgba(170, 214, 9, 1);
}

.left_pannel .active::before {
    color: rgba(170, 214, 9, 1);
    ;
}

.dropdown-menu {
    background: #f8f7f7;
}

.dropdown-item {
    color: #fff;
    cursor: pointer;
}

.menu_area .dropdown-menu {
    background: #252525;
}

.dropdown-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: #AAD609;
}

.left_pannel .nav-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
    margin-right: 8px;
    margin-top: -5px;
}

.right_pannel {
    display: block;
    float: right;
    width: calc(100% - 240px);
    background: #fff;
    min-height: 100vh;
    position: relative;
    transition: all .3s;
    transition-timing-function: ease-out;
}

.right_pannel.active2 {
    width: 100%;
}

.right_pannel .body {
    display: block;
    float: left;
    width: 100%;
    min-height: calc(100vh - 53px);
    padding: 20px 20px 20px 20px;
    position: relative;
    overflow-x: hidden;
}

.right_top_header {
    display: flex;
    float: left;
    width: 100%;
    height: 54px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    padding: 0 15px;
    z-index: 3;
    border-bottom: 1px solid #CFCFCF;
}

.right_top_header .left_header {
    display: flex;
    align-items: center;
}

.right_top_header .headername {
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 10px;
    display: flex;
    align-items: center;
    color: #000000;
}

.right_top_header .menu {
    display: block;
    float: left;
    cursor: pointer;
}

.right_top_header .header_right {
    display: flex;
    width: auto;
    align-items: center;
}

.notification_section {
    display: flex;
    width: 36px;
    height: 36px;
    position: relative;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background: #006E2F;
    margin-right: 10px;
}

.notification_section img {
    height: 15px;
}

.notification_section span {
    position: absolute;
    top: -4px;
    right: -5px;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #ff6c00;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.top_header_profile {
    display: flex;
    vertical-align: top;
    width: auto;
    position: relative;
    align-items: center;
    cursor: pointer;
}

.top_header_profile p {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.top_header_profile .drop {
    display: none;
    float: left;
    width: 170px;
    position: absolute;
    right: 0;
    top: 34px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    -webkit-box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.17);
    box-shadow: -1px 5px 5px 0px rgba(0, 0, 0, 0.17);

}

.top_header_profile:hover .drop {
    display: block;
}

.top_header_profile .drop ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top_header_profile .drop ul i {
    margin-right: 5px;
}

.top_header_profile .drop ul li a {
    color: #000;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
}

.top_header_profile .drop ul li a:hover {
    color: #006E2F;
}

.profile_img2 {
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    overflow: hidden;
    background: #00B6B0;
    text-align: center;
    line-height: 34px;
    color: #fff;
    margin-right: 5px;
}

.profile_img2 p {
    margin: 0;
    font-size: 12px;
    width: 100%;
    height: 100%;
}

.profile_img2 img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.login_body {
    display: flex;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    min-height: 100vh;
}

.login_left_area {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 40%;
    background: #006E2F;
    background-image: url(../images/login_left_top_bg.svg), url(../images/login_left_bottom_bg.svg);
    background-repeat: no-repeat;
    background-position: top center, bottom center;
    min-height: 100vh;
    padding: 25px;
    position: relative;
}

.login_left_area img {
    width: 100%;
    max-width: 250px;
}

.login_right_area {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 60%;
    min-height: 100vh;
    padding: 40px 25px;
    position: relative;
}

.login_right_area .form_section {
    display: block;
    float: left;
    width: 100%;
    max-width: 700px;
    background: #F8F8F8;
    border-radius: 15px;
    padding: 40px;
}

.login_right_area .form_section h2 {
    font-weight: bold;
}

.login_right_area .form_section p {
    margin-top: 5px;
    color: #3D3D3D;
}

.login_right_area .login_form {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.login_input_group {
    position: relative;
}

.login_input_group .form-label {
    color: #006E2F;
    font-weight: 500;
    font-size: 14px;
    margin-left: 12px;
    display: inline-block;
    vertical-align: bottom;
    margin-bottom: -9px;
    position: relative;
    z-index: 3;
    padding-left: 5px;
    padding-right: 5px;
}

.login_input_group .form-label::before {
    content: '';
    position: absolute;
    background: #f8f8f8;
    float: left;
    height: 2px;
    width: 100%;
    left: 0;
    top: 12px;
    z-index: -1;
}

.login_input_group .form-label input {
    position: relative;
}

.login_input_group input::placeholder {
    color: #000;
    font-weight: 500;
}

.login_but {
    display: inline-block;
    vertical-align: top;
    background: #006E2F;
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.login_but:hover {
    background: #000;
}

.login_copy_area {
    position: absolute;
    bottom: 11px;
    right: 0;
    width: 100%;
    text-align: center;
}

.login_copy_area p {
    color: #006E2F;

}

.order_search_area {
    display: flex;
    float: left;
    width: 100%;
    background: #E9E9E9;
    padding: 10px 15px;
    border-radius: 10px;
    justify-content: space-between;
}

.order_search_area .order_left_area {
    display: block;
    float: left;
    width: 100%;
    max-width: 300px;
}

.order_search_area .order_right_area {
    display: flex;
    float: left;
}

.order_search_area .order_right_area select {
    width: 100%;
    height: 44px;
    float: left;
    margin: 0 10px;
}

.download_cv_but {
    display: inline-block;
    vertical-align: top;
    height: 44px;
    line-height: 44px;
    background: #006E2F;
    color: #fff !important;
    border-radius: 5px;
    padding: 0 20px;
    white-space: nowrap;
}

.download_cv_but:hover {
    background: #000;
}




.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 44px;
    line-height: 44px;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.order_search_area input {
    height: 44px;
}


.table_area {
    display: block;
    float: left;
    width: 100%;
}

.table_area .table_header {
    display: flex;
    flex-wrap: nowrap;
    float: left;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    background: #006E2F;
    border-radius: 4px;
}

.table_area .table_header>div {
    padding: 0 5px;
}

.table_area .table_body {
    display: flex;
    flex-wrap: nowrap;
    float: left;
    width: 100%;
    padding: 10px 10px;
    color: #000;
    font-size: 12px;
    align-items: center;
    transition: all .5s;
    transition-timing-function: ease-out;
    text-align: center;
    min-height: 56px;
    background: #fff;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);

}

.table_area .table_body p {
    color: #000;
}

.table_area .table_body>div {
    padding: 0 5px;
}

.table_area .table_body .mobile_heading {
    display: none;
    color: #809FB8;
    margin-right: 10px;
}

.table_dropdown_div {
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.table_dropdown_div .dropdown:hover ul.dropdown-menu {
    display: block;
}

.table_dropdown_div .dropdown-toggle::after {
    display: none;
}

.table_dropdown_div .dropdown-menu {
    width: 200px;
}

.table_dropdown_div .dropdown-menu {
    padding: 0 10px;
}

.table_dropdown_div .dropdown-menu li {
    display: flex;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid #a5a5a5;
}

.table_dropdown_div .dropdown-menu li:last-child {
    border-bottom: none;
}

.table_dropdown_div .fa-eye {
    color: #006E2F;
}

.fa-circle-info {
    color: #006E2F;
}

.status_completed {
    color: #00dd07 !important;
    font-weight: 700;
}

.status_ongoing {
    color: #c0c006 !important;
    font-weight: 700;
}


.del {
    color: #DA211C;
    background: #FFEBEC;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.del:hover {
    color: #fff;
    background: #6A798A;
}

.view {
    color: #6A798A;
    background: #D1DADB;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s;
    transition-timing-function: ease-out;
}

.view:hover {
    color: #D1DADB;
    background: #6A798A;
}

.modal-header {
    background: #006E2F;
    padding: 6px 15px;
}

.modal-title {
    color: #fff;
    font-size: 18px;
}

.btn-close {
    background: url(../images/modal_cross.svg) no-repeat;
    background-position: center;
    opacity: 1;
}

.order_top_section {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
}

.order_top_section .left h2 {
    font-size: 18px;
}

.order_top_section .right h2 {
    font-size: 18px;
}

.order_top_section .right h2 span {
    color: #AAD609;
}

.order_section1 {
    display: block;
    float: left;
    width: 100%;
    border-bottom: 1px dashed #000;
    padding: 10px 0;
}

.order_section1 p {
    margin: 4px 0;
    font-size: 16px;
}


.order_section2 {
    display: block;
    float: left;
    width: 100%;
    padding: 10px 0;
}

.order_section2 p {
    margin: 4px 0;
    font-size: 16px;
}

.order_section_but_area {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.but_style1 {
    display: inline-block;
    vertical-align: top;
    background: #006E2F;
    font-size: 18px;
    color: #fff !important;
    text-align: center;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    transition: all .5s;
    transition-timing-function: ease-out;
    min-width: 150px;
}

.but_style1:hover {
    background: #000;
}

.but_style1_line {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #006E2F;
    font-size: 18px;
    color: #006E2F !important;
    text-align: center;
    padding: 8px 25px;
    border-radius: 10px;
    transition: all .5s;
    transition-timing-function: ease-out;
    min-width: 150px;
}



.but_style2 {
    display: inline-block;
    vertical-align: top;
    background: #b12813;
    font-size: 18px;
    color: #fff !important;
    text-align: center;
    padding: 10px 25px;
    border-radius: 10px;
    border: none;
    transition: all .5s;
    transition-timing-function: ease-out;
    min-width: 150px;
}

.but_style2:hover {
    background: #000;
}

.but_style2_line {
    display: inline-block;
    vertical-align: top;
    border: 1px solid #b12813;
    font-size: 18px;
    color: #b12813 !important;
    text-align: center;
    padding: 8px 25px;
    border-radius: 10px;
    transition: all .5s;
    transition-timing-function: ease-out;
    min-width: 150px;
}

/* .but_style1_line:hover {
    background: #006E2F;
    color: #fff;

} */


.profile_img_name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.switch_style1 .form-check-input:checked {
    background-color: #D4FFF1 !important;
    border-color: #D4FFF1 !important;
    background-image: url(../images/switch_enable.svg) !important;
    border: none !important;
}

.switch_style1 {
    display: inline-block;
    margin: 6px 0 0 0;
}

.switch_style1 .form-check-input {
    background-color: #E3000B;
    background-image: url(../images/switch_white_round.svg) !important;
    border: none !important;
}

.user_details_modal_top_area {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.user_details_modal_top_area .right_img_area {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 5px solid #E0E0E0;
    overflow: hidden;
}

.user_details_modal_top_area .right_img_area img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.user_details_modal_top_area .left p {
    margin: 2px 0;
}

.user_details_modal_table_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.card {
    display: block;
    float: left;
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    background: #fff;
    border: none;
}

.cms_image {
    float: left;
    width: 100%;
}

.delivery_managment_drop {
    width: 300px !important;
    max-height: 200px;
    overflow-y: auto;

}

.delivery_managment_drop li {
    flex-wrap: wrap;
}

.delivery_managment_drop li p {
    width: 100%;
}

.delivery_managment_drop::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.delivery_managment_drop::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    background-color: #AAD609;
}

.delivery_managment_drop::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}

.responsive_table .mobile_heading {
    display: none;
}


.delivery_managment_details_top {
    display: block;
    float: left;
    width: 100%;
    border-bottom: 1px dashed #000;
    padding-bottom: 15px;
}

.delivery_managment_details_mid {
    display: block;
    float: left;
    width: 100%;
    border-bottom: 1px dashed #000;
    padding: 15px 0;
}

.delivery_managment_details_bottom {
    display: block;
    float: left;
    width: 100%;
    padding: 15px 0;
}

.delivery_managment_details_bottom .form-control-floting {
    height: 50px !important;
}

.form-floating {
    position: relative;
}

.form-floating>label {
    padding: 0 8px;
    /* top: -14px; */
    top: 11px;
    color: #006E2F;
    z-index: 2;
    margin-left: 10px;
    font-weight: 500;
}

.form-floating>label::before {
    content: '';
    position: absolute;
    z-index: 1;
    float: left;
    background: #fff;
    width: 100%;
    height: 3px;
    top: 13px;
    left: 0;
    z-index: -1;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: 1 !important;
    transform: scale(1) translateY(-25px) translateX(0);
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding: 15px 18px !important
}

.inventory_management_top_menu {
    display: block;
    float: left;
    width: 100%;
}

.inventory_management_top_menu .nav-link {
    color: #006E2F !important;
}

.inventory_management_top_menu .active {
    background: #006E2F !important;
    color: #fff !important;
}

.inventory_management_section {
    display: block;
    float: left;
    width: 100%;
}

.inventory_management_section .add_area {
    display: flex;
    float: left;
    width: 100%;
    background: #E9E9E9;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    justify-content: flex-end;
}

.inventory_management_add_ons_table {
    display: block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.add_ons_modal {
    display: block;
    float: left;
    width: 100%;
    ;
}

.add_ons_modal h2 {
    font-size: 18px;
}

.image_upload_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.image_upload_section h2 {
    font-size: 18px;
}

.image_upload_section p {
    color: #006E2F;
}

.image_upload_section .img_box {
    display: block;
    float: left;
    width: 100%;
    max-width: 260px;
    height: 160px;
    margin-top: 10px;
    position: relative;
    padding: 10px;
    border: 1px solid #ced4da;
}

.image_upload_section .img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}


.upload_but {
    position: absolute;
    overflow: hidden;
    display: flex;
    vertical-align: top;
    width: 36px;
    height: 36px;
    background: #006E2F;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    z-index: 1;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.upload_but input {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}

.add_ons_modal_but_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #878787;
    text-align: center;
}

.del_modal_body {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}

.del_modal_body h2 {
    margin-top: 25px;
    font-size: 22px;
}

.del_style {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
    margin: 25px 0 15px 0;
    color: #006E2F;
}

.notification_box1 {
    display: flex;
    float: left;
    width: 100%;
    margin-bottom: 15px;
    background: #fff;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    padding: 15px;
}

.notification_box1 .img_area {
    display: block;
    float: left;
    width: 38px;
    height: 38px;
    flex: 38px 0 0;
    margin-right: 10px;
}

.notification_box1 .img_area img {
    width: 100%;
    height: 100%;
}

.notification_box1 .text_area {
    display: block;
    float: left;
    width: 100%;
    padding-left: 15px;
}

.inventory_management_today_section {
    display: block;
    float: left;
    width: 100%;
}

.inventory_management_today_section .right {
    display: flex;
    align-items: center;
}

.inventory_management_today_section .right .price {
    display: flex;
    align-items: center;
}

.inventory_management_today_section .right .price p {
    white-space: nowrap;
    margin: 0 10px;
    font-weight: bold;
}

.inventory_management_today_section .price_fild {
    width: 80px;
}


.inventory_management_today_section .add_area {
    display: flex;
    float: left;
    width: 100%;
    background: #E9E9E9;
    padding: 12px 15px 12px 25px;
    border-radius: 10px;
    margin-top: 15px;
    align-items: center;
    justify-content: space-between;
}

.inventory_management_today_section .add_area h2 {
    font-size: 20px;
}

.inventory_management_today_menu_slider_section {
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
}

.today_slider_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    height: 100%;
}

.today_slider_box1 .top_section {
    display: flex;
    float: left;
    width: 100%;
    background: #006E2F;
    padding: 8px 15px;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

.today_slider_box1 .top_section .left h2 {
    font-size: 16px;
}

.today_slider_box1 .top_section .left p {
    font-size: 13px;
}

.today_slider_box1 .top_section .right p {
    color: #fff;
    font-size: 18px;
}

.today_slider_box1 .top_section .right p a {
    color: #fff;
    margin: 0 8px;
}

.today_slider_box1 .body_section {
    display: flex;
    float: left;
    width: 100%;
    padding: 8px 15px;
}

.today_slider_box1 .body_section .img_area {
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    flex: 80px 0 0;
}

.today_slider_box1 .body_section .img_area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.inventory_management_today_menu_slider_section .owl-item {
    padding-bottom: 12px;
    max-width: calc(100% / 3);
}

.today_slider_box1 .body_section .text_area {
    display: block;
    float: left;
    width: 100%;
    padding-left: 15px;
}

.today_slider_box1 .body_section .text_area h3 {
    text-align: right;
    color: #006E2F;
    font-size: 18px;
}

.today_slider_box1 .body_section .text_area p {
    line-height: 18px;
    max-height: 100px;
    overflow-y: auto;
}

.today_slider_box1 .body_section .text_area p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.today_slider_box1 .body_section .text_area p::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.today_slider_box1 .body_section .text_area p::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}


.inventory_management_today_menu_slider_section .owl-theme .owl-dots,
.inventory_management_today_menu_slider_section .owl-theme .owl-nav {
    text-align: left;
    margin-top: 0 !important;

}

.inventory_management_today_menu_slider_section .owl-theme .owl-nav [class*=owl-] {
    color: #545454 !important;
    font-size: 14px;
    margin: 5px 10px !important;
    padding: 0 !important;
    background: none !important;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    font-size: 25px !important;
}

.inventory_management_today_menu_slider_section .owl-carousel .owl-stage {
    display: flex;
}



.weekly_slider_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    padding: 10px;
    height: 100%;
}

.price_input input {
    position: relative;
    display: inline-block;
    /* Ensure it fits the content */
    padding-left: 20px;
    height: 44px;
}

.price_input2 input {
    position: relative;
    display: inline-block;
    /* Ensure it fits the content */
    padding-left: 20px;
    height: 50px;
}

.price_input::after {
    content: "$";
    position: absolute;
    top: 50%;
    /* Center vertically */
    left: 8px;
    /* Adjust this value to control the space between the $ and the input text */
    transform: translateY(-50%);
    /* Center vertically */
    font-weight: bold;
    z-index: 4;
    pointer-events: none;
    /* Prevents the $ sign from affecting input behavior */
}

.price_field {
    padding-left: 24px;
    /* Adjust padding to make space for the $ sign */
    width: 120px;
    /* Adjust width as needed */
    height: 30px;
    /* Adjust height as needed */
    box-sizing: border-box;
    /* Include padding and border in the width */
    /* border: 1px solid black; Black border */
    border-radius: 4px;
    /* Optional: for rounded corners */
    outline: none;
    /* Remove default focus outline */
    font-size: 14px;
    /* Adjust font size if necessary */
}

/* Optional: Style the input when focused */
.price_field:focus {
    /* border-color: black; Keeps black border on focus */
    box-shadow: none;
    /* Remove any default focus shadow */
}


.weekly_slider_box1 .top_section {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #B7B7B7;
    padding-bottom: 10px;
}

.weekly_slider_box1 .top_section .left h2 {
    font-size: 16px;
    color: #006E2F;
}
.weekly_slider_box1 .top_section .left img
{
    display: inline-block;
    vertical-align: top;
    width: 16px;
}

.weekly_slider_box1 .top_section .right p {
    color: #006E2F;
    font-size: 18px;
}

.weekly_slider_box1 .top_section .right p a {
    color: #006E2F;
    margin: 0 8px;
}

.weekly_slider_box1 .body_section {
    display: flex;
    float: left;
    width: 100%;
    padding: 8px 15px;
    justify-content: space-between;
}

.weekly_slider_box1 .body_section .box1 {
    display: block;
    float: left;
    width: 100%;
    padding: 0 5px;
}

.weekly_slider_box1 .body_section p {
    line-height: 18px;
    font-size: 14px;
}

.form-label {
    font-weight: 600;
}

.today_modal_order_time {
    display: flex;
    float: left;
    width: 100%;
}

.order_time {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    float: left;
}

.today_modal_order_time .form-check-input {
    margin: 5px 5px 0 0;
}

.today_modal_order_time .form-check-input:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.search_drop {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    padding: 10px 20px;
    z-index: 3;
    list-style-type: none;
    width: 100%;
}

.search_drop li {
    cursor: pointer;
    margin: 2px 0;
}

.search_drop li:hover {
    color: #006E2F;
}

.today_modal_add_menu {
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

.today_modal_add_menu h2 {
    font-size: 16px;
}

.today_modal_add_menu_box1 {
    display: flex;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    padding: 6px 10px;
    margin-top: 12px;
    background: #fff;
    align-items: center;
}

.today_modal_add_menu_box1 h4 {
    font-size: 15px;
    width: 40px;
}

.today_modal_add_menu_box1 p {
    font-size: 15px;
    width: 100%;
}

.create_today_menu_search_area {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 15px;
    align-items: flex-start;
}

.create_today_menu_search_area input {
    width: 100% !important;
}

.create_today_menu_search_area .input-group span {
    width: 100%;
}

.create_today_menu_search_area .form-group.has-search {
    width: 100%;
    position: relative;
}

.create_today_menu_search_area .has-search .form-control-feedback {
    height: 50px;
    line-height: 50px;
}


.create_today_menu_search_area .price {
    display: inline-block;
    vertical-align: top;
    border-radius: 6px;
    border: 1px solid #ced4da;
    height: 50px;
    line-height: 50px;
    margin: 0 10px;
}

.create_today_menu_search_area .price input {
    height: 48px;
}

.create_today_menu_search_area .price p {
    white-space: nowrap;
}

.check_green:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.week_tab {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.week_tab .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #006E2F;
    border-color: #dee2e6 #dee2e6 #fff;
}

.week_tab .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid #dee2e6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 2px;
    color: #006E2F;
}

.week_tab .nav-tabs .nav-link:hover {
    cursor: auto;
}

.monthly_switch {
    padding-left: 0;
    padding-right: 2.5em;
}

.monthly_switch .form-check-input {
    float: right !important;
    margin-right: -2.5em !important;
    margin-top: 7px;
}

.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.dashboard_top_section {
    display: block;
    float: left;
    width: 100%;
}

.dashboard_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #006E2F;
    border-radius: 6px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    margin: 15px 0;
    height: calc(100% - 30px);
}

.dashboard_box1 .top {
    display: block;
    float: left;
    width: 100%;
    padding: 15px 15px;
    background: #fff;
}

.dashboard_box1 .top p {
    color: #006E2F;
    font-size: 18px;
    font-weight: 600;
}

.dashboard_box1 .bottom {
    display: flex;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    padding: 6px 15px;
    background: #006E2F;
}

.dashboard_box1 .bottom p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-right: 15px;
}

.dashboard_mid_section {
    display: block;
    float: left;
    width: calc(100% + 40px);
    background: #E0E8DD;
    padding: 30px 20px;
    margin-top: 10px;
    margin-left: -20px;
}

.dashboard_mid_section .heading {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.dashboard_mid_section .heading h2 {
    font-size: 20px;
    font-weight: bold;
}

.dashboard_mid_section_body {
    display: block;
    float: left;
    width: 100%;
}

.dashboard_mid_left_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    margin-top: 10px;
}

.dashboard_mid_left_box1 .top {
    display: block;
    float: left;
    width: 100%;
    padding: 8px 15px;
    border-radius: 6px 6px 0 0;
}

.dashboard_mid_left_box1 .top p {
    color: #006E2F;
}

.dashboard_mid_left_box1 .bottom {
    display: flex;
    float: left;
    width: 100%;
    padding: 6px 15px;
    background: #006E2F;
    border-radius: 0 0 6px 6px;
}

.dashboard_mid_left_box1 .bottom h3 {
    color: #fff;
    font-size: 20px;
}

.dashboard_mid_left_box1 .bottom h2 {
    color: #fff;
    font-size: 13px;
}

.dashboard_mid_left_box1 .bottom .table_dropdown_div {
    justify-content: flex-end;
}

.dashboard_mid_left_box1 .bottom .fa-circle-info {
    color: #fff;
}

.dashboard_mid_box {
    display: block;
    float: left;
    width: 100%;
    margin-top: 12px;
}

.dashboard_mid_box .heading {
    display: flex;
    float: left;
    width: 100%;
    background: #006E2F;
    border-radius: 8px 8px 0 0;
    padding: 10px 15px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.dashboard_mid_box .heading h2 {
    font-size: 18px;
}

.dashboard_mid_box .body_section {
    display: block;
    float: left;
    width: 100%;
    background: #F4F4F4;
    border: 1px solid #A1A3A4;
    border-radius: 0 0 8px 8px;
    padding: 10px;
    max-height: 285px;
    overflow-y: auto;

}

.dashboard_mid_box1 {
    display: flex;
    float: left;
    width: 100%;
    background: #FBFDFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    padding: 6px 12px;
    margin: 5px 0;
}

.dashboard_mid_box1 .left {
    display: flex;
    width: auto;
    align-items: center;
}

.dashboard_mid_box1 .left img {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.dashboard_mid_box1 .left p {
    margin-left: 5px;
    white-space: nowrap;
}

.dashboard_mid_box1 .table_dropdown_div {
    display: flex;
    float: left;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.dashboard_mid_box1 .table_dropdown_div h2 {
    font-size: 16px;
}

.dashboard_mid_box .body_section::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.dashboard_mid_box .body_section::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.dashboard_mid_box .body_section::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}



.dashboard_right_box {
    display: block;
    float: left;
    width: 100%;
    margin-top: 12px;
}

.dashboard_right_box .heading {
    display: flex;
    float: left;
    width: 100%;
    background: #006E2F;
    border-radius: 8px 8px 0 0;
    padding: 7px 15px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.dashboard_right_box .heading h2 {
    font-size: 18px;
    width: 60%;
}

.dashboard_right_box .heading h3 {
    font-size: 18px;
    width: 20%;
}

.dashboard_right_box .body_section {
    display: block;
    float: left;
    width: 100%;
    background: #F4F4F4;
    border: 1px solid #A1A3A4;
    border-radius: 0 0 8px 8px;
    padding: 10px;
    max-height: 285px;
    overflow-y: auto;
}

.dashboard_right_box1 {
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    background: #FBFDFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    padding: 6px 12px;
    margin: 5px 0;
}

.dashboard_right_box1 p {
    width: 62%;
}

.dashboard_right_box1 .table_dropdown_div {
    width: 23%;
    justify-content: flex-start;
}

.dashboard_right_box1 .table_dropdown_div h2 {
    font-size: 16px;
}

.dashboard_right_box .btn {
    padding: 2px .75rem;
    white-space: nowrap;
}


.dashboard_right_box .body_section::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.dashboard_right_box .body_section::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.dashboard_right_box .body_section::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}

.statistic_graph_section {
    display: block;
    float: left;
    width: 100%;
}

.statistic_graph_box1 {
    display: block;
    float: left;
    width: 100%;
    background: #707070;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    height: calc(100% - 30px);
}

.statistic_graph_box2 {
    height: calc(100% - 30px);
}

.statistic_graph_box1_heading {
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.statistic_graph_box1_heading h2 {
    color: #fff;
    font-size: 20px;
}

.statistic_grph_select {
    display: block;
}

.statistic_grph_select select {
    background-color: #AAD609;
    border: 0;
    color: #fff;
}

.statistic_grph_select .form-select {
    background-image: url(../images/down_arrow.svg);
}

.statistic_graph_img_area {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 15px;
}

.statistic_graph_img_area img {
    float: left;
    width: 100%;
}

.statistic_graph_box2 {
    display: block;
    float: left;
    width: 100%;
    background: #707070;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.statistic_search_section {
    display: flex;
    float: left;
    width: 100%;
    margin: 30px 0 0 0;
    padding-top: 15px;
    border-top: 2px dashed #BDBDBD;
    justify-content: space-between;

}

.statistic_search_section .left {
    display: flex;
}

.statistic_search_top_boxes {
    display: block;
    float: left;
    width: 100%;
}

.statistic_search_order_section {
    display: block;
    float: left;
    width: 100%;
    background: #F4F4F4;
    border: 1px solid #A1A3A4;
    margin-top: 20px;
    border-radius: 10px;
}

.statistic_search_order_section .order_main_heading {
    display: block;
    float: left;
    width: 100%;
    background: #006E2F;
    border-radius: 10px 10px 0 0;
    padding: 8px 15px;
}

.statistic_search_order_section .order_main_heading h2 {
    font-size: 20px;
    color: #fff;
}

.statistic_search_order_body {
    display: block;
    float: left;
    width: 100%;
    padding: 15px;
}

.dashboard_box2 {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    margin: 12px 0;
}

.dashboard_box2 .top {
    display: flex;
    float: left;
    width: 100%;
    padding: 12px 15px;
    justify-content: space-between;
    min-height: 75px;
}

.dashboard_box2 .top .text h2 {
    font-size: 18px;
    color: #006E2F;
    font-weight: 600;
    padding-right: 10px;
}

.dashboard_box2 .top .icon i {
    font-size: 25px;
    color: #006E2F;
}

.dashboard_box2 .top .table_dropdown_div {
    justify-content: flex-start;
}

.dashboard_box2 .bottom {
    display: flex;
    float: left;
    width: 100%;
    padding: 10px 15px;
    justify-content: space-between;
    background: #006E2F;
    border-radius: 0 0 6px 6px;
}

.dashboard_box2 .bottom h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.profile_page_main_heaing {
    display: block;
    float: left;
    width: 100%;
}

.profile_page_main_heaing h2 {
    font-size: 22px;
}

.profile_page_card {
    display: block;
    float: left;
    width: 100%;
    padding: 40px 20px;
    color: #000;
    background: #fff;
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.profile_page_card .profile_left_area {
    display: block;
    float: left;
}

.profile_img_upload {
    margin: 0;
}

.profile_img_upload .img_box {
    display: block;
    float: left;
    width: 160px;
    height: 160px;
    margin-top: 10px;
    position: relative;
    border: 1px solid #ced4da;
    border-radius: 100%;
    padding: 0;
    margin: 0;
}

.profile_img_upload .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    border-radius: 100%;
}

.profile_page_card .profile_right_area {
    display: block;
    float: right;
    width: calc(100% - 180px);
}

.profile_page_but_area {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: right;
}

.alert_section {
    display: block;
    float: left;
    width: 100%;
}

.alert_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.alert_section .heading h2 {
    font-size: 22px;
}

.alert_section .card {
    display: block;
    float: left;
    width: 100%;
    padding: 20px;
    color: #000;
    background: #fff;
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.alert_section .card_top {
    display: block;
    float: left;
    width: 100%;
}

.alert_section .card_top .box1 {
    display: flex;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    padding: 10px 18px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.alert_section .card_top .box1 .left {
    display: flex;
    align-items: center;
}

.alert_section .card_top .box1 .left img {
    margin-right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    object-fit: contain;
    object-position: center;
    background: #006E2F;
    padding: 5px;
}

.alert_section .card_top .box1 .right {
    display: flex;
    align-items: center;
}

.alert_section .card_bottom .left input[type=text] {
    margin-left: 0;
    padding-left: 0;
}

.alert_section .card_top .box1 .form-check-input {
    border: 2px solid #707070;
}

.alert_section .card_top .box1 .form-check-input:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.alert_section .card_bottom {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #000000;
}

.alert_section .card_bottom .left {
    width: 100%;
}

.alert_section .card_bottom .left .form-control {
    border: none;
}

.alert_section .card_bottom .right {
    display: block;
    width: 100%;
    max-width: 400px;
}

.alert_section .card_bottom .right .top {
    display: flex;
    align-items: center;
}

.add_icon {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.add_icon i {
    font-size: 30px;
    margin-right: 5px;
}


.holiday_section {
    display: block;
    float: left;
    width: 100%;
}

.holiday_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.holiday_section .heading h2 {
    font-size: 22px;
}

.holiday_section .card {
    display: block;
    float: left;
    width: 100%;
    color: #000;
    background: #fff;
    padding: 0;
    margin-top: 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.holiday_section .card .heading {
    display: flex;
    float: left;
    width: 100%;
    background: #006E2F;
    border-radius: 8px 8px 0 0;
    padding: 7px 20px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.holiday_section .card .body_section {
    display: block;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 10px;
}

.holiday_section .card .body_section .box1 {
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    margin: 5px 0;
    padding: 8px 12px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.holiday_section .card .body_section .box1 .form-check-input {
    border: 2px solid #707070;
}

.holiday_section .card .body_section .box1 .form-check {
    display: inline-block;
    margin: 0;
}

.holiday_section .card .body_section .box1 .form-check-input:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.holiday_section .card .body_section .boxes {
    display: block;
    float: left;
    width: 100%;
    height: 195px;
    overflow-y: auto;
}

.holiday_section .card .body_section .boxes::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.holiday_section .card .body_section .boxes::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.holiday_section .card .body_section .boxes::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}


.holiday_section .card .body_section .bottom_section {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #000;
    padding: 15px 0 10px 0;
    align-items: center;
}

.holiday_section .card .body_section .bottom_section input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(../images/calender.svg) no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
    background-size: contain;
    border: none;
}

.holiday_section .card .body_section .bottom_section .form-control {
    border: none;
}

.holiday_section .card .body_section .bottom_section .left label {
    color: #006E2F;
    font-size: 13px;
    margin-bottom: 2px;
}

.holiday_section .card .body_section .bottom_section .left {
    width: 35%;
}

.holiday_section .card .body_section .bottom_section .left p {
    align-items: center;
}

.holiday_section .card .body_section .bottom_section .left p span {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.holiday_section .card .body_section .bottom_section .mid {
    width: 45%;
}

.holiday_section .card .body_section .bottom_section .mid .top {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: space-evenly;
}

.holiday_section .card .body_section .bottom_section .mid .form-check {
    display: inline-block;
    margin: 0;
}

.holiday_section .card .body_section .bottom_section .mid p {
    color: #006E2F;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: -5px;
}

.holiday_section .card .body_section .bottom_section .mid .form-check-input {
    border: 2px solid #707070;
}

.holiday_section .card .body_section .bottom_section .mid .form-check-input:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.holiday_section .card .body_section .bottom_section .right {
    width: 20%;
    text-align: right;
}


.set_order_time_section {
    display: block;
    float: left;
    width: 100%;
}

.set_order_time_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.set_order_time_section .heading h2 {
    font-size: 22px;
}

.set_order_time_section .card {
    display: block;
    float: left;
    width: 100%;
    color: #000;
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.set_order_time_section .card .top {
    display: block;
    float: left;
    width: 100%;
    min-height: 230px;
}

.set_order_time_section .card .bottom_section {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #000;
    padding: 15px 0 10px 0;
    align-items: center;
    text-align: center;
    justify-content: center;
}


.order_category_section {
    display: block;
    float: left;
    width: 100%;
    height: calc(100% - 40px)
}

.order_category_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.order_category_section .heading h2 {
    font-size: 22px;
}

.order_category_section .card {
    display: block;
    float: left;
    width: 100%;
    color: #000;
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    height: 100%;
}

.order_category_section .card .top {
    display: block;
    float: left;
    width: 100%;
    min-height: 230px;
}

.order_category_box1 {
    display: flex;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    padding: 6px 10px;
    margin: 5px 0;
    background: #fff;
    align-items: center;
}

.order_category_box1 span {
    display: flex;
}

.order_category_box1 h4 {
    font-size: 15px;
    width: 40px;
}

.order_category_box1 p {
    font-size: 15px;
    width: 100%;
}

.order_category_section .card .card_bottom {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 20px;
    padding: 15px 0 0 0;
    border-top: 1px solid #000000;
}

.order_category_section .card .card_bottom .left {
    width: 100%;
}

.order_category_section .card .card_bottom .left .form-control {
    border: none;
}

.sales_tax_section {
    display: block;
    float: left;
    width: 100%;
}

.sales_tax_section .heading {
    display: block;
    float: left;
    width: 100%;
}

.sales_tax_section .heading h2 {
    font-size: 22px;
}

.sales_tax_section .card {
    display: block;
    float: left;
    width: 100%;
    color: #000;
    background: #fff;
    padding: 15px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
}

.percentage {
    position: absolute;
    top: 13px;
    right: 20px;
}

.sales_tax_section .card .top {
    display: block;
    float: left;
    width: 100%;
    min-height: 230px;
}

.sales_tax_section .card .bottom_section {
    display: flex;
    float: left;
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #000;
    padding: 15px 0 10px 0;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.dashboard_banner_heading {
    display: flex;
}

.dashboard_banner_heading .form-check-input {
    border: 2px solid #707070;
}

.dashboard_banner_heading .form-check {
    display: inline-block;
    margin: 0;
}

.dashboard_banner_heading .form-check-input:checked {
    background-color: #006E2F;
    border-color: #006E2F;
}

.top_margin1 {
    margin-top: 10px;
}

.change_password {
    margin-top: 20px;
    color: #006E2F;
    font-weight: 700;
    text-decoration: underline;
}

.change_password a {
    color: #006E2F;
}

.change_password a:hover {
    color: #000;
    text-decoration: none;
}

.statistic_graph_box1 .apexcharts-toolbar,
.statistic_graph_box2 .apexcharts-toolbar {
    display: none;
}

.statistic_graph_box1 .apexcharts-text tspan,
.statistic_graph_box2 .apexcharts-text tspan {
    font-family: inherit;
    color: #fff;
    fill: #fff;
}

.statistic_graph_box1 .apexcharts-yaxis-title,
.statistic_graph_box2 .apexcharts-yaxis-title {
    display: none;
}

.statistic_graph_box1 .apexcharts-toolbar,
.statistic_graph_box2 .apexcharts-toolbar {
    display: none !important;
}

.table_body_scroll {
    display: block;
    float: left;
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
}

.table_body_scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.table_body_scroll::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.table_body_scroll::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}



.content_page_header {
    display: flex;
    float: left;
    width: 100%;
    background: #000;
    padding: 10px 0;
    flex-wrap: wrap;
}

.content_page_header .logo {
    display: block;
    float: left;
    width: 80px;
    /* Adjust the width as needed */
    flex: 80px 0 0;
    /* Adjust flex properties if necessary */
}

.content_page_header .logo img {
    display: block;
    float: left;
    width: 100%;
}

.content_page_body {
    display: block;
    float: left;
    width: 100%;
    padding: 60px 0;
}

.content_page_body p {
    margin-top: 15px;
    color: #000;
}

.content_page_body ul {
    margin: 15px 0 0 15px;
    padding: 0;
}

.content_page_body h3,
.content_page_body h4,
.content_page_body h5,
.content_page_body h6 {
    margin-top: 15px;
}

.content_page_footer {
    display: block;
    float: left;
    width: 100%;
    background: #000;
    padding: 40px 0;
    color: #fff;
}

.content_page_footer_box1 {
    display: block;
    float: left;
    width: 100%;
    margin: 15px 0;
}

.content_page_footer_box1 h2 {
    font-size: 22px;
}

.content_page_footer_box1 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.content_page_footer_box1 ul li {
    margin-bottom: 10px;
}

.content_page_footer_box1 ul li a {
    color: #fff;
}

.content_page_footer_box1 ul li a:hover {
    color: #006E2F;
}

.contact_body_address_box1 {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 20px 0 0;
    position: relative;
    padding-left: 40px;
}

.contact_body_address_box1 img {
    position: absolute;
    left: 0;
    top: 0;
}

.contact_body_address_box1 p {
    margin-top: 5px;
    color: #fff;
}



.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(38, 43, 73, .8);
}

.loader {
    text-align: center;
}

.loader img {
    width: 50px;
    /* Adjust the size of the loader image as needed */
}


/* Add this CSS to your stylesheet */
.larger-input {
    height: 80px;
    /* Adjust height to your preference */
    font-size: 20px;
    /* Adjust font size to your preference */
}

.holiday_section .card .body_section .box1 .mobile_heading {
    display: none;
}

.table_scroll {
    display: block;
    float: left;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
}

.table_scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.table_scroll::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.table_scroll::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}

.fees {
    position: relative;
}

.floting_text {
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 16px;
    font-weight: bold;
}

.left_pannel .cms_drop .nav-link::before {
    content: '\f0dd';
}

.left_pannel .cms_drop .dropdown-toggle::after {
    display: none;
}

.error2 {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}


.my_area {
    margin-left: auto;
    /* Pushes the .text_area to the right */
}

.delete_category {
    color: #ED1515;
}

.delete_category_but_area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.menu_toggle {
    display: flex;
    float: left;
    width: 100%;
    justify-content: flex-end;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ensures the label and switch are spaced out */
    margin: 10px 0;
    width: 90px;
    /* Adjust width as needed */
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4CAF50;
}

input:checked+.slider:before {
    transform: translateX(14px);
}

.both_menu_area {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.both_menu_area .menu_box1 {
    display: block;
    float: left;
    width: 100%;
    margin: 0 10px;
}

.price_update_but {
    border: none;
    box-shadow: none;
    color: #006E2F;
    font-weight: bold;
    text-decoration: underline;
    margin-right: 20px !important;
    display: inline-block;
    vertical-align: middle;
    background: none;
}

.price_update_but:hover {
    text-decoration: none;
}

.today_modal_order_time .form-check-input:focus {
    border: 1px solid rgba(0, 0, 0, .25);
    outline: 0;
    box-shadow: none;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #fff;
}

.no_date {
    width: 100%;
    max-width: 300px;
}

.scroller_div {
    display: block;
    float: left;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
}

.scroller_div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #006E2F;
    background-color: #006E2F;
}

.scroller_div::-webkit-scrollbar {
    width: 5px;
    background-color: #AAD609;
}

.scroller_div::-webkit-scrollbar-thumb {
    background-color: #AAD609;
}

.has-search {
    position: relative;
}

.drop_search {
    position: absolute;
    left: 0;
    top: 46px;
    padding: 15px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.10);
    list-style-type: none;
    z-index: 3;
}

.drop_search li {
    cursor: pointer;
}

.drop_search li:hover {
    color: #006E2F;
}

.more {
    color: #006E2F;
    font-weight: bold;
    cursor: pointer;
}

.order_number {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.shop_close_image_text {
    display: flex;
    float: left;
    flex-wrap: wrap;
}

.form-check-input:focus {
    border: 1px solid rgba(0, 0, 0, .25);
}

.break {
    word-break: break-all;
}

/* Styles for closed shops container */
.closed-shops-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Styles for individual chips */
.chip {
    display: inline-block;
    padding: 5px 20px 5px 10px;
    border-radius: 16px;
    background-color: #e0e0e0;
    font-size: 14px;
    color: #333;
    position: relative;
    text-align: left;
}

.chip_cross {
    position: absolute;
    right: 13px;
    top: 46%;
    transform: translateY(-50%);
}

.chip .form-check-input {
    margin-right: 5px;
}

.custom-dropdown .dropdown-menu {
    width: 100%;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.custom-dropdown .form-check {
    margin-bottom: 5px;
}

.custom-dropdown .form-check-input {
    margin-right: 10px;
}

.shop_close_card {
    border-radius: 10px;
}

.shop_close_category_section {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 10px;
}

.shop_close_category_buttom_section {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-top: 1px solid #6A798A;
    padding-top: 12px;
}

.shop_close_category_drop {
    background: none;
    color: #000;
    width: 100% !important;
    text-align: left;
    border: none;
    font-size: 15px !important;
}

.shop_close_category_drop:hover {
    background: none;
    color: #000;
    width: 100% !important;
    text-align: left;
    border: none;
}

.shop_close_category_drop:focus+.shop_close_category_drop,
.shop_close_category_drop:focus {
    background: none;
    color: #000;
    width: 100% !important;
    text-align: left;
    border: none;
    box-shadow: none !important;
}

.heading,
.order_category_box1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-category-col {
    width: 30%;
    /* Adjust as needed */
    text-align: left;
}

.time-col {
    width: 40%;
    /* Adjust as needed */
    text-align: left;
}

.type-col {
    width: 20%;
    /* Adjust as needed */
    text-align: center;
}

.switch-col {
    width: 15%;
    /* Adjust as needed */
    text-align: right;
}

.action-col {
    width: 15%;
    /* Adjust as needed */
    text-align: right;
}

.card_bottom {
    margin-top: 15px;
    text-align: right;
}

.selected-list .c-list .c-token {
    background: #006E2F;
    color: #fff;
}

.cuppa-dropdown .selected-list {
    border: 1px solid #ddd;
}

.selected-list .c-angle-down,
.selected-list .c-angle-up {
    top: 45% !important;
}

.dropdown-list.tagToBody {
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    top: -100% !important;
}

.filter-textbox input[type=text] {
    height: 26px !important;
}

.multiselect-dropdown[_ngcontent-ng-c1411523848] .dropdown-btn[_ngcontent-ng-c1411523848] .selected-item-container[_ngcontent-ng-c1411523848] .selected-item[_ngcontent-ng-c1411523848] {
    border: 1px solid #006E2F !important;
    background: #006E2F !important;
}

.multiselect-item-checkbox[_ngcontent-ng-c1411523848] input[type=checkbox][_ngcontent-ng-c1411523848]:checked+div:before {
    background: #006E2F !important;
}

.multiselect-item-checkbox[_ngcontent-ng-c1411523848] input[type=checkbox]+div[_ngcontent-ng-c1411523848]:before {
    color: #006E2F !important;
    border: 2px solid #006E2F !important;
}

.multiselect-dropdown[_ngcontent-ng-c1411523848] .dropdown-btn[_ngcontent-ng-c1411523848] .selected-item-container[_ngcontent-ng-c1411523848] .selected-item[_ngcontent-ng-c1411523848] {
    max-width: none !important;
}

.timepicker__header {
    position: relative !important;
    background: #006E2F !important;
}

.timepicker-dial__control {
    outline-style: none !important;
    border: none !important;
    box-shadow: none !important;
}

.clock-face__number>span.active {
    background-color: #006E2F !important;
}

.clock-face__clock-hand {
    background-color: #006E2F !important;
}

.timepicker-button {
    color: #006E2F !important;
}

.clock-face__clock-hand_minute:before {
    border: 4px solid #006E2F !important;
}

.timepicker-overlay {
    z-index: 10000000 !important;
}

.timepicker-backdrop-overlay {
    z-index: 10000000 !important;
}
.clock_bg
{
    background-image: url(../images/clock.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 20px 20px;
}